-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "myApp",
"version": "0.0.1",
"author": "EOS Blox",
"homepage": "https://eosblox.com/",
"private": true,
"description": "EOS Blox IOS Starter Kit",
"license": "MIT",
"repository": "EOSBlox/ios-starter-kit",
"scripts": {
"lint": "polymer lint",
"emulate": "cordova emulate ios",
"serve": "polymer serve",
"build": "npm run www && polymer build && npm run move && cordova build ios",
"www": "if [ -d 'www/' ]; then rm -Rf www/; fi && mkdir www/",
"move": "mv ./build/es6-bundled/* ./www/ && npm run rmbuild",
"rmbuild": "if [ -d 'build/' ]; then rm -Rf build/; fi"
},
"dependencies": {
"@polymer/app-layout": "^3.0.0-pre.15",
"@polymer/app-route": "^3.0.0-pre.15",
"@polymer/iron-flex-layout": "^3.0.0-pre.15",
"@polymer/iron-iconset-svg": "^3.0.0-pre.15",
"@polymer/iron-media-query": "^3.0.0-pre.15",
"@polymer/iron-pages": "^3.0.0-pre.15",
"@polymer/iron-selector": "^3.0.0-pre.15",
"@polymer/paper-icon-button": "^3.0.0-pre.15",
"@polymer/polymer": "^3.0.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"blox-settings": "^1.0.1",
"cordova-ios": "^4.5.5",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-ionic-keyboard": "^2.1.2",
"cordova-plugin-ionic-webview": "^2.0.3",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-whitelist": "^1.3.3"
},
"devDependencies": {
"polymer-cli": "^1.7.1",
"wct-browser-legacy": "^1.0.0"
},
"engines": {
"node": ">=8.0"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {}
},
"platforms": [
"ios"
]
}
}