-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.13 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
{
"name": "295",
"version": "0.0.1",
"description": "Game created with Phaser3 cli",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"dev-android": "webpack-dev-server --mode development --open --env.android",
"build": "webpack --mode production",
"build-install-android": "webpack --mode production --env.android",
"build-android": "webpack --mode production --env.android && npx cap copy android && npx cap open android",
"build-ios": "webpack --mode production --env.ios && npx cap copy ios && npx cap open ios",
"build-electron": "webpack --mode production --env.electron && npx cap copy electron"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"copy-webpack-plugin": "^5.0.3",
"expose-loader": "^0.7.5",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.0.1",
"tslint": "^5.16.0",
"typescript": "^3.6.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {}
}