forked from airgap-it/airgap-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
179 lines (179 loc) · 6.62 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "airgap-wallet",
"version": "0.0.1",
"author": "Papers GmbH <[email protected]> (https://papers.ch)",
"homepage": "https://www.airgap.it",
"private": true,
"scripts": {
"ng": "ng",
"serve": "ionic serve --external",
"start": "ng serve",
"build": "ng build",
"build:electron": "ng build --base-href=./",
"build:electron:prod": "ng build --base-href=./ --prod",
"build:stats": "ng build --stats-json",
"build:analyze": "npm run build:stats && webpack-bundle-analyzer ./www/stats.json",
"lint": "ng lint",
"sonar-scanner": "sonar-scanner",
"clean": "ionic-app-scripts clean",
"lint-ci": "ng lint app --format json > ./lintReport.json || true",
"lint-fix": "tslint --fix --project tsconfig.json",
"setup": "npm install",
"test": "ng test",
"test-ci": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng test --code-coverage --watch=false",
"test-coverage": "ng test --code-coverage",
"e2e": "ng e2e",
"e2e-test": "protractor ./test-config/protractor.conf.js",
"e2e-test-docker": "protractor ./test-config/protractor-docker.conf.js",
"e2e-test-ci": "npm run e2e-update && protractor ./test-config/protractor-ci.conf.js",
"e2e-update": "webdriver-manager update --standalone false --gecko false",
"postinstall": "node config/patch_crypto.js && npm run browserify-coinlib && jetifier && node apply-diagnostic-modules.js",
"browserify-coinlib": "browserify ./node_modules/@airgap/coinlib-core/index.js -s airgapCoinLib -o ./src/assets/libs/airgap-coin-lib.browserify.js",
"prettier": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"test/**/*.js\"",
"electron": "npm --prefix electron/ run start",
"electron:install": "npm --prefix electron/ install --",
"prepare-prod-build": "npm run disable-pure-getters && npm run configure-mangle",
"disable-pure-getters": "replace 'pure_getters: buildOptions.buildOptimizer' 'pure_getters: false' ./node_modules/@angular-devkit/build-angular/src/webpack/configs/common.js ",
"configure-mangle": "replace 'safari10: true' 'safari10: true, keep_fnames: true' ./node_modules/@angular-devkit/build-angular/src/webpack/configs/common.js ",
"apply-diagnostic-modules": "node apply-diagnostic-modules.js"
},
"config": {
"ionic_webpack": "./config/webpack.config.js",
"ionic_copy": "./config/copy.config.js",
"ionic_uglifyjs": "./config/uglifyjs.config.js",
"ionic_ts_config": "tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@airgap/angular-core": "0.0.9",
"@airgap/beacon-sdk": "2.2.5",
"@airgap/coinlib-core": "0.11.0",
"@airgap/sapling-wasm": "0.0.6",
"@angular/animations": "^11.0.4",
"@angular/common": "^11.0.4",
"@angular/core": "^11.0.4",
"@angular/forms": "^11.0.4",
"@angular/platform-browser": "^11.0.4",
"@angular/platform-browser-dynamic": "^11.0.4",
"@angular/router": "^11.0.4",
"@capacitor/android": "^2.4.0",
"@capacitor/core": "2.4.0",
"@capacitor/ios": "^2.4.0",
"@download/blockies": "^1.0.3",
"@ionic-native/barcode-scanner": "^5.5.0",
"@ionic-native/core": "^5.0.0",
"@ionic-native/diagnostic": "^5.5.0",
"@ionic-native/keyboard": "^5.5.0",
"@ionic-native/qr-scanner": "^5.5.0",
"@ionic/angular": "5.5.2",
"@ionic/core": "5.5.2",
"@ionic/storage": "2.2.0",
"@ledgerhq/hw-transport-u2f": "^5.15.0",
"@ledgerhq/hw-transport-webusb": "^5.16.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^4.0.0",
"@sentry/browser": "5.1.3",
"@types/ledgerhq__hw-transport": "^4.21.2",
"@types/ledgerhq__hw-transport-u2f": "^4.21.1",
"@types/ledgerhq__hw-transport-webusb": "^4.70.0",
"@zondax/ledger-polkadot": "^0.11.0",
"@zxing/ngx-scanner": "3.0.0",
"angularx-qrcode": "^11.0.0",
"axios": "^0.20.0",
"bignumber.js": "8.0.1",
"chart.js": "^2.8.0",
"cordova-plugin-qrscanner": "3.0.1",
"cordova-sqlite-storage": "^2.6.0",
"cordova.plugins.diagnostic": "^4.0.12",
"core-js": "^2.5.4",
"cryptocompare": "^1.0.0",
"dotenv": "^7.0.0",
"es6-promise-plugin": "^4.2.2",
"html-loader": "^0.5.5",
"husky": "^1.3.1",
"ionicons": "^5.0.0",
"moment": "^2.27.0",
"myetherwallet-blockies": "^0.1.1",
"ng2-charts": "2.2.3",
"ngx-moment": "^5.0.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"rxjs": "~6.5.3",
"tslib": "^1.10.0",
"uglify-es": "^3.3.9",
"webpack-merge": "^4.2.1",
"websocket": "^1.0.28",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1102.1",
"@angular-devkit/build-angular": "~0.1102.1",
"@angular-devkit/core": "^11.2.1",
"@angular-devkit/schematics": "^11.2.1",
"@angular/cli": "~11.2.1",
"@angular/compiler": "~11.2.1",
"@angular/compiler-cli": "~11.2.1",
"@angular/language-service": "~11.2.1",
"@capacitor/cli": "2.4.0",
"@ionic/angular-toolkit": "^3.1.0",
"@ionic/cli": "^6.11.8",
"@types/chrome": "0.0.83",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"browserify": "^16.2.3",
"clipboardy": "^2.0.0",
"codelyzer": "^5.1.2",
"ionic-mocks": "^1.3.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jetifier": "^1.6.6",
"karma": "~5.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.16",
"protractor": "~7.0.0",
"protractor-beautiful-reporter": "^1.2.7",
"protractor-image-comparison": "^3.1.1",
"puppeteer": "^1.14.0",
"replace": "^1.1.0",
"sonarqube-scanner": "^2.4.0",
"ts-loader": "^5.3.3",
"ts-node": "~8.1.0",
"tslint": "~6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-valorsoft": "^2.2.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~4.0.5",
"uglify-js": "^3.6.7",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.1",
"ws": "^6.2.1",
"xcode": "^2.0.0"
},
"description": "The Most Secure Practical Way To Do Crypto Transactions",
"cordova": {
"plugins": {
"cordova-plugin-qrscanner": {},
"cordova-sqlite-storage": {},
"cordova.plugins.diagnostic": {
"ANDROID_SUPPORT_VERSION": "28.+"
}
},
"platforms": [
"android",
"ios"
]
}
}