diff --git a/.changeset/chatty-shirts-tickle.md b/.changeset/chatty-shirts-tickle.md new file mode 100644 index 000000000000..d522ff546c1a --- /dev/null +++ b/.changeset/chatty-shirts-tickle.md @@ -0,0 +1,5 @@ +--- +"live-mobile": minor +--- + +LLM - Upgrade React Native from v0.74.88 to v0.75.4 diff --git a/apps/ledger-live-mobile/Gemfile b/apps/ledger-live-mobile/Gemfile index 99eee4d7a5ec..994ce84da886 100644 --- a/apps/ledger-live-mobile/Gemfile +++ b/apps/ledger-live-mobile/Gemfile @@ -1,9 +1,9 @@ source "https://rubygems.org" gem "fastlane", '~> 2.223.1' -gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0' gem "dotenv" -gem 'cocoapods', '>= 1.13', '< 1.15' +gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1' gem "semver2", "~> 3.4", ">= 3.4.2" plugins_path = File.join(File.dirname(__FILE__), "fastlane", "Pluginfile") diff --git a/apps/ledger-live-mobile/Gemfile.lock b/apps/ledger-live-mobile/Gemfile.lock index efe76de4cb64..28bb07d4bf7e 100644 --- a/apps/ledger-live-mobile/Gemfile.lock +++ b/apps/ledger-live-mobile/Gemfile.lock @@ -279,8 +279,8 @@ PLATFORMS ruby DEPENDENCIES - activesupport (>= 6.1.7.5, < 7.1.0) - cocoapods (>= 1.13, < 1.15) + activesupport (>= 6.1.7.5, != 7.1.0) + cocoapods (>= 1.13, != 1.15.1, != 1.15.0) dotenv fastlane (~> 2.223.1) fastlane-plugin-load_json diff --git a/apps/ledger-live-mobile/__tests__/jest-setup.js b/apps/ledger-live-mobile/__tests__/jest-setup.js index 9810fa08797c..b2b4f52368c2 100644 --- a/apps/ledger-live-mobile/__tests__/jest-setup.js +++ b/apps/ledger-live-mobile/__tests__/jest-setup.js @@ -60,16 +60,6 @@ jest.mock("expo-camera/legacy", () => { }; }); -jest.mock("expo-barcode-scanner", () => ({ - BarCodeScanner: { - Constants: { - BarCodeType: { - qr: "qr", - }, - }, - }, -})); - jest.mock("expo-camera", () => { return { CameraView: jest.fn(() => null), diff --git a/apps/ledger-live-mobile/android/app/build.gradle b/apps/ledger-live-mobile/android/app/build.gradle index 99665ff9588f..6e4839a8d8ec 100644 --- a/apps/ledger-live-mobile/android/app/build.gradle +++ b/apps/ledger-live-mobile/android/app/build.gradle @@ -20,14 +20,14 @@ apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" */ react { /* Folders */ - // The root of your project, i.e. where "package.json" lives. Default is '..' - // root = file("../") - // The folder where the react-native NPM package is. Default is ../node_modules/react-native - // reactNativeDir = file("../node_modules/react-native") - // The folder where the react-native Codegen package is. Default is ../node_modules/react-native-codegen - // codegenDir = file("../node_modules/react-native-codegen") - // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js - // cliFile = file("../node_modules/react-native/cli.js") + // The root of your project, i.e. where "package.json" lives. Default is '../..' + // root = file("../../") + // The folder where the react-native NPM package is. Default is ../../node_modules/react-native + // reactNativeDir = file("../../node_modules/react-native") + // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen + // codegenDir = file("../../node_modules/@react-native/codegen") + // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js + // cliFile = file("../../node_modules/react-native/cli.js") /* Variants */ // The list of variants to that are debuggable. For those we're going to @@ -61,6 +61,8 @@ react { // // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" // hermesFlags = ["-O", "-output-source-map"] + /* Autolinking */ + autolinkLibrariesWithApp() } /** @@ -223,5 +225,4 @@ dependencies { implementation "androidx.appcompat:appcompat:1.0.0" } -apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) apply plugin: 'kotlin-android' diff --git a/apps/ledger-live-mobile/android/build.gradle b/apps/ledger-live-mobile/android/build.gradle index 97bec41eeaab..65b247c5237d 100644 --- a/apps/ledger-live-mobile/android/build.gradle +++ b/apps/ledger-live-mobile/android/build.gradle @@ -10,7 +10,7 @@ buildscript { androidXAnnotation = "1.2.0" androidXBrowser = "1.3.0" ndkVersion = "26.1.10909125" - kotlinVersion = "1.9.22" + kotlinVersion = "1.9.24" } repositories { google() diff --git a/apps/ledger-live-mobile/android/gradle/wrapper/gradle-wrapper.properties b/apps/ledger-live-mobile/android/gradle/wrapper/gradle-wrapper.properties index 2ea3535dc058..6f7a6eb33e80 100644 --- a/apps/ledger-live-mobile/android/gradle/wrapper/gradle-wrapper.properties +++ b/apps/ledger-live-mobile/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/apps/ledger-live-mobile/android/gradlew b/apps/ledger-live-mobile/android/gradlew index 0aae77174822..6dc4733e4752 100755 --- a/apps/ledger-live-mobile/android/gradlew +++ b/apps/ledger-live-mobile/android/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. diff --git a/apps/ledger-live-mobile/android/settings.gradle b/apps/ledger-live-mobile/android/settings.gradle index 7103399fa72a..289c0d853f73 100644 --- a/apps/ledger-live-mobile/android/settings.gradle +++ b/apps/ledger-live-mobile/android/settings.gradle @@ -1,3 +1,6 @@ +pluginManagement { includeBuild(file("../node_modules/@react-native/gradle-plugin").toPath().toRealPath().toAbsolutePath().toString()) } +plugins { id("com.facebook.react.settings") } +extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() } rootProject.name = 'ledgerlivemobile' include ':react-native-fast-crypto' project(':react-native-fast-crypto').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fast-crypto/android') @@ -7,8 +10,6 @@ project(':react-native-webview').projectDir = new File(rootProject.projectDir, ' apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle") useExpoModules() -apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) - include ':app' includeBuild(file('../node_modules/@react-native/gradle-plugin').toPath().toRealPath().toAbsolutePath().toString()) // https://github.com/facebook/react-native/issues/34432#issuecomment-1380612455 diff --git a/apps/ledger-live-mobile/e2e/helpers.ts b/apps/ledger-live-mobile/e2e/helpers.ts index bdc5d54f1eb3..5bb834318b2d 100644 --- a/apps/ledger-live-mobile/e2e/helpers.ts +++ b/apps/ledger-live-mobile/e2e/helpers.ts @@ -1,4 +1,4 @@ -import { by, element, waitFor, device } from "detox"; +import { by, element, waitFor, device, web } from "detox"; import { Direction } from "detox/detox"; import { findFreePort, close as closeBridge, init as initBridge } from "./bridge/server"; @@ -26,25 +26,46 @@ const MAX_PORT = 65535; let portCounter = BASE_PORT; // Counter for generating unique ports const speculosDevices: [number, SpeculosDevice][] = []; +function sync_delay(ms: number) { + const done = new Int32Array(new SharedArrayBuffer(4)); + Atomics.wait(done, 0, 0, ms); // Wait for the specified duration +} + export async function waitForElementById(id: string | RegExp, timeout: number = DEFAULT_TIMEOUT) { - return await waitFor(getElementById(id)).toBeVisible().withTimeout(timeout); + return await waitFor(element(by.id(id))) + .toBeVisible() + .withTimeout(timeout); } export async function waitForElementByText( text: string | RegExp, timeout: number = DEFAULT_TIMEOUT, ) { - return await waitFor(getElementByText(text)).toBeVisible().withTimeout(timeout); + return await waitFor(element(by.text(text))) + .toBeVisible() + .withTimeout(timeout); } export function getElementById(id: string | RegExp, index = 0) { + if (!isAndroid()) sync_delay(200); // Issue with RN75 : QAA-370 return element(by.id(id)).atIndex(index); } export function getElementByText(text: string | RegExp, index = 0) { + if (!isAndroid()) sync_delay(200); // Issue with RN75 : QAA-370 return element(by.text(text)).atIndex(index); } +export function getWebElementById(id: string, index = 0) { + if (!isAndroid()) sync_delay(200); // Issue with RN75 : QAA-370 + return web.element(by.web.id(id)).atIndex(index); +} + +export function getWebElementByTag(tag: string, index = 0) { + if (!isAndroid()) sync_delay(200); // Issue with RN75 : QAA-370 + return web.element(by.web.tag(tag)).atIndex(index); +} + export async function tapById(id: string | RegExp, index = 0) { return getElementById(id, index).tap(); } @@ -90,6 +111,7 @@ async function performScroll( const scrollViewMatcher = scrollViewId ? by.id(scrollViewId) : by.type(isAndroid() ? "android.widget.ScrollView" : "RCTScrollView"); + if (!isAndroid()) sync_delay(200); // Issue with RN75 : QAA-370 await waitFor(element(elementMatcher)) .toBeVisible() .whileElement(scrollViewMatcher) diff --git a/apps/ledger-live-mobile/e2e/models/liveApps.ts b/apps/ledger-live-mobile/e2e/models/liveApps.ts index cf2833ba0ff3..bcfe2b139af8 100644 --- a/apps/ledger-live-mobile/e2e/models/liveApps.ts +++ b/apps/ledger-live-mobile/e2e/models/liveApps.ts @@ -1,9 +1,9 @@ import { randomUUID } from "crypto"; -import { web, by } from "detox"; import { e2eBridgeServer } from "../bridge/server"; import { first, filter, map } from "rxjs/operators"; import { startDummyServer, stopDummyServer as stopDummyServer } from "@ledgerhq/test-utils"; import { firstValueFrom } from "rxjs"; +import { getWebElementById } from "../helpers"; export async function startLiveApp(liveAppDirectory: string, liveAppPort = 3000) { try { @@ -32,7 +32,7 @@ export async function stopServer() { } export async function send(params: Record) { - const webview = web.element(by.web.id("root")); + const webview = getWebElementById("root"); const id = randomUUID(); const json = JSON.stringify({ id, diff --git a/apps/ledger-live-mobile/e2e/page/discover/buyDevice.page.ts b/apps/ledger-live-mobile/e2e/page/discover/buyDevice.page.ts index 8be0f828f854..b69453161dfd 100644 --- a/apps/ledger-live-mobile/e2e/page/discover/buyDevice.page.ts +++ b/apps/ledger-live-mobile/e2e/page/discover/buyDevice.page.ts @@ -1,5 +1,4 @@ -import { web, by } from "detox"; -import { getElementById, isAndroid, tapByElement } from "../../helpers"; +import { getElementById, getWebElementById, isAndroid, tapByElement } from "../../helpers"; const expectedUrl = "https://shop.ledger.com/"; @@ -13,7 +12,7 @@ export default class BuyDevicePage { async expectBuyNanoWebPage() { // Webview testing is flaky on Android if (!isAndroid()) { - const url = await web.element(by.web.id("__next")).getCurrentUrl(); + const url = await getWebElementById("__next").getCurrentUrl(); expect(url).toContain(expectedUrl); } else { console.warn("Skipping webview check on Android"); diff --git a/apps/ledger-live-mobile/e2e/page/discover/discover.page.ts b/apps/ledger-live-mobile/e2e/page/discover/discover.page.ts index 21d92357ede9..01740ccb832f 100644 --- a/apps/ledger-live-mobile/e2e/page/discover/discover.page.ts +++ b/apps/ledger-live-mobile/e2e/page/discover/discover.page.ts @@ -1,5 +1,11 @@ -import { getElementById, openDeeplink, waitForElementByText } from "../../helpers"; -import { by, expect, log, web } from "detox"; +import { + getElementById, + getWebElementById, + getWebElementByTag, + openDeeplink, + waitForElementByText, +} from "../../helpers"; +import { expect, log } from "detox"; import jestExpect from "expect"; const baseLink = "discover/"; @@ -51,16 +57,16 @@ export default class DiscoverPage { } async expect1inchParams() { - const title = await web.element(by.web.id("__next")).getTitle(); + const title = await getWebElementById("__next").getTitle(); jestExpect(title).toBe("Ledger Platform Apps"); - const url = await web.element(by.web.id("__next")).getCurrentUrl(); + const url = await getWebElementById("__next").getCurrentUrl(); jestExpect(url).toContain("app.1inch.io"); jestExpect(url).toContain("usdt"); jestExpect(url).toContain("sourceTokenAmount%3D"); jestExpect(url).toContain("currency%22%3A%22ethereum"); jestExpect(url).toContain("accountId=d9d1d396-2081-53e1-9c67-f0623e0c4d3a"); - await expect(web.element(by.web.tag("iframe"))).toExist(); + await expect(getWebElementByTag("iframe")).toExist(); } } diff --git a/apps/ledger-live-mobile/e2e/page/liveApps/dummyWalletApp.webView.ts b/apps/ledger-live-mobile/e2e/page/liveApps/dummyWalletApp.webView.ts index ccec4df49442..5b5959515a70 100644 --- a/apps/ledger-live-mobile/e2e/page/liveApps/dummyWalletApp.webView.ts +++ b/apps/ledger-live-mobile/e2e/page/liveApps/dummyWalletApp.webView.ts @@ -1,6 +1,6 @@ -import { web, by } from "detox"; import { send, startLiveApp, stopServer } from "../../models/liveApps"; import DiscoverPage from "../discover/discover.page"; +import { getWebElementById } from "../../helpers"; const port = 52619; @@ -16,10 +16,10 @@ export default class DummyWalletApp { } async expectApp() { - const title = await web.element(by.web.id("image-container")).getTitle(); + const title = await getWebElementById("image-container").getTitle(); expect(title).toBe("Dummy Wallet API App"); - const url = await web.element(by.web.id("param-container")).getCurrentUrl(); + const url = await getWebElementById("param-container").getCurrentUrl(); expect(url).toBe( `http://localhost:${port}/?theme=light&lang=en&name=Dummy+Wallet+API+Live+App`, ); diff --git a/apps/ledger-live-mobile/e2e/specs/onboardingReadOnly.spec.ts b/apps/ledger-live-mobile/e2e/specs/onboardingReadOnly.spec.ts index 42adfc7cf4ed..914b5dd85ecc 100644 --- a/apps/ledger-live-mobile/e2e/specs/onboardingReadOnly.spec.ts +++ b/apps/ledger-live-mobile/e2e/specs/onboardingReadOnly.spec.ts @@ -19,8 +19,7 @@ describe("Onboarding - Read Only", () => { $TmsLink("B2CQA-1753"); $TmsLink("B2CQA-1806"); it("goes through discover app and should see an empty portfolio page", async () => { - await device.launchApp(); - await device.reloadReactNative(); + await device.launchApp({ newInstance: true }); await app.onboarding.startOnboarding(); await app.onboarding.chooseNoLedgerYet(); await app.onboarding.chooseToExploreApp(); diff --git a/apps/ledger-live-mobile/ios/Podfile.lock b/apps/ledger-live-mobile/ios/Podfile.lock index 4c0231b01f51..d4a3098c2b22 100644 --- a/apps/ledger-live-mobile/ios/Podfile.lock +++ b/apps/ledger-live-mobile/ios/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - boost (1.83.0) + - boost (1.84.0) - braze-react-native-sdk (10.0.0): - BrazeKit (~> 9.0.0) - BrazeLocation (~> 9.0.0) @@ -10,7 +10,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -21,6 +20,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -31,17 +31,12 @@ PODS: - BrazeKit (= 9.0.0) - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - EXBarCodeScanner (13.0.1): - - EXImageLoader - - ExpoModulesCore - - ZXingObjC/OneD - - ZXingObjC/PDF417 - EXConstants (16.0.2): - ExpoModulesCore - EXImageLoader (4.7.0): - ExpoModulesCore - React-Core - - Expo (51.0.37): + - Expo (51.0.39): - ExpoModulesCore - ExpoAsset (10.0.10): - ExpoModulesCore @@ -61,14 +56,13 @@ PODS: - SDWebImageWebPCoder - ExpoKeepAwake (13.0.2): - ExpoModulesCore - - ExpoModulesCore (1.12.25): + - ExpoModulesCore (1.12.26): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -81,10 +75,11 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - FBLazyVector (0.74.6) + - FBLazyVector (0.75.4) - Firebase/CoreOnly (8.15.0): - FirebaseCore (= 8.15.0) - Firebase/Messaging (8.15.0): @@ -155,9 +150,9 @@ PODS: - GoogleUtilities/UserDefaults (7.13.3): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - hermes-engine (0.74.6): - - hermes-engine/Pre-built (= 0.74.6) - - hermes-engine/Pre-built (0.74.6) + - hermes-engine (0.75.4): + - hermes-engine/Pre-built (= 0.75.4) + - hermes-engine/Pre-built (0.75.4) - libwebp (1.3.2): - libwebp/demux (= 1.3.2) - libwebp/mux (= 1.3.2) @@ -179,7 +174,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -190,6 +184,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -216,52 +211,32 @@ PODS: - DoubleConversion - fmt (= 9.1.0) - glog - - RCTDeprecation (0.74.6) - - RCTRequired (0.74.6) - - RCTTypeSafety (0.74.6): - - FBLazyVector (= 0.74.6) - - RCTRequired (= 0.74.6) - - React-Core (= 0.74.6) - - React (0.74.6): - - React-Core (= 0.74.6) - - React-Core/DevSupport (= 0.74.6) - - React-Core/RCTWebSocket (= 0.74.6) - - React-RCTActionSheet (= 0.74.6) - - React-RCTAnimation (= 0.74.6) - - React-RCTBlob (= 0.74.6) - - React-RCTImage (= 0.74.6) - - React-RCTLinking (= 0.74.6) - - React-RCTNetwork (= 0.74.6) - - React-RCTSettings (= 0.74.6) - - React-RCTText (= 0.74.6) - - React-RCTVibration (= 0.74.6) - - React-callinvoker (0.74.6) - - React-Codegen (0.74.6): - - DoubleConversion - - glog - - hermes-engine - - RCT-Folly - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric - - React-FabricImage - - React-featureflags - - React-graphics - - React-jsi - - React-jsiexecutor - - React-NativeModulesApple - - React-rendererdebug - - React-utils - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - React-Core (0.74.6): + - RCTDeprecation (0.75.4) + - RCTRequired (0.75.4) + - RCTTypeSafety (0.75.4): + - FBLazyVector (= 0.75.4) + - RCTRequired (= 0.75.4) + - React-Core (= 0.75.4) + - React (0.75.4): + - React-Core (= 0.75.4) + - React-Core/DevSupport (= 0.75.4) + - React-Core/RCTWebSocket (= 0.75.4) + - React-RCTActionSheet (= 0.75.4) + - React-RCTAnimation (= 0.75.4) + - React-RCTBlob (= 0.75.4) + - React-RCTImage (= 0.75.4) + - React-RCTLinking (= 0.75.4) + - React-RCTNetwork (= 0.75.4) + - React-RCTSettings (= 0.75.4) + - React-RCTText (= 0.75.4) + - React-RCTVibration (= 0.75.4) + - React-callinvoker (0.75.4) + - React-Core (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.74.6) + - React-Core/Default (= 0.75.4) - React-cxxreact - React-featureflags - React-hermes @@ -273,7 +248,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.74.6): + - React-Core/CoreModulesHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -290,7 +265,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.74.6): + - React-Core/Default (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -306,13 +281,13 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.74.6): + - React-Core/DevSupport (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.74.6) - - React-Core/RCTWebSocket (= 0.74.6) + - React-Core/Default (= 0.75.4) + - React-Core/RCTWebSocket (= 0.75.4) - React-cxxreact - React-featureflags - React-hermes @@ -324,7 +299,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.74.6): + - React-Core/RCTActionSheetHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -341,7 +316,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.74.6): + - React-Core/RCTAnimationHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -358,7 +333,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.74.6): + - React-Core/RCTBlobHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -375,7 +350,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.74.6): + - React-Core/RCTImageHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -392,7 +367,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.74.6): + - React-Core/RCTLinkingHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -409,7 +384,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.74.6): + - React-Core/RCTNetworkHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -426,7 +401,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.74.6): + - React-Core/RCTSettingsHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -443,7 +418,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.74.6): + - React-Core/RCTTextHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -460,7 +435,7 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.74.6): + - React-Core/RCTVibrationHeaders (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -477,12 +452,12 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.74.6): + - React-Core/RCTWebSocket (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTDeprecation - - React-Core/Default (= 0.74.6) + - React-Core/Default (= 0.75.4) - React-cxxreact - React-featureflags - React-hermes @@ -494,36 +469,221 @@ PODS: - React-utils - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.74.6): + - React-CoreModules (0.75.4): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - - RCTTypeSafety (= 0.74.6) - - React-Codegen - - React-Core/CoreModulesHeaders (= 0.74.6) - - React-jsi (= 0.74.6) + - RCTTypeSafety (= 0.75.4) + - React-Core/CoreModulesHeaders (= 0.75.4) + - React-jsi (= 0.75.4) - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.74.6) + - React-RCTImage (= 0.75.4) + - ReactCodegen - ReactCommon - SocketRocket (= 0.7.0) - - React-cxxreact (0.74.6): - - boost (= 1.83.0) + - React-cxxreact (0.75.4): + - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.6) - - React-debug (= 0.74.6) - - React-jsi (= 0.74.6) + - React-callinvoker (= 0.75.4) + - React-debug (= 0.75.4) + - React-jsi (= 0.75.4) - React-jsinspector - - React-logger (= 0.74.6) - - React-perflogger (= 0.74.6) - - React-runtimeexecutor (= 0.74.6) - - React-debug (0.74.6) - - React-Fabric (0.74.6): + - React-logger (= 0.75.4) + - React-perflogger (= 0.75.4) + - React-runtimeexecutor (= 0.75.4) + - React-debug (0.75.4) + - React-defaultsnativemodule (0.75.4): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-domnativemodule + - React-Fabric + - React-featureflags + - React-featureflagsnativemodule + - React-graphics + - React-idlecallbacksnativemodule + - React-ImageManager + - React-microtasksnativemodule + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-domnativemodule (0.75.4): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricComponents + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animations (= 0.75.4) + - React-Fabric/attributedstring (= 0.75.4) + - React-Fabric/componentregistry (= 0.75.4) + - React-Fabric/componentregistrynative (= 0.75.4) + - React-Fabric/components (= 0.75.4) + - React-Fabric/core (= 0.75.4) + - React-Fabric/dom (= 0.75.4) + - React-Fabric/imagemanager (= 0.75.4) + - React-Fabric/leakchecker (= 0.75.4) + - React-Fabric/mounting (= 0.75.4) + - React-Fabric/observers (= 0.75.4) + - React-Fabric/scheduler (= 0.75.4) + - React-Fabric/telemetry (= 0.75.4) + - React-Fabric/templateprocessor (= 0.75.4) + - React-Fabric/uimanager (= 0.75.4) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.75.4) + - React-Fabric/components/root (= 0.75.4) + - React-Fabric/components/view (= 0.75.4) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -534,20 +694,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.74.6) - - React-Fabric/attributedstring (= 0.74.6) - - React-Fabric/componentregistry (= 0.74.6) - - React-Fabric/componentregistrynative (= 0.74.6) - - React-Fabric/components (= 0.74.6) - - React-Fabric/core (= 0.74.6) - - React-Fabric/imagemanager (= 0.74.6) - - React-Fabric/leakchecker (= 0.74.6) - - React-Fabric/mounting (= 0.74.6) - - React-Fabric/scheduler (= 0.74.6) - - React-Fabric/telemetry (= 0.74.6) - - React-Fabric/templateprocessor (= 0.74.6) - - React-Fabric/textlayoutmanager (= 0.74.6) - - React-Fabric/uimanager (= 0.74.6) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -556,7 +703,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.74.6): + - React-Fabric/components/root (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -567,6 +714,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -575,7 +723,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.74.6): + - React-Fabric/components/view (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -586,6 +734,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -594,7 +743,8 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.74.6): + - Yoga + - React-Fabric/core (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -605,6 +755,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -613,7 +764,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.74.6): + - React-Fabric/dom (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -624,6 +775,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -632,7 +784,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.74.6): + - React-Fabric/imagemanager (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -643,17 +795,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/inputaccessory (= 0.74.6) - - React-Fabric/components/legacyviewmanagerinterop (= 0.74.6) - - React-Fabric/components/modal (= 0.74.6) - - React-Fabric/components/rncore (= 0.74.6) - - React-Fabric/components/root (= 0.74.6) - - React-Fabric/components/safeareaview (= 0.74.6) - - React-Fabric/components/scrollview (= 0.74.6) - - React-Fabric/components/text (= 0.74.6) - - React-Fabric/components/textinput (= 0.74.6) - - React-Fabric/components/unimplementedview (= 0.74.6) - - React-Fabric/components/view (= 0.74.6) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -662,7 +804,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/inputaccessory (0.74.6): + - React-Fabric/leakchecker (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -673,6 +815,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -681,7 +824,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.74.6): + - React-Fabric/mounting (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -692,6 +835,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -700,7 +844,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/modal (0.74.6): + - React-Fabric/observers (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -711,6 +855,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/observers/events (= 0.75.4) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -719,7 +865,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/rncore (0.74.6): + - React-Fabric/observers/events (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -730,6 +876,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -738,7 +885,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.74.6): + - React-Fabric/scheduler (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -749,15 +896,18 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/observers/events + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor - React-logger + - React-performancetimeline - React-rendererdebug - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/safeareaview (0.74.6): + - React-Fabric/telemetry (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -768,6 +918,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -776,7 +927,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.74.6): + - React-Fabric/templateprocessor (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -787,6 +938,7 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -795,7 +947,7 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/text (0.74.6): + - React-Fabric/uimanager (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -806,15 +958,18 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/uimanager/consistency (= 0.75.4) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor - React-logger + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/textinput (0.74.6): + - React-Fabric/uimanager/consistency (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -825,15 +980,17 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor - React-logger + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/unimplementedview (0.74.6): + - React-FabricComponents (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -844,6 +1001,10 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-FabricComponents/components (= 0.75.4) + - React-FabricComponents/textlayoutmanager (= 0.75.4) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -851,8 +1012,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.74.6): + - Yoga + - React-FabricComponents/components (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -863,6 +1026,17 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-FabricComponents/components/inputaccessory (= 0.75.4) + - React-FabricComponents/components/iostextinput (= 0.75.4) + - React-FabricComponents/components/modal (= 0.75.4) + - React-FabricComponents/components/rncore (= 0.75.4) + - React-FabricComponents/components/safeareaview (= 0.75.4) + - React-FabricComponents/components/scrollview (= 0.75.4) + - React-FabricComponents/components/text (= 0.75.4) + - React-FabricComponents/components/textinput (= 0.75.4) + - React-FabricComponents/components/unimplementedview (= 0.75.4) + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -870,9 +1044,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.74.6): + - React-FabricComponents/components/inputaccessory (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -883,6 +1058,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -890,8 +1067,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.74.6): + - Yoga + - React-FabricComponents/components/iostextinput (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -902,6 +1081,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -909,8 +1090,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.74.6): + - Yoga + - React-FabricComponents/components/modal (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -921,6 +1104,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -928,8 +1113,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.74.6): + - Yoga + - React-FabricComponents/components/rncore (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -940,6 +1127,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -947,8 +1136,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.74.6): + - Yoga + - React-FabricComponents/components/safeareaview (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -959,6 +1150,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -966,8 +1159,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.74.6): + - Yoga + - React-FabricComponents/components/scrollview (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -978,6 +1173,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -985,8 +1182,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.74.6): + - Yoga + - React-FabricComponents/components/text (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -997,6 +1196,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -1004,8 +1205,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/textlayoutmanager (0.74.6): + - Yoga + - React-FabricComponents/components/textinput (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1016,7 +1219,8 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -1024,8 +1228,10 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.74.6): + - Yoga + - React-FabricComponents/components/unimplementedview (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog @@ -1036,6 +1242,8 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric + - React-featureflags - React-graphics - React-jsi - React-jsiexecutor @@ -1043,46 +1251,115 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon/turbomodule/core - - React-FabricImage (0.74.6): + - Yoga + - React-FabricComponents/textlayoutmanager (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - - RCTRequired (= 0.74.6) - - RCTTypeSafety (= 0.74.6) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/core + - Yoga + - React-FabricImage (0.75.4): + - DoubleConversion + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired (= 0.75.4) + - RCTTypeSafety (= 0.75.4) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.74.6) + - React-jsiexecutor (= 0.75.4) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-featureflags (0.74.6) - - React-graphics (0.74.6): + - React-featureflags (0.75.4) + - React-featureflagsnativemodule (0.75.4): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-graphics (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - RCT-Folly/Fabric (= 2024.01.01.00) - - React-Core/Default (= 0.74.6) + - React-jsi + - React-jsiexecutor - React-utils - - React-hermes (0.74.6): + - React-hermes (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.74.6) + - React-cxxreact (= 0.75.4) - React-jsi - - React-jsiexecutor (= 0.74.6) + - React-jsiexecutor (= 0.75.4) - React-jsinspector - - React-perflogger (= 0.74.6) + - React-perflogger (= 0.75.4) - React-runtimeexecutor - - React-ImageManager (0.74.6): + - React-idlecallbacksnativemodule (0.75.4): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-ImageManager (0.75.4): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1091,43 +1368,63 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.74.6): + - React-jserrorhandler (0.75.4): - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - - React-Mapbuffer - - React-jsi (0.74.6): - - boost (= 1.83.0) + - React-jsi (0.75.4): + - boost - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-jsiexecutor (0.74.6): + - React-jsiexecutor (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-cxxreact (= 0.74.6) - - React-jsi (= 0.74.6) + - React-cxxreact (= 0.75.4) + - React-jsi (= 0.75.4) - React-jsinspector - - React-perflogger (= 0.74.6) - - React-jsinspector (0.74.6): + - React-perflogger (= 0.75.4) + - React-jsinspector (0.75.4): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-featureflags - React-jsi - - React-runtimeexecutor (= 0.74.6) - - React-jsitracing (0.74.6): + - React-runtimeexecutor (= 0.75.4) + - React-jsitracing (0.75.4): - React-jsi - - React-logger (0.74.6): + - React-logger (0.75.4): - glog - - React-Mapbuffer (0.74.6): + - React-Mapbuffer (0.75.4): - glog - React-debug + - React-microtasksnativemodule (0.75.4): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-biometrics (3.0.1): - React-Core - react-native-ble-plx (3.1.2): @@ -1138,7 +1435,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1149,6 +1445,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1171,14 +1468,13 @@ PODS: - React - react-native-netinfo (9.5.0): - React-Core - - react-native-pager-view (6.3.0): + - react-native-pager-view (6.5.1): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1189,6 +1485,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1207,7 +1504,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1218,6 +1514,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1245,7 +1542,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1256,11 +1552,12 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - React-nativeconfig (0.74.6) - - React-NativeModulesApple (0.74.6): + - React-nativeconfig (0.75.4) + - React-NativeModulesApple (0.75.4): - glog - hermes-engine - React-callinvoker @@ -1271,25 +1568,28 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.74.6) - - React-RCTActionSheet (0.74.6): - - React-Core/RCTActionSheetHeaders (= 0.74.6) - - React-RCTAnimation (0.74.6): + - React-perflogger (0.75.4) + - React-performancetimeline (0.75.4): + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact + - React-RCTActionSheet (0.75.4): + - React-Core/RCTActionSheetHeaders (= 0.75.4) + - React-RCTAnimation (0.75.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTAppDelegate (0.74.6): + - React-RCTAppDelegate (0.75.4): - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-CoreModules - React-debug + - React-defaultsnativemodule - React-Fabric - React-featureflags - React-graphics @@ -1305,27 +1605,29 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils + - ReactCodegen - ReactCommon - - React-RCTBlob (0.74.6): + - React-RCTBlob (0.75.4): - DoubleConversion - fmt (= 9.1.0) - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-Codegen - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi - React-jsinspector - React-NativeModulesApple - React-RCTNetwork + - ReactCodegen - ReactCommon - - React-RCTFabric (0.74.6): + - React-RCTFabric (0.75.4): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-Core - React-debug - React-Fabric + - React-FabricComponents - React-FabricImage - React-featureflags - React-graphics @@ -1333,61 +1635,64 @@ PODS: - React-jsi - React-jsinspector - React-nativeconfig + - React-performancetimeline - React-RCTImage - React-RCTText + - React-rendererconsistency - React-rendererdebug - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.74.6): + - React-RCTImage (0.75.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTImageHeaders - React-jsi - React-NativeModulesApple - React-RCTNetwork + - ReactCodegen - ReactCommon - - React-RCTLinking (0.74.6): - - React-Codegen - - React-Core/RCTLinkingHeaders (= 0.74.6) - - React-jsi (= 0.74.6) + - React-RCTLinking (0.75.4): + - React-Core/RCTLinkingHeaders (= 0.75.4) + - React-jsi (= 0.75.4) - React-NativeModulesApple + - ReactCodegen - ReactCommon - - ReactCommon/turbomodule/core (= 0.74.6) - - React-RCTNetwork (0.74.6): + - ReactCommon/turbomodule/core (= 0.75.4) + - React-RCTNetwork (0.75.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTSettings (0.74.6): + - React-RCTSettings (0.75.4): - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - - React-Codegen - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-RCTText (0.74.6): - - React-Core/RCTTextHeaders (= 0.74.6) + - React-RCTText (0.75.4): + - React-Core/RCTTextHeaders (= 0.75.4) - Yoga - - React-RCTVibration (0.74.6): + - React-RCTVibration (0.75.4): - RCT-Folly (= 2024.01.01.00) - - React-Codegen - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple + - ReactCodegen - ReactCommon - - React-rendererdebug (0.74.6): + - React-rendererconsistency (0.75.4) + - React-rendererdebug (0.75.4): - DoubleConversion - fmt (= 9.1.0) - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.74.6) - - React-RuntimeApple (0.74.6): + - React-rncore (0.75.4) + - React-RuntimeApple (0.75.4): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-callinvoker @@ -1404,8 +1709,9 @@ PODS: - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes + - React-runtimescheduler - React-utils - - React-RuntimeCore (0.74.6): + - React-RuntimeCore (0.75.4): - glog - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) @@ -1418,9 +1724,9 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.74.6): - - React-jsi (= 0.74.6) - - React-RuntimeHermes (0.74.6): + - React-runtimeexecutor (0.75.4): + - React-jsi (= 0.75.4) + - React-RuntimeHermes (0.75.4): - hermes-engine - RCT-Folly/Fabric (= 2024.01.01.00) - React-featureflags @@ -1431,7 +1737,7 @@ PODS: - React-nativeconfig - React-RuntimeCore - React-utils - - React-runtimescheduler (0.74.6): + - React-runtimescheduler (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) @@ -1440,54 +1746,76 @@ PODS: - React-debug - React-featureflags - React-jsi + - React-rendererconsistency - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.74.6): + - React-utils (0.75.4): - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - React-debug - - React-jsi (= 0.74.6) - - ReactCommon (0.74.6): - - ReactCommon/turbomodule (= 0.74.6) - - ReactCommon/turbomodule (0.74.6): + - React-jsi (= 0.75.4) + - ReactCodegen (0.75.4): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - ReactCommon (0.75.4): + - ReactCommon/turbomodule (= 0.75.4) + - ReactCommon/turbomodule (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.6) - - React-cxxreact (= 0.74.6) - - React-jsi (= 0.74.6) - - React-logger (= 0.74.6) - - React-perflogger (= 0.74.6) - - ReactCommon/turbomodule/bridging (= 0.74.6) - - ReactCommon/turbomodule/core (= 0.74.6) - - ReactCommon/turbomodule/bridging (0.74.6): + - React-callinvoker (= 0.75.4) + - React-cxxreact (= 0.75.4) + - React-jsi (= 0.75.4) + - React-logger (= 0.75.4) + - React-perflogger (= 0.75.4) + - ReactCommon/turbomodule/bridging (= 0.75.4) + - ReactCommon/turbomodule/core (= 0.75.4) + - ReactCommon/turbomodule/bridging (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.6) - - React-cxxreact (= 0.74.6) - - React-jsi (= 0.74.6) - - React-logger (= 0.74.6) - - React-perflogger (= 0.74.6) - - ReactCommon/turbomodule/core (0.74.6): + - React-callinvoker (= 0.75.4) + - React-cxxreact (= 0.75.4) + - React-jsi (= 0.75.4) + - React-logger (= 0.75.4) + - React-perflogger (= 0.75.4) + - ReactCommon/turbomodule/core (0.75.4): - DoubleConversion - fmt (= 9.1.0) - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - - React-callinvoker (= 0.74.6) - - React-cxxreact (= 0.74.6) - - React-debug (= 0.74.6) - - React-jsi (= 0.74.6) - - React-logger (= 0.74.6) - - React-perflogger (= 0.74.6) - - React-utils (= 0.74.6) + - React-callinvoker (= 0.75.4) + - React-cxxreact (= 0.75.4) + - React-debug (= 0.75.4) + - React-featureflags (= 0.75.4) + - React-jsi (= 0.75.4) + - React-logger (= 0.75.4) + - React-perflogger (= 0.75.4) + - React-utils (= 0.75.4) - ReactNativePerformance (4.1.2): - React-Core - rn-fetch-blob (0.12.0): @@ -1517,14 +1845,13 @@ PODS: - RNFBApp - RNFlashList (1.6.4): - React-Core - - RNGestureHandler (2.16.0): + - RNGestureHandler (2.18.1): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1535,6 +1862,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1553,7 +1881,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1564,6 +1891,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - RNReanimated/reanimated (= 3.16.1) @@ -1576,7 +1904,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1587,6 +1914,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - RNReanimated/reanimated/apple (= 3.16.1) @@ -1598,7 +1926,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1609,6 +1936,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1619,7 +1947,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1630,17 +1957,17 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (3.31.1): + - RNScreens (3.33.0): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1652,6 +1979,7 @@ PODS: - React-RCTImage - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1671,7 +1999,6 @@ PODS: - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - - React-Codegen - React-Core - React-debug - React-Fabric @@ -1682,6 +2009,7 @@ PODS: - React-RCTFabric - React-rendererdebug - React-utils + - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga @@ -1714,18 +2042,17 @@ DEPENDENCIES: - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) - "braze-react-native-sdk (from `../node_modules/@braze/react-native-sdk`)" - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - - "EXBarCodeScanner (from `../../../node_modules/.pnpm/expo-barcode-scanner@13.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3__maszsdkedszwvvp64iob75ptdi/node_modules/expo-barcode-scanner/ios`)" - - "EXConstants (from `../../../node_modules/.pnpm/expo-constants@16.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types_sijec7prhgtbz44o6ef4y5u4ba/node_modules/expo-constants/ios`)" - - "EXImageLoader (from `../../../node_modules/.pnpm/expo-image-loader@4.7.0_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_gco2s6ifmprwecsppfzweu6aue/node_modules/expo-image-loader/ios`)" - - "Expo (from `../../../node_modules/.pnpm/expo@51.0.37_@babel+core@7.24.3_expo-modules-autolinking@1.11.2_expo-modules-core@1.12.25_rea_wvp6fdfpsnp7clsuujftai7ruq/node_modules/expo`)" - - "ExpoAsset (from `../../../node_modules/.pnpm/expo-asset@10.0.10_vzz7pjdkhelr25eia3vbv5drg4/node_modules/expo-asset/ios`)" - - "ExpoCamera (from `../../../node_modules/.pnpm/expo-camera@15.0.16_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+r_v5pv7ikbalymv6r6r7haq7ism4/node_modules/expo-camera/ios`)" - - "ExpoCrypto (from `../../../node_modules/.pnpm/expo-crypto@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+re_k7nzsplriwxdrw7nnchmro2swe/node_modules/expo-crypto/ios`)" - - "ExpoFileSystem (from `../../../node_modules/.pnpm/expo-file-system@17.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_wk5np6yivj3sja4u6wz25rmbva/node_modules/expo-file-system/ios`)" - - "ExpoFont (from `../../../node_modules/.pnpm/expo-font@12.0.10_expo-asset@10.0.10_vzz7pjdkhelr25eia3vbv5drg4__expo-modules-core@1.12.25_re_2yundkxhqgs37qa7neabcowvfe/node_modules/expo-font/ios`)" - - "ExpoImageManipulator (from `../../../node_modules/.pnpm/expo-image-manipulator@12.0.5_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24._4dir7xoe7mqz4vj4u6ywemlofq/node_modules/expo-image-manipulator/ios`)" - - "ExpoKeepAwake (from `../../../node_modules/.pnpm/expo-keep-awake@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@type_nrajxiink7zyaq5cbx2hv3kmkq/node_modules/expo-keep-awake/ios`)" - - "ExpoModulesCore (from `../../../node_modules/.pnpm/expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+react@18.2.73_react@18.3.1__react@18.3.1/node_modules/expo-modules-core`)" + - "EXConstants (from `../../../node_modules/.pnpm/expo-constants@16.0.2_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types_rproegwlxlnson7miipd77adb4/node_modules/expo-constants/ios`)" + - "EXImageLoader (from `../../../node_modules/.pnpm/expo-image-loader@4.7.0_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@typ_6lnceoomhdx2gskrzh3nbqbw6q/node_modules/expo-image-loader/ios`)" + - "Expo (from `../../../node_modules/.pnpm/expo@51.0.39_@babel+core@7.24.3_expo-modules-autolinking@1.11.2_expo-modules-core@1.12.26_rea_a6krvppzciulhzjjfyufkkkhg4/node_modules/expo`)" + - "ExpoAsset (from `../../../node_modules/.pnpm/expo-asset@10.0.10_6swtssrbgxqycpc7eps5a4xxjq/node_modules/expo-asset/ios`)" + - "ExpoCamera (from `../../../node_modules/.pnpm/expo-camera@15.0.16_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types+r_f5ob5xec66l7k42vwrxpwsenf4/node_modules/expo-camera/ios`)" + - "ExpoCrypto (from `../../../node_modules/.pnpm/expo-crypto@13.0.2_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types+re_todxpdtsn6tlsvb5azr7ednmdm/node_modules/expo-crypto/ios`)" + - "ExpoFileSystem (from `../../../node_modules/.pnpm/expo-file-system@17.0.1_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@typ_cuhvtwl6c2ijkfb5cuyrmzofaq/node_modules/expo-file-system/ios`)" + - "ExpoFont (from `../../../node_modules/.pnpm/expo-font@12.0.10_expo-asset@10.0.10_6swtssrbgxqycpc7eps5a4xxjq__expo-modules-core@1.12.26_re_qg2bfisrdnkkvqenrfscjlqydm/node_modules/expo-font/ios`)" + - "ExpoImageManipulator (from `../../../node_modules/.pnpm/expo-image-manipulator@12.0.5_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24._vjbct5shbb5aymg52seyzyxcae/node_modules/expo-image-manipulator/ios`)" + - "ExpoKeepAwake (from `../../../node_modules/.pnpm/expo-keep-awake@13.0.2_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@type_asiyjifmzpnjeiinhrzsdrphgq/node_modules/expo-keep-awake/ios`)" + - "ExpoModulesCore (from `../../../node_modules/.pnpm/expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types+react@18.2.73_react@1_wpnpqrz774uzlazihm4t4kzp4m/node_modules/expo-modules-core`)" - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) @@ -1738,17 +2065,21 @@ DEPENDENCIES: - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - - React-Codegen (from `build/generated/ios`) - React-Core (from `../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) + - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) + - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) - React-Fabric (from `../node_modules/react-native/ReactCommon`) + - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) - React-FabricImage (from `../node_modules/react-native/ReactCommon`) - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) + - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) + - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) @@ -1757,6 +2088,7 @@ DEPENDENCIES: - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) - React-logger (from `../node_modules/react-native/ReactCommon/logger`) - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) + - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) - react-native-biometrics (from `../node_modules/react-native-biometrics`) - react-native-ble-plx (from `../node_modules/react-native-ble-plx`) - react-native-config (from `../node_modules/react-native-config`) @@ -1783,6 +2115,7 @@ DEPENDENCIES: - React-nativeconfig (from `../node_modules/react-native/ReactCommon`) - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`) @@ -1794,6 +2127,7 @@ DEPENDENCIES: - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) + - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`) - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`) - React-rncore (from `../node_modules/react-native/ReactCommon`) - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) @@ -1802,6 +2136,7 @@ DEPENDENCIES: - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) + - ReactCodegen (from `build/generated/ios`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - "ReactNativePerformance (from `../node_modules/@shopify/react-native-performance`)" - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) @@ -1865,30 +2200,28 @@ EXTERNAL SOURCES: :path: "../node_modules/@braze/react-native-sdk" DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" - EXBarCodeScanner: - :path: "../../../node_modules/.pnpm/expo-barcode-scanner@13.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3__maszsdkedszwvvp64iob75ptdi/node_modules/expo-barcode-scanner/ios" EXConstants: - :path: "../../../node_modules/.pnpm/expo-constants@16.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types_sijec7prhgtbz44o6ef4y5u4ba/node_modules/expo-constants/ios" + :path: "../../../node_modules/.pnpm/expo-constants@16.0.2_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types_rproegwlxlnson7miipd77adb4/node_modules/expo-constants/ios" EXImageLoader: - :path: "../../../node_modules/.pnpm/expo-image-loader@4.7.0_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_gco2s6ifmprwecsppfzweu6aue/node_modules/expo-image-loader/ios" + :path: "../../../node_modules/.pnpm/expo-image-loader@4.7.0_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@typ_6lnceoomhdx2gskrzh3nbqbw6q/node_modules/expo-image-loader/ios" Expo: - :path: "../../../node_modules/.pnpm/expo@51.0.37_@babel+core@7.24.3_expo-modules-autolinking@1.11.2_expo-modules-core@1.12.25_rea_wvp6fdfpsnp7clsuujftai7ruq/node_modules/expo" + :path: "../../../node_modules/.pnpm/expo@51.0.39_@babel+core@7.24.3_expo-modules-autolinking@1.11.2_expo-modules-core@1.12.26_rea_a6krvppzciulhzjjfyufkkkhg4/node_modules/expo" ExpoAsset: - :path: "../../../node_modules/.pnpm/expo-asset@10.0.10_vzz7pjdkhelr25eia3vbv5drg4/node_modules/expo-asset/ios" + :path: "../../../node_modules/.pnpm/expo-asset@10.0.10_6swtssrbgxqycpc7eps5a4xxjq/node_modules/expo-asset/ios" ExpoCamera: - :path: "../../../node_modules/.pnpm/expo-camera@15.0.16_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+r_v5pv7ikbalymv6r6r7haq7ism4/node_modules/expo-camera/ios" + :path: "../../../node_modules/.pnpm/expo-camera@15.0.16_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types+r_f5ob5xec66l7k42vwrxpwsenf4/node_modules/expo-camera/ios" ExpoCrypto: - :path: "../../../node_modules/.pnpm/expo-crypto@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+re_k7nzsplriwxdrw7nnchmro2swe/node_modules/expo-crypto/ios" + :path: "../../../node_modules/.pnpm/expo-crypto@13.0.2_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types+re_todxpdtsn6tlsvb5azr7ednmdm/node_modules/expo-crypto/ios" ExpoFileSystem: - :path: "../../../node_modules/.pnpm/expo-file-system@17.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_wk5np6yivj3sja4u6wz25rmbva/node_modules/expo-file-system/ios" + :path: "../../../node_modules/.pnpm/expo-file-system@17.0.1_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@typ_cuhvtwl6c2ijkfb5cuyrmzofaq/node_modules/expo-file-system/ios" ExpoFont: - :path: "../../../node_modules/.pnpm/expo-font@12.0.10_expo-asset@10.0.10_vzz7pjdkhelr25eia3vbv5drg4__expo-modules-core@1.12.25_re_2yundkxhqgs37qa7neabcowvfe/node_modules/expo-font/ios" + :path: "../../../node_modules/.pnpm/expo-font@12.0.10_expo-asset@10.0.10_6swtssrbgxqycpc7eps5a4xxjq__expo-modules-core@1.12.26_re_qg2bfisrdnkkvqenrfscjlqydm/node_modules/expo-font/ios" ExpoImageManipulator: - :path: "../../../node_modules/.pnpm/expo-image-manipulator@12.0.5_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24._4dir7xoe7mqz4vj4u6ywemlofq/node_modules/expo-image-manipulator/ios" + :path: "../../../node_modules/.pnpm/expo-image-manipulator@12.0.5_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24._vjbct5shbb5aymg52seyzyxcae/node_modules/expo-image-manipulator/ios" ExpoKeepAwake: - :path: "../../../node_modules/.pnpm/expo-keep-awake@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@type_nrajxiink7zyaq5cbx2hv3kmkq/node_modules/expo-keep-awake/ios" + :path: "../../../node_modules/.pnpm/expo-keep-awake@13.0.2_expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@type_asiyjifmzpnjeiinhrzsdrphgq/node_modules/expo-keep-awake/ios" ExpoModulesCore: - :path: "../../../node_modules/.pnpm/expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+react@18.2.73_react@18.3.1__react@18.3.1/node_modules/expo-modules-core" + :path: "../../../node_modules/.pnpm/expo-modules-core@1.12.26_react-native@0.75.4_@babel+core@7.24.3_@types+react@18.2.73_react@1_wpnpqrz774uzlazihm4t4kzp4m/node_modules/expo-modules-core" FBLazyVector: :path: "../node_modules/react-native/Libraries/FBLazyVector" fmt: @@ -1897,7 +2230,7 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-09-30-RNv0.74.6-6f503f52cbf98b2b37c4d3900e7f1193d6512548 + :tag: hermes-2024-08-15-RNv0.75.1-4b3bf912cc0f705b51b71ce1a5b8bd79b93a451b lottie-react-native: :path: "../node_modules/lottie-react-native" RCT-Folly: @@ -1912,8 +2245,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/" React-callinvoker: :path: "../node_modules/react-native/ReactCommon/callinvoker" - React-Codegen: - :path: build/generated/ios React-Core: :path: "../node_modules/react-native/" React-CoreModules: @@ -1922,16 +2253,26 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/cxxreact" React-debug: :path: "../node_modules/react-native/ReactCommon/react/debug" + React-defaultsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" + React-domnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" React-Fabric: :path: "../node_modules/react-native/ReactCommon" + React-FabricComponents: + :path: "../node_modules/react-native/ReactCommon" React-FabricImage: :path: "../node_modules/react-native/ReactCommon" React-featureflags: :path: "../node_modules/react-native/ReactCommon/react/featureflags" + React-featureflagsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" React-graphics: :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" React-hermes: :path: "../node_modules/react-native/ReactCommon/hermes" + React-idlecallbacksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" React-jserrorhandler: @@ -1948,6 +2289,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/logger" React-Mapbuffer: :path: "../node_modules/react-native/ReactCommon" + React-microtasksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" react-native-biometrics: :path: "../node_modules/react-native-biometrics" react-native-ble-plx: @@ -2000,6 +2343,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancetimeline: + :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" React-RCTActionSheet: :path: "../node_modules/react-native/Libraries/ActionSheetIOS" React-RCTAnimation: @@ -2022,6 +2367,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/Libraries/Text" React-RCTVibration: :path: "../node_modules/react-native/Libraries/Vibration" + React-rendererconsistency: + :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency" React-rendererdebug: :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" React-rncore: @@ -2038,6 +2385,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" React-utils: :path: "../node_modules/react-native/ReactCommon/react/utils" + ReactCodegen: + :path: build/generated/ios ReactCommon: :path: "../node_modules/react-native/ReactCommon" ReactNativePerformance: @@ -2094,17 +2443,16 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: d3f49c53809116a5d38da093a8aa78bf551aed09 - braze-react-native-sdk: 6d09bdec92ee21835bd24285fcf1dbf435f2a23b + boost: 4cb898d0bf20404aab1850c656dcea009429d6c1 + braze-react-native-sdk: 101b5b2fc4ce91fc9a157818f53be1e326066bb6 BrazeKit: 7406e77825c624d8e7a162d858a4bffdf79270f5 BrazeLocation: 43405bf92037c9840f5f5467a7b8418583bc7850 BrazeUI: 9e86bd30ca84f66444a5f6d95e438057000f4d0f CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 - EXBarCodeScanner: e2dd9b42c1b522a2adc9202b1dfbc64cb34456d1 EXConstants: 409690fbfd5afea964e5e9d6c4eb2c2b59222c59 EXImageLoader: ab589d67d6c5f2c33572afea9917304418566334 - Expo: 67b60b3b80a3c8e9f3bcaaa84d06d140229a246d + Expo: 8c995afb875c15bf8439af0b20bcb9ed8f90d0bd ExpoAsset: 323700f291684f110fb55f0d4022a3362ea9f875 ExpoCamera: 929be541d1c1319fcf32f9f5d9df8b97804346b5 ExpoCrypto: 156078f266bf28f80ecf5e2a9c3a0d6ffce07a1c @@ -2112,8 +2460,8 @@ SPEC CHECKSUMS: ExpoFont: 00756e6c796d8f7ee8d211e29c8b619e75cbf238 ExpoImageManipulator: aea99205c66043a00a0af90e345395637b9902fa ExpoKeepAwake: 3b8815d9dd1d419ee474df004021c69fdd316d08 - ExpoModulesCore: 0e7d4d5c13169bbbd53496721d811adbcc5d600a - FBLazyVector: 4b1589d37c9ff4dba11a63083fe7515fad3ac111 + ExpoModulesCore: 3c510215eb78bb9c757cc0a6c1b1f52d9dbb63c8 + FBLazyVector: 430e10366de01d1e3d57374500b1b150fe482e6d Firebase: 5f8193dff4b5b7c5d5ef72ae54bb76c08e2b841d FirebaseABTesting: 10cbce8db9985ae2e3847ea44e9947dd18f94e10 FirebaseCore: 5743c5785c074a794d35f2fff7ecc254a91e08b1 @@ -2122,42 +2470,47 @@ SPEC CHECKSUMS: FirebaseMessaging: 5e5118a2383b3531e730d974680954c679ca0a13 FirebaseRemoteConfig: 2d6e2cfdb49af79535c8af8a80a4a5009038ec2b fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 - glog: fdfdfe5479092de0c4bdbebedd9056951f092c4f + glog: 69ef571f3de08433d766d614c73a9838a06bf7eb GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15 - hermes-engine: 2102c92e54a031a270fd1fe84169ec8a0901b7bd + hermes-engine: ea92f60f37dba025e293cbe4b4a548fd26b610a0 libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009 lottie-ios: fcb5e73e17ba4c983140b7d21095c834b3087418 - lottie-react-native: f851c0e235f171d99083c803f728f644be1dcf65 + lottie-react-native: 3f0e9dc322229ca99f4b35795bc3794d84ff04bc MultiplatformBleAdapter: b1fddd0d499b96b607e00f0faa8e60648343dc1d nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96 PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 - RCT-Folly: 02617c592a293bd6d418e0a88ff4ee1f88329b47 - RCTDeprecation: 5f1d7e1f8ef6c53f0207e3ac0d0ca23575e8a6ab - RCTRequired: dcfd24ece09940bbf24b7c2974f4eb68a9baee55 - RCTTypeSafety: 3d65944055cc73f3bb28c3f05c7eaff2bb7ceb83 - React: c5e9f3c07a890a7e2a1ec9b79faa5c53dd7aee01 - React-callinvoker: 9ac986dbbd0e1b3463cb740b12c0b37dbcd15fed - React-Codegen: f5bd8446ba2b7d4a7bb4b25e137f44f286eb98f7 - React-Core: e8de3613460de4f02cdf6a0d726526fe273766b4 - React-CoreModules: 704fd52f83780e1870a946d5c3ea6ea1175aa523 - React-cxxreact: 75572783e7feae5a9f67157ea13968bf5ab274a3 - React-debug: 180e1bf4a97fa4404ee7fb68952cace122aa9d73 - React-Fabric: 1118712bb2dfae21b7d03d5daf419018e867f8e9 - React-FabricImage: 3878f51fa0ac860fb733f0a3c958442a7b5ec587 - React-featureflags: 05fabc5e165fa3864c879556e83a455b8a0573fa - React-graphics: 77bb68d9d913682a23c621df01ab61b2e58a5c70 - React-hermes: e4c48dab6830b282e1b41023cdae9b5c1f7ae075 - React-ImageManager: 6dbe9e5578c03d48b25e646ee65faa63b10e9544 - React-jserrorhandler: 16f7ef986fd20a2d342e5430c9dd0502a4136320 - React-jsi: b34c85593159261ce19f9c5fd0a627b3dc1483c6 - React-jsiexecutor: dcf7df38a296d104b196c193a0111d3f8a46da0b - React-jsinspector: 7dfaff7a0f57d23eeab023fe6a243f7707a14f6d - React-jsitracing: df84cc252a1f4bb0970f7fe13c470451b18c2cbb - React-logger: de9b65c8c7b71a663e6e99d347b1c445f5190c39 - React-Mapbuffer: 766bb4d8f655d816913325b353d800debbde7209 + RCT-Folly: 4464f4d875961fce86008d45f4ecf6cef6de0740 + RCTDeprecation: 726d24248aeab6d7180dac71a936bbca6a994ed1 + RCTRequired: a94e7febda6db0345d207e854323c37e3a31d93b + RCTTypeSafety: 28e24a6e44f5cbf912c66dde6ab7e07d1059a205 + React: c2830fa483b0334bda284e46a8579ebbe0c5447e + React-callinvoker: 4aecde929540c26b841a4493f70ebf6016691eb8 + React-Core: 9c059899f00d46b5cec3ed79251f77d9c469553d + React-CoreModules: 9fac2d31803c0ed03e4ddaa17f1481714f8633a5 + React-cxxreact: a979810a3ca4045ceb09407a17563046a7f71494 + React-debug: 3d21f69d8def0656f8b8ec25c0f05954f4d862c5 + React-defaultsnativemodule: 2fa2bdb7bd03ff9764facc04aa8520ebf14febae + React-domnativemodule: 986e6fe7569e1383dce452a7b013b6c843a752df + React-Fabric: 3bc7be9e3a6b7581fc828dc2aa041e107fc8ffb8 + React-FabricComponents: 668e0cb02344c2942e4c8921a643648faa6dc364 + React-FabricImage: 3f44dd25a2b020ed5215d4438a1bb1f3461cd4f1 + React-featureflags: ee1abd6f71555604a36cda6476e3c502ca9a48e5 + React-featureflagsnativemodule: 7ccc0cd666c2a6257401dceb7920818ac2b42803 + React-graphics: d7dd9c8d75cad5af19e19911fa370f78f2febd96 + React-hermes: 2069b08e965e48b7f8aa2c0ca0a2f383349ed55d + React-idlecallbacksnativemodule: e211b2099b6dced97959cb58257bab2b2de4d7ef + React-ImageManager: ab7a7d17dd0ff1ef1d4e1e88197d1119da9957ce + React-jserrorhandler: d9e867bb83b868472f3f7601883f0403b3e3942d + React-jsi: d68f1d516e5120a510afe356647a6a1e1f98f2db + React-jsiexecutor: 6366a08a0fc01c9b65736f8deacd47c4a397912a + React-jsinspector: 0ac947411f0c73b34908800cc7a6a31d8f93e1a8 + React-jsitracing: 0e8c0aadb1fcec6b1e4f2a66ee3b0da80f0f8615 + React-logger: d79b704bf215af194f5213a6b7deec50ba8e6a9b + React-Mapbuffer: b982d5bba94a8bc073bda48f0d27c9b28417fae3 + React-microtasksnativemodule: 2b73e68f0462f3175f98782db08896f8501afd20 react-native-biometrics: 352e5a794bfffc46a0c86725ea7dc62deb085bdc - react-native-ble-plx: cd7b99ddaf7c15e652c63f87a12e96c715ee3c80 + react-native-ble-plx: 643e9e17685a99c327c4a3564ff928bc20937653 react-native-config: 8f7283449bbb048902f4e764affbbf24504454af react-native-fast-crypto: 5943c42466b86ad70be60d3a5f64bd22251e5d9e react-native-fast-pbkdf2: 44d6ffa0346863e14100294004a1595ec76b2e9f @@ -2166,42 +2519,45 @@ SPEC CHECKSUMS: react-native-image-picker: 3269f75c251cdcd61ab51b911dd30d6fff8c6169 react-native-launch-arguments: 5f41e0abf88a15e3c5309b8875d6fd5ac43df49d react-native-netinfo: 48c5f79a84fbc3ba1d28a8b0d04adeda72885fa8 - react-native-pager-view: c1e29e1a6105a02807392ba822ad322447a72f55 + react-native-pager-view: 12284823fff3b85b4dd16456b04def6ba9422677 react-native-performance: e66c3730f9e463b959dc21ff38fd2c8b8e53ea79 react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846 react-native-restart: 45c8dca02491980f2958595333cbccd6877cb57e react-native-safe-area-context: a240ad4b683349e48b1d51fed1611138d1bdad97 - react-native-slider: 315e6552460f5d7753c71cf3142b00161cb2d5a5 + react-native-slider: cefed6244ec9a9cc2b418f4aca536a777e00f9cd react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-startup-time: 8ceecdaaae6bc912f4ea668d91ecbacb04981817 react-native-tcp-socket: e724380c910c2e704816ec817ed28f1342246ff7 react-native-udp: df79c3cb72c4e71240cd3ce4687bfb8a137140d5 react-native-version-number: b415bbec6a13f2df62bf978e85bc0d699462f37f react-native-video: c26780b224543c62d5e1b2a7244a5cd1b50e8253 - react-native-webview: 66c0e45a5aa931d7deada77e69042020a86f1aaa - React-nativeconfig: c36a079fa219a9911070cc0058b746407e1ef47d - React-NativeModulesApple: eab84dd7bda0650f3ce41c53f76ffd49d689763f - React-perflogger: 9f21c9e3d8d220833e649a141fed8e5ca08977d9 - React-RCTActionSheet: 4c1f0dc56952f21a904e9f3bf74253eebee1d1d9 - React-RCTAnimation: 2c0b963d4fd978ce35daa330986a8bc442c7517a - React-RCTAppDelegate: bfb8293aa467aae8a28050e4095b0ceff284cbd5 - React-RCTBlob: a440574d805536c58c0c409cb5058334c8d2886c - React-RCTFabric: 6ea72ddf222ea1e373d0cbac88a1c62355701995 - React-RCTImage: e63bc8abbad2c5a4eda53ff35282d83bc9df7559 - React-RCTLinking: 12c6962253fd2f2494231eb8ae2fecae71e54e2f - React-RCTNetwork: 46df47440bd2bf63b0ca0a3c640471243ed2922a - React-RCTSettings: 5e1dfa02ae2d6cf54b3fdfebaa80837540c50847 - React-RCTText: 1c045a74e4fda674523c932f53bdd15b2a3ba085 - React-RCTVibration: 2ba9de92ae71526b3e02b8b8b2fce5cbf47c393f - React-rendererdebug: acb324f4975412bb14d55b29dd5ca6961b5fa06a - React-rncore: 63db76511a92db6cf9649c9d6567e014b7eeb6f5 - React-RuntimeApple: 6ecb0a470d1ef989895a4e5d31980004378ebf71 - React-RuntimeCore: 2794fdb42f7d37f3c877f614e12a0a240b594815 - React-runtimeexecutor: bf091a7f5f5130daab6d8216aaa290374b214cb8 - React-RuntimeHermes: 73249fcc108708a137119de18c3d40ac5ab90160 - React-runtimescheduler: b63ebebd3e000e0ba4ac19ca69bdac071559ad57 - React-utils: 2955bdc1b2ed495f14dc7d3bfbbb7e3624cfc0fc - ReactCommon: 5c504a77030c7ab89eee75b1725b80d8cee7f5d7 + react-native-webview: ee105d349401004116f31e07296ad869f47870d7 + React-nativeconfig: 8c83d992b9cc7d75b5abe262069eaeea4349f794 + React-NativeModulesApple: 9f7920224a3b0c7d04d77990067ded14cee3c614 + React-perflogger: 59e1a3182dca2cee7b9f1f7aab204018d46d1914 + React-performancetimeline: a9d05533ff834c6aa1f532e05e571f3fd2e3c1ed + React-RCTActionSheet: d80e68d3baa163e4012a47c1f42ddd8bcd9672cc + React-RCTAnimation: bde981f6bd7f8493696564da9b3bd05721d3b3cc + React-RCTAppDelegate: 0176615c51476c88212bf3edbafb840d39ea7631 + React-RCTBlob: 520a0382bf8e89b9153d60e3c6293e51615834e9 + React-RCTFabric: c9da097b19b30017a99498b8c66a69c72f3ce689 + React-RCTImage: 90448d2882464af6015ed57c98f463f8748be465 + React-RCTLinking: 1bd95d0a704c271d21d758e0f0388cced768d77d + React-RCTNetwork: 218af6e63eb9b47935cc5a775b7a1396cf10ff91 + React-RCTSettings: e10b8e42b0fce8a70fbf169de32a2ae03243ef6b + React-RCTText: e7bf9f4997a1a0b45c052d4ad9a0fe653061cf29 + React-RCTVibration: 5b70b7f11e48d1c57e0d4832c2097478adbabe93 + React-rendererconsistency: f620c6e003e3c4593e6349d8242b8aeb3d4633f0 + React-rendererdebug: e697680f4dd117becc5daf9ea9800067abcee91c + React-rncore: c22bd84cc2f38947f0414fab6646db22ff4f80cd + React-RuntimeApple: de0976836b90b484305638616898cbc665c67c13 + React-RuntimeCore: 3c4a5aa63d9e7a3c17b7fb23f32a72a8bcfccf57 + React-runtimeexecutor: ea90d8e3a9e0f4326939858dafc6ab17c031a5d3 + React-RuntimeHermes: c6b0afdf1f493621214eeb6517fb859ce7b21b81 + React-runtimescheduler: 84f0d876d254bce6917a277b3930eb9bc29df6c7 + React-utils: cbe8b8b3d7b2ac282e018e46f0e7b25cdc87c5a0 + ReactCodegen: 4bcb34e6b5ebf6eef5cee34f55aa39991ea1c1f1 + ReactCommon: 6a952e50c2a4b694731d7682aaa6c79bc156e4ad ReactNativePerformance: ab7dee4c4862623d72c1530a9fc71b55458edf71 rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c @@ -2213,17 +2569,17 @@ SPEC CHECKSUMS: RNFBMessaging: 40dac204b4197a2661dec5be964780c6ec39bf65 RNFBRemoteConfig: 92fbb75ceb69fec44ae727b70d23c5d1798f7648 RNFlashList: b521ebdd7f9352673817f1d98e8bdc0c8cf8545b - RNGestureHandler: 4d271a5d9178403bd8dae0d853e2be21cf53743c + RNGestureHandler: 939f21fabf5d45a725c0bf175eb819dd25cf2e70 RNInAppBrowser: e36d6935517101ccba0e875bac8ad7b0cb655364 RNKeychain: f75b8c8b2f17d3b2aa1f25b4a0ac5b83d947ff8f RNLocalize: d4b8af4e442d4bcca54e68fc687a2129b4d71a81 RNReactNativeHapticFeedback: ec56a5f81c3941206fd85625fa669ffc7b4545f9 - RNReanimated: 8385e21193c0d2ae9f7598b4ea8caa08eb64bc19 - RNScreens: b32a9ff15bea7fcdbe5dff6477bc503f792b1208 + RNReanimated: 82b558efb00a30a3b8ea1a3ca8975125e9400313 + RNScreens: 63500b789c1b5286972a55d4a7d73fc1123f51e4 RNSentry: e7e5d059d62d6c447d83e14800edc1812a594a5d RNShare: b674d9f1cb0dc11116983bebd8712908a226a3ee RNSVG: d00c8f91c3cbf6d476451313a18f04d220d4f396 - RNVectorIcons: 845eda5c7819bd29699cafd0fc98c9d4afe28c96 + RNVectorIcons: 6382277afab3c54658e9d555ee0faa7a37827136 SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d segment-analytics-react-native: 1c36d83c0a735795e304178241331e7701dc5d2a @@ -2233,7 +2589,7 @@ SPEC CHECKSUMS: Storyly: 310297bcf4493d3d5b41e71834fba49502c8067a storyly-react-native: ddc3bbad4176759d21b7b21143f174120b9679e1 TOCropViewController: 20a14b6a7a098308bf369e7c8d700dc983a974e6 - Yoga: 4f4f07a17818e76d1b04edc01b68b6d49a682100 + Yoga: 055f92ad73f8c8600a93f0e25ac0b2344c3b07e6 ZXingObjC: 8898711ab495761b2dbbdec76d90164a6d7e14c5 PODFILE CHECKSUM: 4c5b001707477c61a8565ce9b4276b1c35fdcd65 diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj b/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj index bf405f88eb54..a3eb6275c6e7 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj @@ -13,7 +13,6 @@ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 17F58472269C64670070C475 /* RCTBluetoothHelperModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 17F58471269C64670070C475 /* RCTBluetoothHelperModule.m */; }; 2372D3D5180104DBED4E22EE /* libPods-ledgerlivemobile.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31C4672E151A9F9D4A18DB00 /* libPods-ledgerlivemobile.a */; }; - 2A2FAB56B85E5D2BFF574A32 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09BC9C5402323A57C5327727 /* ExpoModulesProvider.swift */; }; 2EA091AF2C3FBD5900B6181E /* GoogleService-Info-Testing.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2EA091AE2C3FBD5900B6181E /* GoogleService-Info-Testing.plist */; }; 3407D5D9215D2AB800C9D40B /* NeededForBLE.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3407D5D8215D2AB800C9D40B /* NeededForBLE.swift */; }; 515E9C2C8C0049EC992210D9 /* Inter-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = 3B6982A2E67F482A8069215B /* Inter-Medium.otf */; }; @@ -31,6 +30,7 @@ E55EFC09114D43B3AB041882 /* FontAwesome5_Pro_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 991AA9919E4840DBB799E117 /* FontAwesome5_Pro_Solid.ttf */; }; E85A22C62B17E835005A8E6D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E85A22C52B17E835005A8E6D /* LaunchScreen.storyboard */; }; E9558EFF2AF93CD200BBEB55 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E9558F012AF93CD200BBEB55 /* InfoPlist.strings */; }; + F45A09B01925C0C58A9D40CE /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6562F0F2E65142E04A9EDDEB /* ExpoModulesProvider.swift */; }; F837348722721A48009D747A /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F837348622721A48009D747A /* JavaScriptCore.framework */; }; F99BEAC629E8441C83104922 /* FontAwesome5_Pro_Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6D891D99F1084D459DBF667F /* FontAwesome5_Pro_Light.ttf */; }; /* End PBXBuildFile section */ @@ -39,7 +39,6 @@ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* ledgerlivemobileTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ledgerlivemobileTests.m; sourceTree = ""; }; - 09BC9C5402323A57C5327727 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-ledgerlivemobile/ExpoModulesProvider.swift"; sourceTree = ""; }; 0EC70FE4282B9CAA00E9E355 /* AdServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdServices.framework; path = System/Library/Frameworks/AdServices.framework; sourceTree = SDKROOT; }; 0F189190C1964DD1B7E31BE6 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* ledgerlivemobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ledgerlivemobile.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -76,6 +75,7 @@ 5F63C9E4AC284203A95B417E /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; 612C2DE49D8C4046AE4FF442 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = wrapper.framework; name = Lottie.framework; path = System/Library/Frameworks/Lottie.framework; sourceTree = SDKROOT; }; 61C9A3D5E8F7421487C85E86 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; + 6562F0F2E65142E04A9EDDEB /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-ledgerlivemobile/ExpoModulesProvider.swift"; sourceTree = ""; }; 668E26194DD94B6D8F10D450 /* FontAwesome5_Pro_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Pro_Regular.ttf; path = ../assets/fonts/FontAwesome5_Pro_Regular.ttf; sourceTree = ""; }; 68139B1F4BF967461F30D471 /* Pods-ledgerlivemobile-ledgerlivemobileTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ledgerlivemobile-ledgerlivemobileTests.debug.xcconfig"; path = "Target Support Files/Pods-ledgerlivemobile-ledgerlivemobileTests/Pods-ledgerlivemobile-ledgerlivemobileTests.debug.xcconfig"; sourceTree = ""; }; 6C1563DFEE064431AF4F8F6B /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; @@ -239,14 +239,22 @@ name = Resources; sourceTree = ""; }; - 6179FB29F63AFA468DD9E791 /* ExpoModulesProviders */ = { + 3FFCC43AD858899EF1B5EEBC /* ExpoModulesProviders */ = { isa = PBXGroup; children = ( - CC8AB426478BB87045DF18DA /* ledgerlivemobile */, + 63E331B15C566A87BDB91DF1 /* ledgerlivemobile */, ); name = ExpoModulesProviders; sourceTree = ""; }; + 63E331B15C566A87BDB91DF1 /* ledgerlivemobile */ = { + isa = PBXGroup; + children = ( + 6562F0F2E65142E04A9EDDEB /* ExpoModulesProvider.swift */, + ); + name = ledgerlivemobile; + sourceTree = ""; + }; 832341AE1AAA6A7D00B99B32 /* Libraries */ = { isa = PBXGroup; children = ( @@ -270,7 +278,7 @@ 3F0372EE9483431D91FAB7D5 /* Resources */, 3407D5D7215D2AB800C9D40B /* ledgerlivemobile-Bridging-Header.h */, 07E26242AA68EF56DFCEFC67 /* Pods */, - 6179FB29F63AFA468DD9E791 /* ExpoModulesProviders */, + 3FFCC43AD858899EF1B5EEBC /* ExpoModulesProviders */, ); indentWidth = 2; sourceTree = ""; @@ -297,14 +305,6 @@ name = Frameworks; sourceTree = ""; }; - CC8AB426478BB87045DF18DA /* ledgerlivemobile */ = { - isa = PBXGroup; - children = ( - 09BC9C5402323A57C5327727 /* ExpoModulesProvider.swift */, - ); - name = ledgerlivemobile; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -468,6 +468,7 @@ "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport/GoogleDataTransport_Privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities_Privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises_Privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/RCT-Folly/RCT-Folly_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo/RNDeviceInfoPrivacyInfo.bundle", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", @@ -489,9 +490,12 @@ "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", - "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/Sentry/Sentry.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/TOCropViewController/TOCropViewControllerBundle.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/boost/boost_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/glog/glog_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/LottiePrivacyInfo.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/lottie-react-native/Lottie_React_Native_Privacy.bundle", ); @@ -506,6 +510,7 @@ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleDataTransport_Privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleUtilities_Privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FBLPromises_Privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCT-Folly_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNDeviceInfoPrivacyInfo.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf", @@ -527,9 +532,12 @@ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", - "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Sentry.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TOCropViewControllerBundle.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/boost_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/glog_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/LottiePrivacyInfo.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Lottie_React_Native_Privacy.bundle", ); @@ -632,7 +640,7 @@ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, 17F58472269C64670070C475 /* RCTBluetoothHelperModule.m in Sources */, 13B07FC11A68108700A75B9A /* main.m in Sources */, - 2A2FAB56B85E5D2BFF574A32 /* ExpoModulesProvider.swift in Sources */, + F45A09B01925C0C58A9D40CE /* ExpoModulesProvider.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -966,6 +974,7 @@ OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; SWIFT_VERSION = 5.0; USE_HERMES = true; }; diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm b/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm index 57b8f2b81d4e..798fe49ee7b9 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm @@ -22,12 +22,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( // You can add your custom initial props in the dictionary below. // They will be passed down to the ViewController used by React Native. self.initialProps = @{}; - - RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; - RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge - moduleName:@"ledgerlivemobile" - initialProperties:nil]; - // Retrieve the correct GoogleService-Info.plist file name for a given environment NSString *googleServiceInfoEnvName = [RNCConfig envFor:@"GOOGLE_SERVICE_INFO_NAME"]; @@ -73,13 +67,24 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( [[BrazeReactUtils sharedInstance] populateInitialUrlFromLaunchOptions:launchOptions]; + BOOL appLaunched = [super application:application didFinishLaunchingWithOptions:launchOptions]; + // This condition is needed to prevent a crash since upgrading to React Native 0.75.4 + // It may be fixed in a later version of React Native + // https://github.com/facebook/react-native/issues/47202 + if (!appLaunched) { + return NO; + } + + RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; + RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge + moduleName:@"ledgerlivemobile" + initialProperties:nil]; [self.window makeKeyAndVisible]; UIStoryboard *sb = [UIStoryboard storyboardWithName:@"LaunchScreen" bundle:nil]; UIViewController *vc = [sb instantiateInitialViewController]; rootView.loadingView = vc.view; - [super application:application didFinishLaunchingWithOptions:launchOptions]; - + return YES; } diff --git a/apps/ledger-live-mobile/package.json b/apps/ledger-live-mobile/package.json index 797b789a2853..da3fc10dfb08 100644 --- a/apps/ledger-live-mobile/package.json +++ b/apps/ledger-live-mobile/package.json @@ -117,8 +117,8 @@ "@react-native-firebase/messaging": "14.12.0", "@react-native-firebase/remote-config": "14.12.0", "@react-native-masked-view/masked-view": "0.2.9", - "@react-native/gradle-plugin": "0.74.88", - "@react-native/metro-config": "0.74.88", + "@react-native/gradle-plugin": "0.75.4", + "@react-native/metro-config": "0.75.4", "@react-navigation/bottom-tabs": "6.5.20", "@react-navigation/core": "6.4.16", "@react-navigation/elements": "1.3.30", @@ -142,8 +142,7 @@ "d3-scale": "3.3.0", "d3-shape": "1.3.7", "date-fns": "2.30.0", - "expo": "51.0.37", - "expo-barcode-scanner": "13.0.1", + "expo": "51.0.39", "expo-camera": "15.0.16", "expo-crypto": "13.0.2", "expo-file-system": "17.0.1", @@ -151,7 +150,7 @@ "expo-image-manipulator": "12.0.5", "expo-keep-awake": "13.0.2", "expo-modules-autolinking": "1.11.2", - "expo-modules-core": "1.12.25", + "expo-modules-core": "1.12.26", "fuse.js": "6.6.2", "hoist-non-react-statics": "3.3.2", "i18next": "20.6.1", @@ -168,7 +167,7 @@ "react": "18.3.1", "react-i18next": "11.18.6", "react-is": "18.3.1", - "react-native": "0.74.6", + "react-native": "0.75.4", "react-native-android-location-services-dialog-box": "2.8.2", "react-native-animatable": "1.4.0", "react-native-biometrics": "3.0.1", @@ -180,7 +179,7 @@ "react-native-fast-crypto": "2.2.0", "react-native-fast-image": "8.6.3", "react-native-fast-pbkdf2": "0.3.1", - "react-native-gesture-handler": "2.16.0", + "react-native-gesture-handler": "2.18.1", "react-native-get-random-values": "1.11.0", "react-native-haptic-feedback": "2.2.0", "react-native-image-crop-tools": "1.6.4", @@ -192,13 +191,13 @@ "react-native-localize": "2.2.6", "react-native-modal": "13.0.1", "react-native-navigation-bar-color": "2.0.2", - "react-native-pager-view": "6.3.0", + "react-native-pager-view": "6.5.1", "react-native-qrcode-svg": "6.1.1", "react-native-randombytes": "3.6.1", "react-native-reanimated": "3.16.1", "react-native-restart": "0.0.24", "react-native-safe-area-context": "4.10.5", - "react-native-screens": "3.31.1", + "react-native-screens": "3.33.0", "react-native-share": "10.1.0", "react-native-splash-screen": "3.2.0", "react-native-startup-time": "2.1.0", @@ -241,12 +240,12 @@ "@ledgerhq/live-cli": "workspace:^", "@ledgerhq/speculos-transport": "workspace:^", "@ledgerhq/test-utils": "workspace:^", - "@react-native-community/cli": "13.6.1", - "@react-native-community/cli-platform-android": "13.6.1", - "@react-native-community/cli-platform-ios": "13.6.1", - "@react-native/babel-preset": "0.74.88", - "@react-native/dev-middleware": "0.74.88", - "@sentry/cli": "2.31.0", + "@react-native-community/cli": "14.1.0", + "@react-native-community/cli-platform-android": "14.1.0", + "@react-native-community/cli-platform-ios": "14.1.0", + "@react-native/babel-preset": "0.75.4", + "@react-native/dev-middleware": "0.75.4", + "@sentry/cli": "2.34.1", "@swc/core": "1.4.11", "@swc/jest": "0.2.36", "@testing-library/jest-native": "5.4.3", diff --git a/apps/ledger-live-mobile/src/components/Scanner.tsx b/apps/ledger-live-mobile/src/components/Scanner.tsx index 974c4c83e122..fa54d3c7701c 100644 --- a/apps/ledger-live-mobile/src/components/Scanner.tsx +++ b/apps/ledger-live-mobile/src/components/Scanner.tsx @@ -1,7 +1,6 @@ import React, { useContext } from "react"; import { StyleSheet, View } from "react-native"; import { BarCodeScanningResult, Camera, CameraType } from "expo-camera/legacy"; -import { BarCodeScanner } from "expo-barcode-scanner"; import { Flex } from "@ledgerhq/native-ui"; import StyledStatusBar from "./StyledStatusBar"; import CameraScreen from "./CameraScreen"; @@ -33,7 +32,7 @@ const Scanner = ({ onResult, liveQrCode, progress, instruction }: Props) => { ratio="16:9" onBarCodeScanned={({ data }: BarCodeScanningResult) => onResult(data)} barCodeScannerSettings={{ - barCodeTypes: [BarCodeScanner.Constants.BarCodeType.qr], + barCodeTypes: ["qr"], }} > #endif - @interface RNFastCrypto : NSObject \ No newline at end of file + @interface RNFastCrypto : NSObject diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 576c7026be33..fdc9356311c3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -35,7 +35,7 @@ patchedDependencies: hash: yanhspfjw3apvvf4gev5ovygia path: patches/detox@20.26.2.patch react-native-fast-crypto@2.2.0: - hash: jdmv3zyvsaug2f6l23zgrmwdli + hash: bmot5xcuajv3pdpobflt4ufvae path: patches/react-native-fast-crypto@2.2.0.patch react-native-fast-pbkdf2@0.3.1: hash: hsxraxacbj7ixutjkwcickkwma @@ -949,85 +949,85 @@ importers: version: link:../../libs/ledgerjs/packages/types-live '@likashefqet/react-native-image-zoom': specifier: 1.3.0 - version: 1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.3.0(react-native-gesture-handler@2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-native-async-storage/async-storage': specifier: 1.23.1 - version: 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) '@react-native-clipboard/clipboard': specifier: 1.13.2 - version: 1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.13.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-native-community/netinfo': specifier: 9.5.0 - version: 9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 9.5.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) '@react-native-community/slider': specifier: 4.5.0 version: 4.5.0 '@react-native-firebase/app': specifier: 14.12.0 - version: 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-native-firebase/messaging': specifier: 14.12.0 - version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)) + version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)) '@react-native-firebase/remote-config': specifier: 14.12.0 - version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)) + version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)) '@react-native-masked-view/masked-view': specifier: 0.2.9 - version: 0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 0.2.9(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-native/gradle-plugin': - specifier: 0.74.88 - version: 0.74.88 + specifier: 0.75.4 + version: 0.75.4 '@react-native/metro-config': - specifier: 0.74.88 - version: 0.74.88(@babel/core@7.24.3) + specifier: 0.75.4 + version: 0.75.4(@babel/core@7.24.3) '@react-navigation/bottom-tabs': specifier: 6.5.20 - version: 6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.5.20(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-navigation/core': specifier: 6.4.16 version: 6.4.16(react@18.3.1) '@react-navigation/elements': specifier: 1.3.30 - version: 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.3.30(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-navigation/material-top-tabs': specifier: 6.6.13 - version: 6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.6.13(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-tab-view@3.5.2(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-navigation/native': specifier: 6.1.17 - version: 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-navigation/native-stack': specifier: 6.9.26 - version: 6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.9.26(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-navigation/stack': specifier: 6.3.29 - version: 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.3.29(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-gesture-handler@2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@reduxjs/toolkit': specifier: 2.0.1 version: 2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) '@segment/analytics-react-native': specifier: 2.19.1 - version: 2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)))(@segment/sovran-react-native@0.4.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-get-random-values@1.11.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@segment/sovran-react-native': specifier: 0.4.5 - version: 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 0.4.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@sentry/react-native': specifier: 5.24.3 - version: 5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 5.24.3(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@shopify/flash-list': specifier: 1.6.4 - version: 1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.6.4(@babel/runtime@7.24.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@shopify/react-native-performance': specifier: 4.1.2 - version: 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 4.1.2(@babel/runtime@7.24.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@shopify/react-native-performance-navigation': specifier: 3.0.0 - version: 3.0.0(kovrw3xh2to45edylhohkqevc4) + version: 3.0.0(exhv34m7nv4khuc65lm2bic4ei) '@tanstack/react-query': specifier: 5.28.9 version: 5.28.9(react@18.3.1) asyncstorage-down: specifier: 4.2.0 - version: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))) + version: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))) bignumber.js: specifier: 9.1.2 version: 9.1.2 @@ -1050,35 +1050,32 @@ importers: specifier: 2.30.0 version: 2.30.0 expo: - specifier: 51.0.37 - version: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-barcode-scanner: - specifier: 13.0.1 - version: 13.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + specifier: 51.0.39 + version: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-camera: specifier: 15.0.16 - version: 15.0.16(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 15.0.16(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-crypto: specifier: 13.0.2 - version: 13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 13.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-file-system: specifier: 17.0.1 - version: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 17.0.1(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-image-loader: specifier: 4.7.0 - version: 4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 4.7.0(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-image-manipulator: specifier: 12.0.5 - version: 12.0.5(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 12.0.5(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-keep-awake: specifier: 13.0.2 - version: 13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 13.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-modules-autolinking: specifier: 1.11.2 - version: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-modules-core: - specifier: 1.12.25 - version: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + specifier: 1.12.26 + version: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fuse.js: specifier: 6.6.2 version: 6.6.2 @@ -1102,7 +1099,7 @@ importers: version: 4.17.21 lottie-react-native: specifier: 6.7.0 - version: 6.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.7.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) moment: specifier: 2.30.1 version: 2.30.1 @@ -1123,127 +1120,127 @@ importers: version: 18.3.1 react-i18next: specifier: 11.18.6 - version: 11.18.6(i18next@20.6.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@20.6.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-is: specifier: 18.3.1 version: 18.3.1 react-native: - specifier: 0.74.6 - version: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + specifier: 0.75.4 + version: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-android-location-services-dialog-box: specifier: 2.8.2 - version: 2.8.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 2.8.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-animatable: specifier: 1.4.0 - version: 1.4.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.4.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-biometrics: specifier: 3.0.1 - version: 3.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 3.0.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-ble-plx: specifier: 3.1.2 - version: 3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 3.1.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-config: specifier: 1.5.3 - version: 1.5.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 1.5.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-device-info: specifier: 11.1.0 - version: 11.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 11.1.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-easy-markdown: specifier: 2.0.0 - version: 2.0.0(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 2.0.0(prop-types@15.8.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-extra-dimensions-android: specifier: 1.2.5 version: 1.2.5 react-native-fast-crypto: specifier: 2.2.0 - version: 2.2.0(patch_hash=jdmv3zyvsaug2f6l23zgrmwdli)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 2.2.0(patch_hash=bmot5xcuajv3pdpobflt4ufvae)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-fast-image: specifier: 8.6.3 - version: 8.6.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 8.6.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-fast-pbkdf2: specifier: 0.3.1 - version: 0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-gesture-handler: - specifier: 2.16.0 - version: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + specifier: 2.18.1 + version: 2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-get-random-values: specifier: 1.11.0 - version: 1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 1.11.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-haptic-feedback: specifier: 2.2.0 - version: 2.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 2.2.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-image-crop-tools: specifier: 1.6.4 - version: 1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-image-picker: specifier: 5.7.0 - version: 5.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 5.7.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-inappbrowser-reborn: specifier: 3.7.0 - version: 3.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 3.7.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-keyboard-aware-scroll-view: specifier: 0.9.5 - version: 0.9.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 0.9.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-keychain: specifier: 7.0.0 version: 7.0.0 react-native-level-fs: specifier: 3.0.1 - version: 3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)))) + version: 3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)))) react-native-localize: specifier: 2.2.6 - version: 2.2.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 2.2.6(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-modal: specifier: 13.0.1 - version: 13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 13.0.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-navigation-bar-color: specifier: 2.0.2 version: 2.0.2 react-native-pager-view: - specifier: 6.3.0 - version: 6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + specifier: 6.5.1 + version: 6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-qrcode-svg: specifier: 6.1.1 - version: 6.1.1(react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 6.1.1(react-native-svg@13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-randombytes: specifier: 3.6.1 version: 3.6.1 react-native-reanimated: specifier: 3.16.1 - version: 3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-restart: specifier: 0.0.24 - version: 0.0.24(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 0.0.24(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-safe-area-context: specifier: 4.10.5 - version: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-screens: - specifier: 3.31.1 - version: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + specifier: 3.33.0 + version: 3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-share: specifier: 10.1.0 version: 10.1.0 react-native-splash-screen: specifier: 3.2.0 - version: 3.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 3.2.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-startup-time: specifier: 2.1.0 - version: 2.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 2.1.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-svg: specifier: 13.14.0 - version: 13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-tab-view: specifier: 3.5.2 - version: 3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 3.5.2(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-tcp-socket: specifier: 6.0.6 - version: 6.0.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 6.0.6(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-udp: specifier: 4.1.7 version: 4.1.7 react-native-url-polyfill: specifier: 1.3.0 - version: 1.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 1.3.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-vector-icons: specifier: 10.2.0 version: 10.2.0 @@ -1255,7 +1252,7 @@ importers: version: 5.2.1(patch_hash=vl2q6vd2d45opudk6juqeyavs4) react-native-webview: specifier: 13.10.3 - version: 13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-redux: specifier: 7.2.9 version: 7.2.9(@types/react@18.2.73)(react@18.3.1) @@ -1279,7 +1276,7 @@ importers: version: 7.5.4 storyly-react-native: specifier: 3.6.2 - version: 3.6.2(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 3.6.2(prop-types@15.8.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) styled-components: specifier: 5.3.11 version: 5.3.11(@babel/core@7.24.3)(react-is@18.3.1)(react@18.3.1) @@ -1342,23 +1339,23 @@ importers: specifier: workspace:^ version: link:../../libs/test-utils '@react-native-community/cli': - specifier: 13.6.1 - version: 13.6.1 + specifier: 14.1.0 + version: 14.1.0(typescript@5.4.3) '@react-native-community/cli-platform-android': - specifier: 13.6.1 - version: 13.6.1 + specifier: 14.1.0 + version: 14.1.0 '@react-native-community/cli-platform-ios': - specifier: 13.6.1 - version: 13.6.1 + specifier: 14.1.0 + version: 14.1.0 '@react-native/babel-preset': - specifier: 0.74.88 - version: 0.74.88(@babel/core@7.24.3) + specifier: 0.75.4 + version: 0.75.4(@babel/core@7.24.3) '@react-native/dev-middleware': - specifier: 0.74.88 - version: 0.74.88 + specifier: 0.75.4 + version: 0.75.4 '@sentry/cli': - specifier: 2.31.0 - version: 2.31.0 + specifier: 2.34.1 + version: 2.34.1 '@swc/core': specifier: 1.4.11 version: 1.4.11 @@ -1367,10 +1364,10 @@ importers: version: 0.2.36(@swc/core@1.4.11) '@testing-library/jest-native': specifier: 5.4.3 - version: 5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.4.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/react-native': specifier: 12.4.5 - version: 12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1) + version: 12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1) '@types/body-parser': specifier: 1.19.5 version: 1.19.5 @@ -1415,7 +1412,7 @@ importers: version: 6.4.18(@types/react@18.2.73) '@types/react-native-video': specifier: 5.0.20 - version: 5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + version: 5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) '@types/react-redux': specifier: 7.1.33 version: 7.1.33(@types/react@18.2.73) @@ -1526,10 +1523,10 @@ importers: version: 0.4.3 react-native-launch-arguments: specifier: 4.0.2 - version: 4.0.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + version: 4.0.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-performance: specifier: 3.1.2 - version: 3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + version: 3.1.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-test-renderer: specifier: 18.3.1 version: 18.3.1(react@18.3.1) @@ -7049,10 +7046,10 @@ importers: version: 4.2.3 react-native-modal: specifier: ^13.0.0 - version: 13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 13.0.1(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) rn-range-slider: specifier: 2.1.1 - version: 2.1.1(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 2.1.1(prop-types@15.8.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) styled-system: specifier: ^5.1.5 version: 5.1.5 @@ -7095,16 +7092,16 @@ importers: version: 11.0.0 '@emotion/native': specifier: ^11.0.0 - version: 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 11.11.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@expo/metro-config': specifier: ^0.10.7 version: 0.10.7 '@expo/webpack-config': specifier: ^18.1.2 - version: 18.1.4(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(metro@0.80.12)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 18.1.4(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@react-native-async-storage/async-storage': specifier: 1.17.12 - version: 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)) + version: 1.17.12(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3)) '@react-native-community/cli-server-api': specifier: ^7.0.3 version: 7.0.4 @@ -7128,16 +7125,16 @@ importers: version: 7.6.20(react@18.3.1) '@storybook/addon-ondevice-actions': specifier: 6.5.7 - version: 6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@storybook/addon-ondevice-backgrounds': specifier: 6.5.7 - version: 6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 6.5.7(@emotion/native@11.11.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@storybook/addon-ondevice-controls': specifier: 6.5.7 - version: 6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@storybook/addon-ondevice-notes': specifier: 6.5.7 - version: 6.5.7(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 6.5.7(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@storybook/addon-react-native-web': specifier: ^0.0.21 version: 0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack@5.94.0(metro@0.80.12)) @@ -7155,7 +7152,7 @@ importers: version: 7.6.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.3) '@storybook/react-native': specifier: 6.5.7 - version: 6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)))(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12)) + version: 6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3)))(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native-safe-area-context@4.10.9(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12)) '@storybook/react-webpack5': specifier: ^7.6.18 version: 7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.94.0(metro@0.80.12))) @@ -7226,20 +7223,20 @@ importers: specifier: ^0.6.15 version: 0.6.15(eslint@8.57.0)(typescript@5.4.3) expo: - specifier: ^49.0.7 - version: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + specifier: 51.0.39 + version: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-asset: specifier: 8.10.1 - version: 8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 8.10.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-constants: specifier: ^14.4.2 - version: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-font: specifier: ^11.4.0 - version: 11.10.3(expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 11.10.3(expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) expo-modules-core: - specifier: 1.5.11 - version: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + specifier: 1.12.26 + version: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fs-extra: specifier: ^10.0.1 version: 10.1.0 @@ -7292,17 +7289,17 @@ importers: specifier: ^18 version: 18.3.1 react-native: - specifier: 0.74.6 - version: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + specifier: 0.75.4 + version: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) react-native-reanimated: specifier: 3.16.1 - version: 3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-safe-area-context: specifier: ^4.10.9 - version: 4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 4.10.9(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-svg: specifier: 13.14.0 - version: 13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + version: 13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-web: specifier: ~0.19.6 version: 0.19.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -7967,6 +7964,14 @@ packages: 7zip-bin@5.2.0: resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==} + '@0no-co/graphql.web@1.0.11': + resolution: {integrity: sha512-xuSJ9WXwTmtngWkbdEoopMo6F8NLtjy84UNAMsAr5C3/2SgAL/dEU10TMqTIsipqPQ8HA/7WzeqQ9DEQxSvPPA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + graphql: + optional: true + '@aashutoshrathi/word-wrap@1.2.6': resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} @@ -8413,10 +8418,18 @@ packages: resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.24.1': resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.26.2': + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} + engines: {node: '>=6.9.0'} + '@babel/core@7.24.3': resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} engines: {node: '>=6.9.0'} @@ -8435,10 +8448,18 @@ packages: resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} engines: {node: '>=6.9.0'} + '@babel/generator@7.26.2': + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.25.9': + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} + engines: {node: '>=6.9.0'} + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} @@ -8447,23 +8468,44 @@ packages: resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.25.9': + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.24.1': resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-class-features-plugin@7.25.9': + resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.22.15': resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.25.9': + resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-define-polyfill-provider@0.6.1': resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-define-polyfill-provider@0.6.3': + resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-environment-visitor@7.22.20': resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} @@ -8480,44 +8522,86 @@ packages: resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.25.9': + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.24.3': resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.23.3': resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} + '@babel/helper-optimise-call-expression@7.25.9': + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.24.0': resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.25.9': + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} + engines: {node: '>=6.9.0'} + '@babel/helper-remap-async-to-generator@7.22.20': resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-remap-async-to-generator@7.25.9': + resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.24.1': resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.25.9': + resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-simple-access@7.22.5': resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} + '@babel/helper-simple-access@7.25.9': + resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} + engines: {node: '>=6.9.0'} + '@babel/helper-split-export-declaration@7.22.6': resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} @@ -8526,18 +8610,34 @@ packages: resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.7': resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.25.9': + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.22.20': resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.25.9': + resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} + engines: {node: '>=6.9.0'} + '@babel/helpers@7.24.1': resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} engines: {node: '>=6.9.0'} @@ -8551,6 +8651,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.26.2': + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1': resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} engines: {node: '>=6.9.0'} @@ -8595,6 +8700,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-export-default-from@7.25.9': + resolution: {integrity: sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-export-namespace-from@7.18.9': resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -8702,6 +8813,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-export-default-from@7.25.9': + resolution: {integrity: sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-export-namespace-from@7.8.3': resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -8713,6 +8830,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-flow@7.26.0': + resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.24.1': resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} engines: {node: '>=6.9.0'} @@ -8741,6 +8864,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-jsx@7.25.9': + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -8789,6 +8918,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-typescript@7.25.9': + resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} @@ -8813,6 +8948,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.25.9': + resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.24.1': resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} engines: {node: '>=6.9.0'} @@ -8825,6 +8966,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.25.9': + resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.24.1': resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==} engines: {node: '>=6.9.0'} @@ -8843,18 +8990,36 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.25.9': + resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.24.1': resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.25.9': + resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.24.1': resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.25.9': + resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.24.1': resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==} engines: {node: '>=6.9.0'} @@ -8891,6 +9056,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-flow-strip-types@7.25.9': + resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-for-of@7.24.1': resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} engines: {node: '>=6.9.0'} @@ -8903,6 +9074,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.25.9': + resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.24.1': resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==} engines: {node: '>=6.9.0'} @@ -8915,6 +9092,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.25.9': + resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.24.1': resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==} engines: {node: '>=6.9.0'} @@ -8939,6 +9122,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.25.9': + resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.24.1': resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==} engines: {node: '>=6.9.0'} @@ -8981,6 +9170,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.25.9': + resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.24.1': resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} engines: {node: '>=6.9.0'} @@ -8999,24 +9194,48 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.25.9': + resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.24.1': resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.25.9': + resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.24.1': resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.25.9': + resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.24.1': resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.25.9': + resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.24.1': resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} engines: {node: '>=6.9.0'} @@ -9035,6 +9254,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.25.9': + resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.22.5': resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} @@ -9047,18 +9272,36 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.25.9': + resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.24.1': resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.25.9': + resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.23.4': resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.25.9': + resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-pure-annotations@7.24.1': resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==} engines: {node: '>=6.9.0'} @@ -9083,6 +9326,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.25.9': + resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.24.1': resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} engines: {node: '>=6.9.0'} @@ -9095,12 +9344,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.25.9': + resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.24.1': resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.25.9': + resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.24.1': resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} engines: {node: '>=6.9.0'} @@ -9119,6 +9380,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typescript@7.25.9': + resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.24.1': resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==} engines: {node: '>=6.9.0'} @@ -9137,6 +9404,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.25.9': + resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-sets-regex@7.24.1': resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==} engines: {node: '>=6.9.0'} @@ -9197,14 +9470,26 @@ packages: resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} engines: {node: '>=6.9.0'} + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.1': resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.25.9': + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} + engines: {node: '>=6.9.0'} + '@babel/types@7.24.0': resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} engines: {node: '>=6.9.0'} + '@babel/types@7.26.0': + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} + engines: {node: '>=6.9.0'} + '@base2/pretty-print-object@1.0.1': resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} @@ -10404,29 +10689,8 @@ packages: resolution: {integrity: sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==} engines: {'0': node >=0.10.0} - '@expo/cli@0.10.17': - resolution: {integrity: sha512-HkHDvHPzq4M244hIerwnsw2IdjOo7RSsMYWGhc7ZY7DQWIMUC88b7f5+0RtD4JQfXQrgKS5Tvqm/5E6kAH0rIA==} - hasBin: true - peerDependencies: - '@expo/metro-config': '*' - glob: '*' - metro: '*' - metro-core: '*' - minimatch: '*' - peerDependenciesMeta: - '@expo/metro-config': - optional: true - glob: - optional: true - metro: - optional: true - metro-core: - optional: true - minimatch: - optional: true - - '@expo/cli@0.18.30': - resolution: {integrity: sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg==} + '@expo/cli@0.18.31': + resolution: {integrity: sha512-v9llw9fT3Uv+TCM6Xllo54t672CuYtinEQZ2LPJ2EJsCwuTc4Cd2gXQaouuIVD21VoeGQnr5JtJuWbF97sBKzQ==} hasBin: true peerDependencies: metro: '*' @@ -10452,8 +10716,11 @@ packages: '@expo/config-plugins@7.8.4': resolution: {integrity: sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==} - '@expo/config-plugins@8.0.10': - resolution: {integrity: sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg==} + '@expo/config-plugins@8.0.11': + resolution: {integrity: sha512-oALE1HwnLFthrobAcC9ocnR9KXLzfWEjgIe4CPe+rDsfC6GDs8dGYCXfRFoCEzoLN4TGYs9RdZ8r0KoCcNrm2A==} + + '@expo/config-plugins@9.0.10': + resolution: {integrity: sha512-4piPSylJ8z3to+YZpl/6M2mLxASOdIFANA8FYihsTf9kWlyimV9L/+MGgPXJcieaHXYZZqOryf8hQFVeg/68+A==} '@expo/config-types@45.0.0': resolution: {integrity: sha512-/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA==} @@ -10467,6 +10734,12 @@ packages: '@expo/config-types@51.0.3': resolution: {integrity: sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA==} + '@expo/config-types@52.0.1': + resolution: {integrity: sha512-vD8ZetyKV7U29lR6+NJohYeoLYTH+eNYXJeNiSOrWCz0witJYY11meMmEnpEaVbN89EfC6uauSUOa6wihtbyPQ==} + + '@expo/config@10.0.5': + resolution: {integrity: sha512-wq48h3HlAPq5v/gMprarAiVY1aEXNBVJ+Em0vrHcYFO8UyxzR6oIao2E4Ed3VWHqhTzPXkMPH4hKCKlzFVBFwQ==} + '@expo/config@8.1.2': resolution: {integrity: sha512-4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug==} @@ -10476,11 +10749,8 @@ packages: '@expo/config@9.0.4': resolution: {integrity: sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg==} - '@expo/dev-server@0.5.5': - resolution: {integrity: sha512-t0fT8xH1exwYsH5hh7bAt85VF+gXxg24qrbny2rR/iKoPTWFCd2JNQV8pvfLg51hvrywQ3YCBuT3lU1w7aZxFA==} - - '@expo/devcert@1.1.0': - resolution: {integrity: sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==} + '@expo/devcert@1.1.4': + resolution: {integrity: sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==} '@expo/env@0.0.5': resolution: {integrity: sha512-UXuKAqyXfhMQC3gP0OyjXmFX08Z1fkVWiGBN7bYzfoX8LHatjeHrDtI6w5nDvd8XPxPvmqaZoEDw1lW3+dz3oQ==} @@ -10492,9 +10762,6 @@ packages: resolution: {integrity: sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==} hasBin: true - '@expo/image-utils@0.3.22': - resolution: {integrity: sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==} - '@expo/image-utils@0.3.23': resolution: {integrity: sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==} @@ -10510,23 +10777,19 @@ packages: '@expo/json-file@8.3.0': resolution: {integrity: sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==} + '@expo/json-file@9.0.0': + resolution: {integrity: sha512-M+55xFVrFzDcgMDf+52lPDLjKB5xwRfStWlv/b/Vu2OLgxGZLWpxoPYjlRoHqxjPbCQIi2ZCbobK+0KuNhsELg==} + '@expo/metro-config@0.10.7': resolution: {integrity: sha512-uACymEiyX0447hI4unt+2cemLQkTZXKvTev936NhtsgVnql45EP0V0pzmo/0H0WlHaAGXgvOBZJl8wFqcJ3CbQ==} '@expo/metro-config@0.18.11': resolution: {integrity: sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==} - '@expo/osascript@2.0.33': - resolution: {integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==} - engines: {node: '>=12'} - '@expo/osascript@2.1.0': resolution: {integrity: sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==} engines: {node: '>=12'} - '@expo/package-manager@1.1.2': - resolution: {integrity: sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==} - '@expo/package-manager@1.5.2': resolution: {integrity: sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==} @@ -10539,10 +10802,8 @@ packages: '@expo/plist@0.1.0': resolution: {integrity: sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==} - '@expo/prebuild-config@6.2.6': - resolution: {integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==} - peerDependencies: - expo-modules-autolinking: '>=0.8.1' + '@expo/plist@0.2.0': + resolution: {integrity: sha512-F/IZJQaf8OIVnVA6XWUeMPC3OH6MV00Wxf0WC0JhTQht2QgjyHUa3U5Gs3vRtDq8tXNsZneOQRDVwpaOnd4zTQ==} '@expo/prebuild-config@7.0.9': resolution: {integrity: sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag==} @@ -10564,9 +10825,6 @@ packages: resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==} engines: {node: '>=12'} - '@expo/vector-icons@13.0.0': - resolution: {integrity: sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==} - '@expo/vector-icons@14.0.4': resolution: {integrity: sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==} @@ -10820,9 +11078,6 @@ packages: '@formatjs/intl-relativetimeformat@11.2.12': resolution: {integrity: sha512-Pdj8DkkiuaInJUs0arW8EyluGaSDq2eHccIi4Oc2JIGEKbMmIj6NapqyjWZUjPOI3mRqV3thhEERC+lfKqJT0w==} - '@gar/promisify@1.1.3': - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - '@graphql-typed-document-node/core@3.2.0': resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: @@ -11629,18 +11884,10 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@npmcli/fs@1.1.1': - resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} - '@npmcli/fs@3.1.1': resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - '@npmcli/move-file@1.1.2': - resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} - engines: {node: '>=10'} - deprecated: This functionality has been moved to @npmcli/fs - '@octokit/auth-app@6.1.1': resolution: {integrity: sha512-VrTtzRpyuT5nYGUWeGWQqH//hqEZDV+/yb6+w5wmWpmmUA1Tx950XsAc2mBBfvusfcdF2E7w8jZ1r1WwvfZ9pA==} engines: {node: '>= 18'} @@ -12539,72 +12786,69 @@ packages: react: '>=16.0' react-native: '>=0.57.0' - '@react-native-community/cli-clean@13.6.1': - resolution: {integrity: sha512-HV0kTegCMbq9INOLUVzPFl/FDjZ2uX6kOa7cFYezkRhgApJo0a/KYTvqwQVlmdHXAjDiWLARGTUPqYQGwIef0A==} - '@react-native-community/cli-clean@13.6.9': resolution: {integrity: sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==} - '@react-native-community/cli-config@13.6.1': - resolution: {integrity: sha512-ljqwH04RNkwv8Y67TjmJ60qgvAdS2aCCUszaD7ZPXmfqBBxkvLg5QFtja9y+1QuTGPmBuTtC55JqmCHg/UDAsg==} + '@react-native-community/cli-clean@14.1.0': + resolution: {integrity: sha512-/C4j1yntLo6faztNgZnsDtgpGqa6j0+GYrxOY8LqaKAN03OCnoeUUKO6w78dycbYSGglc1xjJg2RZI/M2oF2AA==} '@react-native-community/cli-config@13.6.9': resolution: {integrity: sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==} - '@react-native-community/cli-debugger-ui@13.6.1': - resolution: {integrity: sha512-3z1io3AsT1NqlJZOlqNFcrzlavBb7R+Vy5Orzruc3m/OIjc4TrGNtyzQmOfCC3peF8J3So3d6dH1a11YYUDfFw==} + '@react-native-community/cli-config@14.1.0': + resolution: {integrity: sha512-P3FK2rPUJBD1fmQHLgTqpHxsc111pnMdEEFR7KeqprCNz+Qr2QpPxfNy0V7s15tGL5rAv+wpbOGcioIV50EbxA==} '@react-native-community/cli-debugger-ui@13.6.9': resolution: {integrity: sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==} + '@react-native-community/cli-debugger-ui@14.1.0': + resolution: {integrity: sha512-+YbeCL0wLcBcqDwraJFGsqzcXu9S+bwTVrfImne/4mT6itfe3Oa93yrOVJgNbstrt5pJHuwpU76ZXfXoiuncsg==} + '@react-native-community/cli-debugger-ui@7.0.3': resolution: {integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==} - '@react-native-community/cli-doctor@13.6.1': - resolution: {integrity: sha512-jP5otBbvcItuIy8WJT8UAA0lLB+0kKtCmcfQFmcs0/NlBy04cpTtGp7w2N3F1r2Qy9sdQWGRa20IFZn8eenieQ==} - '@react-native-community/cli-doctor@13.6.9': resolution: {integrity: sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==} - '@react-native-community/cli-hermes@13.6.1': - resolution: {integrity: sha512-uGzmpg3DCqXiVLArTw6LMCGoGPkdMBKUllnlvgl1Yjne6LL7NPnQ971lMVGqTX9/p3CaW5TcqYYJjnI7sxlVcA==} + '@react-native-community/cli-doctor@14.1.0': + resolution: {integrity: sha512-xIf0oQDRKt7lufUenRwcLYdINGc0x1FSXHaHjd7lQDGT5FJnCEYlIkYEDDgAl5tnVJSvM/IL2c6O+mffkNEPzQ==} '@react-native-community/cli-hermes@13.6.9': resolution: {integrity: sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==} - '@react-native-community/cli-platform-android@13.6.1': - resolution: {integrity: sha512-HkrV8kCbHUdWH2LMEeSsuvl0ULI+JLmBZ2eQNEyyYOT8h+tM90OwaPLRpBFtD+yvp2/DpIKo97yCVJT5cLjBzA==} - '@react-native-community/cli-platform-android@13.6.9': resolution: {integrity: sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==} - '@react-native-community/cli-platform-apple@13.6.1': - resolution: {integrity: sha512-yv4iPewUwhy3uGg4uJwA03wSV/1bnEnAJNs7CQ0zl7DQZhqrhfJLhzPURtu34sMUN+Wt6S3KaBmny5kHRKTuwA==} + '@react-native-community/cli-platform-android@14.1.0': + resolution: {integrity: sha512-4JnXkAV+ca8XdUhZ7xjgDhXAMwTVjQs8JqiwP7FTYVrayShXy2cBXm/C3HNDoe+oQOF5tPT2SqsDAF2vYTnKiQ==} '@react-native-community/cli-platform-apple@13.6.9': resolution: {integrity: sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==} - '@react-native-community/cli-platform-ios@13.6.1': - resolution: {integrity: sha512-JwXV9qMpqJWduoEcK3pbAjkOaTqg+o0IzZz/LP7EkFCfJyg5hnDRAUZhP5ffs5/zukZIGHHPY1ZEW8jl5T2j6Q==} + '@react-native-community/cli-platform-apple@14.1.0': + resolution: {integrity: sha512-DExd+pZ7hHxXt8I6BBmckeYUxxq7PQ+o4YSmGIeQx0xUpi+f82obBct2WNC3VWU72Jw6obwfoN6Fwe6F7Wxp5Q==} '@react-native-community/cli-platform-ios@13.6.9': resolution: {integrity: sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==} - '@react-native-community/cli-server-api@13.6.1': - resolution: {integrity: sha512-64eC7NuCLenYr237LyJ1H6jf+6L4NA2eXuy+634q0CeIZsAqOe7B5VCJyy2CsWWaeeUbAsC0Oy9/2o2y8/muIw==} + '@react-native-community/cli-platform-ios@14.1.0': + resolution: {integrity: sha512-ah/ZTiJXUdCVHujyRJ4OmCL5nTq8OWcURcE3UXa1z0sIIiA8io06n+v5n299T9rtPKMwRtVJlQjtO/nbODABPQ==} '@react-native-community/cli-server-api@13.6.9': resolution: {integrity: sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==} + '@react-native-community/cli-server-api@14.1.0': + resolution: {integrity: sha512-1k2LBQaYsy9RDWFIfKVne3frOye73O33MV6eYMoRPff7wqxHCrsX1CYJQkmwpgVigZHxYwalHj+Axtu3gpomCA==} + '@react-native-community/cli-server-api@7.0.4': resolution: {integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==} - '@react-native-community/cli-tools@13.6.1': - resolution: {integrity: sha512-mRJmI5c/Mfi/pESUPjqElv8+t81qfi0pUr1UrIX38nS1o5Ki1D8vC9vAMkPbLaIu2RuhUuzSCfs6zW8AwakUoA==} - '@react-native-community/cli-tools@13.6.9': resolution: {integrity: sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==} + '@react-native-community/cli-tools@14.1.0': + resolution: {integrity: sha512-r1KxSu2+OSuhWFoE//1UR7aSTXMLww/UYWQprEw4bSo/kvutGX//4r9ywgXSWp+39udpNN4jQpNTHuWhGZd/Bg==} + '@react-native-community/cli-tools@6.2.1': resolution: {integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==} peerDependencies: @@ -12613,14 +12857,14 @@ packages: find-up: optional: true - '@react-native-community/cli-types@13.6.1': - resolution: {integrity: sha512-+ue0eaEnGTKsTpX7F/DVspGDVZz7OgN7uaanaGKJuG9+pJiIgVIXnVu546Ycq8XbWAbZuWR1PL4+SNbf6Ebqqw==} - '@react-native-community/cli-types@13.6.9': resolution: {integrity: sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==} - '@react-native-community/cli@13.6.1': - resolution: {integrity: sha512-Q3eA7xw42o8NAkztJvjVZT9WWxtRDnYYoRkv8IEIi9m2ya3p/4ZJBNlsQO6kDjasQTERkAoGQc1CveEHEv2QsA==} + '@react-native-community/cli-types@14.1.0': + resolution: {integrity: sha512-aJwZI9mGRx3HdP8U4CGhqjt3S4r8GmeOqv4kRagC1UHDk4QNMC+bZ8JgPA4W7FrGiPey+lJQHMDPAXOo51SOUw==} + + '@react-native-community/cli@13.6.9': + resolution: {integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -12629,8 +12873,8 @@ packages: metro-resolver: optional: true - '@react-native-community/cli@13.6.9': - resolution: {integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==} + '@react-native-community/cli@14.1.0': + resolution: {integrity: sha512-k7aTdKNZIec7WMSqMJn9bDVLWPPOaYmshXcnjWy6t5ItsJnREju9p2azMTR5tXY5uIeynose3cxettbhk2Tbnw==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -12677,16 +12921,16 @@ packages: resolution: {integrity: sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==} engines: {node: '>=18'} - '@react-native/assets-registry@0.74.88': - resolution: {integrity: sha512-tOvA+ikxa0Yxk3gLWR4+Pp4Y6Se+JEs6XXabX4/jgxIDnDfhT/czFNhqH/hdk4uOT8uVJGnilvevsia2TCFMiw==} + '@react-native/assets-registry@0.75.4': + resolution: {integrity: sha512-WX6/LNHwyjislSFM+h3qQjBiPaXXPJW5ZV4TdgNKb6QOPO0g1KGYRQj44cI2xSpZ3fcWrvQFZfQgSMbVK9Sg7A==} engines: {node: '>=18'} '@react-native/babel-plugin-codegen@0.74.87': resolution: {integrity: sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==} engines: {node: '>=18'} - '@react-native/babel-plugin-codegen@0.74.88': - resolution: {integrity: sha512-hul4gPU09q7K0amhzhZnG3EVxeCXjP2l1x/zdgtliRRB8Nq7Za8YkM7dy84X+Vv4UC9G1nzxIbibsKeLsY1N4A==} + '@react-native/babel-plugin-codegen@0.75.4': + resolution: {integrity: sha512-gu5ZRIdr7+ufi09DJROhfDtbF4biTnCDJqtqcmtsku4cXOXPHE36QbC/vAmKEZ0PMPURBI8lwF2wfaeHLn7gig==} engines: {node: '>=18'} '@react-native/babel-preset@0.74.87': @@ -12695,8 +12939,8 @@ packages: peerDependencies: '@babel/core': '*' - '@react-native/babel-preset@0.74.88': - resolution: {integrity: sha512-SQODiFGlyblFTvdvePUDrQ+qlSzhcOm7It/yW2CVKxw5zRUf50+Cj3DBkRFhQDqF3ri2EnWsLnJ3oNE7hqDUxg==} + '@react-native/babel-preset@0.75.4': + resolution: {integrity: sha512-UtyYCDJ3rZIeggyFEfh/q5t/FZ5a1h9F8EI37Nbrwyk/OKPH+1XS4PbHROHJzBARlJwOAfmT75+ovYUO0eakJA==} engines: {node: '>=18'} peerDependencies: '@babel/core': '*' @@ -12707,8 +12951,8 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 - '@react-native/codegen@0.74.88': - resolution: {integrity: sha512-HMk/LCrSdUof9DZFaB2bK0soKyAF6XiCg2LG7WFjEkUDXayeiB4p7IsHISJWY4bYg7cMPZ0fiZMRaBP2vXJxgg==} + '@react-native/codegen@0.75.4': + resolution: {integrity: sha512-0FplNAD/S5FUvm8YIn6uyarOcP4jdJPqWz17K4a/Gp2KSsG/JJKEskX3aj5wpePzVfNQl3WyvBJ0whODdCocIA==} engines: {node: '>=18'} peerDependencies: '@babel/preset-env': ^7.1.6 @@ -12717,8 +12961,8 @@ packages: resolution: {integrity: sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==} engines: {node: '>=18'} - '@react-native/community-cli-plugin@0.74.88': - resolution: {integrity: sha512-O8zz784kksa36nBNiULHh0rYFGr4mwtBB95YvvBOEYiYnMjFkEOUe7BPKvYmX8W29MgskXcIGNrNvfre59o4xw==} + '@react-native/community-cli-plugin@0.75.4': + resolution: {integrity: sha512-k/hevYPjEpW0MNVVyb3v9PJosOP+FzenS7+oqYNLXdEmgTnGHrAtYX9ABrJJgzeJt7I6g8g+RDvm8PSE+tnM5w==} engines: {node: '>=18'} '@react-native/debugger-frontend@0.74.85': @@ -12729,8 +12973,8 @@ packages: resolution: {integrity: sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==} engines: {node: '>=18'} - '@react-native/debugger-frontend@0.74.88': - resolution: {integrity: sha512-3xUR/uJza241ya0UFxxaxQiB/gkUx1gynMxhlgc6zFxz/zSrLG1/AcA6hpua2ZvmOMabpo09XOOR1Hqvf2qPEQ==} + '@react-native/debugger-frontend@0.75.4': + resolution: {integrity: sha512-QfGurR5hV6bhMPn/6VxS2RomYrPRFGwA03jJr+zKyWHnxDAu5jOqYVyKAktIIbhYe5sPp78QVl1ZYuhcnsRbEw==} engines: {node: '>=18'} '@react-native/dev-middleware@0.74.85': @@ -12741,38 +12985,38 @@ packages: resolution: {integrity: sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==} engines: {node: '>=18'} - '@react-native/dev-middleware@0.74.88': - resolution: {integrity: sha512-RYaQ72j9ggeGI712UlAfWtuY0rD4WllArlYtEybT0x1zmUtLgq5lgJcSkwg501yfG/g10XB69Q2MM8gCWK8NAw==} + '@react-native/dev-middleware@0.75.4': + resolution: {integrity: sha512-UhyBeQOG2wNcvrUGw3+IBrHBk/lIu7hHGmWt4j8W9Aqv9BwktHKkPyko+5A1yoUeO1O/VDnHWYqWeOejcA9wpQ==} engines: {node: '>=18'} '@react-native/gradle-plugin@0.74.87': resolution: {integrity: sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==} engines: {node: '>=18'} - '@react-native/gradle-plugin@0.74.88': - resolution: {integrity: sha512-cUu4gVLFTkHe0e5/IxSycRfbBhZs/5QF8AqYcoUBsZ5o+22Im9+M4DuGFv4U5Sa2NTy2VXOCpbBTepzKsdXlgw==} + '@react-native/gradle-plugin@0.75.4': + resolution: {integrity: sha512-kKTmw7cF7p1raT30DC0L6N+xiVXN7dlRy0J+hYPiCRRVHplwgvyS7pszjxfzwXmHFqOxwpxQVI3du8opsma1Mg==} engines: {node: '>=18'} '@react-native/js-polyfills@0.74.87': resolution: {integrity: sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==} engines: {node: '>=18'} - '@react-native/js-polyfills@0.74.88': - resolution: {integrity: sha512-6KljxfNKAz2b2uXqxagKbytb3MvUujAmfvuubKOoCLAiLbs8CYKW0OV1FqVLYUEXXw5GEDhXcVzQxxFuDlMafQ==} + '@react-native/js-polyfills@0.75.4': + resolution: {integrity: sha512-NF5ID5FjcVHBYk1LQ4JMRjPmxBWEo4yoqW1m6vGOQZPT8D5Qs9afgx3f7gQatxbn3ivMh0FVbLW0zBx6LyxEzA==} engines: {node: '>=18'} '@react-native/metro-babel-transformer@0.74.87': resolution: {integrity: sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==} engines: {node: '>=18'} - '@react-native/metro-babel-transformer@0.74.88': - resolution: {integrity: sha512-r7Er162iLpQce3ODQzNVS+PnjglJoHZ4l0NeaVMB4w45DIgKM4hC2vI6a/fzyFm9C6N+QY4P2i2RSkwjXVuBlQ==} + '@react-native/metro-babel-transformer@0.75.4': + resolution: {integrity: sha512-O0WMW/K8Ny/MAAeRebqGEQhrbzcioxcPHZtos+EH2hWeBTEKHQV8fMYYxfYDabpr392qdhSBwg3LlXUD4U3PXQ==} engines: {node: '>=18'} peerDependencies: '@babel/core': '*' - '@react-native/metro-config@0.74.88': - resolution: {integrity: sha512-GYBVb+987onsGcycad7jW7P4lBpeuj2TIhuOcKJcvRSID59w3OPb54hi8P04Cn9fMWGunWDxb8IvpkAbffzlCw==} + '@react-native/metro-config@0.75.4': + resolution: {integrity: sha512-gIIVlPUtZ1UKCxMJRtG88FoWS5REbI4YUmiyoM8eBUA85Zvk27b67iBX5Lkuxg8FGc7t9tjWQRpVGs2IK5uZpQ==} engines: {node: '>=18'} '@react-native/normalize-color@2.1.0': @@ -12784,8 +13028,8 @@ packages: '@react-native/normalize-colors@0.74.87': resolution: {integrity: sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==} - '@react-native/normalize-colors@0.74.88': - resolution: {integrity: sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==} + '@react-native/normalize-colors@0.75.4': + resolution: {integrity: sha512-90QrQDLg0/k9xqYesaKuIkayOSjD+FKa0hsHollbwT5h3kuGMY+lU7UZxnb8tU55Y1PKdvjYxqQsYWI/ql79zA==} '@react-native/virtualized-lists@0.74.87': resolution: {integrity: sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==} @@ -12798,8 +13042,8 @@ packages: '@types/react': optional: true - '@react-native/virtualized-lists@0.74.88': - resolution: {integrity: sha512-nZn4X9zuyinRJoE/WcgB1e/X6b3J3QPRSsNC0LOjHzP97tvW6xvBacjbCAJAaZQwD9KaqZyK86eCi61ksr350g==} + '@react-native/virtualized-lists@0.75.4': + resolution: {integrity: sha512-iEauRiXjvWG/iOH8bV+9MfepCS+72cuL5rhkrenYZS0NUnDcNjF+wtaoS9+Gx5z1UJOfEXxSmyXRtQJZne8SnA==} engines: {node: '>=18'} peerDependencies: '@types/react': ^18.2.6 @@ -13126,6 +13370,11 @@ packages: engines: {node: '>=10'} os: [darwin] + '@sentry/cli-darwin@2.34.1': + resolution: {integrity: sha512-SqlCunwhweMDJNKVf3kabiN6FwpvCIffn2cjfaZD0zqZQ3M1tWMJ/kSA0TGfe7lWu9JloNmVm+ArcudGitvX3w==} + engines: {node: '>=10'} + os: [darwin] + '@sentry/cli-linux-arm64@2.31.0': resolution: {integrity: sha512-eENJTmXoFX3uNr8xRW7Bua2Sw3V1tylQfdtS85pNjZPdbm3U8wYQSWu2VoZkK2ASOoC+17YC8jTQxq62KWnSeQ==} engines: {node: '>=10'} @@ -13138,6 +13387,12 @@ packages: cpu: [arm64] os: [linux, freebsd] + '@sentry/cli-linux-arm64@2.34.1': + resolution: {integrity: sha512-iSl/uNWjKbVPb6ll12SmHG9iGcC3oN8jjzdycm/mD3H/d8DLMloEiaz8lHQnsYCaPiNKwap1ThKlPvnKOU4SNg==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux, freebsd] + '@sentry/cli-linux-arm@2.31.0': resolution: {integrity: sha512-AZoCN3waXEfXGCd3YSrikcX/y63oQe0Tiyapkeoifq/0QhI+2MOOrAQb60gthsXwb0UDK/XeFi3PaxyUCphzxA==} engines: {node: '>=10'} @@ -13150,6 +13405,12 @@ packages: cpu: [arm] os: [linux, freebsd] + '@sentry/cli-linux-arm@2.34.1': + resolution: {integrity: sha512-CDhtFbUs16CoU10wEbxnn/pEuenFIMosTcxI7v0gWp3Wo0B2h0bOsLEk9dlT0YsqRTAldKUzef9AVX82m5Svwg==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux, freebsd] + '@sentry/cli-linux-i686@2.31.0': resolution: {integrity: sha512-cQUFb3brhLaNSIoNzjU/YASnTM1I3TDJP9XXzH0eLK9sSopCcDcc6OrYEYvdjJXZKzFv5sbc9UNMsIDbh4+rYg==} engines: {node: '>=10'} @@ -13162,6 +13423,12 @@ packages: cpu: [x86, ia32] os: [linux, freebsd] + '@sentry/cli-linux-i686@2.34.1': + resolution: {integrity: sha512-jq5o49pgzJFv/CQtvx4FLVO1xra22gzP76FtmvPwEhZQhJT6QduW9fpnvVDnOaY8YLzC7GAeszUV6sqZ0MZUqg==} + engines: {node: '>=10'} + cpu: [x86, ia32] + os: [linux, freebsd] + '@sentry/cli-linux-x64@2.31.0': resolution: {integrity: sha512-z1zTNg91nZJRdcGHC/bCU1KwIaifV0MLJteip9KrFDprzhJk1HtMxFOS0+OZ5/UH21CjAFmg9Pj6IAGqm3BYjA==} engines: {node: '>=10'} @@ -13174,6 +13441,12 @@ packages: cpu: [x64] os: [linux, freebsd] + '@sentry/cli-linux-x64@2.34.1': + resolution: {integrity: sha512-O99RAkrcMErWLPRdza6HaG7kmHCx9MYFNDX6FLrAgSP3oz+X3ral1oDTIrMs4hVbPDK287ZGAqCJtk+1iOjEBg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux, freebsd] + '@sentry/cli-win32-i686@2.31.0': resolution: {integrity: sha512-+K7fdk57aUd4CmYrQfDGYPzVyxsTnVro6IPb5QSSLpP03dL7ko5208epu4m2SyN/MkFvscy9Di3n3DTvIfDU2w==} engines: {node: '>=10'} @@ -13186,6 +13459,12 @@ packages: cpu: [x86, ia32] os: [win32] + '@sentry/cli-win32-i686@2.34.1': + resolution: {integrity: sha512-yEeuneEVmExCbWlnSauhIg8wZDfKxRaou8XRfM6oPlSBu0XO5HUI3uRK5t2xT0zX8Syzh2kCZpdVE1KLavVeKA==} + engines: {node: '>=10'} + cpu: [x86, ia32] + os: [win32] + '@sentry/cli-win32-x64@2.31.0': resolution: {integrity: sha512-w5cvpZ6VVlhlyleY8TYHmrP7g48vKHnoVt5xFccfxT+HqQI/AxodvzgVvBTM2kB/sh/kHwexp6bJGWCdkGftww==} engines: {node: '>=10'} @@ -13198,6 +13477,12 @@ packages: cpu: [x64] os: [win32] + '@sentry/cli-win32-x64@2.34.1': + resolution: {integrity: sha512-mU48VpDTwRgt7/Pf3vk/P87m4kM3XEXHHHfq9EvHCTspFF6GtMfL9njZ7+5Z+7ko852JS4kpunjZtsxmoP4/zA==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + '@sentry/cli@2.31.0': resolution: {integrity: sha512-nCESoXAG3kRUO5n3QbDYAqX6RU3z1ORjnd7a3sqijYsCGHfOpcjGdS7JYLVg5if+tXMEF5529BPXFe5Kg/J9tw==} engines: {node: '>= 10'} @@ -13208,6 +13493,11 @@ packages: engines: {node: '>= 10'} hasBin: true + '@sentry/cli@2.34.1': + resolution: {integrity: sha512-hAHvu+XH1kn1ee2NUWvuqAZenK/MrxqQzeIrIYATqF2XGjtSOr7irjAKWjd97/vXdLHA6TBnMW1wHwLcuJK2tg==} + engines: {node: '>= 10'} + hasBin: true + '@sentry/core@6.19.7': resolution: {integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==} engines: {node: '>=6'} @@ -14472,7 +14762,7 @@ packages: metro-react-native-babel-preset: '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - webpack: '*' + webpack: '5' peerDependenciesMeta: react: optional: true @@ -16182,6 +16472,9 @@ packages: peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + '@urql/core@5.0.8': + resolution: {integrity: sha512-1GOnUw7/a9bzkcM0+U8U5MmxW2A7FE5YquuEmcJzTtW5tIs2EoS4F2ITpuKBjRBbyRjZgO860nWFPo1m4JImGA==} + '@urql/exchange-retry@0.3.0': resolution: {integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==} peerDependencies: @@ -16448,9 +16741,11 @@ packages: abstract-leveldown@0.12.4: resolution: {integrity: sha512-TOod9d5RDExo6STLMGa+04HGkl+TlMfbDnTyN93/ETJ9DpQ0DaYLqcMZlbXvdc4W3vVo1Qrl+WhSp8zvDsJ+jA==} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) abstract-leveldown@2.6.1: resolution: {integrity: sha512-z3y8+/Y5i90z+viZGYIg7Tu+muVO4qGHAeug7QQ7oQcMaS1RY+3ccwHTISI/vkVAK9r7snv8lMICNdmrYM/LkA==} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) accepts@1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} @@ -16651,7 +16946,7 @@ packages: resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} engines: {node: '>=6'} peerDependencies: - rxjs: '*' + rxjs: ^5.5.10 zenObservable: '*' peerDependenciesMeta: rxjs: @@ -16707,9 +17002,6 @@ packages: archy@1.0.0: resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - arg@4.1.0: - resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==} - arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} @@ -17036,6 +17328,11 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-corejs3@0.10.6: + resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-polyfill-regenerator@0.6.1: resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==} peerDependencies: @@ -17055,6 +17352,9 @@ packages: babel-plugin-react-native-web@0.19.10: resolution: {integrity: sha512-NshrsILJNbNbnMz7Ms14fa5PBJErYablPkCbSvbg0qn5rmruD2WzQqD+Dg8F45yG7i2nENDvKSwsa+1XPLcg4w==} + babel-plugin-react-native-web@0.19.13: + resolution: {integrity: sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==} + babel-plugin-styled-components@2.1.4: resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} peerDependencies: @@ -17080,9 +17380,6 @@ packages: babel-preset-expo@11.0.15: resolution: {integrity: sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw==} - babel-preset-expo@9.5.2: - resolution: {integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==} - babel-preset-expo@9.9.0: resolution: {integrity: sha512-Mg5euDpBPi2/N/3eao+hJ0vYONAUVB9qhziGDnTf4MotBDrT4qEOBYdvN1HVBkoL8FtEHTlZ8tU8eAyeScynZw==} @@ -17588,10 +17885,6 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - cacache@15.3.0: - resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} - engines: {node: '>= 10'} - cacache@18.0.4: resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==} engines: {node: ^16.14.0 || >=18.0.0} @@ -17811,6 +18104,9 @@ packages: resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} engines: {node: '>=6.0'} + chromium-edge-launcher@0.2.0: + resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==} + chromium-pickle-js@0.2.0: resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==} @@ -18085,9 +18381,6 @@ packages: resolution: {integrity: sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==} engines: {node: '>=0.10.0'} - compare-versions@3.6.0: - resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==} - component-emitter@1.3.1: resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} @@ -18394,6 +18687,9 @@ packages: core-js-compat@3.36.1: resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==} + core-js-compat@3.39.0: + resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} + core-js-pure@3.36.1: resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==} @@ -18448,6 +18744,15 @@ packages: typescript: optional: true + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + cosmjs-types@0.2.1: resolution: {integrity: sha512-EUG6TgdWkYHBzXjo5tZ82L+0QLijTu/rZGNIbJ/n07ST30GmptYkPmO+REX7qF4YUtli//Rfy0rrNzH9IMrMmw==} @@ -18829,6 +19134,15 @@ packages: supports-color: optional: true + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} @@ -18928,6 +19242,7 @@ packages: deferred-leveldown@0.2.0: resolution: {integrity: sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) define-data-property@1.1.4: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} @@ -19456,6 +19771,11 @@ packages: engines: {node: '>=4'} hasBin: true + envinfo@7.14.0: + resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==} + engines: {node: '>=4'} + hasBin: true + eol@0.9.1: resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==} @@ -19716,7 +20036,7 @@ packages: peerDependencies: '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: '*' + jest: ^27.0.0 peerDependenciesMeta: '@typescript-eslint/eslint-plugin': optional: true @@ -19997,24 +20317,6 @@ packages: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - expo-application@5.3.1: - resolution: {integrity: sha512-HR2+K+Hm33vLw/TfbFaHrvUbRRNRco8R+3QaCKy7eJC2LFfT05kZ15ynGaKfB5DJ/oqPV3mxXVR/EfwmE++hoA==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - expo-asset@10.0.10: resolution: {integrity: sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==} peerDependencies: @@ -20050,24 +20352,6 @@ packages: react-native: optional: true - expo-barcode-scanner@13.0.1: - resolution: {integrity: sha512-xBGLT1An2gpAMIQRTLU3oHydKohX8r8F9/ait1Fk9Vgd0GraFZbP4IiT7nHMlaw4H6E7Muucf7vXpGV6u7d4HQ==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - expo-camera@15.0.16: resolution: {integrity: sha512-FLE02DMqkjwsb7IugKAqQvBe6s+TCQeb5LupO1+r//wAhBwmHncOrc6zV95ZEC2f9PTPK34nFH/s8CDGiVzIAA==} peerDependencies: @@ -20086,24 +20370,6 @@ packages: react-native: optional: true - expo-constants@14.4.2: - resolution: {integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - expo-constants@14.5.1: resolution: {integrity: sha512-06OKXQmKI0vuje++6lm7w1kO3rKsZAHio/4d9hwQuVAtExJ6RM92BnpzkDAV16ZheVN/FHKzNyY1BYLqXfujMw==} peerDependencies: @@ -20233,27 +20499,6 @@ packages: react-native: optional: true - expo-font@11.4.0: - resolution: {integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==} - peerDependencies: - expo: '*' - expo-asset: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-asset: - optional: true - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - expo-font@12.0.10: resolution: {integrity: sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ==} peerDependencies: @@ -20311,24 +20556,6 @@ packages: react-native: optional: true - expo-keep-awake@12.3.0: - resolution: {integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - expo-keep-awake@13.0.2: resolution: {integrity: sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==} peerDependencies: @@ -20365,43 +20592,8 @@ packages: react-native: optional: true - expo-modules-autolinking@1.5.1: - resolution: {integrity: sha512-yt5a1VCp2BF9CrsO689PCD5oXKP14MMhnOanQMvDn4BDpURYfzAlDVGC5fZrNQKtwn/eq3bcrxIwZ7D9QjVVRg==} - hasBin: true - peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - - expo-modules-core@1.12.25: - resolution: {integrity: sha512-HB2LS2LEM41Xq1bG+Jtzqm6XgPaa+mM9BAvCdX1lDGMQ9Ay9vMTL/GVEs2gpsINPofICopjBRwD+wftyCbVrzg==} - peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-constants: - optional: true - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - - expo-modules-core@1.5.11: - resolution: {integrity: sha512-1Dj2t74nVjxq6xEQf2b9WFfAMhPzVnR0thY0PfRFgob4STyj3sq1U4PIHVWvKQBtDKIa227DrNRb+Hu+LqKWQg==} + expo-modules-core@1.12.26: + resolution: {integrity: sha512-y8yDWjOi+rQRdO+HY+LnUlz8qzHerUaw/LUjKPU/mX8PRXP4UUPEEp5fjAwBU44xjNmYSHWZDwet4IBBE+yQUA==} peerDependencies: expo-constants: '*' expo-modules-core: '*' @@ -20455,29 +20647,14 @@ packages: react-native: optional: true - expo@49.0.23: - resolution: {integrity: sha512-mFdBpWisPXBuocRGywC14nDai5vSUmvEyQpwvKH/xUo+m5/TUvfqV6YIewFpW22zn5WFGFiuJPhzNrqhBBinIw==} - hasBin: true - peerDependencies: - expo-modules-core: '*' - react: '*' - react-native: '*' - peerDependenciesMeta: - expo-modules-core: - optional: true - react: - optional: true - react-native: - optional: true - - expo@51.0.37: - resolution: {integrity: sha512-zMdfTiGNgNWG0HOOFA3zRreS94iQ7fDxxgEIR6wdQCbncTpbeYj+5mscTAlHE9JJ+oBkcNyJXrLSjE/YVbFERg==} + expo@51.0.39: + resolution: {integrity: sha512-Cs/9xopyzJrpXWbyVUZnr37rprdFJorRgfSp6cdBfvbjxZeKnw2MEu7wJwV/s626i5lZTPGjZPHUF9uQvt51cg==} hasBin: true peerDependencies: expo-modules-autolinking: '*' expo-modules-core: '*' - react: '*' - react-native: '*' + react: 18.2.0 + react-native: 0.74.5 peerDependenciesMeta: expo-modules-autolinking: optional: true @@ -21120,9 +21297,8 @@ packages: glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.3.12: - resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} - engines: {node: '>=16 || 14 >=14.17'} + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} hasBin: true glob@6.0.4: @@ -21382,6 +21558,9 @@ packages: hermes-estree@0.20.1: resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} + hermes-estree@0.22.0: + resolution: {integrity: sha512-FLBt5X9OfA8BERUdc6aZS36Xz3rRuB0Y/mfocSADWEJfomc1xfene33GdyAmtTkKTBXTN/EgAy+rjTKkkZJHlw==} + hermes-estree@0.23.1: resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} @@ -21394,6 +21573,9 @@ packages: hermes-parser@0.20.1: resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} + hermes-parser@0.22.0: + resolution: {integrity: sha512-gn5RfZiEXCsIWsFGsKiykekktUoh0PdFWYocXsUdZIyWSckT6UIyPcyyUIPSR3kpnELWeK3n3ztAse7Mat6PSA==} + hermes-parser@0.23.1: resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} @@ -21711,9 +21893,6 @@ packages: indexof@0.0.1: resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==} - infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} - inflation@2.1.0: resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} engines: {node: '>= 0.8.0'} @@ -22269,9 +22448,8 @@ packages: iterator.prototype@1.1.2: resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} - jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} jake@10.8.7: resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} @@ -22957,6 +23135,11 @@ packages: engines: {node: '>=4'} hasBin: true + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + json-bigint@1.0.0: resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} @@ -23249,6 +23432,7 @@ packages: levelup@0.18.6: resolution: {integrity: sha512-uB0auyRqIVXx+hrpIUtol4VAPhLRcnxcOsd2i2m6rbFIDarO5dnrupLOStYYpEcu8ZT087Z9HEuYw1wjr6RL6Q==} + deprecated: Superseded by abstract-level (https://github.com/Level/community#faq) leven@2.1.0: resolution: {integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==} @@ -24284,10 +24468,6 @@ packages: minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} - minipass-collect@2.0.1: resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} engines: {node: '>=16 || 14 >=14.17'} @@ -24303,10 +24483,6 @@ packages: minipass@2.9.0: resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} - minipass@3.1.6: - resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==} - engines: {node: '>=8'} - minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} @@ -24323,6 +24499,10 @@ packages: resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} engines: {node: '>=16 || 14 >=14.17'} + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + minizlib@1.3.3: resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} @@ -25050,6 +25230,9 @@ packages: resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} engines: {node: '>=8'} + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} @@ -25179,6 +25362,10 @@ packages: resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} engines: {node: '>=16 || 14 >=14.17'} + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} @@ -25944,14 +26131,6 @@ packages: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} - promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - promise-polyfill@6.1.0: resolution: {integrity: sha512-g0LWaH0gFsxovsU7R5LrrhHhWAWiHRnh1GPrhXnPgYsDkIqjRYUYSZEsej/wtleDrz5xVSIDbeKfidztp2XHFQ==} @@ -26333,7 +26512,7 @@ packages: resolution: {integrity: sha512-kBGxI+MIZGBf4wZhNCWwHkMcVP+kbpmrLWH/SkO0qCKc7D7eSPcxQbfpsmsCo8v2KCBYjuGSou+xTqK44D/jMg==} engines: {npm: ^3.0.0} peerDependencies: - prop-types: '*' + prop-types: ^15.6.1 react: '>=15.0.0' peerDependenciesMeta: prop-types: @@ -26357,8 +26536,8 @@ packages: react-native-animatable@1.3.3: resolution: {integrity: sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==} peerDependencies: - react: '*' - react-native: '*' + react: 16.9.0 + react-native: 0.61.2 peerDependenciesMeta: react: optional: true @@ -26368,8 +26547,8 @@ packages: react-native-animatable@1.4.0: resolution: {integrity: sha512-DZwaDVWm2NBvBxf7I0wXKXLKb/TxDnkV53sWhCvei1pRyTX3MVFpkvdYBknNBqPrxYuAIlPxEp7gJOidIauUkw==} peerDependencies: - react: '*' - react-native: '*' + react: 18.2.0 + react-native: 0.72.6 peerDependenciesMeta: react: optional: true @@ -26446,8 +26625,8 @@ packages: react: '*' react-native: '*' - react-native-gesture-handler@2.16.0: - resolution: {integrity: sha512-1hFkx7RIfeJSyTQQ0Nkv4icFVZ5+XjQkd47OgZMBFzoB7ecL+nFSz8KLi3OCWOhq+nbHpSPlSG5VF3CQNCJpWA==} + react-native-gesture-handler@2.18.1: + resolution: {integrity: sha512-WF2fxQ5kTaxHghlkBM4YxO86SyGWVwrSNgJ1E8z/ZtL2xD5B3bg5agvuVFfOzvceC114yq71s6E9vKPz94ZxRw==} peerDependencies: react: '*' react-native: '*' @@ -26534,8 +26713,8 @@ packages: react-native-navigation-bar-color@2.0.2: resolution: {integrity: sha512-ZmpLWRocyme1au11e5ZuecMS/UCi57nlzgnioi03Q6ERMbeUOqqbWgNBaNB7SsCeqBV6fZPjo3+A64zEIpzw4w==} - react-native-pager-view@6.3.0: - resolution: {integrity: sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==} + react-native-pager-view@6.5.1: + resolution: {integrity: sha512-YdX7bP+rPYvATMU7HzlMq9JaG3ui/+cVRbFZFGW+QshDULANFg9ECR1BA7H7JTIcO/ZgWCwF+1aVmYG5yBA9Og==} peerDependencies: react: '*' react-native: '*' @@ -26580,8 +26759,8 @@ packages: react: '*' react-native: '*' - react-native-screens@3.31.1: - resolution: {integrity: sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==} + react-native-screens@3.33.0: + resolution: {integrity: sha512-3bKeT/kS1g/6XqraBqjDtyyci35LDeDIHMoko74o+Z5p1oLEi697GWFVwsG272FF0iuOullUbuRNzCcEfRBASQ==} peerDependencies: react: '*' react-native: '*' @@ -26663,13 +26842,13 @@ packages: '@types/react': optional: true - react-native@0.74.6: - resolution: {integrity: sha512-TZ8uLf+dH+nO5nFwjhMd4PqtraeNT5cXQ0ySAhq7qqbTBgalxO3UklsLFW3cTSedC+eLw6J3P3H62e3/MjpWNw==} + react-native@0.75.4: + resolution: {integrity: sha512-Jehg4AMNIAXu9cn0/1jbTCoNg3tc+t6EekwucCalN8YoRmxGd/PY6osQTI/5fSAM40JQ4O8uv8Qg09Ycpb5sxQ==} engines: {node: '>=18'} hasBin: true peerDependencies: '@types/react': ^18.2.6 - react: 18.2.0 + react: ^18.2.0 peerDependenciesMeta: '@types/react': optional: true @@ -26970,6 +27149,10 @@ packages: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} @@ -26996,6 +27179,10 @@ packages: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} + regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + engines: {node: '>=4'} + registry-auth-token@3.3.2: resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} @@ -27003,6 +27190,13 @@ packages: resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} engines: {node: '>=0.10.0'} + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true @@ -27151,6 +27345,9 @@ packages: rework-visit: optional: true + resolve-workspace-root@2.0.0: + resolution: {integrity: sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw==} + resolve.exports@1.1.1: resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} engines: {node: '>=10'} @@ -27507,10 +27704,6 @@ packages: resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} engines: {node: '>=0.10.0'} - serialize-error@6.0.0: - resolution: {integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==} - engines: {node: '>=10'} - serialize-error@7.0.1: resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} engines: {node: '>=10'} @@ -28691,8 +28884,8 @@ packages: traverse@0.3.9: resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==} - traverse@0.6.8: - resolution: {integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==} + traverse@0.6.10: + resolution: {integrity: sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==} engines: {node: '>= 0.4'} tree-kill@1.2.2: @@ -28971,10 +29164,6 @@ packages: resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} engines: {node: '>=8'} - type-fest@0.12.0: - resolution: {integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==} - engines: {node: '>=10'} - type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} @@ -29062,6 +29251,10 @@ packages: typedarray-to-buffer@4.0.0: resolution: {integrity: sha512-6dOYeZfS3O9RtRD1caom0sMxgK59b27+IwoNy8RDPsmslSGOyU+mpTamlaIW7aNKi90ZQZ9DFaZL3YRoiSCULQ==} + typedarray.prototype.slice@1.0.3: + resolution: {integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==} + engines: {node: '>= 0.4'} + typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} @@ -29211,16 +29404,10 @@ packages: resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} engines: {node: '>= 0.8.0'} - unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} - unique-filename@3.0.0: resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} - unique-slug@4.0.0: resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -30136,6 +30323,9 @@ packages: wonka@4.0.15: resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==} + wonka@6.3.4: + resolution: {integrity: sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==} + word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} @@ -30498,6 +30688,10 @@ snapshots: 7zip-bin@5.2.0: {} + '@0no-co/graphql.web@1.0.11(graphql@15.8.0)': + optionalDependencies: + graphql: 15.8.0 + '@aashutoshrathi/word-wrap@1.2.6': {} '@achrinza/node-ipc@9.2.9': @@ -31677,8 +31871,16 @@ snapshots: '@babel/highlight': 7.24.6 picocolors: 1.1.1 + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + '@babel/compat-data@7.24.1': {} + '@babel/compat-data@7.26.2': {} + '@babel/core@7.24.3': dependencies: '@ampproject/remapping': 2.3.0 @@ -31709,7 +31911,7 @@ snapshots: '@babel/generator@7.2.0': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 jsesc: 2.5.2 lodash: 4.17.21 source-map: 0.5.7 @@ -31722,13 +31924,25 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 + '@babel/generator@7.26.2': + dependencies: + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 + '@babel/helper-annotate-as-pure@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 + + '@babel/helper-annotate-as-pure@7.25.9': + dependencies: + '@babel/types': 7.26.0 '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@babel/helper-compilation-targets@7.23.6': dependencies: @@ -31738,6 +31952,14 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 + '@babel/helper-compilation-targets@7.25.9': + dependencies: + '@babel/compat-data': 7.26.2 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.2 + lru-cache: 5.1.1 + semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31751,6 +31973,19 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.3) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/traverse': 7.25.9 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31758,12 +31993,30 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + regexpu-core: 6.2.0 + semver: 6.3.1 + '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - debug: 4.3.4 + '@babel/helper-plugin-utils': 7.25.9 + debug: 4.3.7 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + debug: 4.3.7 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -31773,21 +32026,35 @@ snapshots: '@babel/helper-function-name@7.23.0': dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 '@babel/helper-hoist-variables@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@babel/helper-member-expression-to-functions@7.23.0': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 + + '@babel/helper-member-expression-to-functions@7.25.9': + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color '@babel/helper-module-imports@7.24.3': dependencies: '@babel/types': 7.24.0 + '@babel/helper-module-imports@7.25.9': + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31797,12 +32064,27 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.24.7 + '@babel/helper-module-transforms@7.26.0(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 + + '@babel/helper-optimise-call-expression@7.25.9': + dependencies: + '@babel/types': 7.26.0 '@babel/helper-plugin-utils@7.24.0': {} + '@babel/helper-plugin-utils@7.25.9': {} + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31810,6 +32092,15 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 + '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-wrap-function': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color + '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31817,29 +32108,66 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color + '@babel/helper-simple-access@7.22.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 + + '@babel/helper-simple-access@7.25.9': + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: '@babel/types': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color + '@babel/helper-split-export-declaration@7.22.6': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@babel/helper-string-parser@7.24.1': {} + '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helper-validator-identifier@7.25.9': {} + '@babel/helper-validator-option@7.23.5': {} + '@babel/helper-validator-option@7.25.9': {} + '@babel/helper-wrap-function@7.22.20': dependencies: '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + + '@babel/helper-wrap-function@7.25.9': + dependencies: + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color '@babel/helpers@7.24.1': dependencies: @@ -31860,6 +32188,10 @@ snapshots: dependencies: '@babel/types': 7.24.0 + '@babel/parser@7.26.2': + dependencies: + '@babel/types': 7.26.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31896,7 +32228,7 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.3) '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.24.3)': @@ -31905,6 +32237,11 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -31914,7 +32251,7 @@ snapshots: '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.3)': @@ -31955,7 +32292,7 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)': dependencies: @@ -31966,7 +32303,7 @@ snapshots: '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)': @@ -31977,7 +32314,7 @@ snapshots: '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)': dependencies: @@ -31992,18 +32329,23 @@ snapshots: '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32012,7 +32354,12 @@ snapshots: '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3)': dependencies: @@ -32043,6 +32390,11 @@ snapshots: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32088,6 +32440,11 @@ snapshots: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32103,7 +32460,7 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) @@ -32114,6 +32471,15 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.24.3) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32122,13 +32488,18 @@ snapshots: '@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3)': dependencies: @@ -32141,25 +32512,48 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 + '@babel/plugin-transform-classes@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.3) + '@babel/traverse': 7.25.9 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.24.0 + '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/template': 7.25.9 + '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32186,7 +32580,7 @@ snapshots: '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3)': @@ -32195,18 +32589,35 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.24.3) + '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3)': dependencies: @@ -32217,12 +32628,17 @@ snapshots: '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-literals@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3)': @@ -32243,6 +32659,15 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 + '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-simple-access': 7.25.9 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32277,7 +32702,7 @@ snapshots: '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3)': @@ -32288,6 +32713,13 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32297,7 +32729,7 @@ snapshots: '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3)': @@ -32307,25 +32739,55 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32334,13 +32796,18 @@ snapshots: '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32351,11 +32818,21 @@ snapshots: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32365,6 +32842,17 @@ snapshots: '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) '@babel/types': 7.24.0 + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.24.3) + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32374,7 +32862,7 @@ snapshots: '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 regenerator-transform: 0.15.2 '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3)': @@ -32386,7 +32874,7 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) @@ -32394,6 +32882,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.3) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32402,13 +32902,28 @@ snapshots: '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3)': dependencies: @@ -32428,6 +32943,17 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.24.3) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32445,6 +32971,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 @@ -32540,7 +33072,7 @@ snapshots: '@babel/preset-flow@7.24.1(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) @@ -32600,6 +33132,12 @@ snapshots: '@babel/parser': 7.24.1 '@babel/types': 7.24.0 + '@babel/template@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@babel/traverse@7.24.1': dependencies: '@babel/code-frame': 7.24.6 @@ -32630,12 +33168,29 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.24.0': dependencies: '@babel/helper-string-parser': 7.24.1 '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 + '@babel/types@7.26.0': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@base2/pretty-print-object@1.0.1': {} '@bcoe/v8-coverage@0.2.3': {} @@ -33820,10 +34375,10 @@ snapshots: '@emotion/memoize@0.8.1': {} - '@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@emotion/native@11.11.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@emotion/primitives-core': 11.11.0(react@18.3.1) - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - '@emotion/react' - react @@ -34115,7 +34670,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.7 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -34430,91 +34985,99 @@ snapshots: mv: 2.1.1 safe-json-stringify: 1.2.0 - '@expo/cli@0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)': + '@expo/cli@0.18.31(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))': dependencies: '@babel/runtime': 7.24.1 '@expo/code-signing-certificates': 0.0.5 - '@expo/config': 8.1.2 - '@expo/config-plugins': 7.2.5 - '@expo/dev-server': 0.5.5 - '@expo/devcert': 1.1.0 - '@expo/env': 0.0.5 + '@expo/config': 9.0.4 + '@expo/config-plugins': 8.0.11 + '@expo/devcert': 1.1.4 + '@expo/env': 0.3.0 + '@expo/image-utils': 0.5.1 '@expo/json-file': 8.3.0 + '@expo/metro-config': 0.18.11 '@expo/osascript': 2.1.0 - '@expo/package-manager': 1.1.2 - '@expo/plist': 0.0.20 - '@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)) + '@expo/package-manager': 1.5.2 + '@expo/plist': 0.1.0 + '@expo/prebuild-config': 7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)) '@expo/rudder-sdk-node': 1.1.1 - '@expo/spawn-async': 1.5.0 + '@expo/spawn-async': 1.7.2 '@expo/xcpretty': 4.3.1 + '@react-native/dev-middleware': 0.74.85 '@urql/core': 2.3.6(graphql@15.8.0) '@urql/exchange-retry': 0.3.0(graphql@15.8.0) accepts: 1.3.8 - arg: 4.1.0 + arg: 5.0.2 better-opn: 3.0.2 + bplist-creator: 0.0.7 bplist-parser: 0.3.2 - cacache: 15.3.0 + cacache: 18.0.4 chalk: 4.1.2 ci-info: 3.9.0 - debug: 4.3.4 + connect: 3.7.0 + debug: 4.3.7 env-editor: 0.4.2 + fast-glob: 3.3.2 find-yarn-workspace-root: 2.0.0 form-data: 3.0.1 freeport-async: 2.0.0 fs-extra: 8.1.0 getenv: 1.0.0 + glob: 7.2.3 graphql: 15.8.0 graphql-tag: 2.12.6(graphql@15.8.0) https-proxy-agent: 5.0.1 internal-ip: 4.3.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 js-yaml: 3.14.1 json-schema-deref-sync: 0.13.0 - md5-file: 3.2.3 + lodash.debounce: 4.0.8 md5hex: 1.0.0 - minipass: 3.1.6 + minimatch: 3.1.2 node-fetch: 2.7.0 node-forge: 1.3.1 npm-package-arg: 7.0.0 + open: 8.4.2 ora: 3.4.0 + picomatch: 3.0.1 pretty-bytes: 5.6.0 progress: 2.0.3 prompts: 2.4.2 qrcode-terminal: 0.11.0 require-from-string: 2.0.2 requireg: 0.2.2 + resolve: 1.22.8 resolve-from: 5.0.0 - semver: 7.5.4 + resolve.exports: 2.0.2 + semver: 7.6.3 send: 0.18.0 slugify: 1.6.6 + source-map-support: 0.5.21 + stacktrace-parser: 0.1.10 structured-headers: 0.4.1 tar: 6.2.1 + temp-dir: 2.0.0 tempy: 0.7.1 terminal-link: 2.1.1 text-table: 0.2.0 url-join: 4.0.0 wrap-ansi: 7.0.0 ws: 8.17.1 - optionalDependencies: - '@expo/metro-config': 0.10.7 - glob: 7.2.3 - metro: 0.80.12 - metro-core: 0.80.12 - minimatch: 5.1.6 transitivePeerDependencies: - - bluebird - bufferutil - encoding - expo-modules-autolinking - supports-color - utf-8-validate - '@expo/cli@0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))': + '@expo/cli@0.18.31(metro-core@0.80.12)(metro@0.80.12)': dependencies: '@babel/runtime': 7.24.1 '@expo/code-signing-certificates': 0.0.5 '@expo/config': 9.0.4 - '@expo/config-plugins': 8.0.10 - '@expo/devcert': 1.1.0 + '@expo/config-plugins': 8.0.11 + '@expo/devcert': 1.1.4 '@expo/env': 0.3.0 '@expo/image-utils': 0.5.1 '@expo/json-file': 8.3.0 @@ -34522,7 +35085,7 @@ snapshots: '@expo/osascript': 2.1.0 '@expo/package-manager': 1.5.2 '@expo/plist': 0.1.0 - '@expo/prebuild-config': 7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)) + '@expo/prebuild-config': 7.0.9 '@expo/rudder-sdk-node': 1.1.1 '@expo/spawn-async': 1.7.2 '@expo/xcpretty': 4.3.1 @@ -34587,6 +35150,9 @@ snapshots: url-join: 4.0.0 wrap-ansi: 7.0.0 ws: 8.17.1 + optionalDependencies: + metro: 0.80.12 + metro-core: 0.80.12 transitivePeerDependencies: - bufferutil - encoding @@ -34607,7 +35173,7 @@ snapshots: '@expo/sdk-runtime-versions': 1.0.0 '@react-native/normalize-color': 2.1.0 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.7 find-up: 5.0.0 getenv: 1.0.0 glob: 7.1.6 @@ -34668,7 +35234,7 @@ snapshots: '@expo/sdk-runtime-versions': 1.0.0 '@react-native/normalize-color': 2.1.0 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.7 find-up: 5.0.0 getenv: 1.0.0 glob: 7.1.6 @@ -34681,14 +35247,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config-plugins@8.0.10': + '@expo/config-plugins@8.0.11': dependencies: '@expo/config-types': 51.0.3 '@expo/json-file': 8.3.0 '@expo/plist': 0.1.0 '@expo/sdk-runtime-versions': 1.0.0 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.7 find-up: 5.0.0 getenv: 1.0.0 glob: 7.1.6 @@ -34701,6 +35267,25 @@ snapshots: transitivePeerDependencies: - supports-color + '@expo/config-plugins@9.0.10': + dependencies: + '@expo/config-types': 52.0.1 + '@expo/json-file': 9.0.0 + '@expo/plist': 0.2.0 + '@expo/sdk-runtime-versions': 1.0.0 + chalk: 4.1.2 + debug: 4.3.7 + getenv: 1.0.0 + glob: 10.4.5 + resolve-from: 5.0.0 + semver: 7.5.4 + slash: 3.0.0 + slugify: 1.6.6 + xcode: 3.0.1 + xml2js: 0.6.0 + transitivePeerDependencies: + - supports-color + '@expo/config-types@45.0.0': {} '@expo/config-types@49.0.0': {} @@ -34709,6 +35294,26 @@ snapshots: '@expo/config-types@51.0.3': {} + '@expo/config-types@52.0.1': {} + + '@expo/config@10.0.5': + dependencies: + '@babel/code-frame': 7.10.4 + '@expo/config-plugins': 9.0.10 + '@expo/config-types': 52.0.1 + '@expo/json-file': 9.0.0 + deepmerge: 4.3.1 + getenv: 1.0.0 + glob: 10.4.5 + require-from-string: 2.0.2 + resolve-from: 5.0.0 + resolve-workspace-root: 2.0.0 + semver: 7.6.3 + slugify: 1.6.6 + sucrase: 3.35.0 + transitivePeerDependencies: + - supports-color + '@expo/config@8.1.2': dependencies: '@babel/code-frame': 7.10.4 @@ -34744,7 +35349,7 @@ snapshots: '@expo/config@9.0.4': dependencies: '@babel/code-frame': 7.10.4 - '@expo/config-plugins': 8.0.10 + '@expo/config-plugins': 8.0.11 '@expo/config-types': 51.0.3 '@expo/json-file': 8.3.0 getenv: 1.0.0 @@ -34757,41 +35362,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/dev-server@0.5.5': - dependencies: - '@expo/bunyan': 4.0.0 - '@expo/config': 9.0.4 - '@expo/metro-config': 0.10.7 - '@expo/osascript': 2.0.33 - '@expo/spawn-async': 1.7.2 - body-parser: 1.20.3 - chalk: 4.1.2 - connect: 3.7.0 - fs-extra: 9.0.0 - glob: 7.2.3 - is-docker: 2.2.1 - is-wsl: 2.2.0 - node-fetch: 2.7.0 - open: 8.4.2 - resolve-from: 5.0.0 - serialize-error: 6.0.0 - temp-dir: 2.0.0 - transitivePeerDependencies: - - encoding - - supports-color - - '@expo/devcert@1.1.0': + '@expo/devcert@1.1.4': dependencies: application-config-path: 0.1.1 command-exists: 1.2.9 debug: 3.2.7 eol: 0.9.1 get-port: 3.2.0 - glob: 7.2.3 + glob: 10.4.5 lodash: 4.17.21 mkdirp: 0.5.6 password-prompt: 1.1.3 - rimraf: 2.7.1 sudo-prompt: 8.2.5 tmp: 0.0.33 tslib: 2.6.2 @@ -34811,7 +35392,7 @@ snapshots: '@expo/env@0.3.0': dependencies: chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.7 dotenv: 16.4.5 dotenv-expand: 11.0.6 getenv: 1.0.0 @@ -34822,7 +35403,7 @@ snapshots: dependencies: '@expo/spawn-async': 1.7.2 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.7 find-up: 5.0.0 minimatch: 3.1.2 p-limit: 3.1.0 @@ -34830,22 +35411,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/image-utils@0.3.22': - dependencies: - '@expo/spawn-async': 1.5.0 - chalk: 4.1.2 - fs-extra: 9.0.0 - getenv: 1.0.0 - jimp-compact: 0.16.1 - mime: 2.6.0 - node-fetch: 2.7.0 - parse-png: 2.1.0 - resolve-from: 5.0.0 - semver: 7.3.2 - tempy: 0.3.0 - transitivePeerDependencies: - - encoding - '@expo/image-utils@0.3.23': dependencies: '@expo/spawn-async': 1.5.0 @@ -34895,6 +35460,12 @@ snapshots: json5: 2.2.3 write-file-atomic: 2.4.3 + '@expo/json-file@9.0.0': + dependencies: + '@babel/code-frame': 7.10.4 + json5: 2.2.3 + write-file-atomic: 2.4.3 + '@expo/metro-config@0.10.7': dependencies: '@expo/config': 8.1.2 @@ -34916,15 +35487,15 @@ snapshots: '@expo/metro-config@0.18.11': dependencies: '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@expo/config': 9.0.4 '@expo/env': 0.3.0 '@expo/json-file': 8.3.0 '@expo/spawn-async': 1.7.2 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.7 find-yarn-workspace-root: 2.0.0 fs-extra: 9.1.0 getenv: 1.0.0 @@ -34936,30 +35507,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/osascript@2.0.33': - dependencies: - '@expo/spawn-async': 1.7.2 - exec-async: 2.2.0 - '@expo/osascript@2.1.0': dependencies: '@expo/spawn-async': 1.7.2 exec-async: 2.2.0 - '@expo/package-manager@1.1.2': - dependencies: - '@expo/json-file': 8.3.0 - '@expo/spawn-async': 1.7.2 - ansi-regex: 5.0.1 - chalk: 4.1.2 - find-up: 5.0.0 - find-yarn-workspace-root: 2.0.0 - js-yaml: 3.14.1 - micromatch: 4.0.7 - npm-package-arg: 7.0.0 - split: 1.0.1 - sudo-prompt: 9.1.1 - '@expo/package-manager@1.5.2': dependencies: '@expo/json-file': 8.3.0 @@ -34993,33 +35545,39 @@ snapshots: base64-js: 1.5.1 xmlbuilder: 14.0.0 - '@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))': + '@expo/plist@0.2.0': dependencies: - '@expo/config': 8.1.2 - '@expo/config-plugins': 7.2.5 - '@expo/config-types': 49.0.0 - '@expo/image-utils': 0.3.22 + '@xmldom/xmldom': 0.7.13 + base64-js: 1.5.1 + xmlbuilder: 14.0.0 + + '@expo/prebuild-config@7.0.9': + dependencies: + '@expo/config': 9.0.4 + '@expo/config-plugins': 8.0.11 + '@expo/config-types': 51.0.3 + '@expo/image-utils': 0.5.1 '@expo/json-file': 8.3.0 + '@react-native/normalize-colors': 0.74.85 debug: 4.3.4 - expo-modules-autolinking: 1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) fs-extra: 9.1.0 resolve-from: 5.0.0 - semver: 7.5.3 + semver: 7.6.3 xml2js: 0.6.0 transitivePeerDependencies: - encoding - supports-color - '@expo/prebuild-config@7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))': + '@expo/prebuild-config@7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))': dependencies: '@expo/config': 9.0.4 - '@expo/config-plugins': 8.0.10 + '@expo/config-plugins': 8.0.11 '@expo/config-types': 51.0.3 '@expo/image-utils': 0.5.1 '@expo/json-file': 8.3.0 '@react-native/normalize-colors': 0.74.85 - debug: 4.3.4 - expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + debug: 4.3.7 + expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fs-extra: 9.1.0 resolve-from: 5.0.0 semver: 7.6.3 @@ -35050,13 +35608,11 @@ snapshots: dependencies: cross-spawn: 7.0.3 - '@expo/vector-icons@13.0.0': {} - '@expo/vector-icons@14.0.4': dependencies: prop-types: 15.8.1 - '@expo/webpack-config@18.1.4(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(metro@0.80.12)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@expo/webpack-config@18.1.4(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@babel/core': 7.24.3 babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.94.0(metro@0.80.12)) @@ -35065,8 +35621,8 @@ snapshots: copy-webpack-plugin: 10.2.4(webpack@5.94.0(metro@0.80.12)) css-loader: 6.10.0(webpack@5.94.0(metro@0.80.12)) css-minimizer-webpack-plugin: 3.4.1(metro@0.80.12)(webpack@5.94.0(metro@0.80.12)) - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-pwa: 0.0.126(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-pwa: 0.0.126(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) find-up: 5.0.0 find-yarn-workspace-root: 2.0.0 fs-extra: 10.1.0 @@ -35500,8 +36056,6 @@ snapshots: '@formatjs/intl-localematcher': 0.5.4 tslib: 2.6.2 - '@gar/promisify@1.1.3': {} - '@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)': dependencies: graphql: 15.8.0 @@ -35599,7 +36153,7 @@ snapshots: '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.2 - debug: 4.3.4 + debug: 4.3.7 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -36593,7 +37147,7 @@ snapshots: '@kwsites/file-exists@1.1.1': dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -36795,12 +37349,12 @@ snapshots: dependencies: '@lezer/common': 1.2.1 - '@likashefqet/react-native-image-zoom@1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@likashefqet/react-native-image-zoom@1.3.0(react-native-gesture-handler@2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-gesture-handler: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react-native-reanimated: 3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-gesture-handler: 2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + react-native-reanimated: 3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@malept/cross-spawn-promise@1.1.1': dependencies: @@ -37108,20 +37662,10 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@npmcli/fs@1.1.1': - dependencies: - '@gar/promisify': 1.1.3 - semver: 7.5.4 - '@npmcli/fs@3.1.1': dependencies: semver: 7.5.4 - '@npmcli/move-file@1.1.2': - dependencies: - mkdirp: 1.0.4 - rimraf: 3.0.2 - '@octokit/auth-app@6.1.1': dependencies: '@octokit/auth-oauth-app': 7.1.0 @@ -38499,42 +39043,40 @@ snapshots: dependencies: '@babel/runtime': 7.24.1 - '@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))': + '@react-native-async-storage/async-storage@1.17.12(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))': dependencies: merge-options: 3.0.4 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))': + '@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))': dependencies: merge-options: 3.0.4 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - '@react-native-clipboard/clipboard@1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-native-clipboard/clipboard@1.13.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - '@react-native-community/cli-clean@13.6.1': + '@react-native-community/cli-clean@13.6.9': dependencies: - '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 transitivePeerDependencies: - encoding - '@react-native-community/cli-clean@13.6.9': + '@react-native-community/cli-clean@14.1.0': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 14.1.0 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 - transitivePeerDependencies: - - encoding - '@react-native-community/cli-config@13.6.1': + '@react-native-community/cli-config@13.6.9': dependencies: - '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 @@ -38543,24 +39085,24 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-config@13.6.9': + '@react-native-community/cli-config@14.1.0(typescript@5.4.3)': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 14.1.0 chalk: 4.1.2 - cosmiconfig: 5.2.1 + cosmiconfig: 9.0.0(typescript@5.4.3) deepmerge: 4.3.1 fast-glob: 3.3.2 joi: 17.12.2 transitivePeerDependencies: - - encoding + - typescript - '@react-native-community/cli-debugger-ui@13.6.1': + '@react-native-community/cli-debugger-ui@13.6.9': dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - '@react-native-community/cli-debugger-ui@13.6.9': + '@react-native-community/cli-debugger-ui@14.1.0': dependencies: serve-static: 1.15.0 transitivePeerDependencies: @@ -38572,17 +39114,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native-community/cli-doctor@13.6.1': + '@react-native-community/cli-doctor@13.6.9': dependencies: - '@react-native-community/cli-config': 13.6.1 - '@react-native-community/cli-platform-android': 13.6.1 - '@react-native-community/cli-platform-apple': 13.6.1 - '@react-native-community/cli-platform-ios': 13.6.1 - '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-config': 13.6.9 + '@react-native-community/cli-platform-android': 13.6.9 + '@react-native-community/cli-platform-apple': 13.6.9 + '@react-native-community/cli-platform-ios': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 - envinfo: 7.11.1 + envinfo: 7.14.0 execa: 5.1.1 hermes-profile-transformer: 0.0.6 node-stream-zip: 1.15.0 @@ -38594,19 +39136,18 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-doctor@13.6.9': + '@react-native-community/cli-doctor@14.1.0(typescript@5.4.3)': dependencies: - '@react-native-community/cli-config': 13.6.9 - '@react-native-community/cli-platform-android': 13.6.9 - '@react-native-community/cli-platform-apple': 13.6.9 - '@react-native-community/cli-platform-ios': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-config': 14.1.0(typescript@5.4.3) + '@react-native-community/cli-platform-android': 14.1.0 + '@react-native-community/cli-platform-apple': 14.1.0 + '@react-native-community/cli-platform-ios': 14.1.0 + '@react-native-community/cli-tools': 14.1.0 chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 - envinfo: 7.11.1 + envinfo: 7.14.0 execa: 5.1.1 - hermes-profile-transformer: 0.0.6 node-stream-zip: 1.15.0 ora: 5.4.1 semver: 7.5.4 @@ -38614,16 +39155,7 @@ snapshots: wcwidth: 1.0.1 yaml: 2.4.1 transitivePeerDependencies: - - encoding - - '@react-native-community/cli-hermes@13.6.1': - dependencies: - '@react-native-community/cli-platform-android': 13.6.1 - '@react-native-community/cli-tools': 13.6.1 - chalk: 4.1.2 - hermes-profile-transformer: 0.0.6 - transitivePeerDependencies: - - encoding + - typescript '@react-native-community/cli-hermes@13.6.9': dependencies: @@ -38634,9 +39166,9 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-android@13.6.1': + '@react-native-community/cli-platform-android@13.6.9': dependencies: - '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 @@ -38645,20 +39177,18 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-android@13.6.9': + '@react-native-community/cli-platform-android@14.1.0': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 14.1.0 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 fast-xml-parser: 4.4.1 logkitty: 0.7.1 - transitivePeerDependencies: - - encoding - '@react-native-community/cli-platform-apple@13.6.1': + '@react-native-community/cli-platform-apple@13.6.9': dependencies: - '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 @@ -38667,52 +39197,48 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-apple@13.6.9': + '@react-native-community/cli-platform-apple@14.1.0': dependencies: - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-tools': 14.1.0 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 fast-xml-parser: 4.4.1 ora: 5.4.1 - transitivePeerDependencies: - - encoding - '@react-native-community/cli-platform-ios@13.6.1': + '@react-native-community/cli-platform-ios@13.6.9': dependencies: - '@react-native-community/cli-platform-apple': 13.6.1 + '@react-native-community/cli-platform-apple': 13.6.9 execa: 5.0.0 transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-ios@13.6.9': + '@react-native-community/cli-platform-ios@14.1.0': dependencies: - '@react-native-community/cli-platform-apple': 13.6.9 + '@react-native-community/cli-platform-apple': 14.1.0 execa: 5.0.0 - transitivePeerDependencies: - - encoding - '@react-native-community/cli-server-api@13.6.1': + '@react-native-community/cli-server-api@13.6.9': dependencies: - '@react-native-community/cli-debugger-ui': 13.6.1 - '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-debugger-ui': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 nocache: 3.0.4 pretty-format: 26.6.2 serve-static: 1.15.0 - ws: 7.5.10 + ws: 6.2.3 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - '@react-native-community/cli-server-api@13.6.9': + '@react-native-community/cli-server-api@14.1.0': dependencies: - '@react-native-community/cli-debugger-ui': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-debugger-ui': 14.1.0 + '@react-native-community/cli-tools': 14.1.0 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -38722,7 +39248,6 @@ snapshots: ws: 6.2.3 transitivePeerDependencies: - bufferutil - - encoding - supports-color - utf-8-validate @@ -38744,7 +39269,7 @@ snapshots: - supports-color - utf-8-validate - '@react-native-community/cli-tools@13.6.1': + '@react-native-community/cli-tools@13.6.9': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 @@ -38760,21 +39285,18 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-tools@13.6.9': + '@react-native-community/cli-tools@14.1.0': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 execa: 5.1.1 find-up: 5.0.0 mime: 2.6.0 - node-fetch: 2.7.0 open: 6.4.0 ora: 5.4.1 semver: 7.5.4 shell-quote: 1.8.1 sudo-prompt: 9.2.1 - transitivePeerDependencies: - - encoding '@react-native-community/cli-tools@6.2.1': dependencies: @@ -38790,24 +39312,24 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-types@13.6.1': + '@react-native-community/cli-types@13.6.9': dependencies: joi: 17.12.2 - '@react-native-community/cli-types@13.6.9': + '@react-native-community/cli-types@14.1.0': dependencies: joi: 17.12.2 - '@react-native-community/cli@13.6.1': + '@react-native-community/cli@13.6.9': dependencies: - '@react-native-community/cli-clean': 13.6.1 - '@react-native-community/cli-config': 13.6.1 - '@react-native-community/cli-debugger-ui': 13.6.1 - '@react-native-community/cli-doctor': 13.6.1 - '@react-native-community/cli-hermes': 13.6.1 - '@react-native-community/cli-server-api': 13.6.1 - '@react-native-community/cli-tools': 13.6.1 - '@react-native-community/cli-types': 13.6.1 + '@react-native-community/cli-clean': 13.6.9 + '@react-native-community/cli-config': 13.6.9 + '@react-native-community/cli-debugger-ui': 13.6.9 + '@react-native-community/cli-doctor': 13.6.9 + '@react-native-community/cli-hermes': 13.6.9 + '@react-native-community/cli-server-api': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-types': 13.6.9 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -38823,94 +39345,92 @@ snapshots: - supports-color - utf-8-validate - '@react-native-community/cli@13.6.9': + '@react-native-community/cli@14.1.0(metro-resolver@0.80.12)(typescript@5.4.3)': dependencies: - '@react-native-community/cli-clean': 13.6.9 - '@react-native-community/cli-config': 13.6.9 - '@react-native-community/cli-debugger-ui': 13.6.9 - '@react-native-community/cli-doctor': 13.6.9 - '@react-native-community/cli-hermes': 13.6.9 - '@react-native-community/cli-server-api': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 - '@react-native-community/cli-types': 13.6.9 + '@react-native-community/cli-clean': 14.1.0 + '@react-native-community/cli-config': 14.1.0(typescript@5.4.3) + '@react-native-community/cli-debugger-ui': 14.1.0 + '@react-native-community/cli-doctor': 14.1.0(typescript@5.4.3) + '@react-native-community/cli-server-api': 14.1.0 + '@react-native-community/cli-tools': 14.1.0 + '@react-native-community/cli-types': 14.1.0 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 execa: 5.1.1 - find-up: 4.1.0 + find-up: 5.0.0 fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 semver: 7.5.4 + optionalDependencies: + metro-resolver: 0.80.12 transitivePeerDependencies: - bufferutil - - encoding - supports-color + - typescript - utf-8-validate - '@react-native-community/cli@13.6.9(metro-resolver@0.80.12)': + '@react-native-community/cli@14.1.0(typescript@5.4.3)': dependencies: - '@react-native-community/cli-clean': 13.6.9 - '@react-native-community/cli-config': 13.6.9 - '@react-native-community/cli-debugger-ui': 13.6.9 - '@react-native-community/cli-doctor': 13.6.9 - '@react-native-community/cli-hermes': 13.6.9 - '@react-native-community/cli-server-api': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 - '@react-native-community/cli-types': 13.6.9 + '@react-native-community/cli-clean': 14.1.0 + '@react-native-community/cli-config': 14.1.0(typescript@5.4.3) + '@react-native-community/cli-debugger-ui': 14.1.0 + '@react-native-community/cli-doctor': 14.1.0(typescript@5.4.3) + '@react-native-community/cli-server-api': 14.1.0 + '@react-native-community/cli-tools': 14.1.0 + '@react-native-community/cli-types': 14.1.0 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 execa: 5.1.1 - find-up: 4.1.0 + find-up: 5.0.0 fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 semver: 7.5.4 - optionalDependencies: - metro-resolver: 0.80.12 transitivePeerDependencies: - bufferutil - - encoding - supports-color + - typescript - utf-8-validate '@react-native-community/datetimepicker@6.7.5': dependencies: invariant: 2.2.4 - '@react-native-community/netinfo@9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))': + '@react-native-community/netinfo@9.5.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))': dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) '@react-native-community/slider@4.5.0': {} - '@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-native-firebase/app@14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@expo/config-plugins': 4.1.5 opencollective-postinstall: 2.0.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) superstruct: 0.6.2 transitivePeerDependencies: - supports-color - '@react-native-firebase/messaging@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))': + '@react-native-firebase/messaging@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))': dependencies: - '@react-native-firebase/app': 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-native-firebase/app': 14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) - '@react-native-firebase/remote-config@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))': + '@react-native-firebase/remote-config@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))': dependencies: - '@react-native-firebase/app': 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-native-firebase/app': 14.12.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) - '@react-native-masked-view/masked-view@0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-native-masked-view/masked-view@0.2.9(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) '@react-native/assets-registry@0.74.87': {} - '@react-native/assets-registry@0.74.88': {} + '@react-native/assets-registry@0.75.4': {} '@react-native/babel-plugin-codegen@0.74.87': dependencies: @@ -38919,16 +39439,23 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-plugin-codegen@0.74.88': + '@react-native/babel-plugin-codegen@0.74.87(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: - '@react-native/codegen': 0.74.88 + '@react-native/codegen': 0.74.87(@babel/preset-env@7.24.3(@babel/core@7.24.3)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/babel-plugin-codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + '@react-native/babel-plugin-codegen@0.75.4': dependencies: - '@react-native/codegen': 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native/codegen': 0.75.4 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/babel-plugin-codegen@0.75.4(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + dependencies: + '@react-native/codegen': 0.75.4(@babel/preset-env@7.24.3(@babel/core@7.24.3)) transitivePeerDependencies: - '@babel/preset-env' - supports-color @@ -38938,7 +39465,7 @@ snapshots: '@babel/core': 7.24.3 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.24.3) '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.3) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) @@ -38946,35 +39473,35 @@ snapshots: '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.24.3) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.24.3) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.24.3) '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.3) + '@babel/template': 7.25.9 '@react-native/babel-plugin-codegen': 0.74.87 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 @@ -38982,12 +39509,12 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.88(@babel/core@7.24.3)': + '@react-native/babel-preset@0.74.87(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: '@babel/core': 7.24.3 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.24.3) '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.3) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) @@ -38995,85 +39522,138 @@ snapshots: '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.24.3) + '@babel/template': 7.25.9 + '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) + react-refresh: 0.14.0 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/babel-preset@0.75.4(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3) '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.74.88 + '@babel/template': 7.25.9 + '@react-native/babel-plugin-codegen': 0.75.4 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + '@react-native/babel-preset@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3) '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@babel/template': 7.25.9 + '@react-native/babel-plugin-codegen': 0.75.4(@babel/preset-env@7.24.3(@babel/core@7.24.3)) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 transitivePeerDependencies: @@ -39092,12 +39672,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/codegen@0.74.88': + '@react-native/codegen@0.74.87(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: '@babel/parser': 7.24.1 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) glob: 7.2.3 hermes-parser: 0.19.1 invariant: 2.2.4 + jscodeshift: 0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@react-native/codegen@0.75.4': + dependencies: + '@babel/parser': 7.26.2 + glob: 7.2.3 + hermes-parser: 0.22.0 + invariant: 2.2.4 jscodeshift: 0.14.0 mkdirp: 0.5.6 nullthrows: 1.1.1 @@ -39105,12 +39698,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + '@react-native/codegen@0.75.4(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 '@babel/preset-env': 7.24.3(@babel/core@7.24.3) glob: 7.2.3 - hermes-parser: 0.19.1 + hermes-parser: 0.22.0 invariant: 2.2.4 jscodeshift: 0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)) mkdirp: 0.5.6 @@ -39141,19 +39734,18 @@ snapshots: - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)': + '@react-native/community-cli-plugin@0.75.4(@babel/core@7.24.3)': dependencies: - '@react-native-community/cli-server-api': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 - '@react-native/dev-middleware': 0.74.88 - '@react-native/metro-babel-transformer': 0.74.88(@babel/core@7.24.3) + '@react-native-community/cli-server-api': 14.1.0 + '@react-native-community/cli-tools': 14.1.0 + '@react-native/dev-middleware': 0.75.4 + '@react-native/metro-babel-transformer': 0.75.4(@babel/core@7.24.3) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12 metro-config: 0.80.12 metro-core: 0.80.12 node-fetch: 2.7.0 - querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -39164,19 +39756,18 @@ snapshots: - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12)': + '@react-native/community-cli-plugin@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12)': dependencies: - '@react-native-community/cli-server-api': 13.6.9 - '@react-native-community/cli-tools': 13.6.9 - '@react-native/dev-middleware': 0.74.88 - '@react-native/metro-babel-transformer': 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native-community/cli-server-api': 14.1.0 + '@react-native-community/cli-tools': 14.1.0 + '@react-native/dev-middleware': 0.75.4 + '@react-native/metro-babel-transformer': 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12 metro-config: 0.80.12(metro-transform-worker@0.80.12) metro-core: 0.80.12 node-fetch: 2.7.0 - querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -39191,7 +39782,7 @@ snapshots: '@react-native/debugger-frontend@0.74.87': {} - '@react-native/debugger-frontend@0.74.88': {} + '@react-native/debugger-frontend@0.75.4': {} '@react-native/dev-middleware@0.74.85': dependencies: @@ -39235,12 +39826,12 @@ snapshots: - supports-color - utf-8-validate - '@react-native/dev-middleware@0.74.88': + '@react-native/dev-middleware@0.75.4': dependencies: '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.74.88 - '@rnx-kit/chromium-edge-launcher': 1.0.0 + '@react-native/debugger-frontend': 0.75.4 chrome-launcher: 0.15.2 + chromium-edge-launcher: 0.2.0 connect: 3.7.0 debug: 2.6.9 node-fetch: 2.7.0 @@ -39248,7 +39839,6 @@ snapshots: open: 7.4.2 selfsigned: 2.4.1 serve-static: 1.15.0 - temp-dir: 2.0.0 ws: 6.2.3 transitivePeerDependencies: - bufferutil @@ -39258,11 +39848,11 @@ snapshots: '@react-native/gradle-plugin@0.74.87': {} - '@react-native/gradle-plugin@0.74.88': {} + '@react-native/gradle-plugin@0.75.4': {} '@react-native/js-polyfills@0.74.87': {} - '@react-native/js-polyfills@0.74.88': {} + '@react-native/js-polyfills@0.75.4': {} '@react-native/metro-babel-transformer@0.74.87': dependencies: @@ -39274,30 +39864,30 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)': + '@react-native/metro-babel-transformer@0.75.4(@babel/core@7.24.3)': dependencies: '@babel/core': 7.24.3 - '@react-native/babel-preset': 0.74.88(@babel/core@7.24.3) - hermes-parser: 0.19.1 + '@react-native/babel-preset': 0.75.4(@babel/core@7.24.3) + hermes-parser: 0.22.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + '@react-native/metro-babel-transformer@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: '@babel/core': 7.24.3 - '@react-native/babel-preset': 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - hermes-parser: 0.19.1 + '@react-native/babel-preset': 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + hermes-parser: 0.22.0 nullthrows: 1.1.1 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/metro-config@0.74.88(@babel/core@7.24.3)': + '@react-native/metro-config@0.75.4(@babel/core@7.24.3)': dependencies: - '@react-native/js-polyfills': 0.74.88 - '@react-native/metro-babel-transformer': 0.74.88(@babel/core@7.24.3) + '@react-native/js-polyfills': 0.75.4 + '@react-native/metro-babel-transformer': 0.75.4(@babel/core@7.24.3) metro-config: 0.80.12 metro-runtime: 0.80.12 transitivePeerDependencies: @@ -39314,7 +39904,7 @@ snapshots: '@react-native/normalize-colors@0.74.87': {} - '@react-native/normalize-colors@0.74.88': {} + '@react-native/normalize-colors@0.75.4': {} '@react-native/virtualized-lists@0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': dependencies: @@ -39325,33 +39915,33 @@ snapshots: optionalDependencies: '@types/react': 18.2.73 - '@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@react-native/virtualized-lists@0.75.4(@types/react@18.2.73)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) optionalDependencies: '@types/react': 18.2.73 - '@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-native/virtualized-lists@0.75.4(@types/react@18.2.73)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) optionalDependencies: '@types/react': 18.2.73 - '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + '@react-navigation/native': 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) color: 4.2.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-safe-area-context: 4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + react-native-screens: 3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) warn-once: 0.1.1 '@react-navigation/core@6.4.16(react@18.3.1)': @@ -39364,56 +39954,56 @@ snapshots: react-is: 16.13.1 use-latest-callback: 0.1.9(react@18.3.1) - '@react-navigation/elements@1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-navigation/elements@1.3.30(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-navigation/native': 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-safe-area-context: 4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) - '@react-navigation/material-top-tabs@6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-navigation/material-top-tabs@6.6.13(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-tab-view@3.5.2(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-navigation/native': 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) color: 4.2.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-pager-view: 6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react-native-tab-view: 3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-pager-view: 6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + react-native-tab-view: 3.5.2(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) warn-once: 0.1.1 - '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + '@react-navigation/native': 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-safe-area-context: 4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + react-native-screens: 3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) warn-once: 0.1.1 - '@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@react-navigation/core': 6.4.16(react@18.3.1) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.7 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) '@react-navigation/routers@6.1.9': dependencies: nanoid: 3.3.7 - '@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-gesture-handler@2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + '@react-navigation/native': 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) color: 4.2.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-gesture-handler: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-gesture-handler: 2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + react-native-safe-area-context: 4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + react-native-screens: 3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) warn-once: 0.1.1 '@reduxjs/toolkit@2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': @@ -39590,18 +40180,18 @@ snapshots: '@noble/hashes': 1.4.0 '@scure/base': 1.1.6 - '@segment/analytics-react-native@2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@segment/analytics-react-native@2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)))(@segment/sovran-react-native@0.4.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-get-random-values@1.11.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@segment/sovran-react-native': 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@segment/sovran-react-native': 0.4.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) '@segment/tsub': 2.0.0 deepmerge: 4.3.1 js-base64: 3.7.7 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-get-random-values: 1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-get-random-values: 1.11.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) uuid: 9.0.1 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) transitivePeerDependencies: - supports-color @@ -39610,13 +40200,13 @@ snapshots: component-type: 1.2.2 join-component: 1.1.0 - '@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@segment/sovran-react-native@0.4.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) ansi-regex: 5.0.1 deepmerge: 4.3.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) shell-quote: 1.7.3 '@segment/tsub@2.0.0': @@ -39700,42 +40290,63 @@ snapshots: '@sentry/cli-darwin@2.31.2': optional: true + '@sentry/cli-darwin@2.34.1': + optional: true + '@sentry/cli-linux-arm64@2.31.0': optional: true '@sentry/cli-linux-arm64@2.31.2': optional: true + '@sentry/cli-linux-arm64@2.34.1': + optional: true + '@sentry/cli-linux-arm@2.31.0': optional: true '@sentry/cli-linux-arm@2.31.2': optional: true + '@sentry/cli-linux-arm@2.34.1': + optional: true + '@sentry/cli-linux-i686@2.31.0': optional: true '@sentry/cli-linux-i686@2.31.2': optional: true + '@sentry/cli-linux-i686@2.34.1': + optional: true + '@sentry/cli-linux-x64@2.31.0': optional: true '@sentry/cli-linux-x64@2.31.2': optional: true + '@sentry/cli-linux-x64@2.34.1': + optional: true + '@sentry/cli-win32-i686@2.31.0': optional: true '@sentry/cli-win32-i686@2.31.2': optional: true + '@sentry/cli-win32-i686@2.34.1': + optional: true + '@sentry/cli-win32-x64@2.31.0': optional: true '@sentry/cli-win32-x64@2.31.2': optional: true + '@sentry/cli-win32-x64@2.34.1': + optional: true + '@sentry/cli@2.31.0': dependencies: https-proxy-agent: 5.0.1 @@ -39774,6 +40385,25 @@ snapshots: - encoding - supports-color + '@sentry/cli@2.34.1': + dependencies: + https-proxy-agent: 5.0.1 + node-fetch: 2.7.0 + progress: 2.0.3 + proxy-from-env: 1.1.0 + which: 2.0.2 + optionalDependencies: + '@sentry/cli-darwin': 2.34.1 + '@sentry/cli-linux-arm': 2.34.1 + '@sentry/cli-linux-arm64': 2.34.1 + '@sentry/cli-linux-i686': 2.34.1 + '@sentry/cli-linux-x64': 2.34.1 + '@sentry/cli-win32-i686': 2.34.1 + '@sentry/cli-win32-x64': 2.34.1 + transitivePeerDependencies: + - encoding + - supports-color + '@sentry/core@6.19.7': dependencies: '@sentry/hub': 6.19.7 @@ -39886,7 +40516,7 @@ snapshots: '@sentry/types': 8.16.0 '@sentry/utils': 8.16.0 - '@sentry/react-native@5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@sentry/react-native@5.24.3(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@sentry/browser': 7.117.0 '@sentry/cli': 2.31.2 @@ -39898,10 +40528,10 @@ snapshots: '@sentry/utils': 7.117.0 promise: 8.3.0 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) tslib: 2.6.2 optionalDependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) transitivePeerDependencies: - encoding - supports-color @@ -39941,31 +40571,31 @@ snapshots: dependencies: '@sentry/types': 8.16.0 - '@shopify/flash-list@1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@shopify/flash-list@1.6.4(@babel/runtime@7.24.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - recyclerlistview: 4.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + recyclerlistview: 4.2.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) tslib: 2.6.2 - '@shopify/react-native-performance-navigation@3.0.0(kovrw3xh2to45edylhohkqevc4)': + '@shopify/react-native-performance-navigation@3.0.0(exhv34m7nv4khuc65lm2bic4ei)': dependencies: '@babel/runtime': 7.24.1 '@react-navigation/core': 6.4.16(react@18.3.1) - '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - '@react-navigation/stack': 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - '@shopify/react-native-performance': 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-navigation/native': 6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + '@react-navigation/stack': 6.3.29(@react-navigation/native@6.1.17(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-gesture-handler@2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + '@shopify/react-native-performance': 4.1.2(@babel/runtime@7.24.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) lodash.isequal: 4.5.0 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) tslib: 2.6.2 - '@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)': + '@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) tslib: 2.6.2 '@sideway/address@4.1.5': @@ -41679,33 +42309,33 @@ snapshots: '@storybook/global': 5.0.0 tiny-invariant: 1.3.3 - '@storybook/addon-ondevice-actions@6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@storybook/addon-ondevice-actions@6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@storybook/addon-actions': 7.6.20 '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 6.5.16 fast-deep-equal: 2.0.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - react-dom - '@storybook/addon-ondevice-backgrounds@6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@storybook/addon-ondevice-backgrounds@6.5.7(@emotion/native@11.11.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@storybook/react-native-theming': 6.5.7(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) core-js: 3.36.1 prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) optionalDependencies: - '@emotion/native': 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@emotion/native': 11.11.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) transitivePeerDependencies: - react-dom - '@storybook/addon-ondevice-controls@6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@storybook/addon-ondevice-controls@6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@react-native-community/datetimepicker': 6.7.5 '@react-native-community/slider': 4.5.0 @@ -41713,30 +42343,30 @@ snapshots: '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 - '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@storybook/react-native-theming': 6.5.7(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) core-js: 3.36.1 deep-equal: 1.1.2 prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) - react-native-modal-datetime-picker: 14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) + react-native-modal-datetime-picker: 14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3)) react-native-modal-selector: 2.1.2 tinycolor2: 1.6.0 transitivePeerDependencies: - react-dom - '@storybook/addon-ondevice-notes@6.5.7(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@storybook/addon-ondevice-notes@6.5.7(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-api': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 6.5.16 '@storybook/core-events': 6.5.16 - '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@storybook/react-native-theming': 6.5.7(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) core-js: 3.36.1 prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) simple-markdown: 0.7.3(@types/react@18.2.73) transitivePeerDependencies: - '@types/react' @@ -42159,7 +42789,7 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@storybook/csf': 0.1.3 '@storybook/csf-tools': 7.6.20 '@storybook/node-logger': 7.6.20 @@ -42272,7 +42902,7 @@ snapshots: find-cache-dir: 3.3.2 find-up: 5.0.0 fs-extra: 11.2.0 - glob: 10.3.12 + glob: 10.4.5 handlebars: 4.7.8 lazy-universal-dotenv: 4.0.0 node-fetch: 2.7.0 @@ -42373,10 +43003,10 @@ snapshots: '@storybook/csf-tools@7.6.20': dependencies: - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@storybook/csf': 0.1.3 '@storybook/types': 7.6.20 fs-extra: 11.2.0 @@ -42670,14 +43300,14 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/react-native-theming@6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)': + '@storybook/react-native-theming@6.5.7(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)': dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - '@storybook/react-native@6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)))(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1)(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12))': + '@storybook/react-native@6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3)))(@types/react@18.2.73)(react-dom@18.3.1(react@18.3.1))(react-native-safe-area-context@4.10.9(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12))': dependencies: - '@react-native-async-storage/async-storage': 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)) + '@react-native-async-storage/async-storage': 1.17.12(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3)) '@storybook/addons': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/channel-websocket': 6.5.16 '@storybook/channels': 6.5.16 @@ -42687,7 +43317,7 @@ snapshots: '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/preview-web': 6.5.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@storybook/react-native-theming': 6.5.7(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) chokidar: 3.6.0 commander: 8.3.0 deepmerge: 4.3.1 @@ -42695,8 +43325,8 @@ snapshots: jotai: 2.10.1(@types/react@18.2.73)(react@18.3.1) prettier: 2.8.8 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) - react-native-safe-area-context: 4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) + react-native-safe-area-context: 4.10.9(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-swipe-gestures: 1.0.5 util: 0.12.5 transitivePeerDependencies: @@ -43377,23 +44007,23 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/jest-native@5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/jest-native@5.4.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: chalk: 4.1.2 jest-diff: 29.7.0 jest-matcher-utils: 29.7.0 pretty-format: 29.7.0 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-test-renderer: 18.3.1(react@18.3.1) redent: 3.0.0 - '@testing-library/react-native@12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/react-native@12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react-test-renderer@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: jest-matcher-utils: 29.7.0 pretty-format: 29.7.0 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-test-renderer: 18.3.1(react@18.3.1) redent: 3.0.0 optionalDependencies: @@ -43522,16 +44152,16 @@ snapshots: '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 '@types/babel__traverse@7.20.5': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@types/bchaddrjs@0.4.3': {} @@ -44015,9 +44645,9 @@ snapshots: optionalDependencies: '@types/react': 18.2.73 - '@types/react-native-video@5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)': + '@types/react-native-video@5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)': dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) optionalDependencies: '@types/react': 18.2.73 transitivePeerDependencies: @@ -44029,6 +44659,7 @@ snapshots: - metro-transform-worker - react - supports-color + - typescript - utf-8-validate '@types/react-native@0.70.19(@types/react@18.2.73)': @@ -44354,7 +44985,7 @@ snapshots: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - debug: 4.3.4 + debug: 4.3.7 eslint: 8.57.0 optionalDependencies: typescript: 4.9.5 @@ -44438,7 +45069,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) - debug: 4.3.4 + debug: 4.3.7 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.3) optionalDependencies: @@ -44466,7 +45097,7 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4 + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 @@ -44523,7 +45154,7 @@ snapshots: dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4 + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -44647,9 +45278,16 @@ snapshots: graphql: 15.8.0 wonka: 4.0.15 + '@urql/core@5.0.8(graphql@15.8.0)': + dependencies: + '@0no-co/graphql.web': 1.0.11(graphql@15.8.0) + wonka: 6.3.4 + transitivePeerDependencies: + - graphql + '@urql/exchange-retry@0.3.0(graphql@15.8.0)': dependencies: - '@urql/core': 2.3.6(graphql@15.8.0) + '@urql/core': 5.0.8(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 @@ -44876,7 +45514,7 @@ snapshots: '@vue/compiler-core@3.4.21': dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 '@vue/shared': 3.4.21 entities: 4.5.0 estree-walker: 2.0.2 @@ -44891,7 +45529,7 @@ snapshots: '@vue/compiler-sfc@2.7.16': dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 postcss: 8.4.38 source-map: 0.6.1 optionalDependencies: @@ -45339,7 +45977,7 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -45571,8 +46209,6 @@ snapshots: archy@1.0.0: {} - arg@4.1.0: {} - arg@4.1.3: {} arg@5.0.2: {} @@ -45779,7 +46415,7 @@ snapshots: asynckit@0.4.0: {} - asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))): + asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))): dependencies: abstract-leveldown: 2.6.1 argsarray: 0.0.1 @@ -45787,7 +46423,7 @@ snapshots: ltgt: 2.2.1 tiny-queue: 0.2.0 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) at-least-node@1.0.0: {} @@ -45965,22 +46601,22 @@ snapshots: babel-plugin-jest-hoist@27.5.1: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.5 babel-plugin-jest-hoist@28.1.3: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.5 babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.5 @@ -46033,6 +46669,14 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.3): + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.24.3) + core-js-compat: 3.39.0 + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3): dependencies: '@babel/core': 7.24.3 @@ -46043,7 +46687,7 @@ snapshots: babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: dependencies: '@babel/generator': 7.2.0 - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 chalk: 4.1.2 invariant: 2.2.4 pretty-format: 24.9.0 @@ -46061,6 +46705,8 @@ snapshots: babel-plugin-react-native-web@0.19.10: {} + babel-plugin-react-native-web@0.19.13: {} + babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1)): dependencies: '@babel/helper-annotate-as-pure': 7.22.5 @@ -46148,31 +46794,34 @@ snapshots: dependencies: '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) '@babel/preset-react': 7.24.1(@babel/core@7.24.3) '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) '@react-native/babel-preset': 0.74.87(@babel/core@7.24.3) babel-plugin-react-compiler: 0.0.0-experimental-592953e-20240517 - babel-plugin-react-native-web: 0.19.10 + babel-plugin-react-native-web: 0.19.13 react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' - supports-color - babel-preset-expo@9.5.2(@babel/core@7.24.3): + babel-preset-expo@11.0.15(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - babel-plugin-module-resolver: 5.0.0 - babel-plugin-react-native-web: 0.18.12 - metro-react-native-babel-preset: 0.76.8(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + '@react-native/babel-preset': 0.74.87(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + babel-plugin-react-compiler: 0.0.0-experimental-592953e-20240517 + babel-plugin-react-native-web: 0.19.13 + react-refresh: 0.14.2 transitivePeerDependencies: - '@babel/core' + - '@babel/preset-env' - supports-color babel-preset-expo@9.9.0(@babel/core@7.24.3): @@ -46220,6 +46869,8 @@ snapshots: '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + transitivePeerDependencies: + - supports-color babel-preset-jest@27.5.1(@babel/core@7.24.3): dependencies: @@ -46849,36 +47500,13 @@ snapshots: cac@6.7.14: {} - cacache@15.3.0: - dependencies: - '@npmcli/fs': 1.1.1 - '@npmcli/move-file': 1.1.2 - chownr: 2.0.0 - fs-minipass: 2.1.0 - glob: 7.2.3 - infer-owner: 1.0.4 - lru-cache: 6.0.0 - minipass: 3.3.6 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - mkdirp: 1.0.4 - p-map: 4.0.0 - promise-inflight: 1.0.1 - rimraf: 3.0.2 - ssri: 8.0.1 - tar: 6.2.1 - unique-filename: 1.1.1 - transitivePeerDependencies: - - bluebird - cacache@18.0.4: dependencies: '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 - glob: 10.3.12 + glob: 10.4.5 lru-cache: 10.2.0 - minipass: 7.0.4 + minipass: 7.1.2 minipass-collect: 2.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -47145,6 +47773,17 @@ snapshots: chrome-trace-event@1.0.4: {} + chromium-edge-launcher@0.2.0: + dependencies: + '@types/node': 20.12.12 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2 + mkdirp: 1.0.4 + rimraf: 3.0.2 + transitivePeerDependencies: + - supports-color + chromium-pickle-js@0.2.0: {} ci-info@2.0.0: {} @@ -47416,8 +48055,6 @@ snapshots: compare-version@0.1.2: {} - compare-versions@3.6.0: {} - component-emitter@1.3.1: {} component-type@1.2.2: {} @@ -47493,7 +48130,7 @@ snapshots: config-file-ts@0.2.6: dependencies: - glob: 10.3.12 + glob: 10.4.5 typescript: 5.6.3 confusing-browser-globals@1.0.11: {} @@ -47601,6 +48238,10 @@ snapshots: dependencies: browserslist: 4.24.2 + core-js-compat@3.39.0: + dependencies: + browserslist: 4.24.2 + core-js-pure@3.36.1: {} core-js@2.6.12: {} @@ -47666,6 +48307,15 @@ snapshots: optionalDependencies: typescript: 5.6.3 + cosmiconfig@9.0.0(typescript@5.4.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.4.3 + cosmjs-types@0.2.1: dependencies: long: 4.0.0 @@ -48282,6 +48932,10 @@ snapshots: optionalDependencies: supports-color: 5.5.0 + debug@4.3.7: + dependencies: + ms: 2.1.3 + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 @@ -49038,6 +49692,8 @@ snapshots: envinfo@7.11.1: {} + envinfo@7.14.0: {} + eol@0.9.1: {} err-code@2.0.3: {} @@ -50137,224 +50793,203 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - expo-application@5.3.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): - dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) - - expo-asset@10.0.10(vzz7pjdkhelr25eia3vbv5drg4): + expo-asset@10.0.10(6swtssrbgxqycpc7eps5a4xxjq): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-constants: 16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-constants: 16.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) invariant: 2.2.4 md5-file: 3.2.3 optionalDependencies: - expo-file-system: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-file-system: 17.0.1(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - supports-color - expo-asset@8.10.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-asset@10.0.10(expo-file-system@17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - blueimp-md5: 2.19.0 - expo-file-system: 15.4.5(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-constants: 16.0.2(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) invariant: 2.2.4 md5-file: 3.2.3 - path-browserify: 1.0.1 - url-parse: 1.5.10 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-file-system: 17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - - expo + - supports-color - expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: blueimp-md5: 2.19.0 - expo-file-system: 15.4.5(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-file-system: 15.4.5(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) invariant: 2.2.4 md5-file: 3.2.3 path-browserify: 1.0.1 url-parse: 1.5.10 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - expo - expo-barcode-scanner@13.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-camera@15.0.16(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-image-loader: 4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - - expo-camera@15.0.16(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): - dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) invariant: 2.2.4 optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-constants@14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - '@expo/config': 8.1.2 - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@expo/config': 8.2.1 + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) uuid: 3.4.0 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - supports-color - expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-constants@16.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - '@expo/config': 8.2.1 - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - uuid: 3.4.0 + '@expo/config': 9.0.4 + '@expo/env': 0.3.0 + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 16.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - supports-color - expo-constants@16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-constants@16.0.2(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@expo/config': 9.0.4 '@expo/env': 0.3.0 - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-constants: 16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-constants: 16.0.2(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - supports-color expo-crypto@10.2.0: {} - expo-crypto@13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-crypto@13.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: base64-js: 1.5.1 - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-file-system@15.4.5(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-file-system@15.4.5(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) uuid: 3.4.0 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - expo-file-system@15.4.5(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-file-system@17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - uuid: 3.4.0 + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - expo-file-system@17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-file-system@17.0.1(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-font@11.10.3(expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-font@11.10.3(expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fontfaceobserver: 2.3.0 optionalDependencies: - expo-asset: 8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-asset: 8.10.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - expo-font@11.4.0(expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-font@12.0.10(expo-asset@10.0.10(6swtssrbgxqycpc7eps5a4xxjq))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fontfaceobserver: 2.3.0 optionalDependencies: - expo-asset: 8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-asset: 10.0.10(6swtssrbgxqycpc7eps5a4xxjq) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-font@12.0.10(expo-asset@10.0.10(vzz7pjdkhelr25eia3vbv5drg4))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-font@12.0.10(expo-asset@10.0.10(expo-file-system@17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fontfaceobserver: 2.3.0 optionalDependencies: - expo-asset: 10.0.10(vzz7pjdkhelr25eia3vbv5drg4) - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-asset: 10.0.10(expo-file-system@17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - expo-image-loader@4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-image-loader@4.7.0(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-image-manipulator@12.0.5(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-image-manipulator@12.0.5(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-image-loader: 4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-image-loader: 4.7.0(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-keep-awake@12.3.0(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-keep-awake@13.0.2(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - expo-keep-awake@13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-keep-awake@13.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: chalk: 4.1.2 commander: 7.2.0 @@ -50364,57 +50999,40 @@ snapshots: require-from-string: 2.0.2 resolve-from: 5.0.0 optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-modules-autolinking@1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): - dependencies: - '@expo/config': 8.1.2 - chalk: 4.1.2 - commander: 7.2.0 - fast-glob: 3.3.2 - find-up: 5.0.0 - fs-extra: 9.1.0 - optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) - transitivePeerDependencies: - - supports-color - - expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo-modules-core@1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: invariant: 2.2.4 optionalDependencies: - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - compare-versions: 3.6.0 invariant: 2.2.4 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - expo-pwa@0.0.126(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo-pwa@0.0.126(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: - '@expo/config': 9.0.4 + '@expo/config': 10.0.5 '@expo/image-utils': 0.3.23 chalk: 4.1.2 commander: 2.20.0 - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo: 51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) update-check: 1.5.3 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-constants: 14.5.1(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - encoding - supports-color @@ -50423,64 +51041,56 @@ snapshots: dependencies: base64-js: 1.5.1 - expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + expo@51.0.39(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(metro-core@0.80.12)(metro@0.80.12)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@babel/runtime': 7.24.1 - '@expo/cli': 0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6) - '@expo/config': 8.1.2 - '@expo/config-plugins': 7.2.5 - '@expo/vector-icons': 13.0.0 - babel-preset-expo: 9.5.2(@babel/core@7.24.3) - expo-application: 5.3.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-asset: 8.10.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-constants: 14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-file-system: 15.4.5(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-font: 11.4.0(expo-asset@8.10.1(expo-constants@14.5.1)(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-keep-awake: 12.3.0(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) - expo-modules-autolinking: 1.5.1(expo-constants@14.4.2(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.5.11)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@expo/cli': 0.18.31(metro-core@0.80.12)(metro@0.80.12) + '@expo/config': 9.0.4 + '@expo/config-plugins': 8.0.11 + '@expo/metro-config': 0.18.11 + '@expo/vector-icons': 14.0.4 + babel-preset-expo: 11.0.15(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + expo-asset: 10.0.10(expo-file-system@17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-file-system: 17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-font: 12.0.10(expo-asset@10.0.10(expo-file-system@17.0.1(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-keep-awake: 13.0.2(expo-constants@14.5.1)(expo-modules-core@1.12.26)(expo@51.0.39)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fbemitter: 3.0.0 - invariant: 2.2.4 - md5-file: 3.2.3 - node-fetch: 2.7.0 - pretty-format: 26.6.2 - uuid: 3.4.0 + whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + expo-modules-core: 1.12.26(expo-constants@14.5.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - '@babel/core' - - '@expo/metro-config' - - bluebird + - '@babel/preset-env' - bufferutil - encoding - - glob + - expo-constants - metro - metro-core - - minimatch - supports-color - utf-8-validate - expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@babel/runtime': 7.24.1 - '@expo/cli': 0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1)) + '@expo/cli': 0.18.31(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1)) '@expo/config': 9.0.4 - '@expo/config-plugins': 8.0.10 + '@expo/config-plugins': 8.0.11 '@expo/metro-config': 0.18.11 '@expo/vector-icons': 14.0.4 babel-preset-expo: 11.0.15(@babel/core@7.24.3) - expo-asset: 10.0.10(vzz7pjdkhelr25eia3vbv5drg4) - expo-file-system: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-font: 12.0.10(expo-asset@10.0.10(vzz7pjdkhelr25eia3vbv5drg4))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-keep-awake: 13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-asset: 10.0.10(6swtssrbgxqycpc7eps5a4xxjq) + expo-file-system: 17.0.1(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-font: 12.0.10(expo-asset@10.0.10(6swtssrbgxqycpc7eps5a4xxjq))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-keep-awake: 13.0.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo@51.0.39(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) fbemitter: 3.0.0 whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) - expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) + expo-modules-core: 1.12.26(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -50915,7 +51525,7 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(webpack@5.94.0): dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 @@ -50936,7 +51546,7 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.3)(webpack@5.94.0): dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 @@ -50956,7 +51566,7 @@ snapshots: fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12)): dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -50973,7 +51583,7 @@ snapshots: fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12)): dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -51110,7 +51720,7 @@ snapshots: fs-minipass@3.0.3: dependencies: - minipass: 7.0.4 + minipass: 7.1.2 fs-monkey@1.0.5: {} @@ -51254,13 +51864,14 @@ snapshots: glob-to-regexp@0.4.1: {} - glob@10.3.12: + glob@10.4.5: dependencies: foreground-child: 3.1.1 - jackspeak: 2.3.6 + jackspeak: 3.4.3 minimatch: 9.0.4 - minipass: 7.0.4 - path-scurry: 1.10.2 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 glob@6.0.4: dependencies: @@ -51635,6 +52246,8 @@ snapshots: hermes-estree@0.20.1: {} + hermes-estree@0.22.0: {} + hermes-estree@0.23.1: {} hermes-parser@0.14.0: @@ -51649,6 +52262,10 @@ snapshots: dependencies: hermes-estree: 0.20.1 + hermes-parser@0.22.0: + dependencies: + hermes-estree: 0.22.0 + hermes-parser@0.23.1: dependencies: hermes-estree: 0.23.1 @@ -51832,7 +52449,7 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -51906,7 +52523,7 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -52041,8 +52658,6 @@ snapshots: indexof@0.0.1: {} - infer-owner@1.0.4: {} - inflation@2.1.0: {} inflight@1.0.6: @@ -52516,7 +53131,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 @@ -52576,7 +53191,7 @@ snapshots: reflect.getprototypeof: 1.0.6 set-function-name: 2.0.2 - jackspeak@2.3.6: + jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: @@ -53848,7 +54463,7 @@ snapshots: jest-message-util@28.1.3: dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 '@jest/types': 28.1.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -54166,10 +54781,10 @@ snapshots: jest-snapshot@27.5.1: dependencies: '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 + '@babel/generator': 7.26.2 '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.20.5 @@ -54194,10 +54809,10 @@ snapshots: jest-snapshot@28.1.3: dependencies: '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 + '@babel/generator': 7.26.2 '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 @@ -54654,7 +55269,7 @@ snapshots: jscodeshift@0.14.0: dependencies: '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) @@ -54678,7 +55293,7 @@ snapshots: jscodeshift@0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) @@ -54703,11 +55318,11 @@ snapshots: jscodeshift@0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 + '@babel/parser': 7.26.2 '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.24.3) '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) @@ -54884,6 +55499,8 @@ snapshots: jsesc@2.5.2: {} + jsesc@3.0.2: {} + json-bigint@1.0.0: dependencies: bignumber.js: 9.1.2 @@ -54914,7 +55531,7 @@ snapshots: lodash: 4.17.21 md5: 2.2.1 memory-cache: 0.2.0 - traverse: 0.6.8 + traverse: 0.6.10 valid-url: 1.0.9 json-schema-traverse@0.4.1: {} @@ -55133,7 +55750,7 @@ snapshots: koa-route@3.2.0: dependencies: - debug: 4.3.4 + debug: 4.3.7 methods: 1.1.2 path-to-regexp: 1.8.0 transitivePeerDependencies: @@ -55141,7 +55758,7 @@ snapshots: koa-send@5.0.1: dependencies: - debug: 4.3.4 + debug: 4.3.7 http-errors: 1.8.1 resolve-path: 1.4.0 transitivePeerDependencies: @@ -55161,7 +55778,7 @@ snapshots: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.3.4 + debug: 4.3.7 delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -55634,10 +56251,10 @@ snapshots: dependencies: js-tokens: 4.0.0 - lottie-react-native@6.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + lottie-react-native@6.7.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) lottie-web@5.12.2: {} @@ -56783,13 +57400,9 @@ snapshots: minimist@1.2.8: {} - minipass-collect@1.0.2: - dependencies: - minipass: 3.3.6 - minipass-collect@2.0.1: dependencies: - minipass: 7.0.4 + minipass: 7.1.2 minipass-flush@1.0.5: dependencies: @@ -56804,10 +57417,6 @@ snapshots: safe-buffer: 5.2.1 yallist: 3.1.1 - minipass@3.1.6: - dependencies: - yallist: 4.0.0 - minipass@3.3.6: dependencies: yallist: 4.0.0 @@ -56818,6 +57427,8 @@ snapshots: minipass@7.0.4: {} + minipass@7.1.2: {} + minizlib@1.3.3: dependencies: minipass: 2.9.0 @@ -57661,6 +58272,8 @@ snapshots: lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 + package-json-from-dist@1.0.1: {} + pako@0.2.9: {} pako@1.0.11: {} @@ -57709,7 +58322,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -57789,6 +58402,11 @@ snapshots: lru-cache: 10.2.0 minipass: 7.0.4 + path-scurry@1.11.1: + dependencies: + lru-cache: 10.2.0 + minipass: 7.1.2 + path-to-regexp@0.1.7: {} path-to-regexp@1.8.0: @@ -58592,8 +59210,6 @@ snapshots: progress@2.0.3: {} - promise-inflight@1.0.1: {} - promise-polyfill@6.1.0: {} promise-retry@2.0.1: @@ -58943,7 +59559,7 @@ snapshots: react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.94.0): dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 address: 1.2.2 browserslist: 4.24.2 chalk: 4.1.2 @@ -58995,7 +59611,7 @@ snapshots: dependencies: '@babel/core': 7.24.3 '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + '@babel/types': 7.26.0 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.5 '@types/doctrine': 0.0.9 @@ -59040,14 +59656,14 @@ snapshots: dependencies: react: 18.3.1 - react-i18next@11.18.6(i18next@20.6.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-i18next@11.18.6(i18next@20.6.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@babel/runtime': 7.24.1 html-parse-stringify: 3.0.1 i18next: 20.6.1 react: 18.3.1 optionalDependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-i18next@13.5.0(i18next@23.10.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: @@ -59116,34 +59732,34 @@ snapshots: raf: 3.4.1 react: 18.3.1 - react-native-android-location-services-dialog-box@2.8.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-android-location-services-dialog-box@2.8.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-animatable@1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + react-native-animatable@1.3.3(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: prop-types: 15.8.1 optionalDependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - react-native-animatable@1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-animatable@1.3.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: prop-types: 15.8.1 optionalDependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-animatable@1.4.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-animatable@1.4.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: prop-types: 15.8.1 optionalDependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-biometrics@3.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-biometrics@3.0.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-ble-plx@3.1.2: dependencies: @@ -59151,11 +59767,11 @@ snapshots: transitivePeerDependencies: - supports-color - react-native-ble-plx@3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-ble-plx@3.1.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@expo/config-plugins': 7.8.4 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) transitivePeerDependencies: - supports-color @@ -59168,9 +59784,9 @@ snapshots: open: 8.4.2 source-map-explorer: 2.5.3 - react-native-config@1.5.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-config@1.5.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): optionalDependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-crypto@2.2.0(react-native-randombytes@3.6.1): dependencies: @@ -59193,151 +59809,150 @@ snapshots: minimist: 1.2.8 semver: 5.7.2 - react-native-device-info@11.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-device-info@11.1.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-easy-markdown@2.0.0(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-easy-markdown@2.0.0(prop-types@15.8.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) simple-markdown: 0.4.4 optionalDependencies: prop-types: 15.8.1 react-native-extra-dimensions-android@1.2.5: {} - react-native-fast-crypto@2.2.0(patch_hash=jdmv3zyvsaug2f6l23zgrmwdli)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-fast-crypto@2.2.0(patch_hash=bmot5xcuajv3pdpobflt4ufvae)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: buffer: 5.7.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) rfc4648: 1.5.3 - react-native-fast-image@8.6.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-fast-image@8.6.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-fast-pbkdf2@0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-fast-pbkdf2@0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-gesture-handler@2.18.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 - lodash: 4.17.21 prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-get-random-values@1.11.0: dependencies: fast-base64-decode: 1.0.0 - react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-get-random-values@1.11.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: fast-base64-decode: 1.0.0 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-haptic-feedback@2.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-haptic-feedback@2.2.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-image-crop-tools@1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-image-crop-tools@1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-image-picker@5.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-image-picker@5.7.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-inappbrowser-reborn@3.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-inappbrowser-reborn@3.7.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: invariant: 2.2.4 opencollective-postinstall: 2.0.3 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-iphone-x-helper@1.3.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-iphone-x-helper@1.3.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-keyboard-aware-scroll-view@0.9.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-keyboard-aware-scroll-view@0.9.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: prop-types: 15.8.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-iphone-x-helper: 1.3.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-iphone-x-helper: 1.3.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)) react-native-keychain@7.0.0: {} - react-native-launch-arguments@4.0.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-launch-arguments@4.0.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-level-fs@3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)))): + react-native-level-fs@3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)))): dependencies: - asyncstorage-down: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))) + asyncstorage-down: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))) level-filesystem: 1.2.0 levelup: 0.18.6 - react-native-localize@2.2.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-localize@2.2.6(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-modal-datetime-picker@14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)): + react-native-modal-datetime-picker@14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3)): dependencies: '@react-native-community/datetimepicker': 6.7.5 prop-types: 15.8.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) react-native-modal-selector@2.1.2: dependencies: prop-types: 15.8.1 - react-native-modal@13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + react-native-modal@13.0.1(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) - react-native-animatable: 1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) + react-native-animatable: 1.3.3(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) - react-native-modal@13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-modal@13.0.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-animatable: 1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-animatable: 1.3.3(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-navigation-bar-color@2.0.2: {} - react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-performance@3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-performance@3.1.2(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-qrcode-svg@6.1.1(react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-qrcode-svg@6.1.1(react-native-svg@13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: prop-types: 15.8.1 qrcode: 1.5.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-svg: 13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-svg: 13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) react-native-randombytes@3.6.1: dependencies: buffer: 4.9.2 sjcl: 1.0.8 - react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@babel/core': 7.24.3 '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) @@ -59352,9 +59967,9 @@ snapshots: convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-reanimated@3.16.1(@babel/core@7.24.3)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: '@babel/core': 7.24.3 '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) @@ -59369,40 +59984,40 @@ snapshots: convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-restart@0.0.24(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-restart@0.0.24(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-safe-area-context@4.10.5(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + react-native-safe-area-context@4.10.9(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-screens@3.33.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 react-freeze: 1.0.4(react@18.3.1) - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) warn-once: 0.1.1 react-native-share@10.1.0: {} - react-native-splash-screen@3.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-splash-screen@3.2.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) - react-native-startup-time@2.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-startup-time@2.1.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-svg@13.14.0(react-native@0.74.5(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): dependencies: @@ -59411,19 +60026,19 @@ snapshots: react: 18.3.1 react-native: 0.74.5(@types/react@18.2.73)(react@18.3.1) - react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + react-native-svg@13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) - react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-svg@13.14.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-svg@13.14.0(react@18.3.1): dependencies: @@ -59433,27 +60048,27 @@ snapshots: react-native-swipe-gestures@1.0.5: {} - react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-tab-view@3.5.2(react-native-pager-view@6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1))(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) - react-native-pager-view: 6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) + react-native-pager-view: 6.5.1(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) use-latest-callback: 0.1.9(react@18.3.1) - react-native-tcp-socket@6.0.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-tcp-socket@6.0.6(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: buffer: 5.7.1 eventemitter3: 4.0.7 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native-udp@4.1.7: dependencies: buffer: 5.7.1 events: 3.3.0 - react-native-url-polyfill@1.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)): + react-native-url-polyfill@1.3.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3)): dependencies: - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) whatwg-url-without-unicode: 8.0.0-3 react-native-vector-icons@10.2.0: @@ -59485,12 +60100,12 @@ snapshots: transitivePeerDependencies: - encoding - react-native-webview@13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + react-native-webview@13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) react-native@0.74.5(@types/react@18.2.73)(react@18.3.1): dependencies: @@ -59543,24 +60158,25 @@ snapshots: - supports-color - utf-8-validate - react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1): + react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 13.6.9(metro-resolver@0.80.12) - '@react-native-community/cli-platform-android': 13.6.9 - '@react-native-community/cli-platform-ios': 13.6.9 - '@react-native/assets-registry': 0.74.88 - '@react-native/codegen': 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - '@react-native/community-cli-plugin': 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12) - '@react-native/gradle-plugin': 0.74.88 - '@react-native/js-polyfills': 0.74.88 - '@react-native/normalize-colors': 0.74.88 - '@react-native/virtualized-lists': 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1) + '@react-native-community/cli': 14.1.0(metro-resolver@0.80.12)(typescript@5.4.3) + '@react-native-community/cli-platform-android': 14.1.0 + '@react-native-community/cli-platform-ios': 14.1.0 + '@react-native/assets-registry': 0.75.4 + '@react-native/codegen': 0.75.4(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native/community-cli-plugin': 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12) + '@react-native/gradle-plugin': 0.75.4 + '@react-native/js-polyfills': 0.75.4 + '@react-native/normalize-colors': 0.75.4 + '@react-native/virtualized-lists': 0.75.4(@types/react@18.2.73)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 base64-js: 1.5.1 chalk: 4.1.2 + commander: 9.5.0 event-target-shim: 5.0.1 flow-enums-runtime: 0.0.6 glob: 7.2.3 @@ -59577,9 +60193,9 @@ snapshots: react: 18.3.1 react-devtools-core: 5.3.1 react-refresh: 0.14.0 - react-shallow-renderer: 16.15.0(react@18.3.1) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: 7.5.4 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 ws: 6.2.3 @@ -59594,26 +60210,28 @@ snapshots: - metro-resolver - metro-transform-worker - supports-color + - typescript - utf-8-validate - react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1): + react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 13.6.9 - '@react-native-community/cli-platform-android': 13.6.9 - '@react-native-community/cli-platform-ios': 13.6.9 - '@react-native/assets-registry': 0.74.88 - '@react-native/codegen': 0.74.88 - '@react-native/community-cli-plugin': 0.74.88(@babel/core@7.24.3) - '@react-native/gradle-plugin': 0.74.88 - '@react-native/js-polyfills': 0.74.88 - '@react-native/normalize-colors': 0.74.88 - '@react-native/virtualized-lists': 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1) + '@react-native-community/cli': 14.1.0(typescript@5.4.3) + '@react-native-community/cli-platform-android': 14.1.0 + '@react-native-community/cli-platform-ios': 14.1.0 + '@react-native/assets-registry': 0.75.4 + '@react-native/codegen': 0.75.4 + '@react-native/community-cli-plugin': 0.75.4(@babel/core@7.24.3) + '@react-native/gradle-plugin': 0.75.4 + '@react-native/js-polyfills': 0.75.4 + '@react-native/normalize-colors': 0.75.4 + '@react-native/virtualized-lists': 0.75.4(@types/react@18.2.73)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 base64-js: 1.5.1 chalk: 4.1.2 + commander: 9.5.0 event-target-shim: 5.0.1 flow-enums-runtime: 0.0.6 glob: 7.2.3 @@ -59630,9 +60248,9 @@ snapshots: react: 18.3.1 react-devtools-core: 5.3.1 react-refresh: 0.14.0 - react-shallow-renderer: 16.15.0(react@18.3.1) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: 7.5.4 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 ws: 6.2.3 @@ -59647,6 +60265,7 @@ snapshots: - metro-resolver - metro-transform-worker - supports-color + - typescript - utf-8-validate react-prismazoom@3.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): @@ -60065,12 +60684,12 @@ snapshots: dependencies: minimatch: 3.1.2 - recyclerlistview@4.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + recyclerlistview@4.2.0(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: lodash.debounce: 4.0.8 prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) ts-object-utils: 0.0.5 redent@3.0.0: @@ -60130,6 +60749,10 @@ snapshots: dependencies: regenerate: 1.4.2 + regenerate-unicode-properties@10.2.0: + dependencies: + regenerate: 1.4.2 + regenerate@1.4.2: {} regenerator-runtime@0.11.1: {} @@ -60160,6 +60783,15 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 + regexpu-core@6.2.0: + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + registry-auth-token@3.3.2: dependencies: rc: 1.2.8 @@ -60169,6 +60801,12 @@ snapshots: dependencies: rc: 1.2.8 + regjsgen@0.8.0: {} + + regjsparser@0.12.0: + dependencies: + jsesc: 3.0.2 + regjsparser@0.9.1: dependencies: jsesc: 0.5.0 @@ -60369,6 +61007,8 @@ snapshots: postcss: 7.0.39 source-map: 0.6.1 + resolve-workspace-root@2.0.0: {} + resolve.exports@1.1.1: {} resolve.exports@2.0.2: {} @@ -60493,11 +61133,11 @@ snapshots: glob: 7.0.6 lodash: 4.17.21 - rn-range-slider@2.1.1(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1))(react@18.3.1): + rn-range-slider@2.1.1(prop-types@15.8.1)(react-native@0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): optionalDependencies: prop-types: 15.8.1 react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.3.1)(typescript@5.4.3) roarr@2.15.4: dependencies: @@ -60530,7 +61170,7 @@ snapshots: rollup-plugin-terser@7.0.2(rollup@2.79.2): dependencies: - '@babel/code-frame': 7.24.6 + '@babel/code-frame': 7.26.2 jest-worker: 26.6.2 rollup: 2.79.2 serialize-javascript: 4.0.0 @@ -60773,10 +61413,6 @@ snapshots: serialize-error@2.1.0: {} - serialize-error@6.0.0: - dependencies: - type-fest: 0.12.0 - serialize-error@7.0.1: dependencies: type-fest: 0.13.1 @@ -60950,7 +61586,7 @@ snapshots: dependencies: '@kwsites/file-exists': 1.1.1 '@kwsites/promise-deferred': 1.1.1 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -61216,7 +61852,7 @@ snapshots: ssri@10.0.6: dependencies: - minipass: 7.0.4 + minipass: 7.1.2 ssri@8.0.1: dependencies: @@ -61297,10 +61933,10 @@ snapshots: - supports-color - utf-8-validate - storyly-react-native@3.6.2(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1))(react@18.3.1): + storyly-react-native@3.6.2(prop-types@15.8.1)(react-native@0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3))(react@18.3.1): dependencies: react: 18.3.1 - react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1) + react-native: 0.75.4(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.3.1)(typescript@5.4.3) optionalDependencies: prop-types: 15.8.1 @@ -61768,7 +62404,7 @@ snapshots: dependencies: '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 10.3.12 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -62171,7 +62807,7 @@ snapshots: schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.36.0 - webpack: 5.94.0(webpack-cli@4.10.0) + webpack: 5.94.0 transitivePeerDependencies: - metro @@ -62379,7 +63015,11 @@ snapshots: traverse@0.3.9: {} - traverse@0.6.8: {} + traverse@0.6.10: + dependencies: + gopd: 1.0.1 + typedarray.prototype.slice: 1.0.3 + which-typed-array: 1.1.15 tree-kill@1.2.2: {} @@ -62976,8 +63616,6 @@ snapshots: type-fest@0.11.0: {} - type-fest@0.12.0: {} - type-fest@0.13.1: optional: true @@ -63056,6 +63694,15 @@ snapshots: typedarray-to-buffer@4.0.0: {} + typedarray.prototype.slice@1.0.3: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-errors: 1.3.0 + typed-array-buffer: 1.0.2 + typed-array-byte-offset: 1.0.2 + typedarray@0.0.6: {} typedjson@1.8.0: @@ -63195,18 +63842,10 @@ snapshots: dependencies: qs: 6.13.0 - unique-filename@1.1.1: - dependencies: - unique-slug: 2.0.2 - unique-filename@3.0.0: dependencies: unique-slug: 4.0.0 - unique-slug@2.0.2: - dependencies: - imurmurhash: 0.1.4 - unique-slug@4.0.0: dependencies: imurmurhash: 0.1.4 @@ -64777,6 +65416,8 @@ snapshots: wonka@4.0.15: {} + wonka@6.3.4: {} + word-wrap@1.2.5: {} wordwrap@1.0.0: {}