-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "prereq-check",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "tape tests/*.js | tap-spec",
"devStart": "nodemon -e scss,js -x \"npm run build-css && node bin/www\"",
"start": "node ./bin/www",
"build-css": "node-sass --include-path scss scss/main.scss public/main.css",
"postinstall": "npm run build-css",
"coverage": "istanbul cover tape tests/*.js",
"nyc": "nyc npm test && nyc report --reporter=html && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
"body-parser": "~1.17.1",
"codecov": "^2.3.0",
"cookie-parser": "~1.4.3",
"cookie-session": "^1.3.1",
"debug": "~2.6.3",
"env2": "^2.2.0",
"express": "~4.15.2",
"express-handlebars": "^3.0.0",
"github-calendar": "^1.1.12",
"google-spreadsheet": "^2.0.4",
"hbs": "~4.0.1",
"humanize-url": "^1.0.1",
"morgan": "~1.8.1",
"node-sass": "^4.5.3",
"normalize-url": "^1.9.1",
"pg": "^7.3.0",
"pg-promise": "^6.5.1",
"prepend-http": "^2.0.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.5",
"nock": "^9.0.14",
"nodemon": "^1.12.0",
"nyc": "^11.2.1",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}