forked from BlueWallet/BlueWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
199 lines (199 loc) · 9.27 KB
/
package.json
File metadata and controls
199 lines (199 loc) · 9.27 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
{
"name": "bluewallet",
"version": "7.2.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlueWallet/BlueWallet.git"
},
"codegenConfig": {
"name": "BlueWalletSpec",
"type": "all",
"jsSrcsDir": "./codegen",
"android": {
"javaPackageName": "io.bluewallet.bluewallet"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@jest/reporters": "^27.5.1",
"@react-native/eslint-config": "^0.83.1",
"@react-native/js-polyfills": "^0.83.1",
"@react-native/metro-babel-transformer": "^0.83.1",
"@react-native/typescript-config": "^0.83.1",
"@testing-library/react-native": "^13.0.1",
"@types/bip38": "^3.1.2",
"@types/bs58check": "^2.1.0",
"@types/create-hash": "^1.2.2",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.13",
"@types/react": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"@types/wif": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.6.3",
"jest-environment-node": "^29.7.0",
"node-fetch": "^2.6.7",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "cd android/; ./gradlew clean; cd ..; rm -r -f android/app/.cxx android/.cxx android/build; rm -r -f /tmp/metro-cache/; rm -r -f node_modules/; npm cache clean --force; npm i",
"cleanstart": "npm run clean && npm start -- --reset-cache",
"clean:ios": "rm -fr node_modules && rm -fr ios/Pods && npm i && cd ios && pod update && cd ..; npm start -- --reset-cache",
"releasenotes2json": "./scripts/release-notes.sh > release-notes.txt; node -e 'console.log(JSON.stringify(require(\"fs\").readFileSync(\"release-notes.txt\", \"utf8\")));' > release-notes.json",
"branch2json": "./scripts/current-branch.sh > current-branch.json",
"start": "react-native start",
"android": "react-native run-android",
"android:relaunch": "adb shell am force-stop io.bluewallet.bluewallet; adb shell monkey -p io.bluewallet.bluewallet -c android.intent.category.LAUNCHER 1",
"android:uninstall": "adb uninstall io.bluewallet.bluewallet",
"adb": "adb reverse tcp:8081 tcp:8081",
"android:clean": "cd android; ./gradlew clean ; cd .. ; rm -r -f android/app/.cxx; npm run android",
"android:restart": "adb shell am force-stop io.bluewallet.bluewallet; adb shell monkey -p io.bluewallet.bluewallet -c android.intent.category.LAUNCHER 1",
"ios": "react-native run-ios",
"postinstall": "rm -r -f node_modules/react-native-camera-kit-no-google/android/build; npm run releasenotes2json; npm run branch2json; npm run patches",
"patches": "npx patch-package",
"test": "npm run lint && npm run unit && npm run integration",
"integration": "jest tests/integration/*",
"e2e:debug-build": "detox build -c android.debug",
"e2e:debug-test": "detox test -c android.debug -d 200000 --loglevel error --reuse",
"e2e:debug-test-device": "detox test -c android.debug.device -d 200000 --loglevel info --reuse",
"e2e:debug": "(test -f android/app/build/outputs/apk/debug/app-debug.apk && test -f android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk) || npm run e2e:debug-build; npm run e2e:debug-test",
"e2e:release-build": "detox build -c android.release",
"e2e:release-build-device": "E2E_ANDROID_ARCHS=armeabi-v7a,arm64-v8a detox build -c android.release",
"e2e:release-test": "detox test -c android.release --loglevel error",
"e2e:release-test-device": "detox test -c android.release.device --loglevel info --record-videos all",
"e2e:build:ios-release": "detox build -c ios.release",
"e2e:test:ios-release": "detox test -c ios.release",
"tslint": "tsc",
"lint": " npm run tslint && node scripts/find-unused-loc.js && eslint --ext .js,.ts,.tsx '*.@(js|ts|tsx)' screen 'blue_modules/*.@(js|ts|tsx)' class models loc tests components navigation typings",
"lint:fix": "npm run lint -- --fix",
"lint:quickfix": "git status --porcelain | grep -v '\\.json' | grep -E '\\.js|\\.ts' --color=never | awk '{print $2}' | xargs eslint --fix; exit 0",
"unit": "jest -b -w tests/unit/*"
},
"dependencies": {
"@arkade-os/boltz-swap": "0.2.19",
"@arkade-os/sdk": "0.3.12",
"@babel/preset-env": "7.29.0",
"@bugsnag/react-native": "8.8.1",
"@bugsnag/source-maps": "2.3.3",
"@keystonehq/bc-ur-registry": "0.7.1",
"@ngraveio/bc-ur": "1.1.13",
"@noble/hashes": "1.3.3",
"@noble/secp256k1": "1.6.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-clipboard/clipboard": "1.16.3",
"@react-native-community/cli": "20.0.2",
"@react-native-community/cli-platform-android": "20.0.2",
"@react-native-community/cli-platform-ios": "20.0.2",
"@react-native-documents/picker": "12.0.1",
"@react-native-menu/menu": "2.0.0",
"@react-native-vector-icons/entypo": "12.4.2",
"@react-native-vector-icons/fontawesome": "12.4.2",
"@react-native-vector-icons/fontawesome6": "12.3.2",
"@react-native-vector-icons/ionicons": "12.4.2",
"@react-native-vector-icons/material-design-icons": "12.4.2",
"@react-native-vector-icons/material-icons": "12.4.2",
"@react-native/babel-preset": "0.83.1",
"@react-native/codegen": "0.83.1",
"@react-native/gradle-plugin": "0.83.1",
"@react-native/metro-config": "0.83.1",
"@react-navigation/devtools": "7.0.52",
"@react-navigation/drawer": "7.9.4",
"@react-navigation/native": "7.1.33",
"@react-navigation/native-stack": "7.14.5",
"@scure/base": "2.0.0",
"@spsina/bip47": "github:BlueWallet/bip47#df82345",
"aezeed": "0.0.5",
"assert": "2.1.0",
"base-x": "4.0.1",
"bc-bech32": "file:blue_modules/bc-bech32",
"bech32": "2.0.0",
"bignumber.js": "9.3.1",
"bip21": "2.0.3",
"bip32": "5.0.1",
"bip38": "github:BlueWallet/bip38",
"bip39": "3.1.0",
"bitcoinjs-lib": "7.0.0",
"bitcoinjs-message": "2.2.0",
"bolt11": "1.4.1",
"buffer": "6.0.3",
"coinselect": "github:BlueWallet/coinselect#35f8038",
"crypto-browserify": "3.12.1",
"crypto-js": "4.2.0",
"dayjs": "1.11.19",
"detox": "20.47.0",
"ecpair": "3.0.0",
"electrum-client": "github:BlueWallet/rn-electrum-client#d9f511d",
"electrum-mnemonic": "2.0.0",
"events": "3.3.0",
"lottie-react-native": "7.3.6",
"pako": "file:blue_modules/pako",
"payjoin-client": "1.0.1",
"prop-types": "15.8.1",
"react": "19.2.4",
"react-localization": "github:BlueWallet/react-localization#ae7969a",
"react-native": "0.83.1",
"react-native-biometrics": "3.0.1",
"react-native-blue-crypto": "github:BlueWallet/react-native-blue-crypto#3cb5442",
"react-native-camera-kit-no-google": "16.2.0",
"react-native-capture-protection": "github:BlueWallet/react-native-capture-protection#bb78a40",
"react-native-default-preference": "https://github.com/BlueWallet/react-native-default-preference.git#6338a1f1235e4130b8cfc2dd3b53015eeff2870c",
"react-native-device-info": "14.1.1",
"react-native-draggable-flatlist": "4.0.3",
"react-native-draglist": "github:BlueWallet/react-native-draglist#0c8049d",
"react-native-edge-to-edge": "1.8.1",
"react-native-fs": "2.20.0",
"react-native-gesture-handler": "2.30.0",
"react-native-get-random-values": "1.11.0",
"react-native-handoff": "github:BlueWallet/react-native-handoff#v0.0.4",
"react-native-haptic-feedback": "2.3.4",
"react-native-image-picker": "8.2.1",
"react-native-keychain": "9.2.3",
"react-native-linear-gradient": "2.8.3",
"react-native-localize": "3.7.0",
"react-native-notifications": "5.2.2",
"react-native-permissions": "5.5.1",
"react-native-prompt-android": "github:BlueWallet/react-native-prompt-android#ed168d66fed556bc2ed07cf498770f058b78a376",
"react-native-qrcode-svg": "6.3.21",
"react-native-quick-actions": "0.3.13",
"react-native-reanimated": "4.2.2",
"react-native-safe-area-context": "5.7.0",
"react-native-screens": "4.24.0",
"react-native-secure-key-store": "github:BlueWallet/react-native-secure-key-store#2076b4849e88aa0a78e08bfbb4ce3923e0925cbc",
"react-native-share": "12.2.6",
"react-native-svg": "15.15.3",
"react-native-tcp-socket": "6.4.1",
"react-native-watch-connectivity": "1.1.0",
"react-native-worklets": "0.7.2",
"react-test-renderer": "19.2.4",
"readable-stream": "3.6.2",
"realm": "20.2.0",
"rn-qr-generator": "https://github.com/BlueWallet/rn-qr-generator.git#5870927a70f5bf43dd59b332fd221af971b82bfe",
"silent-payments": "github:BlueWallet/SilentPayments#59a037",
"slip39": "https://github.com/BlueWallet/slip39-js#d316ee6",
"stream-browserify": "3.0.0",
"url": "0.11.4",
"wif": "2.0.6"
}
}