-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 784 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 784 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
{
"name": "api_restful-todo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"started": "nodemon index.js",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha test/*.test.js",
"test-wacth": "nodemon --exec 'npm test'"
},
"engines": {
"node": "8.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"crypto-js": "^3.1.9-1",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.7",
"node": "^8.0.0",
"validator": "^9.2.0"
},
"devDependencies": {
"expect": "^22.0.5",
"mocha": "^4.0.1",
"nodemon": "^1.13.2",
"supertest": "^3.0.0"
}
}