-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "covid-19-dashboard",
"homepage": "https://josiahyeow.github.io/covid-19-dashboard",
"scripts": {
"start": "webpack-dev-server --mode development",
"format": "prettier --write .",
"build": "webpack --mode production",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"copy-webpack-plugin": "^6.0.3",
"novelcovid": "^1.2.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loading-skeleton": "^2.0.1",
"recharts": "^1.8.5",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@svgr/webpack": "^5.3.0",
"babel-loader": "^8.1.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.0.0",
"prettier": "2.0.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}