forked from mozilla/firefox-health-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "platform-health-dashboard",
"version": "0.0.1",
"description": "Project Platform Health",
"main": "build/index.js",
"scripts": {
"watch:src": "supervisor -q -w src server.js",
"watch:test": "NODE_ENV=testing mocha --watch",
"test:src": "nyc neutrino test",
"test:lint": "neutrino lint",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf dist",
"test": "npm-run-all --parallel test:*",
"watch": "npm-run-all --parallel watch:*",
"build": "neutrino build",
"start": "neutrino start",
"start:prod": "neutrino build && node .",
"start:debugger": "neutrino build && node --inspect .",
"precommit": "lint-staged",
"heroku-postbuild": "npm run build"
},
"lint-staged": {
"*.js": [
"neutrino lint"
]
},
"author": "Harald Kirschner <npm@digitarald.com> (http://digitarald.de/)",
"license": "MPL-2.0",
"dependencies": {
"browserslist": "^2.2.2",
"caniuse-db": "^1.0.30000712",
"cheerio": "^1.0.0-rc.2",
"chrono-node": "^1.3.5",
"dotenv": "^4.0.0",
"googleapis": "^27.0.0",
"ical-with-secure-request": "^0.6.0",
"json2csv": "^3.11.0",
"koa": "^2.3.0",
"koa-cors": "0.0.16",
"koa-logger": "^2.0.1",
"koa-response-time": "^2.0.0",
"koa-router": "^7.2.1",
"lodash": "^4.17.2",
"moment": "^2.19.3",
"node-fetch": "^1.7.1",
"npm-run-all": "^4.0.2",
"qs": "^6.5.0",
"query-string": "^5.0.1",
"redis": "^2.7.0",
"redis-commands": "^1.3.1",
"simple-statistics": "^5.2.0",
"then-redis": "^2.0.1"
},
"devDependencies": {
"@neutrinojs/airbnb-base": "^8.0.18",
"@neutrinojs/mocha": "^8.0.18",
"@neutrinojs/node": "^8.0.18",
"coveralls": "^3.0.0",
"eslint-plugin-babel": "^4.1.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha-lcov-reporter": "^1.3.0",
"neutrino": "^8.0.18",
"nyc": "^11.1.0",
"source-map-support": "^0.5.3",
"supertest": "^3.0.0",
"webpack": "^3.10.0"
}
}