-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "next-covid-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:mock": "MOCK=true next dev",
"build": "next build",
"start": "next start",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages",
"tslint": "tslint -p . -c tslint.json"
},
"dependencies": {
"@ant-design/icons": "^4.1.0",
"antd": "^4.2.4",
"axios": "^0.19.2",
"chart.js": "^2.9.3",
"d3-geo": "^1.12.0",
"next": "9.4.0",
"react": "16.13.1",
"react-chartjs-2": "^2.9.0",
"react-circular-progressbar": "^2.0.3",
"react-country-flag": "^2.1.0",
"react-dom": "16.13.1",
"react-scroll": "^1.7.16",
"react-simple-maps": "^2.0.0",
"react-tooltip": "^4.2.6",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@types/chart.js": "^2.9.21",
"@types/node": "^13.13.5",
"@types/react": "^16.9.34",
"@types/react-scroll": "^1.5.5",
"@types/react-simple-maps": "^1.0.2",
"@types/styled-components": "^5.1.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.7",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-react-hooks": "^2.2.2",
"typescript": "^3.8.3"
}
}