-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 809 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 809 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
{
"name": "node-todo-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV=test || NODE_ENV=\"test\" && mocha **/*.test.js",
"test-watch": "nodemon --exec \"npm test\"",
"start": "node ./server.js",
"start-watch": "nodemon ./server.js"
},
"engines": {
"node": "11.1.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"crypto-js": "^3.1.6",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.11",
"mongodb": "^3.1.13",
"mongoose": "^5.4.16",
"validator": "^10.11.0"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^5.2.0",
"rewire": "^2.5.2",
"supertest": "^3.4.2"
}
}