-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "haus-inventur",
"version": "1.0.0",
"description": "Gruppenspiel, bei dem schnell Dinge aus dem Haushalt gefunden werden müssen",
"main": "index.js",
"scripts": {
"build": "webpack -d",
"deploy": "webpack -p",
"develop": "npm-run-all --parallel watch server",
"export": "npm-run-all --sequential deploy zip",
"postinstall": "npm-run-all setup",
"server": "http-server ./ -o --utc -a localhost --port 8080",
"setup": "node ./bin/setup.js",
"start": "npm-run-all --sequential build develop",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack -d --watch",
"zip": "node ./bin/export.js"
},
"author": "Artur Weigandt",
"license": "GPL-3.0-or-later",
"devDependencies": {
"archiver": "^3.1.1",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"http-server": "^0.12.3",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.4.5",
"npm-run-all": "^4.1.5",
"prompt": "^1.0.0",
"reveal.js": "^3.9.2",
"url-loader": "^1.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}