-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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": "corona",
"version": "0.1.0",
"private": true,
"dependencies": {
"@researchgate/react-intersection-observer": "^1.3.5",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.1",
"@types/google.analytics": "^0.0.41",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"brain.js": "^2.0.0-beta.2",
"chart.js": "^2.9.4",
"chartjs-plugin-annotation": "^0.5.7",
"clipboard": "^2.0.8",
"csv-parser": "^3.0.0",
"dom-to-image": "^2.6.0",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"mobx": "^6.1.8",
"mobx-react": "^7.1.0",
"moving-averages": "^4.0.6",
"papaparse": "^5.3.0",
"react": "^17.0.2",
"react-chartjs-2": "^2.11.1",
"react-countup": "^4.3.3",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-leaflet": "^3.1.0",
"react-router-dom": "^5.2.0",
"react-router-ga": "^1.2.3",
"react-scripts": "4.0.3",
"react-select": "^4.3.0",
"sass": "^1.32.8",
"toastify-js": "^1.10.0",
"typescript": "~4.2.3",
"use-debounce": "^6.0.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build && cp _redirects build/_redirects",
"test": "jest --verbose ./tests",
"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"
]
},
"devDependencies": {
"@types/clipboard": "^2.0.1",
"@types/dom-to-image": "^2.6.2",
"@types/papaparse": "^5.2.5",
"@types/react-leaflet": "^2.8.1",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^4.0.13",
"husky": "^6.0.0",
"invariant": "^2.2.4",
"levenary": "^1.1.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react-app-rewired": "^2.1.8",
"ts-jest": "^26.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,jsx,css,md}": "prettier --write"
}
}