forked from lean/phaser-es6-webpack
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·77 lines (77 loc) · 2.68 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
{
"name": "uwstout-gdd325-gamebase",
"version": "2.0.0",
"description": "A base project for making 2D web games used in GDD 325 at UW Stout",
"author": "Seth Berrier <[email protected]>",
"main": "index.html",
"repository": "UWStout/gdd325-web-base",
"scripts": {
"sfx": "audiosprite --loop running --output assets/audio/sounds assets/audio/*.wav",
"dev": "run-s clean dev-cmd",
"prod": "run-s clean prod-cmd",
"deploy": "run-s clean deploy-cmd",
"package": "run-s clean sfx nwjs-cmd package-cmd installer-cmd",
"packagetest": "run-s clean sfx nwjs-cmd packagetest-cmd",
"clean": "del-cli -f dist/* packaged/*",
"dev-cmd": "webpack --config webpack.dev.config.js",
"prod-cmd": "webpack --config webpack.prod.config.js",
"deploy-cmd": "webpack --config webpack.deploy.config.js",
"nwjs-cmd": "cross-env NWJS=true webpack --config webpack.deploy.config.js",
"package-cmd": "babel-node packager.js build",
"installer-cmd": "run-script-os",
"installer-cmd:darwin": "bash buildMacInstaller.sh",
"installer-cmd:win32": "bash buildWinInstaller.sh",
"packagetest-cmd": "run-script-os",
"packagetest-cmd:darwin": "nwbuild -p osx64 -r .",
"packagetest-cmd:win32": "nwbuild -p win64 -r .",
"test": "eslint ./src/**/**.js"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"audiosprite": "^0.7.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cpy-cli": "^2.0.0",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"del-cli": "^2.0.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expose-loader": "^0.7.5",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.1.3",
"nw-builder": "^3.5.7",
"raw-loader": "^3.1.0",
"run-script-os": "^1.0.7",
"webpack": "^4.39.3",
"webpack-command": "^0.5.0"
},
"dependencies": {
"javascript-state-machine": "^3.1.0",
"phaser": "^3.17.0",
"phaser-plugin-debug-draw": "^2.0.1",
"phaser-plugin-game-scale": "^1.3.3",
"phaser-plugin-update": "^2.0.2"
},
"window": {
"title": "GDD 325 Example Game",
"icon": "./assets/images/icon.png",
"toolbar": false,
"frame": true,
"fullscreen": false
}
}