-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "plans",
"version": "1.0.0",
"description": "Node Express ToDo program",
"main": "index.js",
"scripts": {
"start": "node server/app.js",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha tests/*.js",
"watch-test": "nodemon --exec 'npm test'",
"watch-app": "nodemon server/app.js --watch ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymnj/plans.git"
},
"engines": {
"node": "6.11.1"
},
"author": "Tom Hung",
"license": "ISC",
"bugs": {
"url": "https://github.com/ymnj/plans/issues"
},
"homepage": "https://github.com/ymnj/plans#readme",
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"ejs": "^2.5.5",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.4",
"mongodb": "^2.2.16",
"mongoose": "^4.7.2",
"validator": "^6.2.1",
"vue": "^2.1.10"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"supertest": "^2.0.1"
}
}