-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 760 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 760 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
{
"name": "todo-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'",
"start": "node server/server.js",
"devserver": "nodemon --watch server server/server.js"
},
"author": "Nitheesh",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"crypto-js": "^3.1.9-1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.2.7",
"mongoose": "^5.6.0",
"validator": "^11.0.0"
},
"devDependencies": {
"expect": "^24.8.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
}
}