-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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-esbuild",
"description": "A Phaser 3 template using esbuild.",
"version": "1.1.1",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "node esbuild/dev.server.js -w",
"build": "node esbuild/build.prod.js"
},
"author": "Phaser Studio <[email protected]> (https://phaser.io/)",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-esbuild.git"
},
"bugs": {
"url": "https://github.com/phaserjs/template-esbuild/issues"
},
"homepage": "https://github.com/phaserjs/template-esbuild#readme",
"license": "MIT",
"dependencies": {
"phaser": "^3.80.1",
"phaser3-rex-plugins": "^1.80.2"
},
"devDependencies": {
"@jgoz/esbuild-plugin-livereload": "^2.0.4",
"esbuild": "^0.20.1",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-serve": "^1.0.1"
}
}