forked from sequelize/express-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 899 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 899 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
{
"name": "round_integrator",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "DEBUG=express-sequelize node ./bin/www",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "./node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=test ./node_modules/.bin/mocha test/unit/*.test.js",
"test-integration": "./node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=test ./node_modules/.bin/mocha test/integration/*.test.js"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "~3.0.1",
"express": "^4.16.0",
"helmet": "^3.8.2",
"morgan": "^1.9.0",
"mysql2": "^1.4.2",
"sequelize": "^4.11.5",
"sequelize-cli": "^3.0.0"
},
"devDependencies": {
"bluebird": "^3.5.0",
"cross-env": "^5.0.5",
"expect.js": "^0.3.1",
"mocha": "^3.5.3",
"supertest": "^3.0.0"
}
}