-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.39 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.39 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ebudget",
"description": "eBudget",
"version": "0.0.160",
"author": "Ryan How",
"homepage": "https://ebudgetapp.com",
"private": true,
"scripts": {
"hard-clean": "rm -r node_modules && rm -r plugins && rm -r platforms && (cd www && rm -r *)",
"cordova-check-plugins": "cordova-check-plugins --update=auto --target=config",
"pull:after": "npm install && npm prune && npm run cordova-check-plugins && rm -r platforms && cordova platform add android && cordova platform add ios && (cd www && rm -r *)",
"clean": "ionic clean",
"version-patch": "npm version patch --no-git-tag-version",
"version": "node scripts/sync-cordova-package-version.js",
"inject-build-info": "node scripts/inject-build-info.js",
"ionic:build:after": "npm run inject-build-info",
"favicon-generate": "node node_modules/cli-real-favicon/real-favicon.js generate faviconDescription.json faviconData.json resources/pwa",
"favicon-inject": "node node_modules/cli-real-favicon/real-favicon.js inject faviconData.json src src/index_pwa.html",
"favicon": "node node_modules/cli-real-favicon/real-favicon.js check-for-update --fail-on-update faviconData.json || npm run favicon-force",
"favicon-force": "npm run favicon-generate && npm run favicon-inject",
"build": "ionic build && npm run inject-build-info",
"ionic-build-ios-adhoc-release": "npm run ionic-login && npm run ionic-package-ios-adhoc-release && npm run ionic-package-download-ios-release",
"build-deploy-pwa-release": "ionic build --prod && npm run inject-build-info && (cd scripts && cmd \"/C package-pwa.bat\")",
"build-deploy-ios-beta": "ionic cordova prepare ios --prod --release && (cd automatic-build && fastlane beta)",
"build-deploy-android-beta": "ionic cordova build android --prod --debug --device",
"release": "npm run version-patch && npm run build-deploy-android-beta && npm run build-deploy-pwa-release && npm run build-deploy-ios-beta"
},
"dependencies": {
"@angular/common": "5.0.5",
"@angular/compiler": "5.0.5",
"@angular/compiler-cli": "5.0.5",
"@angular/core": "5.0.5",
"@angular/forms": "5.0.5",
"@angular/http": "5.0.5",
"@angular/platform-browser": "5.0.5",
"@angular/platform-browser-dynamic": "5.0.5",
"@ionic-native/clipboard": "4.5.2",
"@ionic-native/core": "4.5.2",
"@ionic-native/device": "4.5.2",
"@ionic-native/in-app-browser": "4.5.2",
"@ionic-native/secure-storage": "4.5.2",
"@ionic-native/splash-screen": "4.5.2",
"@ionic-native/sqlite": "4.5.2",
"@ionic-native/status-bar": "4.5.2",
"@types/big.js": "4.0.1",
"@types/clipboard": "1.5.35",
"@types/json-stable-stringify": "1.0.32",
"@types/later": "1.2.4",
"@types/lokijs": "1.2.30",
"big.js": "4.0.1",
"clipboard": "1.7.1",
"cordova-android": "^6.4.0",
"cordova-ios": "4.5.5",
"cordova-plugin-clipboard": "^1.0.0",
"cordova-plugin-device": "^1.1.7",
"cordova-plugin-inappbrowser": "^1.7.2",
"cordova-plugin-ionic-webview": "2.2.0",
"cordova-plugin-ios-non-exempt-encryption": "^1.0.0",
"cordova-plugin-secure-storage": "^2.6.8",
"cordova-plugin-splashscreen": "^4.1.0",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-sqlite-storage": "^2.3.1",
"cronstrue": "1.0.0",
"intl": "1.2.5",
"ionic-angular": "3.9.2",
"ionic-plugin-keyboard": "^2.2.1",
"ionicons": "^3.0.0",
"json-stable-stringify": "1.0.1",
"later": "1.2.0",
"lokijs": "1.5.1",
"moment": "2.20.1",
"rxjs": "5.5.2",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.18"
},
"devDependencies": {
"@ionic/app-scripts": "^3.2.4",
"@ionic/cli": "^6.0.1",
"cli-real-favicon": "0.0.6",
"keycdn": "0.2.0",
"mailgun-js": "0.14.0",
"replace-in-file": "3.1.0",
"typescript": "2.4.2",
"xmlpoke": "0.1.13"
},
"config": {
"ionic_copy": "./copy.config.js"
},
"cordova": {
"plugins": {
"cordova-plugin-clipboard": {},
"cordova-plugin-device": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-whitelist": {},
"cordova-sqlite-storage": {},
"ionic-plugin-keyboard": {},
"cordova-plugin-secure-storage": {},
"cordova-plugin-ios-non-exempt-encryption": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
}
},
"platforms": [
"android",
"ios"
]
}
}