-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "siege-wars",
"version": "0.1.0",
"description": "A medieval turn based tactical game.",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/prod.js ",
"start": "webpack-dev-server --config webpack/base.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raaaahman/siege-wars.git"
},
"author": "Sylvain Schellenberger <sylvain@devindetails.com> (https://www.devindetails.com)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/raaaahman/siege-wars/issues"
},
"homepage": "https://github.com/raaaahman/siege-wars#readme",
"devDependencies": {
"@babel/core": "^7.*",
"@babel/preset-env": "^7.*",
"babel-loader": "^8.*",
"clean-webpack-plugin": "^3.*",
"file-loader": "^4.*",
"html-webpack-plugin": "^3.*",
"raw-loader": "^3.*",
"terser-webpack-plugin": "^2.*",
"webpack": "^4.*",
"webpack-cli": "^3.*",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.*"
},
"dependencies": {
"phaser": "^3.*"
}
}