This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
87 lines (87 loc) · 2.56 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "platform-health-dashboard",
"version": "0.0.1",
"description": "Project Platform Health",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --disable-host-check",
"start:local": "BACKEND=http://localhost:3000 webpack-dev-server --mode development",
"test": "jest",
"lint": "eslint --cache --ext mjs,jsx,js --format codeframe \".*.js\" src test",
"coverage": "nyc --all jest --collectCoverage",
"codecov": "rm -rf .nyc_output/ && yarn coverage && nyc report --reporter=text-lcov && codecov",
"heroku-postbuild": "yarn build"
},
"nyc": {
"include": [
"src/**"
],
"extension": [
".jsx"
]
},
"lint-staged": {
"*.js[x]": [
"yarn lint"
]
},
"author": "Harald Kirschner <[email protected]> (http://digitarald.de/)",
"license": "MPL-2.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.0.0",
"@material-ui/lab": "^3.0.0-alpha.30",
"@mozilla-frontend-infra/components": "^3.0.0",
"aggregatejs": "^0.0.5",
"chart.js": "chartjs/Chart.js#7c3e934",
"classnames": "^2.2.5",
"d3": "^5.0.0",
"jest-extended": "^0.11.2",
"lodash": "^4.17.12",
"metrics-graphics": "^2.10.1",
"moment": "^2.19.3",
"prop-types": "^15.6.2",
"qrcode.react": "^1.0.0",
"query-string": "^6.0.0",
"raven-js": "^3.26.2",
"react": "^16.6.3",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.6",
"react-metrics-graphics": "^1.0.2",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-simple-tooltip": "^2.6.0",
"typeface-roboto": "^0.0.75"
},
"devDependencies": {
"@mozilla-frontend-infra/react-lint": "^2.0.0",
"@neutrinojs/airbnb": "^9.1.0",
"@neutrinojs/copy": "^9.1.0",
"@neutrinojs/jest": "^9.1.0",
"@neutrinojs/react": "^9.1.0",
"chai": "^4.1.2",
"codecov": "^3.6.5",
"eslint": "5.16.0",
"husky": "^3.0.0",
"jest": "^25.0.0",
"lint-staged": "^9.0.0",
"neutrino": "^9.1.0",
"nyc": "^11.6.0",
"react-test-renderer": "^16.5.2",
"webpack": "^4",
"webpack-cli": "^3",
"webpack-dev-server": "^3"
},
"main": "index.js",
"repository": "[email protected]:mozilla/firefox-health-dashboard.git",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint --fix && yarn test"
}
}
}