-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 734 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 734 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
26
27
28
{
"name": "phaser-tbs",
"version": "1.0.0",
"description": "Turn Based Strategy",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server -d --inline --hot --progress --no-info --port 9000",
"build": "rimraf ./dist && webpack -p"
},
"author": "Matt Gold",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^3.0.1",
"expose-loader": "^0.7.1",
"html-webpack-plugin": "^2.22.0",
"phaser": "^2.6.2",
"phaser-plugin-isometric": "^0.9.2",
"rimraf": "^2.5.4",
"ts-loader": "^0.8.2",
"typescript": "^2.0.3",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"inversify": "^3.3.0",
"reflect-metadata": "^0.1.10"
}
}