-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
70 lines (70 loc) · 1.83 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
{
"name": "js-perf-dashboard",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:armenzg/js-perf-dashboard.git",
"author": "Armen Zambrano G. <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --cache --ext mjs,jsx,js --format codeframe \".*.js\" src test",
"codecov": "codecov && rm -rf coverage"
},
"lint-staged": {
"*.js[x]": [
"yarn lint"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"@material-ui/core": "^4",
"@material-ui/icons": "^4",
"chart.js": "^2",
"fetch-mock-jest": "^1.5.1",
"lodash.isequal": "^4.5.0",
"node-fetch": "^2.6.1",
"prop-types": "^15",
"query-string": "^6",
"react": "^16",
"react-chartjs-2": "^2",
"react-dom": "^16",
"react-hot-loader": "^4",
"react-loadable": "^5.5.0",
"react-router-dom": "^5",
"typeface-roboto": "^1.0.0"
},
"devDependencies": {
"@neutrinojs/airbnb": "9.0.0",
"@neutrinojs/jest": "9.0.0",
"@neutrinojs/react": "9.0.0",
"@pollyjs/adapter-fetch": "^5.0.0",
"@pollyjs/adapter-node-http": "^5.0.0",
"@pollyjs/core": "^5.0.0",
"@pollyjs/persister-fs": "^5.0.0",
"@testing-library/react": "10.0.6",
"codecov": "3.7.2",
"eslint": "7.20.0",
"fetch-mock": "9.2.2",
"husky": "4.0.10",
"jest": "26.6.3",
"lint-staged": "10.0.10",
"neutrino": "9.0.0",
"raf": "3.4.1",
"setup-polly-jest": "^0.9.1",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
}
}