2018-01-30 23:42:38 +01:00
{
2020-03-30 23:52:01 +02:00
"name" : "bluewallet" ,
2021-07-15 16:25:41 +02:00
"version" : "6.2.1" ,
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" : {
2021-07-06 11:38:53 +02:00
"@babel/core" : "^7.12.9" ,
2021-06-22 22:47:00 +02:00
"@babel/runtime" : "^7.14.6" ,
2020-10-07 14:24:36 +02:00
"@jest/reporters" : "^26.4.1" ,
"@react-native-community/eslint-config" : "^2.0.0" ,
2019-05-02 22:33:03 +02:00
"babel-cli" : "^6.26.0" ,
2020-05-27 13:12:17 +02:00
"babel-eslint" : "^10.1.0" ,
2021-07-06 11:38:53 +02:00
"babel-jest" : "^26.6.3" ,
2021-05-08 08:41:45 +02:00
"eslint" : "^7.25.0" ,
"eslint-config-prettier" : "^8.3.0" ,
"eslint-config-standard" : "^16.0.2" ,
"eslint-config-standard-jsx" : "^10.0.0" ,
"eslint-config-standard-react" : "^11.0.1" ,
2020-10-07 14:24:36 +02:00
"eslint-plugin-babel" : "^5.3.1" ,
2021-05-08 08:41:45 +02:00
"eslint-plugin-import" : "^2.22.1" ,
2020-06-01 14:54:23 +02:00
"eslint-plugin-node" : "^11.1.0" ,
2021-05-08 08:41:45 +02:00
"eslint-plugin-prettier" : "^3.4.0" ,
"eslint-plugin-promise" : "^5.1.0" ,
"eslint-plugin-react" : "^7.23.2" ,
"eslint-plugin-standard" : "^4.1.0" ,
2020-10-07 14:24:36 +02:00
"jest" : "^26.1.0" ,
2021-05-08 08:41:45 +02:00
"prettier" : "^2.2.1" ,
2021-07-06 11:38:53 +02:00
"react-test-renderer" : "17.0.1"
2018-01-30 23:42:38 +01:00
} ,
2019-12-29 20:59:10 +01:00
"engines" : {
"node" : ">=10.16.0" ,
"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" ,
"podinstall" : "./scripts/podinstall.sh" ,
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" ,
2021-05-05 18:36:01 +02:00
"postinstall" : "rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert,crypto --hack; npm run releasenotes2json; npm run podinstall" ,
2020-05-30 10:57:08 +02:00
"test" : "npm run lint && npm run unit && npm run jest" ,
2020-06-01 14:54:23 +02:00
"jest" : "jest -b -w 1 tests/integration/*" ,
2020-11-18 16:04:20 +01:00
"maccatalystpatches" : "./scripts/maccatalystpatches/applypatchesformaccatalyst.sh" ,
2020-06-23 13:40:51 +02:00
"e2e:debug-build" : "detox build -c android.emu.debug" ,
2021-07-06 11:38:53 +02:00
"e2e:debug-test" : "detox test -c android.emu.debug -l fatal" ,
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" ,
2021-05-05 18:36:01 +02:00
"e2e:release-build" : "detox build -c android.emu.release" ,
2021-02-25 17:13:34 +01:00
"e2e:release-test" : "detox test -c android.emu.release --record-videos all --take-screenshots all --headless --loglevel trace" ,
2021-06-24 14:50:57 +02:00
"lint" : "eslint *.js screen/**/*.js blue_modules/*.js class/**/*.js models/ loc/ tests/**/*.js components/**/*.js components/*.js" ,
2020-06-01 14:54:23 +02:00
"lint:fix" : "npm run lint -- --fix" ,
"lint:quickfix" : "git status --porcelain | grep -v '\\.json' | grep '\\.js' --color=never | awk '{print $2}' | xargs eslint --fix; exit 0" ,
2021-07-20 18:21:46 +02:00
"unit" : "jest tests/unit/*" ,
"windows" : "react-native run-windows"
2018-01-30 23:42:38 +01:00
} ,
"jest" : {
2018-12-11 23:52:46 +01:00
"preset" : "react-native" ,
"transform" : {
"^.+\\.js$" : "<rootDir>/node_modules/react-native/jest/preprocessor.js"
2019-10-21 17:13:16 +02:00
} ,
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" : {
2020-11-06 06:50:59 +01:00
"@babel/preset-env" : "7.12.1" ,
2021-07-09 12:52:09 +02:00
"@keystonehq/bc-ur-registry" : "https://github.com/BlueWallet/ur-registry" ,
"@ngraveio/bc-ur" : "https://github.com/BlueWallet/bc-ur" ,
2021-06-21 22:02:50 +02:00
"@react-native-async-storage/async-storage" : "1.15.5" ,
2021-02-28 06:13:37 +01:00
"@react-native-clipboard/clipboard" : "1.7.0" ,
2020-05-20 07:52:12 +02:00
"@react-native-community/blur" : "3.6.0" ,
2021-05-18 10:07:31 +02:00
"@react-native-community/masked-view" : "0.1.11" ,
2020-12-19 21:29:18 +01:00
"@react-native-community/push-notification-ios" : "1.8.0" ,
2021-04-25 05:51:43 +02:00
"@react-navigation/drawer" : "5.12.5" ,
2021-05-09 12:08:53 +02:00
"@react-navigation/native" : "5.9.4" ,
2021-06-05 01:23:40 +02:00
"@react-navigation/stack" : "5.14.5" ,
2021-05-04 13:09:38 +02:00
"@remobile/react-native-qrcode-local-image" : "https://github.com/BlueWallet/react-native-qrcode-local-image" ,
2021-07-06 11:38:53 +02:00
"@sentry/react-native" : "2.6.0" ,
2021-01-28 13:54:23 +01:00
"aez" : "1.0.1" ,
2021-03-25 04:51:55 +01:00
"amplitude-js" : "7.4.4" ,
2021-05-09 12:08:53 +02:00
"assert" : "2.0.0" ,
2020-10-09 17:08:39 +02:00
"base-x" : "3.0.8" ,
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" ,
2020-10-26 06:53:18 +01:00
"bignumber.js" : "9.0.1" ,
2020-06-30 07:51:44 +02:00
"bip21" : "2.0.3" ,
2020-10-25 06:51:25 +01:00
"bip32" : "2.0.6" ,
2021-05-09 12:08:53 +02:00
"bip39" : "3.0.4" ,
2020-09-21 21:32:20 +02:00
"bitcoinjs-lib" : "5.2.0" ,
2021-03-09 12:26:56 +01:00
"bitcoinjs-message" : "2.2.0" ,
2021-07-20 02:31:03 +02:00
"bolt11" : "1.3.2" ,
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" ,
2020-07-04 07:50:06 +02:00
"coinselect" : "3.1.12" ,
2021-05-09 12:08:53 +02:00
"crypto-js" : "4.0.0" ,
2021-06-18 01:28:52 +02:00
"dayjs" : "1.10.5" ,
2021-07-06 11:38:53 +02:00
"detox" : "18.18.1" ,
2019-10-06 00:36:16 +02:00
"ecurve" : "1.0.6" ,
2021-05-04 13:09:38 +02:00
"electrum-client" : "https://github.com/BlueWallet/rn-electrum-client#99ebcc649d91a8dc39bea7964b02dd9ead464aa4" ,
2020-05-04 05:53:14 +02:00
"electrum-mnemonic" : "2.0.0" ,
2019-07-13 00:34:06 +02:00
"events" : "1.1.1" ,
2020-08-03 07:51:33 +02:00
"frisbee" : "3.1.4" ,
2021-01-28 13:54:23 +01:00
"junderw-crc32c" : "1.2.0" ,
2021-05-22 05:57:50 +02:00
"lottie-ios" : "3.1.9" ,
2021-05-03 18:01:06 +02:00
"lottie-react-native" : "4.0.2" ,
2021-05-13 22:32:42 +02:00
"metro-react-native-babel-preset" : "0.66.0" ,
2020-06-24 07:50:28 +02:00
"path-browserify" : "1.0.1" ,
2020-11-24 17:10:38 +01:00
"payjoin-client" : "1.0.0" ,
2020-06-26 07:50:21 +02:00
"pbkdf2" : "3.1.1" ,
2019-02-16 23:12:50 +01:00
"process" : "0.11.10" ,
2019-04-01 04:53:25 +02:00
"prop-types" : "15.7.2" ,
2021-07-06 11:38:53 +02:00
"react" : "17.0.1" ,
2021-05-23 03:38:52 +02:00
"react-localization" : "1.0.17" ,
2021-07-20 17:33:14 +02:00
"react-native" : "0.64.2" ,
2021-05-04 13:09:38 +02:00
"react-native-blue-crypto" : "https://github.com/BlueWallet/react-native-blue-crypto" ,
2021-06-27 23:19:03 +02:00
"react-native-camera" : "3.44.1" ,
2021-04-15 19:52:48 +02:00
"react-native-crypto" : "2.2.0" ,
2020-06-01 18:28:44 +02:00
"react-native-default-preference" : "1.4.3" ,
2021-05-28 04:25:20 +02:00
"react-native-device-info" : "8.1.3" ,
2021-05-04 13:09:38 +02:00
"react-native-document-picker" : "https://github.com/BlueWallet/react-native-document-picker#3684d4fcc2bc0b47c32be39024e4796004c3e428" ,
2020-10-27 06:50:37 +01:00
"react-native-elements" : "2.3.2" ,
2021-05-04 13:09:38 +02:00
"react-native-fingerprint-scanner" : "https://github.com/BlueWallet/react-native-fingerprint-scanner#ce644673681716335d786727bab998f7e632ab5e" ,
2021-05-30 02:40:48 +02:00
"react-native-fs" : "2.18.0" ,
2021-03-20 04:51:30 +01:00
"react-native-gesture-handler" : "1.10.3" ,
2021-05-04 13:09:38 +02:00
"react-native-handoff" : "https://github.com/marcosrdz/react-native-handoff#f5becc63f3e36bf2da1ed1fc60fc690323e73602" ,
2021-07-06 11:38:53 +02:00
"react-native-haptic-feedback" : "https://github.com/junina-de/react-native-haptic-feedback.git#8e4d598ad9be886325316b0e2140df8df624a91f" ,
2021-05-04 13:09:38 +02:00
"react-native-idle-timer" : "https://github.com/BlueWallet/react-native-idle-timer#8587876d68ab5920e79619726aeca9e672beaf2b" ,
2021-06-16 01:03:29 +02:00
"react-native-image-picker" : "3.8.1" ,
2021-05-24 14:16:03 +02:00
"react-native-keychain" : "7.0.0" ,
2019-02-16 23:12:50 +01:00
"react-native-level-fs" : "3.0.1" ,
2020-03-10 06:53:32 +01:00
"react-native-linear-gradient" : "2.5.6" ,
2021-06-16 20:46:40 +02:00
"react-native-localize" : "2.1.1" ,
2021-05-04 05:51:28 +02:00
"react-native-modal" : "11.10.0" ,
2021-07-06 11:38:53 +02:00
"react-native-navigation-bar-color" : "https://github.com/BlueWallet/react-native-navigation-bar-color#3b2894ae62fbce99a3bd24105f0921cebaef5c94" ,
"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" ,
2019-02-23 16:48:20 +01:00
"react-native-popup-menu-android" : "1.0.3" ,
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" ,
2020-09-18 02:03:00 +02:00
"react-native-push-notification" : "5.1.1" ,
2021-02-24 00:23:24 +01:00
"react-native-qrcode-svg" : "6.1.1" ,
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" ,
2021-05-29 01:33:08 +02:00
"react-native-rate" : "1.2.6" ,
2021-06-19 05:11:52 +02:00
"react-native-reanimated" : "2.2.0" ,
2021-03-30 08:54:11 +02:00
"react-native-safe-area-context" : "3.2.0" ,
2021-07-06 11:38:53 +02:00
"react-native-screens" : "3.4.0" ,
2021-05-23 00:58:29 +02:00
"react-native-secure-key-store" : "https://github.com/BlueWallet/react-native-secure-key-store#63ab38c9d382a819844a086a69cc204c46aa93f9" ,
2021-06-27 23:19:06 +02:00
"react-native-share" : "6.2.1" ,
2021-06-18 20:13:25 +02:00
"react-native-sortable-list" : "https://github.com/BlueWallet/react-native-sortable-list.git#46e39a30ae0c4328e7c06c30b72b1af0b69e1aeb" ,
2021-05-08 05:52:06 +02:00
"react-native-svg" : "12.1.1" ,
2020-06-15 12:05:11 +02:00
"react-native-tcp-socket" : "3.7.1" ,
2021-05-04 13:09:38 +02:00
"react-native-tooltip" : "https://github.com/BlueWallet/react-native-tooltip#d369e7ece09e4dec73873f1cfeac83e9d35294a6" ,
2021-04-23 13:29:45 +02:00
"react-native-tor" : "0.1.7" ,
2020-12-07 06:51:21 +01:00
"react-native-vector-icons" : "7.1.0" ,
2020-11-10 04:13:23 +01:00
"react-native-watch-connectivity" : "1.0.3" ,
2021-07-20 20:11:05 +02:00
"react-native-webview" : "11.6.5" ,
2021-05-04 13:09:38 +02:00
"react-native-widget-center" : "https://github.com/BlueWallet/react-native-widget-center#e2e9a9038b76d096bf929a87105a97a0a7095001" ,
2021-07-20 20:11:05 +02:00
"react-native-windows" : "0.64.14" ,
2019-10-06 00:36:16 +02:00
"react-test-render" : "1.1.2" ,
2020-03-11 06:51:44 +01:00
"readable-stream" : "3.6.0" ,
2021-07-09 06:03:46 +02:00
"realm" : "10.6.0" ,
2021-05-25 03:16:57 +02:00
"rn-nodeify" : "10.3.0" ,
2021-01-29 17:41:49 +01:00
"scryptsy" : "file:blue_modules/scryptsy" ,
2019-07-06 10:03:42 +02:00
"secure-random" : "1.1.2" ,
2021-04-15 19:52:48 +02:00
"slip39" : "file:blue_modules/slip39" ,
2019-02-16 23:12:50 +01:00
"stream-browserify" : "2.0.2" ,
2019-05-02 22:33:03 +02:00
"url" : "0.11.0" ,
2021-06-19 23:59:47 +02:00
"util" : "0.12.4" ,
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" ,
2018-01-30 23:42:38 +01:00
"path" : "path-browserify" ,
"fs" : "react-native-level-fs" ,
"_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"
} ,
2020-03-16 14:51:08 +01:00
"detox" : {
"configurations" : {
"ios.sim.release" : {
"binaryPath" : "ios/build/Build/Products/Release-iphonesimulator/BlueWallet.app" ,
2020-06-23 13:40:51 +02:00
"build" : "xcodebuild clean build -workspace ios/BlueWallet.xcworkspace -scheme BlueWallet -configuration Release -derivedDataPath ios/build -sdk iphonesimulator13.2" ,
2020-03-16 14:51:08 +01:00
"type" : "ios.simulator" ,
"device" : {
"type" : "iPhone 11"
}
} ,
"android.emu.debug" : {
"binaryPath" : "android/app/build/outputs/apk/debug/app-debug.apk" ,
"build" : "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd .." ,
"type" : "android.emulator" ,
"device" : {
2020-03-18 16:38:52 +01:00
"avdName" : "Pixel_API_29_AOSP"
2020-03-16 14:51:08 +01:00
}
} ,
"android.emu.release" : {
"binaryPath" : "android/app/build/outputs/apk/release/app-release.apk" ,
"build" : "# deleting old artifacts\nfind | grep '\\.apk' --color=never | grep -v node_modules | xargs -l rm\n\n# creating fresh keystore\nrm detox.keystore\nkeytool -genkeypair -v -keystore detox.keystore -alias detox -keyalg RSA -keysize 2048 -validity 10000 -storepass 123456 -keypass 123456 -dname 'cn=Unknown, ou=Unknown, o=Unknown, c=Unknown'\n\n# building release APK\ncd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..\n\n# backup & sign apk1\ncp ./android/app/build/outputs/apk/release/app-release-unsigned.apk ./android/app/build/outputs/apk/release/app-release-unsigned.apk.bak\njarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore detox.keystore ./android/app/build/outputs/apk/release/app-release-unsigned.apk detox -storepass 123456\n\n# move apk1 to expected filename\nmv ./android/app/build/outputs/apk/release/app-release-unsigned.apk ./android/app/build/outputs/apk/release/app-release.apk\n\n# backup and sign apk2\ncp android/app/build/outputs/apk/androidTest/release/app-release-androidTest.apk android/app/build/outputs/apk/androidTest/release/app-release-androidTest.apk.bak\njarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore detox.keystore android/app/build/outputs/apk/androidTest/release/app-release-androidTest.apk detox -storepass 123456" ,
"type" : "android.emulator" ,
"device" : {
2020-03-18 16:38:52 +01:00
"avdName" : "Pixel_API_29_AOSP"
2020-03-16 14:51:08 +01:00
}
}
} ,
"test-runner" : "jest" ,
"runner-config" : "tests/e2e/config.json"
} ,
2018-01-30 23:42:38 +01:00
"browser" : {
2021-04-15 19:52:48 +02:00
"crypto" : "react-native-crypto" ,
2018-01-30 23:42:38 +01:00
"path" : "path-browserify" ,
"fs" : "react-native-level-fs" ,
"_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"
}
}