-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (36 loc) · 1.41 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
{
"name": "gdd325-esbuild-phaser3",
"version": "1.1.2",
"description": "Phaser 3 + ESBuild + ES6 Template Project",
"scripts": {
"audio": "audiosprite --loop freeVertexStudioTrack1 --loop freeVertexStudioTrack2 --output public/assets/audio/gameAudioSprite raw_assets/audio/*.mp3",
"dev": "esbuild src/main.js --serve=3000 --servedir=public --bundle --sourcemap --target=es6 --define:__DEV__=true --outfile=public/bundle.js",
"prod": "esbuild src/main.js --serve=3000 --servedir=public --bundle --minify --target=es6 --define:__DEV__=false --outfile=public/bundle.js",
"build": "esbuild src/main.js --bundle --minify --target=es6 --define:__DEV__=false --outfile=public/bundle.js",
"preinstall": "npx npm-force-resolutions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UWStout/gdd325-esbuild-phaser3.git"
},
"bugs": {
"url": "https://github.com/UWStout/gdd325-esbuild-phaser3/issues"
},
"license": "MIT",
"homepage": "https://github.com/UWStout/gdd325-esbuild-phaser3#readme",
"resolutions": {
"minimist": "^1.2.5",
"underscore": "^1.12.1"
},
"devDependencies": {
"audiosprite": "^0.7.2",
"debounce": "^1.2.1",
"esbuild": "^0.12.25",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"phaser": "^3.55.2"
}
}