This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "covid_19_dashboard",
"homepage": "https://covid19.epublab.net",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"axios": "^0.27.2",
"chinese-conv": "^1.0.1",
"concurrently": "^7.1.0",
"d3": "^6.7.0",
"d3-area-label": "^1.5.0",
"d3-delaunay": "^6.0.2",
"express": "^4.17.1",
"gh-pages": "^4.0.0",
"papaparse": "^5.3.2",
"postcss-normalize": "^10.0.1",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-select": "^5.4.0",
"topojson": "^3.0.2"
},
"scripts": {
"predeploy": "yarn run build",
"deploy": "echo 'covid19.epublab.net' > ./build/CNAME && gh-pages -d build",
"server": "env DEBUG=log PORT=5002 node server.js",
"client": "react-scripts start",
"build": "rm -rf build && react-scripts build",
"test": "react-scripts test",
"start": "NODE_ENV=production node server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"iOS 9"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"iOS 9"
]
},
"devDependencies": {
"pulltorefreshjs": "^0.1.20"
}
}