-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
{
"name": "covid2019",
"version": "0.1.0",
"private": true,
"dependencies": {
"@devexpress/dx-react-core": "^2.5.1",
"@devexpress/dx-react-grid": "^2.5.1",
"@devexpress/dx-react-grid-material-ui": "^2.6.0",
"@material-ui/core": "^3.9.4",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"d3-interpolate": "^1.4.0",
"d3-scale": "^3.2.1",
"devextreme": "^19.2.7",
"devextreme-react": "^19.2.7",
"dotenv": "^8.2.0",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.4.1",
"jss": "^9.8.7",
"material-ui": "^0.20.2",
"mdbreact": "^4.25.4",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^0.32.4",
"react-bootstrap-table-next": "^4.0.0",
"react-bootstrap-table2-editor": "^1.4.0",
"react-bootstrap-table2-filter": "^1.3.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-smart-data-table": "^0.7.4",
"react-scripts": "^3.4.1",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"husky": "^4.2.3",
"prettier": "^2.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"lint-staged": {
"*.{js,css,md,jsx,scss}": "prettier --write"
}
}