-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
119 lines (119 loc) · 3.92 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
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
110
111
112
113
114
115
116
117
118
119
{
"name": "simplycashwallet",
"version": "0.0.1",
"author": "simplycash",
"homepage": "http://ionicframework.com/",
"private": true,
"scripts": {
"postinstall": "patch-package",
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"lint": "ionic-app-scripts lint",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve"
},
"dependencies": {
"@angular/common": "5.0.3",
"@angular/compiler": "5.0.3",
"@angular/compiler-cli": "5.0.3",
"@angular/core": "5.0.3",
"@angular/forms": "5.0.3",
"@angular/http": "5.0.3",
"@angular/platform-browser": "5.0.3",
"@angular/platform-browser-dynamic": "5.0.3",
"@ionic-native/app-version": "^4.17.0",
"@ionic-native/camera": "4.3.3",
"@ionic-native/clipboard": "^4.5.3",
"@ionic-native/core": "^4.11.0",
"@ionic-native/fingerprint-aio": "^4.9.0",
"@ionic-native/globalization": "^4.7.0",
"@ionic-native/in-app-browser": "^4.5.3",
"@ionic-native/keyboard": "^4.6.0",
"@ionic-native/local-notifications": "^4.7.0",
"@ionic-native/qr-scanner": "^4.5.3",
"@ionic-native/social-sharing": "^4.5.3",
"@ionic-native/splash-screen": "4.4.0",
"@ionic-native/status-bar": "^4.6.0",
"@ionic/storage": "2.1.3",
"@ngx-translate/core": "8.0.0",
"@ngx-translate/http-loader": "^2.0.0",
"bchaddrjs": "0.3.2",
"bip38": "^2.0.2",
"bn.js": "^4.11.8",
"bs58check": "^2.1.2",
"bsv": "0.27.0",
"buffer": "^5.1.0",
"clipboard-polyfill": "^2.7.0",
"cordova-android": "8.1.0",
"cordova-clipboard": "git+https://github.com/simplycash/cordova-clipboard.git#8a5d31e6f048ef4e15d0b4f3bbd47cf9e3607050",
"cordova-ios": "5.0.1",
"cordova-plugin-add-swift-support": "^2.0.2",
"cordova-plugin-app-version": "0.1.9",
"cordova-plugin-badge": "0.8.8",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-customurlscheme": "4.3.0",
"cordova-plugin-device": "2.0.2",
"cordova-plugin-fingerprint-aio": "^2.0.0",
"cordova-plugin-globalization": "1.11.0",
"cordova-plugin-inappbrowser": "3.0.0",
"cordova-plugin-ionic-keyboard": "2.0.5",
"cordova-plugin-ionic-webview": "1.2.1",
"cordova-plugin-local-notification": "0.9.0-beta.2",
"cordova-plugin-qrscanner": "2.6.1",
"cordova-plugin-splashscreen": "5.0.2",
"cordova-plugin-statusbar": "2.4.2",
"cordova-plugin-whitelist": "1.3.3",
"cordova-plugin-x-socialsharing": "5.4.0",
"cordova-sqlite-storage": "3.2.0",
"crypto-browserify": "^3.12.0",
"es6-promise-plugin": "4.2.2",
"ionic-angular": "3.9.2",
"ionicons": "3.0.0",
"qrcode": "^1.2.0",
"rxjs": "^5.5.11",
"socket.io-client": "^2.0.4",
"sw-toolbox": "3.6.0",
"wif": "^2.0.6",
"zone.js": "0.8.18"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@ionic/app-scripts": "3.2.3",
"babel-loader": "8.0.6",
"patch-package": "^6.1.2",
"typescript": "2.4.2"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-qrscanner": {},
"cordova-plugin-x-socialsharing": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-globalization": {},
"cordova-plugin-app-version": {},
"cordova-clipboard": {},
"cordova-sqlite-storage": {},
"cordova-plugin-customurlscheme": {
"URL_SCHEME": "bitcoin",
"ANDROID_SCHEME": " ",
"ANDROID_HOST": " ",
"ANDROID_PATHPREFIX": "/"
},
"cordova-plugin-local-notification": {},
"cordova-plugin-add-swift-support": {},
"cordova-plugin-fingerprint-aio": {
"FACEID_USAGE_DESCRIPTION": " "
}
},
"platforms": [
"android",
"ios"
]
}
}