forked from waldemarnt/node-docker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 843 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 843 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
{
"name": "node-docker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test:acceptance": "NODE_ENV=test mocha --opts test/acceptance/mocha.opts test/acceptance --recursive",
"test": "npm run test:acceptance",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=8.4.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.0",
"bunyan": "^1.8.12",
"chai": "^4.1.2",
"express": "^4.15.4",
"mocha": "^3.5.3",
"mongoose": "^4.11.11",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"supertest": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-plugin-node": "^5.1.1",
"eslit": "^5.0.0",
"nodemon": "^1.12.0"
}
}