-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "io.cordova.phaser.parcel",
"displayName": "CordovaPhaserParcel",
"version": "1.0.0",
"description": "A sample Apache Cordova application with Phaser and Parcel 2 bundler",
"main": "index.js",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"dev": "npx parcel serve src/index.html --host 127.0.0.1 -p 2000 --open",
"build": "node scripts/beforeBuild",
"ios": "cordova emulate ios",
"web": "cordova run browser -- --live-reload",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Michal Zagrodzki",
"license": "Apache-2.0",
"devDependencies": {
"cordova-browser": "^6.0.0",
"cordova-ios": "^6.2.0",
"cordova-plugin-browsersync": "^1.1.0",
"cordova-plugin-whitelist": "^1.3.4",
"parcel": "^2.8.0",
"parcel-bundler": "^1.12.5",
"rimraf": "^3.0.2"
},
"cordova": {
"platforms": [
"browser",
"ios"
],
"plugins": {
"cordova-plugin-browsersync": {},
"cordova-plugin-whitelist": {}
}
},
"dependencies": {
"phaser": "^3.55.2"
}
}