-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
36
37
38
39
40
41
{
"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'"
},
"engines": {
"node": "6.2.2"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.1",
"crypto-js": "^3.1.9-1",
"express": "^4.15.4",
"jsonwebtoken": "^8.0.1",
"lodash": "^4.17.4",
"mongodb": "^2.2.31",
"mongoose": "^4.11.11",
"validator": "^8.2.0"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"supertest": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m-hareef/node-course-todos.git"
},
"bugs": {
"url": "https://github.com/m-hareef/node-course-todos/issues"
},
"homepage": "https://github.com/m-hareef/node-course-todos#readme"
}