This repository has been archived by the owner on Apr 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"homepage": "https://firefox-code-coverage.herokuapp.com",
"version": "1.0.0",
"main": "index.jsx",
"author": "Armen Zambrano G. <[email protected]>",
"repository": "[email protected]:mozilla/firefox-code-coverage-frontend.git",
"engines": {
"node": ">=6.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"scripts": {
"build": "neutrino build",
"start": "neutrino start",
"test": "neutrino test",
"lint": "neutrino lint",
"precommit": "lint-staged",
"heroku-postbuild": "neutrino build"
},
"lint-staged": {
"*.js": [
"neutrino lint"
],
"*.jsx": [
"neutrino lint"
]
},
"dependencies": {
"chroma-js": "^1.3.4",
"form-serialize": "^0.7.2",
"localforage": ">=1.0",
"lodash": "^4.17.4",
"mdi-react": "^4.0.0",
"parse-diff": "^0.4.2",
"prop-types": "^15.6.0",
"query-string": "^6.0.0",
"raven-js": "^3.23.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-interval": "^2.0.2",
"react-router-dom": "^4.1.2"
},
"devDependencies": {
"@neutrinojs/airbnb": "8.3.0",
"@neutrinojs/mocha": "8.3.0",
"@neutrinojs/react": "8.3.0",
"babel-cli": "6.26.0",
"babel-preset-flow": "6.23.0",
"eslint": "5.6.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.4.0",
"flow-bin": "0.79.1",
"husky": "0.14.3",
"lint-staged": "7.3.0",
"neutrino": "8.3.0"
}
}