BlueWallet/package.json

198 lines
8.9 KiB
JSON
Raw Normal View History

2018-01-30 23:42:38 +01:00
{
"name": "bluewallet",
2024-08-21 20:03:48 +02:00
"version": "7.0.2",
2020-03-31 20:10:49 +02:00
"license": "MIT",
2021-02-12 23:48:11 +01:00
"repository": {
"type": "git",
"url": "https://github.com/BlueWallet/BlueWallet.git"
2021-02-12 23:48:11 +01:00
},
2018-01-30 23:42:38 +01:00
"devDependencies": {
2023-03-04 18:51:11 +01:00
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@jest/reporters": "^27.5.1",
2024-08-07 04:19:29 +02:00
"@react-native/babel-preset": "^0.74.87",
"@react-native/eslint-config": "^0.74.87",
"@react-native/js-polyfills": "^0.74.87",
"@react-native/metro-babel-transformer": "^0.74.87",
"@react-native/typescript-config": "^0.74.87",
"@types/bip38": "^3.1.2",
"@types/bs58check": "^2.1.0",
"@types/create-hash": "^1.2.2",
2024-04-09 18:14:14 +02:00
"@types/crypto-js": "^4.2.2",
2024-05-18 05:33:48 +02:00
"@types/jest": "^29.5.2",
2023-07-25 16:43:35 +02:00
"@types/react": "^18.2.16",
2023-03-04 18:51:11 +01:00
"@types/react-test-renderer": "^18.0.0",
"@types/wif": "^2.0.5",
2024-07-02 03:41:31 +02:00
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
2024-06-06 03:25:55 +02:00
"babel-jest": "^29.6.3",
2024-04-09 22:42:42 +02:00
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
2022-10-31 13:25:26 +01:00
"eslint-config-standard-jsx": "^11.0.0",
2023-07-25 16:31:09 +02:00
"eslint-config-standard-react": "^13.0.0",
2024-04-09 22:42:42 +02:00
"eslint-plugin-import": "^2.29.1",
2024-08-04 21:41:49 +02:00
"eslint-plugin-jest": "^28.7.0",
2024-04-09 22:42:42 +02:00
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
2023-07-25 16:31:09 +02:00
"eslint-plugin-promise": "^6.1.1",
2024-05-25 18:02:51 +02:00
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-native": "^4.1.0",
2024-06-06 04:07:50 +02:00
"jest": "^29.6.3",
"jest-environment-node": "^29.7.0",
2022-10-31 13:25:26 +01:00
"node-fetch": "^2.6.7",
2024-04-09 22:42:42 +02:00
"prettier": "^3.2.5",
"react-test-renderer": "18.3.1",
2023-07-26 12:38:34 +02:00
"ts-jest": "^29.1.1",
2023-07-25 16:43:35 +02:00
"typescript": "^5.1.6"
2018-01-30 23:42:38 +01:00
},
"engines": {
2024-07-28 17:56:12 +02:00
"node": ">=20"
},
2018-01-30 23:42:38 +01:00
"scripts": {
2024-08-04 21:41:49 +02:00
"clean": "cd android/; ./gradlew clean; cd ..; rm -r -f /tmp/metro-cache/; rm -r -f node_modules/; npm cache clean --force; npm i; 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",
2020-05-19 19:16:30 +02:00
"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",
2024-08-04 21:41:49 +02:00
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
2024-08-04 21:41:49 +02:00
"android:clean": "cd android; ./gradlew clean ; cd .. ; npm run android",
"ios": "react-native run-ios",
2024-08-04 21:41:49 +02:00
"postinstall": "rn-nodeify --install buffer,events,process,stream,inherits,path,assert,crypto --hack; npm run releasenotes2json; npm run branch2json; npm run patches",
"patches": "patch -p1 < scripts/react-native-camera-kit.patch;",
"test": "npm run tslint && npm run lint && npm run unit && npm run jest",
"jest": "jest tests/integration/*",
"e2e:debug-build": "detox build -c android.debug",
"e2e:debug-test": "detox test -c android.debug -d 200000 --loglevel error --reuse",
2024-08-04 21:41:49 +02:00
"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-test": "detox test -c android.release --loglevel error",
"tslint": "tsc",
2024-08-04 21:41:49 +02:00
"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",
2021-10-29 13:12:31 +02:00
"lint:quickfix": "git status --porcelain | grep -v '\\.json' | grep -E '\\.js|\\.ts' --color=never | awk '{print $2}' | xargs eslint --fix; exit 0",
2024-07-25 18:37:37 +02:00
"unit": "jest -b -w tests/unit/*"
2018-01-30 23:42:38 +01:00
},
"dependencies": {
2024-08-04 21:41:49 +02:00
"@babel/preset-env": "7.25.3",
"@bugsnag/react-native": "7.25.0",
"@bugsnag/source-maps": "2.3.3",
"@keystonehq/bc-ur-registry": "0.7.0",
2024-07-28 17:56:12 +02:00
"@lodev09/react-native-true-sheet": "github:BlueWallet/react-native-true-sheet#730a84b0261ef2dd2e7e9adadba7f260c7f76726",
"@ngraveio/bc-ur": "1.1.13",
"@noble/secp256k1": "1.6.3",
"@react-native-async-storage/async-storage": "1.24.0",
"@react-native-clipboard/clipboard": "1.14.1",
"@react-native-community/push-notification-ios": "1.11.0",
2024-08-05 02:23:17 +02:00
"@react-native-menu/menu": "https://github.com/BlueWallet/menu.git#958fac3d40811f38b53042ada9168175e321b99f",
"@react-native/gradle-plugin": "^0.74.85",
2024-07-16 22:56:44 +02:00
"@react-navigation/drawer": "6.7.2",
"@react-navigation/native": "6.1.18",
"@react-navigation/native-stack": "6.11.0",
"@remobile/react-native-qrcode-local-image": "github:BlueWallet/react-native-qrcode-local-image#31b0113110fbafcf5a5f3ca4183a563550f5c352",
2024-06-12 18:46:44 +02:00
"@rneui/base": "4.0.0-rc.8",
"@rneui/themed": "4.0.0-rc.8",
2024-08-04 21:41:49 +02:00
"@spsina/bip47": "github:BlueWallet/bip47#f4b8047",
"aezeed": "0.0.5",
"assert": "2.1.0",
"base-x": "4.0.0",
"bc-bech32": "file:blue_modules/bc-bech32",
"bech32": "2.0.0",
"bignumber.js": "9.1.1",
"bip21": "2.0.3",
2022-01-11 05:34:08 +01:00
"bip32": "3.0.1",
2024-08-04 21:41:49 +02:00
"bip38": "github:BlueWallet/bip38",
2023-04-13 01:34:55 +02:00
"bip39": "3.1.0",
"bitcoinjs-lib": "6.1.6",
2021-03-09 12:26:56 +01:00
"bitcoinjs-message": "2.2.0",
2023-03-22 21:26:09 +01:00
"bolt11": "1.4.1",
"buffer": "6.0.3",
"coinselect": "3.1.13",
2023-10-25 01:42:00 +02:00
"crypto-js": "4.2.0",
2024-08-20 19:37:42 +02:00
"dayjs": "1.11.13",
2024-08-15 17:38:46 +02:00
"detox": "20.25.5",
2021-12-17 11:57:34 +01:00
"ecpair": "2.0.1",
2019-10-06 00:36:16 +02:00
"ecurve": "1.0.6",
2024-08-04 21:41:49 +02:00
"electrum-client": "github:BlueWallet/rn-electrum-client#1bfe3cc",
2020-05-04 05:53:14 +02:00
"electrum-mnemonic": "2.0.0",
2021-08-06 16:20:33 +02:00
"events": "3.3.0",
"junderw-crc32c": "1.2.0",
"lottie-react-native": "6.7.2",
"path-browserify": "1.0.1",
"payjoin-client": "1.0.1",
2019-02-16 23:12:50 +01:00
"process": "0.11.10",
"prop-types": "15.8.1",
"react": "18.3.1",
2024-08-04 21:41:49 +02:00
"react-localization": "github:BlueWallet/react-localization#ae7969a",
"react-native": "0.74.5",
"react-native-biometrics": "3.0.1",
2024-08-04 21:41:49 +02:00
"react-native-blue-crypto": "github:BlueWallet/react-native-blue-crypto#3cb5442",
"react-native-camera-kit": "13.0.0",
"react-native-crypto": "2.2.0",
"react-native-default-preference": "1.4.4",
2024-06-03 04:13:46 +02:00
"react-native-device-info": "11.1.0",
"react-native-document-picker": "9.3.1",
2024-08-04 21:41:49 +02:00
"react-native-draggable-flatlist": "github:BlueWallet/react-native-draggable-flatlist#v4.0.1",
2023-03-04 22:09:25 +01:00
"react-native-fs": "2.20.0",
"react-native-gesture-handler": "2.18.1",
2024-08-04 21:41:49 +02:00
"react-native-handoff": "github:BlueWallet/react-native-handoff#v0.0.4",
2024-08-07 04:19:29 +02:00
"react-native-haptic-feedback": "2.3.1",
2024-08-04 21:41:49 +02:00
"react-native-idle-timer": "github:BlueWallet/react-native-idle-timer#v2.2.3",
"react-native-image-picker": "7.1.2",
"react-native-ios-context-menu": "github:BlueWallet/react-native-ios-context-menu#e5c1217cd220bfab6e6d9a7c65838545082e3f8e",
"react-native-keychain": "8.2.0",
"react-native-linear-gradient": "2.8.3",
"react-native-localize": "3.2.1",
2024-07-28 15:10:12 +02:00
"react-native-obscure": "github:BlueWallet/react-native-obscure#f4b83b4a261e39b1f5ed4a45ac5bcabc8a59eadb",
"react-native-permissions": "4.1.5",
2024-08-04 21:41:49 +02:00
"react-native-privacy-snapshot": "github:BlueWallet/react-native-privacy-snapshot#529e4627d93f67752a27e82a040ff7b64dca0783",
"react-native-prompt-android": "github:BlueWallet/react-native-prompt-android#ed168d66fed556bc2ed07cf498770f058b78a376",
2022-11-23 14:13:21 +01:00
"react-native-push-notification": "8.1.1",
"react-native-qrcode-svg": "6.3.2",
2020-01-02 07:09:14 +01:00
"react-native-quick-actions": "0.3.13",
"react-native-randombytes": "3.6.1",
"react-native-rate": "1.2.12",
"react-native-reanimated": "3.15.0",
"@react-native/metro-config": "0.74.87",
"react-native-safe-area-context": "4.10.9",
"react-native-screens": "3.34.0",
2024-07-28 15:10:12 +02:00
"react-native-secure-key-store": "github:BlueWallet/react-native-secure-key-store#2076b4849e88aa0a78e08bfbb4ce3923e0925cbc",
2024-07-20 02:36:08 +02:00
"react-native-share": "10.2.1",
"react-native-svg": "15.6.0",
"react-native-tcp-socket": "6.2.0",
"react-native-vector-icons": "10.1.0",
"react-native-watch-connectivity": "1.1.0",
"readable-stream": "3.6.2",
2024-08-21 16:19:02 +02:00
"realm": "12.13.1",
"rn-nodeify": "10.3.0",
"scryptsy": "2.1.0",
2024-08-04 21:41:49 +02:00
"silent-payments": "github:BlueWallet/SilentPayments#7ac4d17",
"slip39": "https://github.com/BlueWallet/slip39-js#d316ee6",
"stream-browserify": "3.0.0",
2024-07-28 19:11:33 +02:00
"url": "0.11.4",
"wif": "2.0.6"
2018-01-30 23:42:38 +01:00
},
"react-native": {
"crypto": "react-native-crypto",
"net": "react-native-tcp-socket",
"tls": "react-native-tcp-socket",
2018-01-30 23:42:38 +01:00
"path": "path-browserify",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
},
"browser": {
2024-07-28 15:10:12 +02:00
"crypto": "react-native-crypto",
"path": "path-browserify",
2024-08-04 21:41:49 +02:00
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
2018-01-30 23:42:38 +01:00
"stream": "stream-browserify"
2024-08-04 21:41:49 +02:00
}
2018-01-30 23:42:38 +01:00
}