-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
45
46
47
48
49
{
"name": "phaser3-game-template",
"version": "1.0.0",
"description": "Phaser3 game template",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack/webpack.prod.js ",
"start": "webpack-dev-server --config webpack/webpack.dev.js --open",
"deploy": "yarn build && gh-pages -d dist"
},
"repository": "https://github.com/rishabhsingh971/phasor-game-template.git",
"author": "Rishabh Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/rishabhsingh971/phasor-game-template/issues"
},
"homepage": "https://github.com/rishabhsingh971/phasor-game-template#readme",
"eslintIgnore": [
"webpack.common.js",
"webpack.dev.js",
"webpack.prod.js"
],
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.2.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^3.1.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"phaser": "^3.20.1"
}
}