forked from kukai-wallet/kukai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 5.18 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
120
{
"name": "kukai",
"version": "2.1.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --open --watch",
"start:https": "ng build --watch && http-server -S -C RootCA.pem -K RootCA.key -p 3000 -c-1 dist",
"build-prod": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --configuration production",
"build-dev": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --configuration development",
"test": "ng test",
"lint": "npx eslint --ext .js,.ts src/",
"e2e": "ng e2e",
"postinstall": "node patch.js",
"stage-ghpages-mainnet": "ng lint --fix && ng build --prod && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/wallet.git\" --branch staging --cname=wallet.kukai.app",
"stage-ghpages-testnet": "ng lint --fix && ng build && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/testnet.git\" --branch staging --cname=testnet.kukai.app",
"deploy-granadanet-version": "npm run build-dev && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/granadanet.git\" --branch main --cname=granadanet.kukai.app",
"deploy-hangzhounet-version": "npm run build-dev && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/hangzhounet.git\" --branch main --cname=hangzhounet.kukai.app",
"deploy-preview-version": "ng lint --fix && npm run build-dev && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/preview.git\" --branch master --cname=preview.kukai.app",
"deploy-experimental-version": "ng lint --fix && npm run build-dev && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/experimental.git\" --branch master --cname=experimental.kukai.app",
"deploy-ichabod-version": "npm run build-dev && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/ichabod-dev.git\" --branch main --cname=ichabod-dev.kukai.app",
"deploy-beta-version": "ng lint --fix && ng build --prod && angular-cli-ghpages --repo \"[email protected]:kukai-wallet/beta.git\" --branch master --cname=beta.kukai.app"
},
"private": true,
"dependencies": {
"@airgap/beacon-sdk": "^2.3.8",
"@angular/animations": "^11.2.14",
"@angular/cdk": "^9.2.0",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@bitauth/libauth": "^1.17.2",
"@ledgerhq/hw-transport-u2f": "^5.19.0",
"@ledgerhq/hw-transport-webhid": "^5.51.1",
"@microsoft/signalr": "^5.0.9",
"@ngx-translate/core": "11.0.1",
"@ngx-translate/http-loader": "4.0.0",
"@obsidiansystems/hw-app-xtz": "^4.72.3",
"@taquito/local-forging": "11.0.1",
"@taquito/michel-codec": "11.0.1",
"@taquito/rpc": "11.0.1",
"@taquito/taquito": "11.0.1",
"@taquito/tzip12": "11.0.1",
"@taquito/tzip16": "11.0.1",
"@tezos-core-tools/crypto-utils": "0.0.7",
"@tezos-domains/core": "^1.9.0",
"@tezos-domains/taquito-client": "^1.9.0",
"@toruslabs/fetch-node-details": "^4.0.1",
"customauth": "git://github.com/kukai-wallet/CustomAuth.git#fc707c769797569107e9ea73ad63d7559635a1b3",
"@toruslabs/torus.js": "^4.2.0",
"@types/w3c-web-hid": "^1.0.2",
"aes-js": "^3.1.2",
"big.js": "^5.2.2",
"bip39": "^3.0.2",
"blurhash": "^1.1.3",
"bs58check": "^2.1.2",
"buffer": "^5.4.0",
"copy-to-clipboard": "^3.2.0",
"core-js": "^3.2.1",
"crypto-browserify": "^3.12.0",
"elliptic": "^6.5.4",
"file-saver": "^2.0.2",
"lodash.isequal": "^4.5",
"mime-db": "^1.49.0",
"mutationobserver-shim": "^0.3.5",
"node-forge": ">=0.10.0",
"pbkdf2": "^3.0.17",
"qr-scanner": "^1.2.0",
"qrcode": "^1.4.1",
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.2",
"scryptsy": "^2.1.0",
"timediff": "^1.1.1",
"ts-helpers": "^1.1.2",
"tslib": "^2.0.0",
"tweetnacl": "^1.0.3",
"web-animations-js": "^2.3.2",
"xmlhttprequest": "^1.8.0",
"zone.js": "~0.10.3",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1100.7",
"@angular-eslint/builder": "^2.0.0",
"@angular-eslint/eslint-plugin": "^2.0.0",
"@angular-eslint/eslint-plugin-template": "^12.2.0",
"@angular-eslint/template-parser": "^2.0.0",
"@angular/cli": "^11.2.14",
"@angular/compiler-cli": "^11.2.14",
"@angular/language-service": "^11.2.14",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"angular-cli-ghpages": "^0.6.2",
"babel-polyfill": "^6.26.0",
"cloc": "^2.5.0",
"codecov": "^3.7.1",
"codelyzer": "^6.0.0",
"eslint": "^7.30.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-mocha-reporter": "^2.2.5",
"kukai-embed": "0.7.1-beta.1",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.5"
}
}