2018-01-30 23:42:38 +01:00
{
2020-03-30 23:52:01 +02:00
"name" : "bluewallet" ,
2024-02-25 00:58:50 +01:00
"version" : "6.5.6" ,
2020-03-31 20:10:49 +02:00
"license" : "MIT" ,
2021-02-12 23:48:11 +01:00
"repository" : {
2021-02-17 05:38:50 +01:00
"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" ,
2022-06-03 18:54:05 +02:00
"@jest/reporters" : "^27.5.1" ,
2023-12-18 16:21:42 +01:00
"@react-native/eslint-config" : "^0.72.2" ,
2024-02-05 20:00:34 +01:00
"@react-native/metro-config" : "^0.73.0" ,
2023-07-25 16:43:35 +02:00
"@tsconfig/react-native" : "^3.0.2" ,
2024-02-11 19:39:44 +01:00
"@types/bip38" : "^3.1.2" ,
2021-07-21 15:11:04 +02:00
"@types/bs58check" : "^2.1.0" ,
"@types/create-hash" : "^1.2.2" ,
2023-03-04 18:51:11 +01:00
"@types/jest" : "^29.4.0" ,
2023-07-25 16:43:35 +02:00
"@types/react" : "^18.2.16" ,
2023-05-11 12:31:58 +02:00
"@types/react-native" : "^0.72.0" ,
2023-03-04 18:51:11 +01:00
"@types/react-test-renderer" : "^18.0.0" ,
2024-02-11 19:39:44 +01:00
"@types/wif" : "^2.0.5" ,
2023-07-25 16:43:35 +02:00
"@typescript-eslint/eslint-plugin" : "^6.2.0" ,
"@typescript-eslint/parser" : "^6.2.0" ,
2023-07-25 16:31:09 +02:00
"eslint" : "^8.45.0" ,
"eslint-config-prettier" : "^8.8.0" ,
2022-10-31 13:25:26 +01:00
"eslint-config-standard" : "^17.0.0" ,
"eslint-config-standard-jsx" : "^11.0.0" ,
2023-07-25 16:31:09 +02:00
"eslint-config-standard-react" : "^13.0.0" ,
"eslint-plugin-import" : "^2.27.0" ,
"eslint-plugin-n" : "^16.0.1" ,
"eslint-plugin-prettier" : "^5.0.0" ,
"eslint-plugin-promise" : "^6.1.1" ,
"eslint-plugin-react" : "^7.33.0" ,
2022-10-31 13:25:26 +01:00
"eslint-plugin-react-native" : "^4.0.0" ,
2023-03-04 18:51:11 +01:00
"jest" : "^29.4.2" ,
2022-10-31 13:25:26 +01:00
"node-fetch" : "^2.6.7" ,
2023-07-25 16:31:09 +02:00
"prettier" : "^3.0.0" ,
2023-03-04 18:51:11 +01:00
"react-test-renderer" : "18.2.0" ,
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
} ,
2019-12-29 20:59:10 +01:00
"engines" : {
2023-12-18 16:21:42 +01:00
"node" : ">=16" ,
2019-12-29 20:59:10 +01:00
"npm" : ">=6.9.0"
} ,
2018-01-30 23:42:38 +01:00
"scripts" : {
2019-01-25 22:55:35 +01: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" ,
2020-07-01 13:18:40 +02:00
"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" ,
2021-09-13 15:22:00 +02:00
"branch2json" : "./scripts/current-branch.sh > current-branch.json" ,
2018-12-11 23:52:46 +01:00
"start" : "node node_modules/react-native/local-cli/cli.js start" ,
"android" : "react-native run-android" ,
2020-04-07 16:25:56 +02:00
"android:clean" : "cd android; ./gradlew clean ; cd .. ; npm run android" ,
2018-12-11 23:52:46 +01:00
"ios" : "react-native run-ios" ,
2023-12-07 21:33:33 +01:00
"postinstall" : "rn-nodeify --install buffer,events,process,stream,inherits,path,assert,crypto --hack; npm run releasenotes2json; npm run branch2json; npm run patches" ,
2024-01-14 23:01:16 +01:00
"patches" : "patch -p1 < scripts/rn-ldk.patch; patch -p1 < scripts/react-native-camera-kit.patch; patch -p1 < scripts/react-native-widget-center.patch" ,
2021-07-18 14:56:59 +02:00
"test" : "npm run tslint && npm run lint && npm run unit && npm run jest" ,
2021-09-14 15:38:45 +02:00
"jest" : "jest -b tests/integration/*" ,
2021-07-21 17:47:16 +02:00
"windowspatches" : "./scripts/windows-patches.sh" ,
2022-06-03 18:54:05 +02:00
"e2e:debug-build" : "detox build -c android.debug" ,
"e2e:debug-test" : "detox test -c android.debug -d 200000 -l info" ,
2020-06-29 19:42:14 +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" ,
2022-06-03 18:54:05 +02:00
"e2e:release-build" : "detox build -c android.release" ,
2023-03-04 18:51:11 +01:00
"e2e:release-test" : "detox test -c android.release --record-videos all --record-logs all --take-screenshots all --headless -d 200000 -R 3" ,
2021-07-18 14:56:59 +02:00
"tslint" : "tsc" ,
2023-07-25 15:50:04 +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" ,
2020-06-01 14:54:23 +02:00
"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" ,
2022-06-03 18:54:05 +02:00
"unit" : "jest -b -i tests/unit/*" ,
2021-07-20 18:21:46 +02:00
"windows" : "react-native run-windows"
2018-01-30 23:42:38 +01:00
} ,
"jest" : {
2023-12-18 17:07:00 +01:00
"preset" : "react-native" ,
2018-12-11 23:52:46 +01:00
"transform" : {
2023-03-04 18:51:11 +01:00
"^.+\\.(ts|tsx)$" : "ts-jest"
2019-10-21 17:13:16 +02:00
} ,
2021-07-18 14:56:59 +02:00
"moduleFileExtensions" : [
"js" ,
"json" ,
"ts" ,
"tsx"
] ,
2021-07-06 11:38:53 +02:00
"transformIgnorePatterns" : [
"node_modules/(?!((jest-)?react-native(-.*)?|@react-native(-community)?)/)"
] ,
2019-10-21 17:13:16 +02:00
"setupFiles" : [
"./tests/setup.js"
2020-05-18 12:08:01 +02:00
] ,
2020-10-07 20:54:07 +02:00
"watchPathIgnorePatterns" : [
"<rootDir>/node_modules"
] ,
2020-05-18 12:08:01 +02:00
"setupFilesAfterEnv" : [
"./tests/setupAfterEnv.js"
2019-10-22 04:59:53 +02:00
]
2018-01-30 23:42:38 +01:00
} ,
"dependencies" : {
2023-03-04 18:51:11 +01:00
"@babel/preset-env" : "^7.20.0" ,
2024-02-15 15:18:43 +01:00
"@bugsnag/react-native" : "7.22.5" ,
2022-02-04 12:36:30 +01:00
"@bugsnag/source-maps" : "2.3.1" ,
2023-09-30 16:34:45 +02:00
"@keystonehq/bc-ur-registry" : "0.6.4" ,
2021-10-27 21:59:31 +02:00
"@ngraveio/bc-ur" : "1.1.6" ,
2022-10-02 19:33:30 +02:00
"@noble/secp256k1" : "1.6.3" ,
2024-02-23 20:47:16 +01:00
"@react-native-async-storage/async-storage" : "1.22.2" ,
2023-12-21 14:40:24 +01:00
"@react-native-clipboard/clipboard" : "1.13.2" ,
2023-04-05 08:47:38 +02:00
"@react-native-community/push-notification-ios" : "1.11.0" ,
2024-02-08 18:19:18 +01:00
"@react-navigation/drawer" : "6.6.7" ,
"@react-navigation/native" : "6.1.10" ,
"@react-navigation/native-stack" : "6.9.18" ,
2021-05-04 13:09:38 +02:00
"@remobile/react-native-qrcode-local-image" : "https://github.com/BlueWallet/react-native-qrcode-local-image" ,
2023-03-26 20:43:25 +02:00
"@spsina/bip47" : "github:BlueWallet/bip47#0a2f02c90350802f2ec93afa4e6c8843be2d687c" ,
2024-01-20 00:58:21 +01:00
"aezeed" : "0.0.5" ,
2023-09-14 17:27:15 +02:00
"assert" : "2.1.0" ,
2021-10-23 04:17:54 +02:00
"base-x" : "3.0.9" ,
2020-06-24 13:56:35 +02:00
"bc-bech32" : "file:blue_modules/bc-bech32" ,
2021-05-09 12:08:53 +02:00
"bech32" : "2.0.0" ,
2022-12-04 16:47:10 +01:00
"bignumber.js" : "9.1.1" ,
2020-06-30 07:51:44 +02:00
"bip21" : "2.0.3" ,
2022-01-11 05:34:08 +01:00
"bip32" : "3.0.1" ,
2021-08-07 16:39:01 +02:00
"bip38" : "github:BlueWallet/bip38" ,
2023-04-13 01:34:55 +02:00
"bip39" : "3.1.0" ,
2023-09-24 21:24:25 +02:00
"bitcoinjs-lib" : "6.1.5" ,
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" ,
2021-02-21 04:52:16 +01:00
"buffer" : "6.0.3" ,
2019-02-16 23:12:50 +01:00
"buffer-reverse" : "1.0.1" ,
2022-06-14 05:23:22 +02:00
"coinselect" : "3.1.13" ,
2023-10-25 01:42:00 +02:00
"crypto-js" : "4.2.0" ,
2023-09-30 16:43:09 +02:00
"dayjs" : "1.11.10" ,
2024-02-08 06:34:26 +01:00
"detox" : "20.17.1" ,
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-02-05 20:00:34 +01: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" ,
2023-12-19 15:36:24 +01:00
"frisbee" : "3.1.0" ,
2021-01-28 13:54:23 +01:00
"junderw-crc32c" : "1.2.0" ,
2024-01-28 16:14:22 +01:00
"lottie-react-native" : "6.6.0" ,
2023-07-07 01:37:27 +02:00
"metro-react-native-babel-preset" : "0.77.0" ,
2020-06-24 07:50:28 +02:00
"path-browserify" : "1.0.1" ,
2021-09-01 11:12:15 +02:00
"payjoin-client" : "1.0.1" ,
2019-02-16 23:12:50 +01:00
"process" : "0.11.10" ,
2022-01-05 04:21:02 +01:00
"prop-types" : "15.8.1" ,
2023-03-04 18:51:11 +01:00
"react" : "18.2.0" ,
2022-10-23 12:51:08 +02:00
"react-localization" : "github:BlueWallet/react-localization#ae7969a" ,
2024-01-23 00:31:27 +01:00
"react-native" : "0.72.10" ,
2024-02-19 11:17:44 +01:00
"react-native-biometrics" : "3.0.1" ,
2023-03-04 18:51:11 +01:00
"react-native-blue-crypto" : "github:BlueWallet/react-native-blue-crypto#3cb5442" ,
2022-10-11 14:47:32 +02:00
"react-native-camera-kit" : "13.0.0" ,
2021-04-15 19:52:48 +02:00
"react-native-crypto" : "2.2.0" ,
2022-04-13 15:33:23 +02:00
"react-native-default-preference" : "1.4.4" ,
2024-02-23 20:50:23 +01:00
"react-native-device-info" : "10.13.0" ,
2024-02-24 17:23:44 +01:00
"react-native-document-picker" : "https://github.com/BlueWallet/react-native-document-picker#27fddb9d9a88fff09a41ce654f7008cfd33cb4c4" ,
2023-06-17 17:42:32 +02:00
"react-native-draggable-flatlist" : "github:BlueWallet/react-native-draggable-flatlist#ebfddc4" ,
2023-03-04 22:09:25 +01:00
"react-native-elements" : "3.4.3" ,
"react-native-fs" : "2.20.0" ,
2024-02-05 20:08:34 +01:00
"react-native-gesture-handler" : "2.15.0" ,
2021-09-25 05:36:08 +02:00
"react-native-handoff" : "https://github.com/BlueWallet/react-native-handoff#31d005f93d31099d0e564590a3bbd052b8a02b39" ,
2023-09-17 21:56:04 +02:00
"react-native-haptic-feedback" : "2.2.0" ,
2021-05-04 13:09:38 +02:00
"react-native-idle-timer" : "https://github.com/BlueWallet/react-native-idle-timer#8587876d68ab5920e79619726aeca9e672beaf2b" ,
2023-12-04 13:05:56 +01:00
"react-native-image-picker" : "7.1.0" ,
2023-03-04 18:51:11 +01:00
"react-native-ios-context-menu" : "github:BlueWallet/react-native-ios-context-menu#v1.15.3" ,
2024-02-18 11:32:31 +01:00
"react-native-keychain" : "8.1.3" ,
2023-10-01 00:00:59 +02:00
"react-native-linear-gradient" : "2.8.3" ,
2024-01-16 14:29:30 +01:00
"react-native-localize" : "3.0.6" ,
2022-03-01 17:20:00 +01:00
"react-native-modal" : "13.0.1" ,
2021-07-06 11:38:53 +02:00
"react-native-obscure" : "https://github.com/BlueWallet/react-native-obscure.git#f4b83b4a261e39b1f5ed4a45ac5bcabc8a59eadb" ,
2021-05-04 13:09:38 +02:00
"react-native-passcode-auth" : "https://github.com/BlueWallet/react-native-passcode-auth#a2ff977ba92b36f8d0a5567f59c05cc608e8bd12" ,
2024-02-18 18:06:21 +01:00
"react-native-permissions" : "4.1.2" ,
2021-05-04 13:09:38 +02:00
"react-native-privacy-snapshot" : "https://github.com/BlueWallet/react-native-privacy-snapshot#529e4627d93f67752a27e82a040ff7b64dca0783" ,
2021-05-29 08:23:15 +02:00
"react-native-prompt-android" : "https://github.com/BlueWallet/react-native-prompt-android#ed168d66fed556bc2ed07cf498770f058b78a376" ,
2022-11-23 14:13:21 +01:00
"react-native-push-notification" : "8.1.1" ,
2023-01-19 07:41:00 +01:00
"react-native-qrcode-svg" : "6.2.0" ,
2020-01-02 07:09:14 +01:00
"react-native-quick-actions" : "0.3.13" ,
2021-05-22 01:31:34 +02:00
"react-native-randombytes" : "3.6.1" ,
2023-01-23 08:55:33 +01:00
"react-native-rate" : "1.2.12" ,
2024-02-21 07:00:52 +01:00
"react-native-reanimated" : "3.7.1" ,
2024-02-02 09:29:31 +01:00
"react-native-safe-area-context" : "4.9.0" ,
2023-12-09 03:53:20 +01:00
"react-native-screens" : "3.29.0" ,
2023-03-04 18:51:11 +01:00
"react-native-secure-key-store" : "https://github.com/BlueWallet/react-native-secure-key-store#2076b48" ,
2023-12-02 18:19:57 +01:00
"react-native-share" : "10.0.2" ,
2023-10-03 01:27:46 +02:00
"react-native-svg" : "13.14.0" ,
2024-02-05 20:00:34 +01:00
"react-native-tcp-socket" : "6.0.6" ,
2023-12-14 13:45:17 +01:00
"react-native-vector-icons" : "10.0.3" ,
2022-09-29 13:59:55 +02:00
"react-native-watch-connectivity" : "1.1.0" ,
2024-02-14 06:37:31 +01:00
"react-native-webview" : "13.8.1" ,
2023-03-04 18:51:11 +01:00
"react-native-widget-center" : "https://github.com/BlueWallet/react-native-widget-center#a128c38" ,
2023-03-27 08:02:35 +02:00
"readable-stream" : "3.6.2" ,
2024-01-30 13:55:00 +01:00
"realm" : "12.6.0" ,
2022-05-07 03:49:14 +02:00
"rn-ldk" : "github:BlueWallet/rn-ldk#v0.8.4" ,
2021-05-25 03:16:57 +02:00
"rn-nodeify" : "10.3.0" ,
2021-07-23 20:56:41 +02:00
"scryptsy" : "2.1.0" ,
2021-07-23 22:18:34 +02:00
"slip39" : "https://github.com/BlueWallet/slip39-js" ,
2021-08-07 00:08:38 +02:00
"stream-browserify" : "3.0.0" ,
2023-09-15 01:18:31 +02:00
"url" : "0.11.3" ,
2021-07-20 17:33:14 +02:00
"wif" : "2.0.6"
2018-01-30 23:42:38 +01:00
} ,
"react-native" : {
2021-04-15 19:52:48 +02:00
"crypto" : "react-native-crypto" ,
2024-02-05 20:00:34 +01:00
"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" : {
2021-04-15 19:52:48 +02:00
"crypto" : "react-native-crypto" ,
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"
}
}