-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "express-example",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon ./bin/www localhost 3000",
"test-integration": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/integration/*.test.js",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha --- --opts ./test/mocha.opts",
"test-unit": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/unit/*/*.test.js",
"production": "cross-env NODE_ENV=production node ./bin/www"
},
"dependencies": {
"@slack/client": "^4.12.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"config": "^1.31.0",
"cookie-parser": "^1.4.4",
"debug": "^3.2.6",
"ejs": "^2.7.4",
"enum": "^2.5.0",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"firebase-admin": "^5.13.1",
"istanbul": "^0.4.5",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"mysql2": "^1.7.0",
"nodemon": "^1.19.4",
"pg": "^6.1.0",
"sequelize": "^5.15.1",
"serve-favicon": "~2.5.0",
"sqlite3": "^4.1.1",
"swagger-tools": "^0.10.4",
"swagger-ui": "^3.24.3"
},
"devDependencies": {
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"supertest": "^3.4.2"
}
}