-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "express-example",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon ./bin/www localhost 3000",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/unit/*.test.js",
"test-integration": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/integration/*.test.js",
"production": "cross-env NODE_ENV=production node ./bin/www"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-ejs-layouts": "^2.3.1",
"morgan": "^1.7.0",
"mysql": "^2.15.0",
"nodemon": "^1.14.10",
"pg": "^6.1.0",
"sequelize": "^3.23.6",
"serve-favicon": "~2.3.0",
"sqlite3": "^3.0.8"
},
"devDependencies": {
"cross-env": "^3.1.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-plugin-import": "^2.8.0",
"expect.js": "^0.3.1",
"mocha": "^3.0.2",
"supertest": "^2.0.0"
}
}