-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "phaser3-project-template-3",
"version": "1.0.0",
"description": "A Phaser 3 Project Template",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"start": "npm run build && webpack-dev-server --port=8000",
"heroku-postbuild": "npm run build",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/creativerendering/phaser3-template.git"
},
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/photonstorm/phaser3-project-template/issues"
},
"homepage": "https://github.com/photonstorm/phaser3-project-template#readme",
"dependencies": {
"phaser": "^3.3.0",
"webpack": "^3.4.1"
},
"devDependencies": {
"@babel/preset-env": "^7.8.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"raw-loader": "^0.5.1",
"webpack-dev-server": "^2.11.0"
},
"eslintIgnore": [
"build/project.bundle.js",
"src/phaser.min.js",
"webpack/base.js",
"webpack/prod.js"
]
}