-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.46 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
{
"name": "shamirs-wallet",
"version": "1.3.1",
"author": "Mathias Schütz <[email protected]>",
"homepage": "https://shamirswallet.com/",
"license": "MIT",
"description": "A crypto wallet based on shamirs secrets sharing algorithm",
"scripts": {
"ng": "ng",
"start": "ionic serve",
"build:ios": "ionic cordova prepare ios & echo 'After completed open XCode (not BETA!) on your macOS and run on your emulator or archive for -Any iOS Device (arm64)-'",
"build:android": "ionic cordova build android --prod --release --stacktrace",
"res": "ionic cordova resources",
"res:android": "ionic cordova resources android",
"res:ios": "ionic cordova resources ios",
"android:device": "ionic cordova run android --device",
"android:device:prod": "ionic cordova run --prod android --device",
"android:release": "ionic cordova build android --prod --release --stacktrace & jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore keystore.jks platforms\\android\\app\\build\\outputs\\apk\\release\\app-release-unsigned.apk shamirswallet & del shamirswallet.apk & \"C:\\Entwicklung\\ANDROIDSDK\\build-tools\\29.0.2\\zipalign.exe\" -v 4 platforms\\android\\app\\build\\outputs\\apk\\release\\app-release-unsigned.apk shamirswallet.apk & \"C:\\Entwicklung\\ANDROIDSDK\\build-tools\\29.0.2\\apksigner.bat\" verify shamirswallet.apk"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.12",
"@angular/common": "~9.1.12",
"@angular/core": "~9.1.12",
"@angular/forms": "~9.1.12",
"@angular/platform-browser": "~9.1.12",
"@angular/platform-browser-dynamic": "~9.1.12",
"@angular/router": "~9.1.12",
"@capacitor/cli": "^1.5.3",
"@capacitor/core": "^1.5.3",
"@ionic-native/core": "^5.30.0",
"@ionic-native/network": "^5.30.0",
"@ionic-native/nfc": "^5.30.0",
"@ionic-native/splash-screen": "^5.30.0",
"@ionic-native/status-bar": "^5.30.0",
"@ionic/angular": "^5.5.1",
"@ngx-translate/core": "^12.1.2",
"@ngx-translate/http-loader": "^4.0.0",
"cordova-android": "^8.1.0",
"core-js": "^2.6.12",
"phonegap-nfc": "^1.2.0",
"requirejs": "^2.3.6",
"rxjs": "^6.6.3",
"shamirs-secret-sharing-ts": "^1.0.2",
"tslib": "^1.14.1",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.12",
"@angular/cli": "^9.1.12",
"@angular/compiler": "~9.1.12",
"@angular/compiler-cli": "~9.1.12",
"@angular/language-service": "~9.1.12",
"@ionic/angular-toolkit": "^2.3.3",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^14.14.10",
"codelyzer": "^5.2.2",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^4.2.1",
"cordova-plugin-splashscreen": "^5.0.4",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.4",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"protractor": "^7.0.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.8.3"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-ionic-keyboard": {},
"phonegap-nfc": {}
},
"platforms": [
"android"
]
}
}