-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 KB
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
{
"name": "react-data-visualization",
"version": "0.1.0",
"dependencies": {
"axios": "^0.18.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highcharts": "^16.0.2",
"react-redux": "^7.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "3.0.1",
"react-spinners-kit": "^1.9.0",
"react-toastify": "^4.5.2",
"reactotron-react-js": "^3.0.1",
"reactotron-redux": "^3.1.0",
"reactotron-redux-saga": "^4.2.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.2",
"styled-components": "^4.3.2"
},
"devDependencies": {
"axios-mock-adapter": "^1.16.0",
"coveralls": "^2.13.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"redux-mock-store": "^1.5.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"coveralls": "yarn test --coverage --watchAll=false --coverageReporters=text-lcov | coveralls"
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.js",
"src/pages/**/*.js",
"src/store/**/*.js",
"!src/store/**/index.js"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}