-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "todo-app",
"version": "1.2.0",
"description": "ToDo API",
"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.11.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loconluis/todo-rest-api.git"
},
"author": "Luis Locon <[email protected]> (https://twitter.com/LoconLuis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/loconluis/todo-rest-api/issues"
},
"homepage": "https://github.com/loconluis/todo-rest-api#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"crypto-js": "^3.1.9-1",
"express": "^4.16.2",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.17.4",
"mongodb": "^2.2.33",
"mongoose": "^4.12.3",
"validator": "^9.0.0"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"standard": "^10.0.3",
"supertest": "^3.0.0"
}
}