-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 762 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 762 Bytes
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
{
"name": "phaser-typescript-webpack-boilerplate",
"version": "1.0.0",
"description": "Starter boilerplate for an Phaser game",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server -d --inline --progress --no-info --host 0.0.0.0 --port 9000",
"build": "rimraf ./dist && webpack -p"
},
"author": "Eduardo Nunes Pereira (eduardonunesp@gmail.com)",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^3.0.1",
"expose-loader": "^0.7.4",
"html-webpack-plugin": "^2.30.1",
"phaser": "^2.6.2",
"rimraf": "^2.6.2",
"ts-loader": "^0.8.2",
"typescript": "^2.7.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^1.16.5",
"phaser-ce": "^2.11.1",
"webfontloader": "^1.6.28"
}
}