-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "scotland-covid-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": "http://jamiechung.github.io/scotland-covid-dashboard",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"export": "next export && touch out/.nojekyll",
"start": "next start",
"predeploy": "npm run build",
"deploy": "next export && touch out/.nojekyll && gh-pages --dotfiles -d out"
},
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"csvtojson": "^2.0.10",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"next": "^9.3.4",
"node-fetch": "^2.6.0",
"numeral": "^2.0.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"recharts": "^1.8.5",
"seed-color": "^2.0.1",
"typeface-roboto": "0.0.75"
},
"devDependencies": {
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"gh-pages": "^2.2.0",
"json-loader": "^0.5.7",
"react-devtools": "^4.6.0",
"typescript": "^3.8.3"
}
}