-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 921 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
{
"name": "express-demo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "./scripts/build.sh",
"jshint": "./node_modules/.bin/jshint . --verbose --exclude=node_modules/ --reporter=node_modules/jshint-stylish",
"smoke-tests": "./scripts/smoke-tests.sh",
"start": "DEBUG=api,server,sql ./scripts/start-server",
"test": "./scripts/test.sh",
"validate": "npm run jshint && npm run test"
},
"dependencies": {
"async": "^1.5.2",
"bcrypt": "^0.8.5",
"bluebird": "^3.3.3",
"body-parser": "~1.13.2",
"debug": "^2.2.0",
"express": "~4.13.1",
"jwt-simple": "^0.5.3",
"lodash": "^4.5.1",
"mocha": "^2.4.5",
"multer": "^1.1.0",
"node-uuid": "^1.4.7",
"pg": "^4.5.1",
"sequelize": "^5.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.1",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.0.0"
}
}