-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "covid-game",
"version": "0.1.0",
"description": "Intuitive visualisation and understanding of how different countermeasures affect the spread of coronavirus. Interactive JS of underlying SEIR model.",
"main": "index.html",
"scripts": {
"build": "npx webpack",
"watch": "npx webpack --watch",
"model": "node -r esm src/game-engine.js",
"scenario": "node -r esm src/state-handling.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FHell/COVID-Game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FHell/COVID-Game/issues"
},
"homepage": "https://fhell.github.io/COVID-Game/",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.2",
"esm": "^3.2.25",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.1.0",
"mini-css-extract-plugin": "^1.3.6",
"node-sass": "^5.0.0",
"sass-loader": "^11.0.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}