-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 783 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
{
"name": "node-todo-api",
"version": "1.0.0",
"description": "a todo application",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "export NODE_ENV=test && mocha --timeout 50000 server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"engines": {
"node": "10.13.0"
},
"author": "aaron shivers",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mongodb": "^3.1.4",
"mongoose": "^5.2.15",
"validator": "^10.9.0"
},
"devDependencies": {
"expect": "^23.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"supertest": "^3.3.0"
}
}