-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 856 Bytes
/
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
{
"name": "node-todo-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "export NODE_ENV=test || set \"NODE_ENV=test\" && mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"engine": {
"node": "9.5.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"crypto-js": "^3.1.9-1",
"expect": "^22.4.0",
"express": "^4.16.2",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"mongodb": "^3.0.3",
"mongoose": "^5.0.7",
"validator": "^9.4.1"
},
"devDependencies": {
"mocha": "^5.0.1",
"nodemon": "^1.17.1",
"supertest": "^3.0.0"
}
}