-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 KB
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
{
"name": "express-example",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env DEBUG=express-sequelize node ./bin/www",
"test": "npm run test-unit && npm run test-integration",
"test-jenkins": "MOCHA_FILE=./jenkins-test-results.xml cross-env NODE_ENV=test ./node_modules/.bin/mocha test/**/*.test.js --reporter mocha-junit-reporter",
"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"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "^4.16.2",
"morgan": "^1.7.0",
"pg": "^6.1.0",
"pug": "^2.0.0-rc.4",
"sequelize": "^3.23.6",
"sequelize-cli": "^3.1.0",
"serve-favicon": "~2.3.0",
"sqlite3": "^3.0.8"
},
"devDependencies": {
"cross-env": "^3.1.3",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"supertest": "^3.1.0"
}
}