2018-07-15 21:07:00 +03:00
|
|
|
{
|
2020-07-16 18:10:10 +03:00
|
|
|
"name": "ecency",
|
2024-02-28 10:52:59 +03:00
|
|
|
"version": "3.0.47",
|
2020-07-16 18:10:10 +03:00
|
|
|
"displayName": "Ecency",
|
2018-07-15 21:07:00 +03:00
|
|
|
"private": true,
|
2018-10-23 18:36:04 +03:00
|
|
|
"rnpm": {
|
|
|
|
"assets": [
|
2018-10-31 13:03:45 +03:00
|
|
|
"./src/assets/Fonts"
|
2018-10-23 18:36:04 +03:00
|
|
|
]
|
|
|
|
},
|
2018-07-15 21:07:00 +03:00
|
|
|
"scripts": {
|
2020-08-12 00:47:03 +03:00
|
|
|
"version": "./version-ios.sh",
|
2020-08-01 22:30:42 +03:00
|
|
|
"postversion": "react-native-version --never-amend --legacy",
|
2020-01-22 05:52:09 +03:00
|
|
|
"start": "react-native start",
|
2019-10-09 18:26:38 +03:00
|
|
|
"android": "react-native run-android",
|
|
|
|
"ios": "react-native run-ios",
|
2020-02-20 06:31:13 +03:00
|
|
|
"releasenotes": "./release-notes.sh > release-notes.txt; node -e 'console.log(JSON.stringify(require(\"fs\").readFileSync(\"release-notes.txt\", \"utf8\")));' > release-notes.json",
|
2018-10-04 05:18:36 +03:00
|
|
|
"test": "node node_modules/jest/bin/jest.js --watch",
|
2023-11-02 10:07:08 +03:00
|
|
|
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
|
2023-11-03 14:30:44 +03:00
|
|
|
"lint:fix": "eslint src/ --fix --quiet",
|
2023-11-03 14:27:24 +03:00
|
|
|
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}' && yarn lint:fix",
|
2018-10-04 05:18:36 +03:00
|
|
|
"lint-staged": "lint-staged",
|
2020-08-01 22:30:42 +03:00
|
|
|
"clear": "watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && yarn && yarn start -- --reset-cache",
|
|
|
|
"bump-patch": "npm version patch --no-git-tag-version",
|
|
|
|
"bump-minor": "npm version minor --no-git-tag-version",
|
2021-05-11 23:08:13 +03:00
|
|
|
"bump-major": "npm version major --no-git-tag-version",
|
2022-11-17 10:00:57 +03:00
|
|
|
"postinstall": "npx patch-package && node_modules/.bin/rn-nodeify --install --hack --yarn && cd ios && pod install",
|
2022-11-17 17:58:36 +03:00
|
|
|
"ubuntu:pixel_6": "cd $ANDROID_HOME/tools && __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia emulator -avd pixel_6 -gpu host",
|
2022-11-17 10:00:57 +03:00
|
|
|
"ubuntu:flipper": "__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia flipper"
|
2018-07-15 21:07:00 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-03-01 15:36:05 +03:00
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
2019-09-01 20:28:10 +03:00
|
|
|
"@babel/runtime": "^7.5.5",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@bugsnag/react-native": "^7.22.2",
|
2024-02-20 21:30:01 +03:00
|
|
|
"@dotlottie/react-player": "^1.6.17",
|
2024-02-20 16:58:05 +03:00
|
|
|
"@ecency/render-helper": "^2.2.31",
|
2020-09-07 09:43:13 +03:00
|
|
|
"@esteemapp/dhive": "0.15.0",
|
2024-02-20 16:58:05 +03:00
|
|
|
"@esteemapp/react-native-autocomplete-input": "^4.2.1",
|
2019-12-12 12:46:12 +03:00
|
|
|
"@esteemapp/react-native-multi-slider": "^1.1.0",
|
2019-12-23 09:55:09 +03:00
|
|
|
"@esteemapp/react-native-slider": "^0.12.0",
|
2023-01-02 01:07:01 +03:00
|
|
|
"@hiveio/dhive": "^1.2.5",
|
2024-02-20 21:30:01 +03:00
|
|
|
"@lottiefiles/react-lottie-player": "^3.5.3",
|
2022-01-21 08:45:15 +03:00
|
|
|
"@native-html/iframe-plugin": "^2.6.1",
|
2022-03-14 12:04:04 +03:00
|
|
|
"@native-html/table-plugin": "^5.3.1",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@notifee/react-native": "^7.8.0",
|
|
|
|
"@react-native-async-storage/async-storage": "^1.21.0",
|
2024-02-28 11:45:12 +03:00
|
|
|
"@react-native-camera-roll/camera-roll": "^7.4.2",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@react-native-clipboard/clipboard": "^1.12.1",
|
2020-07-16 17:57:10 +03:00
|
|
|
"@react-native-community/cli-platform-ios": "^4.10.1",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@react-native-community/netinfo": "^11.1.1",
|
|
|
|
"@react-native-community/push-notification-ios": "^1.11.0",
|
2022-03-01 15:36:05 +03:00
|
|
|
"@react-native-community/toolbar-android": "^0.2.1",
|
2022-11-25 14:35:55 +03:00
|
|
|
"@react-native-firebase/analytics": "^14.12.0",
|
|
|
|
"@react-native-firebase/app": "^14.12.0",
|
|
|
|
"@react-native-firebase/dynamic-links": "^14.12.0",
|
|
|
|
"@react-native-firebase/messaging": "^14.12.0",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@react-navigation/bottom-tabs": "^6.5.11",
|
|
|
|
"@react-navigation/drawer": "^6.6.6",
|
|
|
|
"@react-navigation/native": "^6.1.9",
|
|
|
|
"@react-navigation/native-stack": "^6.9.17",
|
|
|
|
"@react-navigation/stack": "^6.3.20",
|
2022-10-17 15:24:58 +03:00
|
|
|
"@reduxjs/toolkit": "^1.8.6",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@shopify/flash-list": "^1.6.3",
|
2022-09-20 15:10:01 +03:00
|
|
|
"@tanstack/query-async-storage-persister": "^4.3.9",
|
2022-09-19 17:09:42 +03:00
|
|
|
"@tanstack/react-query": "^4.3.9",
|
2022-09-20 15:10:01 +03:00
|
|
|
"@tanstack/react-query-persist-client": "^4.3.9",
|
2021-08-10 20:48:11 +03:00
|
|
|
"@tradle/react-native-http": "^2.0.0",
|
2023-12-05 19:40:18 +03:00
|
|
|
"appcenter": "5.0.0",
|
|
|
|
"appcenter-analytics": "5.0.0",
|
|
|
|
"appcenter-crashes": "5.0.0",
|
2021-08-10 20:48:11 +03:00
|
|
|
"assert": "^1.1.1",
|
2021-09-10 11:58:54 +03:00
|
|
|
"axios": "^0.21.2",
|
2021-08-10 20:48:11 +03:00
|
|
|
"browserify-zlib": "~0.1.4",
|
2021-08-11 07:37:41 +03:00
|
|
|
"buffer": "^6.0.3",
|
2021-08-11 08:32:01 +03:00
|
|
|
"bytebuffer": "^5.0.1",
|
2021-08-10 20:48:11 +03:00
|
|
|
"console-browserify": "^1.1.0",
|
|
|
|
"constants-browserify": "^1.0.0",
|
2023-12-05 19:40:18 +03:00
|
|
|
"core-js": "^3.33.3",
|
2018-08-09 20:10:41 +03:00
|
|
|
"crypto-js": "^3.1.9-1",
|
2019-01-30 11:57:09 +03:00
|
|
|
"currency-symbol-map": "^4.0.4",
|
2022-10-24 12:46:38 +03:00
|
|
|
"deprecated-react-native-prop-types": "^2.3.0",
|
2022-04-27 07:45:26 +03:00
|
|
|
"diff-match-patch": "^1.0.5",
|
2021-08-10 20:48:11 +03:00
|
|
|
"dns.js": "^1.0.1",
|
|
|
|
"domain-browser": "^1.1.1",
|
|
|
|
"events": "^1.0.0",
|
2024-03-06 11:40:45 +03:00
|
|
|
"expo": "^50.0.8",
|
2023-09-11 14:44:00 +03:00
|
|
|
"hive-uri": "^0.2.5",
|
2023-10-19 12:10:12 +03:00
|
|
|
"hivesigner": "^3.3.4",
|
2021-08-10 20:48:11 +03:00
|
|
|
"https-browserify": "~0.0.0",
|
2018-12-05 14:43:07 +03:00
|
|
|
"intl": "^1.2.5",
|
2020-01-23 13:06:43 +03:00
|
|
|
"jsc-android": "^241213.1.0",
|
2019-07-16 18:58:14 +03:00
|
|
|
"lodash": "^4.17.13",
|
2023-12-05 19:40:18 +03:00
|
|
|
"lottie-react-native": "^6.4.1",
|
2023-11-02 14:16:59 +03:00
|
|
|
"mime-types": "^2.1.35",
|
2022-04-09 04:32:33 +03:00
|
|
|
"moment": "^2.29.2",
|
2021-08-10 20:48:11 +03:00
|
|
|
"path-browserify": "0.0.0",
|
|
|
|
"process": "^0.11.0",
|
|
|
|
"punycode": "^1.2.4",
|
2022-10-17 15:24:58 +03:00
|
|
|
"qs": "^6.11.0",
|
2021-08-10 20:48:11 +03:00
|
|
|
"querystring-es3": "~0.2.0",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react": "18.2.0",
|
2019-12-19 18:20:54 +03:00
|
|
|
"react-intl": "^3.9.2",
|
2024-03-04 14:37:04 +03:00
|
|
|
"react-native": "0.73.2",
|
2024-03-11 16:18:28 +03:00
|
|
|
"react-native-actions-sheet": "^0.9.3",
|
2020-07-28 21:25:16 +03:00
|
|
|
"react-native-actionsheet": "ecency/react-native-actionsheet",
|
2021-04-25 01:07:04 +03:00
|
|
|
"react-native-animatable": "^1.3.3",
|
2021-04-27 20:28:23 +03:00
|
|
|
"react-native-autoheight-webview": "^1.5.8",
|
2023-02-22 13:24:04 +03:00
|
|
|
"react-native-background-timer": "^2.4.1",
|
2023-09-28 15:02:18 +03:00
|
|
|
"react-native-background-upload": "^6.6.0",
|
2024-02-20 16:58:05 +03:00
|
|
|
"react-native-bootsplash": "^5.1.3",
|
2022-02-05 21:06:20 +03:00
|
|
|
"react-native-chart-kit": "^6.11.0",
|
2023-08-09 10:33:12 +03:00
|
|
|
"react-native-config": "^1.5.1",
|
2023-11-17 16:14:21 +03:00
|
|
|
"react-native-create-thumbnail": "^1.6.4",
|
2021-08-11 06:17:42 +03:00
|
|
|
"react-native-crypto": "^2.2.0",
|
2022-03-31 20:25:07 +03:00
|
|
|
"react-native-date-picker": "^4.2.0",
|
2023-07-10 18:57:02 +03:00
|
|
|
"react-native-device-info": "^10.7.0",
|
2023-03-17 17:11:46 +03:00
|
|
|
"react-native-draggable-flatlist": "^4.0.1",
|
2021-07-29 16:51:17 +03:00
|
|
|
"react-native-dynamic": "^1.0.0",
|
2023-01-09 23:00:06 +03:00
|
|
|
"react-native-email-link": "^1.14.3",
|
2018-09-25 22:02:10 +03:00
|
|
|
"react-native-extended-stylesheet": "^0.10.0",
|
2023-03-12 22:10:55 +03:00
|
|
|
"react-native-fast-image": "^8.6.3",
|
2022-07-26 20:06:30 +03:00
|
|
|
"react-native-fingerprint-scanner": "hieuvp/react-native-fingerprint-scanner",
|
2024-03-05 12:37:00 +03:00
|
|
|
"react-native-flipper": "^0.164.0",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-gesture-handler": "^2.14.0",
|
2023-01-28 23:20:19 +03:00
|
|
|
"react-native-heic-converter": "^1.3.1",
|
2021-01-25 14:23:19 +03:00
|
|
|
"react-native-highlight-words": "^1.0.1",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-iap": "^12.11.0",
|
2024-02-26 16:31:10 +03:00
|
|
|
"react-native-image-crop-picker": "^0.40.3",
|
2023-03-09 21:02:33 +03:00
|
|
|
"react-native-image-viewing": "^0.2.2",
|
2022-10-06 10:26:10 +03:00
|
|
|
"react-native-iphone-x-helper": "Norcy/react-native-iphone-x-helper",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
2021-08-10 20:48:11 +03:00
|
|
|
"react-native-level-fs": "^3.0.0",
|
2023-10-05 08:02:14 +03:00
|
|
|
"react-native-linear-gradient": "^2.8.3",
|
2022-02-15 08:03:24 +03:00
|
|
|
"react-native-media-controls": "^2.3.0",
|
2022-10-24 16:40:36 +03:00
|
|
|
"react-native-modal": "13.0.1",
|
2022-01-29 19:17:35 +03:00
|
|
|
"react-native-modal-dropdown": "^1.0.2",
|
2023-03-12 22:29:03 +03:00
|
|
|
"react-native-modal-popover": "^2.1.3",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-navigation-bar-color": "^2.0.2",
|
|
|
|
"react-native-orientation-locker": "^1.6.0",
|
2022-10-21 16:09:38 +03:00
|
|
|
"react-native-os": "^1.2.6",
|
2022-02-25 07:55:27 +03:00
|
|
|
"react-native-permissions": "^3.3.0",
|
2022-01-14 20:32:05 +03:00
|
|
|
"react-native-portalize": "^1.0.7",
|
2021-09-13 20:51:55 +03:00
|
|
|
"react-native-progress": "^5.0.0",
|
2020-02-20 06:31:13 +03:00
|
|
|
"react-native-qrcode-svg": "^6.0.3",
|
2021-08-11 06:17:42 +03:00
|
|
|
"react-native-randombytes": "^3.6.1",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-reanimated": "^3.6.1",
|
2022-10-17 12:49:44 +03:00
|
|
|
"react-native-receive-sharing-intent": "^2.0.0",
|
2021-08-26 19:03:26 +03:00
|
|
|
"react-native-render-html": "^6.0.5",
|
2022-10-31 21:22:10 +03:00
|
|
|
"react-native-restart": "^0.0.24",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-safe-area-context": "^4.7.4",
|
|
|
|
"react-native-screens": "3.27.0",
|
2020-07-28 21:25:16 +03:00
|
|
|
"react-native-scrollable-tab-view": "ecency/react-native-scrollable-tab-view",
|
2023-12-21 12:04:10 +03:00
|
|
|
"react-native-select-dropdown": "^3.4.0",
|
2022-02-15 08:03:24 +03:00
|
|
|
"react-native-slider": "^0.11.0",
|
2019-06-28 22:38:23 +03:00
|
|
|
"react-native-snap-carousel": "^3.8.0",
|
2021-09-13 20:51:55 +03:00
|
|
|
"react-native-svg": "^12.1.1",
|
2019-11-29 21:33:31 +03:00
|
|
|
"react-native-swiper": "^1.6.0-rc.3",
|
2022-03-01 15:36:05 +03:00
|
|
|
"react-native-tcp": "^4.0.0",
|
2023-11-17 15:37:09 +03:00
|
|
|
"react-native-tus-client": "^1.1.0",
|
2022-03-01 15:36:05 +03:00
|
|
|
"react-native-udp": "^4.1.4",
|
2020-09-18 11:21:12 +03:00
|
|
|
"react-native-unique-id": "^2.0.0",
|
2023-12-05 19:40:18 +03:00
|
|
|
"react-native-vector-icons": "^10.0.2",
|
2020-08-01 22:30:42 +03:00
|
|
|
"react-native-version": "^4.0.0",
|
2019-01-20 00:24:46 +03:00
|
|
|
"react-native-version-number": "^0.3.5",
|
2022-02-09 09:52:34 +03:00
|
|
|
"react-native-video": "^5.2.0",
|
2024-02-26 16:18:05 +03:00
|
|
|
"react-native-vision-camera": "^3.9.0",
|
2022-12-26 21:00:42 +03:00
|
|
|
"react-native-webview": "^11.26.0",
|
|
|
|
"react-native-youtube-iframe": "^2.2.2",
|
2019-12-16 21:33:33 +03:00
|
|
|
"react-navigation-redux-helpers": "^4.0.1",
|
2022-10-17 16:33:37 +03:00
|
|
|
"react-redux": "^8.0.4",
|
2021-08-10 20:48:11 +03:00
|
|
|
"readable-stream": "1.0.33",
|
2023-11-03 14:27:24 +03:00
|
|
|
"redux": "^4.2.1",
|
2022-11-30 11:03:34 +03:00
|
|
|
"redux-flipper": "^2.0.2",
|
2019-10-05 14:30:29 +03:00
|
|
|
"redux-persist": "^6.0.0",
|
2022-10-18 10:01:25 +03:00
|
|
|
"redux-persist-filesystem-storage": "^4.1.0",
|
2018-08-09 20:10:41 +03:00
|
|
|
"redux-promise": "^0.6.0",
|
2023-11-03 14:27:24 +03:00
|
|
|
"redux-thunk": "^2.4.2",
|
2019-12-21 07:38:10 +03:00
|
|
|
"rn-fetch-blob": "^0.12.0",
|
2018-12-20 17:35:20 +03:00
|
|
|
"rn-placeholder": "^1.3.2",
|
2021-12-30 16:21:58 +03:00
|
|
|
"rtl-detect": "^1.0.4",
|
2022-11-29 09:50:47 +03:00
|
|
|
"speakingurl": "^14.0.1",
|
2021-08-10 20:48:11 +03:00
|
|
|
"stacktrace-parser": "0.1.4",
|
2023-12-05 19:40:18 +03:00
|
|
|
"stream": "^0.0.2",
|
2022-03-01 16:27:16 +03:00
|
|
|
"stream-browserify": "^3.0.0",
|
2021-08-10 20:48:11 +03:00
|
|
|
"string_decoder": "~0.10.25",
|
|
|
|
"timers-browserify": "^1.0.1",
|
|
|
|
"tty-browserify": "0.0.0",
|
|
|
|
"url": "~0.10.1",
|
|
|
|
"util": "~0.10.3",
|
|
|
|
"vm-browserify": "0.0.4"
|
2018-07-20 15:57:12 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-05 19:40:18 +03:00
|
|
|
"@babel/core": "^7.20.0",
|
2022-03-03 12:49:52 +03:00
|
|
|
"@babel/helper-environment-visitor": "^7.16.7",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@babel/preset-env": "^7.20.0",
|
|
|
|
"@babel/runtime": "^7.20.0",
|
|
|
|
"@bugsnag/source-maps": "^2.3.1",
|
2022-10-17 12:49:44 +03:00
|
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
2024-03-04 14:37:04 +03:00
|
|
|
"@react-native/babel-preset": "0.73.19",
|
2024-02-20 16:58:05 +03:00
|
|
|
"@react-native/eslint-config": "0.73.2",
|
2024-03-04 14:37:04 +03:00
|
|
|
"@react-native/metro-config": "0.73.3",
|
2024-02-20 16:58:05 +03:00
|
|
|
"@react-native/typescript-config": "0.73.1",
|
|
|
|
"@types/react": "^18.2.6",
|
2021-05-18 09:36:35 +03:00
|
|
|
"@types/react-redux": "^7.1.16",
|
2023-12-05 19:40:18 +03:00
|
|
|
"@types/react-test-renderer": "^18.0.0",
|
2018-10-04 05:18:36 +03:00
|
|
|
"babel-eslint": "^10.0.1",
|
2024-02-20 16:58:05 +03:00
|
|
|
"babel-jest": "^29.6.3",
|
2021-03-04 17:25:51 +03:00
|
|
|
"babel-plugin-transform-remove-console": "^6.9.4",
|
2023-12-05 19:40:18 +03:00
|
|
|
"eslint": "^8.19.0",
|
2018-10-04 05:18:36 +03:00
|
|
|
"eslint-config-airbnb": "^17.1.0",
|
2019-11-30 10:36:23 +03:00
|
|
|
"eslint-config-prettier": "^6.7.0",
|
2019-05-25 13:37:38 +03:00
|
|
|
"eslint-plugin-eslint-comments": "^3.1.1",
|
|
|
|
"eslint-plugin-import": "^2.17.2",
|
|
|
|
"eslint-plugin-jest": "^22.5.1",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
2019-11-30 10:36:23 +03:00
|
|
|
"eslint-plugin-prettier": "^3.1.1",
|
2019-05-25 13:37:38 +03:00
|
|
|
"eslint-plugin-react": "^7.13.0",
|
2019-11-30 10:36:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^2.3.0",
|
2019-05-25 13:37:38 +03:00
|
|
|
"eslint-plugin-react-native": "^3.7.0",
|
2019-11-30 10:36:23 +03:00
|
|
|
"husky": "^3.1.0",
|
2024-02-20 16:58:05 +03:00
|
|
|
"jest": "^29.6.3",
|
2018-11-10 15:54:21 +03:00
|
|
|
"lint-staged": "^7.2.0",
|
2024-02-20 16:58:05 +03:00
|
|
|
"prettier": "2.8.8",
|
2020-03-24 11:19:21 +03:00
|
|
|
"prettier-eslint": "^9.0.1",
|
2022-03-01 15:36:05 +03:00
|
|
|
"react-native-codegen": "^0.0.13",
|
2023-11-17 15:37:09 +03:00
|
|
|
"react-query-native-devtools": "^4.0.0",
|
2024-02-20 16:58:05 +03:00
|
|
|
"react-test-renderer": "18.2.0",
|
2022-11-17 13:20:57 +03:00
|
|
|
"reactotron-react-native": "^5.0.3",
|
2021-05-18 08:26:29 +03:00
|
|
|
"reactotron-redux": "^3.1.3",
|
2023-12-05 19:40:18 +03:00
|
|
|
"rn-nodeify": "^10.3.0",
|
2024-02-20 16:58:05 +03:00
|
|
|
"typescript": "5.0.4"
|
2018-08-01 22:23:23 +03:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2022-09-19 11:04:00 +03:00
|
|
|
"*.{js,jsx,ts,tsx}": [
|
2019-11-30 10:38:22 +03:00
|
|
|
"yarn run lint:fix",
|
2018-08-01 22:23:23 +03:00
|
|
|
"git add"
|
|
|
|
]
|
2018-10-04 05:18:36 +03:00
|
|
|
},
|
2023-11-03 14:28:12 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
2023-12-05 19:40:18 +03:00
|
|
|
"engines": {
|
2024-02-20 16:58:05 +03:00
|
|
|
"node": ">=18"
|
2019-06-25 20:04:53 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"underscore.string": "^3.3.5"
|
2021-08-10 20:48:11 +03:00
|
|
|
},
|
|
|
|
"react-native": {
|
|
|
|
"zlib": "browserify-zlib",
|
|
|
|
"console": "console-browserify",
|
|
|
|
"constants": "constants-browserify",
|
|
|
|
"crypto": "react-native-crypto",
|
|
|
|
"dns": "dns.js",
|
|
|
|
"net": "react-native-tcp",
|
|
|
|
"domain": "domain-browser",
|
|
|
|
"http": "@tradle/react-native-http",
|
|
|
|
"https": "https-browserify",
|
|
|
|
"os": "react-native-os",
|
|
|
|
"path": "path-browserify",
|
|
|
|
"querystring": "querystring-es3",
|
|
|
|
"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",
|
|
|
|
"dgram": "react-native-udp",
|
|
|
|
"stream": "stream-browserify",
|
|
|
|
"timers": "timers-browserify",
|
|
|
|
"tty": "tty-browserify",
|
|
|
|
"vm": "vm-browserify",
|
|
|
|
"tls": false
|
|
|
|
},
|
|
|
|
"browser": {
|
|
|
|
"zlib": "browserify-zlib",
|
|
|
|
"console": "console-browserify",
|
|
|
|
"constants": "constants-browserify",
|
|
|
|
"crypto": "react-native-crypto",
|
|
|
|
"dns": "dns.js",
|
|
|
|
"net": "react-native-tcp",
|
|
|
|
"domain": "domain-browser",
|
|
|
|
"http": "@tradle/react-native-http",
|
|
|
|
"https": "https-browserify",
|
|
|
|
"os": "react-native-os",
|
|
|
|
"path": "path-browserify",
|
|
|
|
"querystring": "querystring-es3",
|
|
|
|
"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",
|
|
|
|
"dgram": "react-native-udp",
|
|
|
|
"stream": "stream-browserify",
|
|
|
|
"timers": "timers-browserify",
|
|
|
|
"tty": "tty-browserify",
|
|
|
|
"vm": "vm-browserify",
|
|
|
|
"tls": false
|
2018-07-15 21:07:00 +03:00
|
|
|
}
|
2018-09-14 00:22:37 +03:00
|
|
|
}
|