-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.47 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
{
"name": "zombies",
"version": "0.0.8",
"description": "browser zombie post-apocalyptic game",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/.bin/webpack-dev-server --open --watch --progress --display-error-details",
"start:prod": "node_modules/.bin/cross-env WS_URL=wss://zombieapocalypse.world/conn webpack-dev-server --open --watch --config webpack.prod.config.js --progress --display-error-details",
"build": "node_modules/.bin/webpack --progress --display-error-details",
"build:prod": "node_modules/.bin/cross-env WS_URL=wss://zombieapocalypse.world/conn webpack --config webpack.prod.config.js --progress --display-error-details"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-zombie-apocalypse/the-zombie-apocalypse.github.io.git"
},
"author": "Serhii Maksymchuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-zombie-apocalypse/the-zombie-apocalypse.github.io/issues"
},
"homepage": "https://the-zombie-apocalypse.github.io",
"dependencies": {
"cross-env": "^5.2.1",
"jquery": "^3.5.0",
"sweetalert": "^2.1.2",
"three": "^0.115.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack-dev-server": "^3.10.3"
}
}