This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
forked from reustle/covid19japan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "covid2019-japan",
"version": "1.0.0",
"main": "server.js",
"engines": {
"node": "10.x"
},
"scripts": {
"build": "npx webpack --config webpack.dev.js",
"build-prod": "npx webpack --config webpack.prod.js",
"watch": "npx webpack --watch --config webpack.dev.js",
"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",
"chart.js": "^2.9.3",
"core-js": "^3.6.4",
"d3": "^5.15.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"tippy.js": "^6.1.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.1",
"eslint": "^6.8.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"terser-webpack-plugin": "^2.3.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.8",
"webpack-dev-middleware": "^3.7.1",
"webpack-merge": "^4.2.2"
}
}