-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "meteoexpress",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "node app.js",
"test": "npm run inspect:allConc",
"logs": "heroku logs --tail -a meteo-server",
"lh": "./node_modules/.bin/lighthousebot",
"inspect:lint": "eslint \"./**/*.js\" ",
"inspect:mocha": "./node_modules/mocha/bin/mocha",
"inspect:vulnerabilities": "npm audit",
"inspect:all": " npm run inspect:vulnerabilities && npm run inspect:lint && npm run inspect:mocha ",
"inspect:allConc": " concurrently \"npm run inspect:vulnerabilities\" \"npm run inspect:lint\" \"npm run inspect:mocha\" ",
"generate_keys": "./node_modules/.bin/web-push generate-vapid-keys"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chart.js": "^2.8.0",
"dotenv": "^4.0.0",
"express": "~4.16.1",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.0",
"express-validator": "^5.3.1",
"morgan": "~1.9.1",
"mysql2": "^1.6.5",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"sequelize": "^5.8.6",
"sequelize-cli": "^5.4.0",
"serve-favicon": "^2.5.0",
"web-push": "^3.3.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"commander": "^2.20.0",
"concurrently": "^4.1.0",
"debug": "~2.6.9",
"eslint": "^5.16.0",
"faker": "^4.1.0",
"lighthousebot": "git+https://github.com/GoogleChromeLabs/lighthousebot.git",
"mocha": "^6.1.4"
}
}