-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 839 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 839 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
34
35
36
{
"name": "big-to-do",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"test": "test/**/*.js"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha test/**/*.js",
"test:debug": "mocha --debug-brk",
"test:watch": "nodemon --exec mocha"
},
"author": "Greg Katchmar <gunk55@msn.com> (www.gkatchmar.com)",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"mongoose": "^4.6.5",
"morgan": "^1.7.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.12.0",
"mocha": "^2.5.3",
"nodemon": "^1.11.0"
}
}