-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1016 Bytes
/
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
{
"name": "express-mvc-starter",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "nyc mocha",
"docs": "jsdoc -c ./jsdoc.json -r",
"coverage": "nyc report --reporter=lcov",
"exec": "exec",
"migrate": "knex migrate:latest",
"lint": "eslint ./app; exit 0"
},
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "~1.15.1",
"bookshelf": "^0.10.0",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"ejs": "~2.4.1",
"express": "~4.13.4",
"has": "^1.0.1",
"jsonwebtoken": "^7.1.9",
"knex": "^0.11.10",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.0",
"winston": "^2.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"jsdoc": "^3.4.1",
"mocha": "^3.0.2",
"nyc": "^10.1.2",
"sqlite3": "^3.1.4"
}
}