-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.42 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
{
"name": "sg-covid",
"version": "1.0.0",
"description": "Data visualization for Singapore related COVID-19 cases",
"author": "huasheng",
"license": "MIT",
"repository": "huashengwang1989/sg-covid",
"homepage": "./",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"prepare": "yarn run build",
"predeploy": "yarn install && yarn run build",
"deploy": "cd build && git init && git add . && git commit -m \"Deploy commit\" && git remote add origin [email protected]:huashengwang1989/sg-covid-19-cluster.git && git push --force origin master:gh-pages"
},
"dependencies": {
"@ant-design/icons": "^4.0.5",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@types/chart.js": "^2.9.19",
"@types/color": "^3.0.1",
"@types/mapbox-gl": "^1.9.0",
"@types/react-dom": "^16.9.5",
"antd": "^4.1.1",
"chart.js": "^2.9.3",
"chartjs-plugin-datalabels": "^0.7.0",
"circle-to-polygon": "^2.0.1",
"color": "^3.1.2",
"dayjs": "^1.8.24",
"html2canvas": "^1.0.0-rc.5",
"jshint": "^2.11.0",
"maki": "^2.1.0",
"mapbox-gl": "^1.9.1",
"node-sass": "^4.13.1",
"react-chartjs-2": "^2.9.0"
},
"peerDependencies": {
"react": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/runtime": "^7.3.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^23.3.13",
"@types/react": "^16.7.22",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"react": "^16.9.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.0.1",
"react-test-renderer": "^16.9.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-url": "^2.1.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}