-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "covid-19",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "NEXT_EXPORT=true next build && NEXT_EXPORT=true next export",
"type-check": "tsc",
"format": "prettier --write ./**/*.{js,jsx,ts,tsx}",
"lint": "eslint ./**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "yarn lint --fix"
},
"lint-staged": {
"*.{html,md,mdx,ts,tsx,js,jsx,json}": [
"yarn format",
"yarn lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@next/bundle-analyzer": "^9.5.3",
"@theme-ui/presets": "^0.3.0",
"@zeit/next-css": "^1.0.1",
"chart.js": "^2.9.3",
"leaflet": "^1.6.0",
"next": "9.5.2",
"next-offline": "^5.0.2",
"next-seo": "^4.7.3",
"numeral": "^2.0.6",
"react": "16.13.1",
"react-a11y-select": "^1.0.4",
"react-chartjs-2": "^2.10.0",
"react-dom": "16.13.1",
"react-lazy-load-image-component": "^1.5.0",
"react-leaflet": "^2.7.0",
"swr": "^0.3.0",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"@types/gtag.js": "^0.0.3",
"@types/node": "^14.6.0",
"@types/numeral": "^0.0.28",
"@types/react": "^16.9.46",
"@types/react-leaflet": "^2.5.2",
"@types/theme-ui": "^0.3.6",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"css-loader": "^4.2.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"file-loader": "^6.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"typescript": "^3.9.7",
"url-loader": "^4.1.0"
},
"license": "ISC"
}