-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.31 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "express-mongo-docker-api-boilerplate",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./src/server | pino",
"docker:build": "./docker/scripts/build.sh",
"docker:rebuild": "./docker/scripts/build.sh -f",
"docker:dev": "./docker/scripts/run.sh dev",
"docker:test": "./docker/scripts/run.sh test",
"docker:test:watch": "./docker/scripts/run.sh test-watch",
"test": "nyc ava",
"test:watch": "ava --watch"
},
"devDependencies": {
"ava": "^0.18.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"nyc": "^10.1.2",
"supertest": "^3.0.0"
},
"dependencies": {
"babel-eslint": "^7.1.1",
"bluebird": "^3.4.7",
"body-parser": "^1.16.0",
"bootable": "^0.2.4",
"cb": "^0.1.0",
"chalk": "^1.1.3",
"eslint": "^3.15.0",
"express": "^4.14.1",
"helmet": "^3.4.0",
"mongoose": "^4.8.1",
"morgan": "^1.8.0",
"pino": "^3.4.0",
"server-destroy": "^1.0.1",
"validator": "^6.2.1"
},
"ava": {
"files": [
"./src/test/*.js",
"./src/test/**/*.js",
"!./src/test/helpers/*.js"
],
"require": [
"./src/test/helpers/setup.js"
]
}
}