-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 902 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "docker-wallaby-db",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha \"dist/**/*.test.js\"",
"build": "tsc",
"build:watch": "tsc --watch",
"serve": "node ./dist/index.js",
"serve:watch": "nodemon ./dist/index.js --watch",
"migrate": "node ./dist/migrate.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.1",
"express": "^4.14.1",
"knex": "^0.12.6",
"knex-cleaner": "^1.1.3",
"lodash": "^4.17.4",
"objection": "^0.6.2",
"pg": "^6.1.2"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/express": "^4.0.35",
"@types/knex": "0.0.40",
"@types/mocha": "^2.2.38",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"testdouble-chai": "^0.5.0",
"typescript": "^2.1.5",
"wallaby-worker-manager": "^0.1.4"
}
}