-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.24 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": "covid19-simulation",
"version": "1.0.0",
"description": "Covid19 Vaccination Simulation: Analyzing the effect of vaccination and herd immunity",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiseungjung/covid19-simulation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jiseungjung/covid19-simulation/issues"
},
"homepage": "https://github.com/jiseungjung/covid19-simulation#readme",
"devDependencies": {
"clean-webpack-plugin": "*",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.38.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"chart.js": "^3.4.1",
"pixi.js": "^6.0.4",
"sanitize.css": "^12.0.1",
"stats.js": "^0.17.0"
}
}