2017-08-03 18:23:43 +00:00
|
|
|
{
|
2021-09-13 20:41:05 +00:00
|
|
|
"name": "rocket-chat-reactnative",
|
2023-06-20 19:19:14 +00:00
|
|
|
"version": "4.40.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"start": "react-native start",
|
|
|
|
"test": "jest",
|
2022-08-19 19:53:40 +00:00
|
|
|
"test-update": "sb-rn-get-stories && jest --updateSnapshot",
|
2021-09-13 20:41:05 +00:00
|
|
|
"lint": "eslint . && tsc",
|
|
|
|
"prettier-lint": "prettier --write . && yarn lint",
|
|
|
|
"ci": "npm run precommit && codecov",
|
|
|
|
"ios": "npx react-native run-ios",
|
|
|
|
"android": "npx react-native run-android --variant=experimentalPlayDebug",
|
|
|
|
"android-whitelabel": "npx react-native run-android --main-activity chat.rocket.reactnative.MainActivity --variant=experimentalPlayDebug --appId",
|
|
|
|
"log-android": "react-native log-android",
|
|
|
|
"snyk-protect": "snyk protect",
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"generate-source-maps-ios": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ios-release.bundle --sourcemap-output ios-release.bundle.map",
|
2023-05-18 21:09:33 +00:00
|
|
|
"postinstall": "patch-package",
|
2022-05-02 19:21:15 +00:00
|
|
|
"prepare": "husky install",
|
2023-03-07 12:28:51 +00:00
|
|
|
"build-icon-set": "node scripts/build-icon-set.js",
|
|
|
|
"e2e:android-build-debug": "yarn detox build -c android.emu.debug",
|
|
|
|
"e2e:android-test-debug": "yarn detox test -c android.emu.debug",
|
|
|
|
"e2e:android-build": "yarn detox build -c android.emu.release",
|
|
|
|
"e2e:android-test": "yarn detox test -c android.emu.release",
|
|
|
|
"e2e:ios-build-debug": "yarn detox build -c ios.sim.debug",
|
|
|
|
"e2e:ios-test-debug": "yarn detox test -c ios.sim.debug",
|
|
|
|
"e2e:ios-build": "yarn detox build -c ios.sim.release",
|
2023-04-10 14:59:00 +00:00
|
|
|
"e2e:ios-test": "yarn detox test -c ios.sim.release",
|
|
|
|
"e2e:start": "RUNNING_E2E_TESTS=true npx react-native start"
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,ts,tsx}": [
|
2021-09-14 20:22:26 +00:00
|
|
|
"prettier --write",
|
|
|
|
"eslint",
|
2023-06-23 19:39:49 +00:00
|
|
|
"jest --bail --findRelatedTests --passWithNoTests"
|
2021-09-13 20:41:05 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-05-18 21:09:33 +00:00
|
|
|
"@bugsnag/react-native": "^7.19.0",
|
2022-08-08 21:02:08 +00:00
|
|
|
"@codler/react-native-keyboard-aware-scroll-view": "^2.0.1",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@gorhom/bottom-sheet": "^4.4.5",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@hookform/resolvers": "^2.9.10",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@nozbe/watermelondb": "^0.25.5",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@react-native-async-storage/async-storage": "^1.17.11",
|
feat: add media auto-download (#5076)
* feat: media auto-download view
* media auto download view completed and saving the settings in mmkv
* audio download preference
* audio auto download when the user who sent the audio is the same logged on mobile
* creation of isAutoDownloadEnabled, evaluate hist hook, Image Full Size preload done
* minor tweak audio show play button after download
* refactor audioFile to handleMediaDownload and fixed the audio download
* desestructured params to download too
* image download and autoDownload, algo fix the formatAttachmentUrl to show the image from local
* add the possibility to cancel image download and clear local images
* refactor blur component
* video download and auto download, also keeped the behavior to download unsuportted videos to the gallery
* add the possibility to start downloading a video, then exit the room, back again to room and cancel the video previously downloading
* remove the custom hook for autoDownload
* remove blurcomponent, fix the blur style in image.tsx, minor tweak video function name
* send messageId to video
* introducing the reducer to keep the downloads in progress
* create a media download selector
* remove all the redux stuff and do the same as file upload
* video download behavior
* done for image and audio
* fix the try catch download media
* clean up
* image container uiKit
* fix lint
* change rn-fetch-blob to expo-filesystem
* add pt-br
* pass the correct message id when there is an attachment on reply
* refactor some changes requested
* fix audio and move the netInfo from autoDownloadPreference to redux
* variable isAutoDownloadEnable name and handleMediaDownload getExtension
* message/Image refactored, change the component to show the image from FastImage to Image
* refactor handleMediaDownload and deleteMedia
* minor tweak
* refactor audio
* refactor video
* fix the type on the messagesView(the view of files)
* minor tweak
* fix the name of searchMediaFIleAsync's result
* minor tweak, add the default behavior, add the OFF as label
* minor tweaks
* verify if the media auto download exists on settings view
* fix media auto download view layout and minor tweak wifi
* avoid auto download from reply
* minor tweak at comment
* tweak list.section
* change the name to netInfoState and Local_document_directory
* remove mediaType and refactor audio and image
* separate blurview
* thumbnail video and video behavior
* add Audio to i18n and minor tweak
* set the blur as always dark and add the possibility to overlay
* don't need to controle the filepath in the view
* fix the loading in image and video at begin
* save the file with a similar filename as expected
* removed the necessity of messageId or id
* minor tweak
* switch useLayoutEffect to useEffect
* avoid onpress do some edge case because of cached at video
* minor tweak
* tweak at audio comment extension
* minor tweak type userpreferences
* remove test id from mediaAutoDownloadView
* change action's name to SET_NET_INFO_STATE
* caching and deleting video's thumbnails
* remove generate thumbnail
* minor tweak in image
* update camera-roll and save the file from local url
* remove local_cache_directory and deleteThumbnail
* update blur to fix error on android
* fix blur is hiding the file description
* avoid download unsupported video
* return void when it is loading the audio
2023-08-07 14:02:30 +00:00
|
|
|
"@react-native-camera-roll/camera-roll": "^5.7.2",
|
2022-03-29 16:09:44 +00:00
|
|
|
"@react-native-clipboard/clipboard": "^1.8.5",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@react-native-community/art": "^1.2.0",
|
feat: add media auto-download (#5076)
* feat: media auto-download view
* media auto download view completed and saving the settings in mmkv
* audio download preference
* audio auto download when the user who sent the audio is the same logged on mobile
* creation of isAutoDownloadEnabled, evaluate hist hook, Image Full Size preload done
* minor tweak audio show play button after download
* refactor audioFile to handleMediaDownload and fixed the audio download
* desestructured params to download too
* image download and autoDownload, algo fix the formatAttachmentUrl to show the image from local
* add the possibility to cancel image download and clear local images
* refactor blur component
* video download and auto download, also keeped the behavior to download unsuportted videos to the gallery
* add the possibility to start downloading a video, then exit the room, back again to room and cancel the video previously downloading
* remove the custom hook for autoDownload
* remove blurcomponent, fix the blur style in image.tsx, minor tweak video function name
* send messageId to video
* introducing the reducer to keep the downloads in progress
* create a media download selector
* remove all the redux stuff and do the same as file upload
* video download behavior
* done for image and audio
* fix the try catch download media
* clean up
* image container uiKit
* fix lint
* change rn-fetch-blob to expo-filesystem
* add pt-br
* pass the correct message id when there is an attachment on reply
* refactor some changes requested
* fix audio and move the netInfo from autoDownloadPreference to redux
* variable isAutoDownloadEnable name and handleMediaDownload getExtension
* message/Image refactored, change the component to show the image from FastImage to Image
* refactor handleMediaDownload and deleteMedia
* minor tweak
* refactor audio
* refactor video
* fix the type on the messagesView(the view of files)
* minor tweak
* fix the name of searchMediaFIleAsync's result
* minor tweak, add the default behavior, add the OFF as label
* minor tweaks
* verify if the media auto download exists on settings view
* fix media auto download view layout and minor tweak wifi
* avoid auto download from reply
* minor tweak at comment
* tweak list.section
* change the name to netInfoState and Local_document_directory
* remove mediaType and refactor audio and image
* separate blurview
* thumbnail video and video behavior
* add Audio to i18n and minor tweak
* set the blur as always dark and add the possibility to overlay
* don't need to controle the filepath in the view
* fix the loading in image and video at begin
* save the file with a similar filename as expected
* removed the necessity of messageId or id
* minor tweak
* switch useLayoutEffect to useEffect
* avoid onpress do some edge case because of cached at video
* minor tweak
* tweak at audio comment extension
* minor tweak type userpreferences
* remove test id from mediaAutoDownloadView
* change action's name to SET_NET_INFO_STATE
* caching and deleting video's thumbnails
* remove generate thumbnail
* minor tweak in image
* update camera-roll and save the file from local url
* remove local_cache_directory and deleteThumbnail
* update blur to fix error on android
* fix blur is hiding the file description
* avoid download unsupported video
* return void when it is loading the audio
2023-08-07 14:02:30 +00:00
|
|
|
"@react-native-community/blur": "^4.3.2",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@react-native-community/datetimepicker": "^6.7.5",
|
2023-07-04 00:03:39 +00:00
|
|
|
"@react-native-community/hooks": "3.0.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@react-native-community/netinfo": "6.0.0",
|
|
|
|
"@react-native-community/picker": "^1.8.1",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@react-native-community/slider": "^4.4.2",
|
2022-08-08 21:02:08 +00:00
|
|
|
"@react-native-cookies/cookies": "6.2.1",
|
|
|
|
"@react-native-firebase/analytics": "^14.11.0",
|
|
|
|
"@react-native-firebase/app": "^14.11.0",
|
|
|
|
"@react-native-firebase/crashlytics": "^14.11.0",
|
2022-11-24 11:37:08 +00:00
|
|
|
"@react-native-masked-view/masked-view": "^0.2.8",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@react-navigation/drawer": "^6.6.2",
|
|
|
|
"@react-navigation/elements": "^1.3.17",
|
|
|
|
"@react-navigation/native": "^6.1.6",
|
|
|
|
"@react-navigation/stack": "^6.3.16",
|
2022-07-06 20:01:33 +00:00
|
|
|
"@rocket.chat/message-parser": "^0.31.14",
|
2022-02-10 12:37:22 +00:00
|
|
|
"@rocket.chat/sdk": "RocketChat/Rocket.Chat.js.SDK#mobile",
|
2022-11-24 11:37:08 +00:00
|
|
|
"@rocket.chat/ui-kit": "^0.31.19",
|
2021-09-13 20:41:05 +00:00
|
|
|
"bytebuffer": "^5.0.1",
|
|
|
|
"color2k": "1.2.4",
|
|
|
|
"commonmark": "git+https://github.com/RocketChat/commonmark.js.git",
|
|
|
|
"commonmark-react-renderer": "git+https://github.com/RocketChat/commonmark-react-renderer.git",
|
2022-11-16 13:26:37 +00:00
|
|
|
"dequal": "^2.0.3",
|
|
|
|
"ejson": "^2.2.3",
|
2023-05-18 21:09:33 +00:00
|
|
|
"expo": "^48.0.9",
|
|
|
|
"expo-apple-authentication": "^6.0.1",
|
|
|
|
"expo-av": "^13.2.1",
|
2023-07-04 00:03:39 +00:00
|
|
|
"expo-camera": "^13.2.1",
|
2023-05-18 21:09:33 +00:00
|
|
|
"expo-file-system": "^15.2.2",
|
|
|
|
"expo-haptics": "^12.2.1",
|
|
|
|
"expo-keep-awake": "^12.0.1",
|
|
|
|
"expo-local-authentication": "^13.3.0",
|
|
|
|
"expo-video-thumbnails": "^7.2.1",
|
|
|
|
"expo-web-browser": "^12.1.1",
|
2021-09-13 20:41:05 +00:00
|
|
|
"hoist-non-react-statics": "3.3.2",
|
2022-06-03 20:53:39 +00:00
|
|
|
"i18n-js": "3.9.2",
|
2021-09-13 20:41:05 +00:00
|
|
|
"js-base64": "3.6.1",
|
|
|
|
"js-sha256": "^0.9.0",
|
|
|
|
"lint-staged": "^11.1.0",
|
|
|
|
"lodash": "4.17.21",
|
2022-11-11 19:20:02 +00:00
|
|
|
"moment": "2.29.4",
|
2021-09-13 20:41:05 +00:00
|
|
|
"pretty-bytes": "5.6.0",
|
|
|
|
"prop-types": "15.7.2",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react": "18.2.0",
|
2022-08-26 19:16:45 +00:00
|
|
|
"react-hook-form": "^7.34.2",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native": "0.71.7",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-animatable": "^1.3.3",
|
|
|
|
"react-native-background-timer": "2.4.1",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-bootsplash": "^4.6.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-config-reader": "^4.1.1",
|
|
|
|
"react-native-console-time-polyfill": "1.2.3",
|
2022-12-21 18:47:42 +00:00
|
|
|
"react-native-device-info": "^10.3.0",
|
2022-11-16 13:26:37 +00:00
|
|
|
"react-native-document-picker": "^8.1.2",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-easy-grid": "^0.2.2",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-easy-toast": "^2.3.0",
|
2022-05-31 16:08:18 +00:00
|
|
|
"react-native-fast-image": "RocketChat/react-native-fast-image.git#bump-version",
|
2022-06-06 13:23:49 +00:00
|
|
|
"react-native-file-viewer": "^2.1.4",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-gesture-handler": "^2.9.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-image-crop-picker": "RocketChat/react-native-image-crop-picker",
|
|
|
|
"react-native-image-progress": "^1.1.1",
|
2023-08-16 12:02:53 +00:00
|
|
|
"react-native-katex": "^0.5.1",
|
2022-11-24 11:37:08 +00:00
|
|
|
"react-native-linear-gradient": "^2.6.2",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-localize": "2.1.1",
|
2022-07-20 21:02:18 +00:00
|
|
|
"react-native-math-view": "^3.9.5",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-mime-types": "2.3.0",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-mmkv-storage": "^0.9.1",
|
2022-08-08 21:02:08 +00:00
|
|
|
"react-native-modal": "13.0.1",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-navigation-bar-color": "2.0.1",
|
2022-11-16 21:09:46 +00:00
|
|
|
"react-native-notifications": "^4.3.3",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-notifier": "1.6.1",
|
|
|
|
"react-native-orientation-locker": "1.1.8",
|
|
|
|
"react-native-picker-select": "^8.0.4",
|
|
|
|
"react-native-platform-touchable": "1.1.1",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-popover-view": "^5.1.7",
|
2022-05-10 13:29:33 +00:00
|
|
|
"react-native-progress": "5.0.0",
|
2022-08-08 21:02:08 +00:00
|
|
|
"react-native-prompt-android": "^1.1.0",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-reanimated": "2.14.4",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-restart": "0.0.22",
|
|
|
|
"react-native-safe-area-context": "3.2.0",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-screens": "^3.20.0",
|
2022-08-08 21:02:08 +00:00
|
|
|
"react-native-scrollable-tab-view": "ptomasroos/react-native-scrollable-tab-view",
|
|
|
|
"react-native-simple-crypto": "RocketChat/react-native-simple-crypto#0.5.1",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-skeleton-placeholder": "^5.2.4",
|
2021-09-13 20:41:05 +00:00
|
|
|
"react-native-slowlog": "^1.0.2",
|
2023-02-27 20:31:28 +00:00
|
|
|
"react-native-svg": "^13.8.0",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-native-ui-lib": "RocketChat/react-native-ui-lib#7.2.0",
|
|
|
|
"react-native-vector-icons": "^9.2.0",
|
2023-06-06 21:53:48 +00:00
|
|
|
"react-native-webview": "11.26.1",
|
2022-11-16 13:26:37 +00:00
|
|
|
"react-redux": "^8.0.5",
|
|
|
|
"reactotron-react-native": "^5.0.3",
|
2022-05-10 13:07:10 +00:00
|
|
|
"redux": "4.2.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"redux-immutable-state-invariant": "2.1.0",
|
|
|
|
"redux-saga": "1.1.3",
|
|
|
|
"remove-markdown": "^0.3.0",
|
|
|
|
"reselect": "4.0.0",
|
|
|
|
"rn-extensions-share": "RocketChat/rn-extensions-share",
|
2023-01-18 16:43:26 +00:00
|
|
|
"rn-fetch-blob": "^0.12.0",
|
2022-08-08 21:02:08 +00:00
|
|
|
"rn-root-view": "RocketChat/rn-root-view",
|
2022-11-16 13:26:37 +00:00
|
|
|
"semver": "^7.3.8",
|
2023-05-29 15:03:24 +00:00
|
|
|
"transliteration": "^2.3.5",
|
2023-07-04 00:03:39 +00:00
|
|
|
"typed-redux-saga": "^1.5.0",
|
2022-11-16 13:26:37 +00:00
|
|
|
"ua-parser-js": "^1.0.32",
|
2022-07-28 13:36:40 +00:00
|
|
|
"uri-js": "^4.4.1",
|
2022-06-03 16:19:34 +00:00
|
|
|
"url-parse": "1.5.10",
|
2023-05-18 21:09:33 +00:00
|
|
|
"use-debounce": "^9.0.4",
|
2021-09-13 20:41:05 +00:00
|
|
|
"use-deep-compare-effect": "1.6.1",
|
2022-08-26 19:16:45 +00:00
|
|
|
"xregexp": "5.0.2",
|
|
|
|
"yup": "^0.32.11"
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
2022-05-03 20:06:49 +00:00
|
|
|
"resolutions": {
|
2022-06-24 18:13:56 +00:00
|
|
|
"ua-parser-js": "^1.0.2",
|
2023-05-18 21:09:33 +00:00
|
|
|
"jpeg-js": "0.4.4",
|
|
|
|
"@types/react": "18"
|
2022-05-03 20:06:49 +00:00
|
|
|
},
|
2021-09-13 20:41:05 +00:00
|
|
|
"devDependencies": {
|
2023-03-07 12:28:51 +00:00
|
|
|
"@babel/core": "^7.20.2",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@babel/eslint-parser": "^7.14.7",
|
|
|
|
"@babel/eslint-plugin": "^7.13.0",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.8.3",
|
2022-05-23 17:24:30 +00:00
|
|
|
"@babel/plugin-transform-named-capturing-groups-regex": "^7.17.12",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@babel/preset-env": "^7.20.0",
|
|
|
|
"@babel/runtime": "^7.20.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@bugsnag/source-maps": "^2.2.0",
|
|
|
|
"@rocket.chat/eslint-config": "^0.4.0",
|
2022-08-19 19:53:40 +00:00
|
|
|
"@storybook/addon-storyshots": "6.3",
|
|
|
|
"@storybook/react": "6.3",
|
|
|
|
"@storybook/react-native": "^6.0.1-beta.7",
|
2022-03-18 10:01:30 +00:00
|
|
|
"@testing-library/jest-native": "^4.0.4",
|
2022-08-09 12:28:14 +00:00
|
|
|
"@testing-library/react-hooks": "^8.0.1",
|
2022-01-31 21:15:44 +00:00
|
|
|
"@testing-library/react-native": "^9.0.0",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@types/bytebuffer": "^5.0.44",
|
2022-01-12 18:42:37 +00:00
|
|
|
"@types/ejson": "^2.1.3",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@types/i18n-js": "^3.8.3",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@types/jest": "^26.0.24",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@types/lodash": "^4.14.188",
|
2023-05-18 21:09:33 +00:00
|
|
|
"@types/react": "18",
|
2021-11-17 20:13:06 +00:00
|
|
|
"@types/react-native-background-timer": "^2.0.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@types/react-native-config-reader": "^4.1.0",
|
|
|
|
"@types/react-native-platform-touchable": "^1.1.2",
|
|
|
|
"@types/react-native-scrollable-tab-view": "^0.10.2",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@types/react-native-vector-icons": "^6.4.12",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2022-11-16 13:26:37 +00:00
|
|
|
"@types/semver": "^7.3.13",
|
2022-03-03 21:46:53 +00:00
|
|
|
"@types/ua-parser-js": "^0.7.36",
|
2022-06-03 16:19:34 +00:00
|
|
|
"@types/url-parse": "^1.4.8",
|
2021-09-13 20:41:05 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.28.3",
|
|
|
|
"@typescript-eslint/parser": "^4.28.5",
|
2022-06-04 02:55:02 +00:00
|
|
|
"axios": "0.27.2",
|
2022-08-19 21:14:37 +00:00
|
|
|
"babel-jest": "^28.1.3",
|
2023-03-07 12:28:51 +00:00
|
|
|
"babel-loader": "8.3.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"babel-plugin-transform-remove-console": "^6.9.4",
|
2022-03-24 13:39:38 +00:00
|
|
|
"codecov": "^3.8.3",
|
2023-03-07 12:28:51 +00:00
|
|
|
"detox": "^20.1.2",
|
2022-08-08 21:02:08 +00:00
|
|
|
"eslint": "^7.32.0",
|
2022-06-03 22:12:21 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-08-08 21:02:08 +00:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
|
|
|
"eslint-plugin-jest": "26.5.3",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.5.1",
|
2022-06-03 19:37:47 +00:00
|
|
|
"eslint-plugin-react": "7.30.0",
|
2022-08-08 21:02:08 +00:00
|
|
|
"eslint-plugin-react-hooks": "^4.5.0",
|
|
|
|
"eslint-plugin-react-native": "4.0.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"husky": "^6.0.0",
|
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2022-08-19 21:14:37 +00:00
|
|
|
"jest": "^28.1.3",
|
|
|
|
"jest-cli": "^28.1.3",
|
|
|
|
"jest-expo": "^46.0.1",
|
2023-03-07 12:28:51 +00:00
|
|
|
"jest-junit": "^15.0.0",
|
2023-05-18 21:09:33 +00:00
|
|
|
"metro-react-native-babel-preset": "^0.73.9",
|
2021-09-13 20:41:05 +00:00
|
|
|
"otp.js": "1.2.0",
|
|
|
|
"patch-package": "6.4.7",
|
|
|
|
"prettier": "^2.3.2",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-dom": "18.1.0",
|
2023-03-07 12:28:51 +00:00
|
|
|
"react-native-dotenv": "^3.4.8",
|
2023-05-18 21:09:33 +00:00
|
|
|
"react-test-renderer": "18.1.0",
|
2021-09-13 20:41:05 +00:00
|
|
|
"reactotron-redux": "3.1.3",
|
|
|
|
"reactotron-redux-saga": "4.2.3",
|
2022-09-12 14:51:33 +00:00
|
|
|
"ts-node": "^10.9.1",
|
2021-09-13 20:41:05 +00:00
|
|
|
"typescript": "^4.3.5"
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"e2e",
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"transformIgnorePatterns": [
|
2022-08-08 21:02:08 +00:00
|
|
|
"node_modules/(?!(jest-)?@?react-native|@react-native-community|@react-navigation|expo)"
|
2021-09-13 20:41:05 +00:00
|
|
|
],
|
2022-06-10 20:33:48 +00:00
|
|
|
"preset": "./jest.preset.js",
|
2021-09-13 20:41:05 +00:00
|
|
|
"coverageDirectory": "./coverage/",
|
|
|
|
"collectCoverage": true,
|
|
|
|
"moduleNameMapper": {
|
|
|
|
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
|
|
|
|
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
|
|
|
|
},
|
2022-03-18 10:01:30 +00:00
|
|
|
"setupFilesAfterEnv": [
|
2022-03-29 16:09:44 +00:00
|
|
|
"@testing-library/jest-native/extend-expect",
|
|
|
|
"./jest.setup.js"
|
2022-03-18 10:01:30 +00:00
|
|
|
]
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
2023-03-07 12:28:51 +00:00
|
|
|
"jest-junit": {
|
|
|
|
"addFileAttribute": "true"
|
|
|
|
},
|
2021-09-13 20:41:05 +00:00
|
|
|
"snyk": true,
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.x",
|
|
|
|
"npm": ">=4.x"
|
|
|
|
},
|
2022-08-08 21:02:08 +00:00
|
|
|
"expo": {
|
|
|
|
"autolinking": {
|
|
|
|
"exclude": [
|
|
|
|
"expo-application",
|
|
|
|
"expo-asset",
|
|
|
|
"expo-constants",
|
|
|
|
"expo-font",
|
|
|
|
"expo-error-recovery"
|
|
|
|
]
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|