-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@robotlegsjs/phaser-boilerplate",
"version": "0.0.2",
"description": "Tiny flexible template for writing Phaser games in TypeScript using RobotlegsJS.",
"main": "./src/Game.ts",
"scripts": {
"autoformat": "prettier --config .prettierrc --write src{,/**}/*.ts",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"tslint": "tslint --project tsconfig.json",
"build": "webpack --config config/webpack.config.js --env production --mode production --progress --colors",
"stats": "webpack --config config/webpack.config.js --env production --mode production --profile --json > stats.json",
"start": "webpack-dev-server --config config/webpack.config.js --mode development --host 0.0.0.0",
"build-assets": "node ./scripts/generateAssetsClass.js",
"serve": "npm run serve -p 3000 -s dist"
},
"repository": {
"type": "git",
"url": "[email protected]:RobotlegsJS/RobotlegsJS-Phaser-Boilerplate.git"
},
"keywords": [
"TypeScript",
"RobotlegsJS",
"Phaser",
"Phaser3"
],
"author": "RobotlegsJS",
"contributors": [
"Gnun Ulikhanyan <[email protected]>",
"Tiago Schenkel <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RobotlegsJS/RobotlegsJS-Phaser-Boilerplate/issues"
},
"homepage": "https://github.com/RobotlegsJS/RobotlegsJS-Phaser-Boilerplate#readme",
"dependencies": {
"@koreez/phaser3-ninepatch": "^1.2.1",
"@robotlegsjs/core": "^0.2.1",
"@robotlegsjs/macrobot": "^0.2.1",
"@robotlegsjs/phaser": "^0.4.0",
"@robotlegsjs/signalcommandmap": "^0.2.0",
"@robotlegsjs/signals": "^0.2.0",
"phaser": "^3.14.0",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.3",
"directory-tree": "^2.1.0",
"dotenv": "^6.1.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"expose-loader": "^0.7.5",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.14.3",
"raw-loader": "^0.5.1",
"readdirp": "^2.2.1",
"serve": "^10.0.2",
"shelljs": "^0.8.2",
"ts-loader": "^5.2.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-loader": "^3.6.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.3",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4",
"xml2js": "^0.4.19"
}
}