-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 890 Bytes
/
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
{
"name": "phaser3-boilerplate",
"version": "0.0.5",
"description": "phaser3 game boilerplate",
"main": "./src/main.js",
"scripts": {
"copy-libs": "mkdir ./dist/lib && cp -R ./node_modules/phaser/dist/phaser.js ./node_modules/phaser3-rex-plugins/dist ./dist/lib",
"copy-libs-win": "mkdir .\\dist\\lib | robocopy /S .\\node_modules\\phaser\\dist\\phaser.js .\\dist\\lib > nul | robocopy /S .\\node_modules\\phaser3-rex-plugins\\dist .\\dist\\lib > nul",
"start": "webpack serve --https --mode=development",
"build-dev": "webpack --mode=development",
"build-prod": "webpack --mode=production"
},
"author": "Arturas-Alfredas Lapinskas",
"license": "MIT",
"dependencies": {
"phaser": "3.55.2",
"phaser3-rex-plugins": "1.1.75"
},
"devDependencies": {
"webpack": "5.76.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.7.4"
}
}