-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
80 lines (80 loc) · 2.38 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
{
"name": "covid2019-japan",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build": "npx webpack --config webpack.dev.js",
"build-prod": "npx webpack --config webpack.prod.js",
"watch": "npx webpack --watch --config webpack.dev.js --progress --display minimal",
"start": "node server.js",
"start-webpack": "node server.webpack.js",
"deploy-firebase": "npx webpack --config webpack.prod.js && firebase deploy"
},
"dependencies": {
"@babel/core": "^7.7.7",
"c3": "^0.7.15",
"classlist-polyfill": "^1.2.0",
"core-js": "^3.6.4",
"custom-event-polyfill": "^1.0.7",
"d3": "^5.15.0",
"date-fns": "^2.11.1",
"express": "^4.17.1",
"i18n-iso-countries": "^5.5.0",
"i18next": "^19.3.4",
"i18next-browser-languagedetector": "^4.0.2",
"loc-i18next": "^0.1.4",
"prop-types": "^15.7.2",
"quickelement": "^1.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.0",
"react-select": "^4.3.0",
"tippy.js": "^6.1.0",
"twemoji": "^12.1.5",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.0.5",
"babel-plugin-date-fns": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.2",
"sass": "^1.34.0",
"sass-loader": "^8.0.0",
"simplify-geojson": "^1.0.3",
"source-map-explorer": "^2.4.2",
"style-loader": "^1.1.2",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.1",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json}": "prettier --write"
}
}