-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (31 loc) · 1.24 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
{
"name": "template",
"version": "1.0.0",
"description": "cool game",
"main": "webpack.config.js",
"scripts": {
"dev": "esbuild src/main.ts --serve=3000 --servedir=public --bundle --sourcemap --target=es6 --define:__DEV__=true --outfile=public/main.js",
"prod": "esbuild src/main.ts --serve=3000 --servedir=public --bundle --minify --target=es6 --define:__DEV__=false --outfile=public/main.js",
"build": "esbuild src/main.ts --bundle --minify --target=es6 --define:__DEV__=false --outfile=public/main.js",
"editor": "phasereditor2d-launcher -project . -port 1959",
"editor-remote": "phasereditor2d-launcher -project . -disable-open-browser -public -port 1959"
},
"author": "Phaser Editor 2D <[email protected]> (https://phasereditor2d.com/)",
"license": "MIT",
"dependencies": {
"phaser": "^3.70.0"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.0",
"html-webpack-plugin": "^5.3.1",
"phaser-asset-pack-hashing": "^1.0.5",
"phasereditor2d-launcher": "^3.32.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-clean-plugin": "^0.2.3",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}