-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "corona-tracker",
"version": "1.2.9",
"homepage": ".",
"private": true,
"prettier": "@blockstack/prettier-config",
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
},
"dependencies": {
"@babel/core": "^7.9.0",
"@blockstack/connect": "^2.3.1",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@testing-library/user-event": "^10.0.0",
"axios": "^0.19.2",
"blockstack": "^19.3.0",
"chart.js": "^2.9.3",
"clsx": "^1.1.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint-import-resolver-typescript": "^2.0.0",
"expect": "^25.2.4",
"i18next": "^19.3.4",
"i18next-browser-languagedetector": "^4.0.2",
"i18next-xhr-backend": "^3.2.2",
"jest": "24.9.0",
"jest-enzyme": "7.1.0",
"mapbox-gl": "^1.9.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"radiks": "^0.2.2-beta.1",
"react": "^16.13.0",
"react-app-rewired": "^2.1.5",
"react-blockstack": "^0.6.7",
"react-bootstrap": "^1.0.0-beta.17",
"react-calendar": "^3.0.0",
"react-charts": "^2.0.0-beta.6",
"react-dom": "^16.13.0",
"react-export-excel": "^0.5.3",
"react-i18next": "^11.3.4",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-share": "^4.1.0",
"react-spring": "^9.0.0-canary.808.11.4be2ac3",
"react-test-renderer": "16.9.0",
"react-use-gesture": "^7.0.0-beta.1",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-mock-store": "1.5.3",
"redux-thunk": "^2.3.0"
},
"resolutions": {
"@babel/preset-env": "^7.8.7"
},
"devDependencies": {
"@babel/compat-data": "~7.8.0",
"@blockstack/prettier-config": "0.0.5",
"babel-jest": "^24.9.0",
"canvas": "^2.6.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-custom-alias": "^1.2.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"husky": "^4.2.3",
"parcel-bundler": "^1.6.1",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"lint": "eslint src --ext .js,.jsx --fix"
},
"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"
]
}
}