-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 919 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
{
"name": "ccm-node-boilerplate",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env DEBUG=express-sequelize nodemon ./bin/www",
"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"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"pug": "^2.0.4",
"sequelize": "^5.10.2",
"sequelize-cli": "^5.5.0",
"serve-favicon": "~2.5.0",
"sqlite3": "^4.0.9"
},
"devDependencies": {
"cross-env": "^3.1.3",
"expect.js": "^0.3.1",
"mocha": "^3.0.2",
"supertest": "^2.0.0",
"nodemon": "^1.19.1"
}
}