diff --git a/packages/react-native-v2/package.json b/packages/react-native-v2/package.json index b57b72d65..8ca56d040 100644 --- a/packages/react-native-v2/package.json +++ b/packages/react-native-v2/package.json @@ -3,18 +3,18 @@ "description": "Evervault SDK for React Native", "version": "2.5.1", "source": "./src/index.ts", - "main": "./build/index.cjs.js", - "module": "./build/index.esm.js", + "main": "./build/index.js", + "module": "./build/index.js", "types": "./build/index.d.ts", "exports": { ".": { "import": { "types": "./build/index.d.ts", - "default": "./build/index.esm.js" + "default": "./build/index.js" }, "require": { "types": "./build/index.d.ts", - "default": "./build/index.cjs.js" + "default": "./build/index.js" } } }, @@ -41,8 +41,8 @@ }, "scripts": { "prebuild": "pnpm codegen", - "build": "rollup -c", - "watch": "rollup -c --watch", + "build": "tsc", + "watch": "tsc --watch", "codegen": "rimraf build android/app && react-native codegen", "test": "vitest run", "test:watch": "vitest --watch" @@ -54,8 +54,6 @@ }, "devDependencies": { "@react-native-community/cli": "*", - "@rollup/plugin-node-resolve": "^16.0.0", - "@rollup/plugin-typescript": "^12.1.2", "@testing-library/react-native": "^13.2.0", "@types/react": "catalog:", "react": "catalog:", @@ -63,8 +61,8 @@ "react-native-webview": "catalog:", "react-test-renderer": "18.2.0", "rimraf": "^6.0.1", - "rollup": "^4.34.9", "tsconfig": "workspace:*", + "typescript": "catalog:", "vitest": "catalog:", "vitest-react-native": "^0.1.5" }, diff --git a/packages/react-native-v2/rollup.config.cjs b/packages/react-native-v2/rollup.config.cjs deleted file mode 100644 index 0503c4071..000000000 --- a/packages/react-native-v2/rollup.config.cjs +++ /dev/null @@ -1,23 +0,0 @@ -const { defineConfig } = require("rollup"); -const pkgJson = require("./package.json"); -const typescript = require("@rollup/plugin-typescript"); -const nodeResolve = require("@rollup/plugin-node-resolve"); - -const peerDependencies = Object.keys(pkgJson.peerDependencies); - -module.exports = defineConfig({ - external: [...peerDependencies, "react/jsx-runtime"], - input: "src/index.ts", - output: [ - { - file: "build/index.cjs.js", - format: "cjs", - sourcemap: true, - }, - { - file: "build/index.esm.js", - format: "esm", - }, - ], - plugins: [typescript(), nodeResolve()], -}); diff --git a/packages/react-native-v2/tsconfig.json b/packages/react-native-v2/tsconfig.json index 1c565dbf8..fd3c8e4ee 100644 --- a/packages/react-native-v2/tsconfig.json +++ b/packages/react-native-v2/tsconfig.json @@ -1,17 +1,24 @@ { "extends": "tsconfig/base.json", "compilerOptions": { - "target": "esnext", + "target": "es2020", "lib": ["dom", "DOM.Iterable", "esnext"], "jsx": "react-jsx", "moduleResolution": "node", + "module": "commonjs", "rootDir": "src", "declaration": true, "declarationDir": "build", - "emitDeclarationOnly": true, "declarationMap": true, "outDir": "build", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "noEmit": false, "types": ["vitest/globals"] }, - "exclude": ["build"] + "include": ["src/**/*"], + "exclude": ["build", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx", "vitest.config.ts", "setup.test.ts"] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 001c563cd..8f258f2b4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -106,8 +106,8 @@ catalogs: specifier: ^3.3.0 version: 3.3.0 expo: - specifier: ~52.0.38 - version: 52.0.38 + specifier: ~52.0.47 + version: 52.0.47 expo-dev-client: specifier: ~5.0.20 version: 5.0.20 @@ -187,8 +187,8 @@ catalogs: specifier: ^18.2.0 version: 18.2.0 react-native: - specifier: 0.76.7 - version: 0.76.7 + specifier: 0.76.9 + version: 0.76.9 react-native-builder-bob: specifier: ^0.23.2 version: 0.23.2 @@ -474,22 +474,22 @@ importers: version: link:../../packages/react-native-v2 '@react-navigation/bottom-tabs': specifier: ^7.2.1 - version: 7.2.1(@react-navigation/native@7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-screens@4.4.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 7.2.1(@react-navigation/native@7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-screens@4.4.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) '@react-navigation/native': specifier: ^7.0.15 - version: 7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) expo: specifier: 'catalog:' - version: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) expo-build-properties: specifier: ~0.13.2 - version: 0.13.2(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + version: 0.13.2(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) expo-dev-client: specifier: 'catalog:' - version: 5.0.20(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + version: 5.0.20(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) expo-splash-screen: specifier: 'catalog:' - version: 0.29.22(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + version: 0.29.22(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) react: specifier: 'catalog:' version: 18.2.0 @@ -498,25 +498,25 @@ importers: version: 18.2.0(react@18.2.0) react-native: specifier: 'catalog:' - version: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + version: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) react-native-gesture-handler: specifier: 'catalog:' - version: 2.20.2(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 2.20.2(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react-native-reanimated: specifier: 'catalog:' - version: 3.16.7(@babel/core@7.26.0)(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 3.16.7(@babel/core@7.26.0)(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react-native-safe-area-context: specifier: ^4.12.0 - version: 4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react-native-screens: specifier: ~4.4.0 - version: 4.4.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 4.4.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react-native-web: specifier: 'catalog:' version: 0.19.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-native-webview: specifier: 'catalog:' - version: 13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) devDependencies: '@babel/core': specifier: 'catalog:' @@ -638,7 +638,7 @@ importers: version: link:../../packages/react-native expo: specifier: 'catalog:' - version: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) expo-status-bar: specifier: 'catalog:' version: 1.12.1 @@ -647,13 +647,13 @@ importers: version: 18.2.0 react-native: specifier: 'catalog:' - version: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + version: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) react-native-svg: specifier: 'catalog:' - version: 15.6.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 15.6.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react-native-webview: specifier: 'catalog:' - version: 13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) devDependencies: '@babel/core': specifier: 'catalog:' @@ -943,7 +943,7 @@ importers: version: 1.13.0 react-native-webview: specifier: 'catalog:' - version: 13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) devDependencies: '@types/jest': specifier: 'catalog:' @@ -965,13 +965,13 @@ importers: version: 18.2.0 react-native: specifier: 'catalog:' - version: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + version: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) react-native-builder-bob: specifier: 'catalog:' version: 0.23.2 react-native-mask-input: specifier: 'catalog:' - version: 1.2.3(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 1.2.3(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) tsconfig: specifier: workspace:* version: link:../tsconfig @@ -992,23 +992,17 @@ importers: version: 7.54.2(react@18.2.0) react-native-mask-input: specifier: ^1.2.3 - version: 1.2.3(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 1.2.3(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) zod: specifier: ^3.24.2 version: 3.24.2 devDependencies: '@react-native-community/cli': specifier: '*' - version: 17.0.0(typescript@5.7.3) - '@rollup/plugin-node-resolve': - specifier: ^16.0.0 - version: 16.0.0(rollup@4.34.9) - '@rollup/plugin-typescript': - specifier: ^12.1.2 - version: 12.1.2(rollup@4.34.9)(tslib@2.8.1)(typescript@5.7.3) + version: 17.0.0(typescript@5.5.4) '@testing-library/react-native': specifier: ^13.2.0 - version: 13.2.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) + version: 13.2.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) '@types/react': specifier: 'catalog:' version: 18.3.18 @@ -1017,28 +1011,28 @@ importers: version: 18.2.0 react-native: specifier: 'catalog:' - version: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + version: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) react-native-webview: specifier: 'catalog:' - version: 13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + version: 13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react-test-renderer: specifier: 18.2.0 version: 18.2.0(react@18.2.0) rimraf: specifier: ^6.0.1 version: 6.0.1 - rollup: - specifier: ^4.34.9 - version: 4.34.9 tsconfig: specifier: workspace:* version: link:../tsconfig + typescript: + specifier: 'catalog:' + version: 5.5.4 vitest: specifier: 'catalog:' - version: 2.1.8(@types/node@22.10.7)(jsdom@25.0.1)(lightningcss@1.27.0)(msw@2.7.3(@types/node@22.10.7)(typescript@5.7.3))(terser@5.39.0) + version: 2.1.8(@types/node@22.10.7)(jsdom@25.0.1)(lightningcss@1.27.0)(msw@2.7.3(@types/node@22.10.7)(typescript@5.5.4))(terser@5.39.0) vitest-react-native: specifier: ^0.1.5 - version: 0.1.5(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)(vite@5.4.11(@types/node@22.10.7)(lightningcss@1.27.0)(terser@5.39.0)) + version: 0.1.5(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)(vite@5.4.11(@types/node@22.10.7)(lightningcss@1.27.0)(terser@5.39.0)) packages/shared: dependencies: @@ -2847,8 +2841,8 @@ packages: resolution: {integrity: sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==} engines: {node: '>=0.10.0'} - '@expo/cli@0.22.19': - resolution: {integrity: sha512-vgAM3gUsAUQWgDm10RIYSrWQ5q235Ir/lMUdx5Yd/gObYaDlaBIdsq5H72eJ44QB+4ndvhm2wbqntTI19kBIRw==} + '@expo/cli@0.22.26': + resolution: {integrity: sha512-I689wc8Fn/AX7aUGiwrh3HnssiORMJtR2fpksX+JIe8Cj/EDleblYMSwRPd0025wrwOV9UN1KM/RuEt/QjCS3Q==} hasBin: true '@expo/code-signing-certificates@0.0.5': @@ -2900,6 +2894,9 @@ packages: '@expo/prebuild-config@8.0.29': resolution: {integrity: sha512-CoZBxUQLZpGwbnPREr2sFnObOn4j+Mp7AHxX6Rz5jhSSz2VifC1jMM4NFiXrZe6LZyjYNqBGRe3D8bAqdpVGkg==} + '@expo/prebuild-config@8.2.0': + resolution: {integrity: sha512-CxiPpd980s0jyxi7eyN3i/7YKu3XL+8qPjBZUCYtc0+axpGweqIkq2CslyLSKHyqVyH/zlPkbVgWdyiYavFS5Q==} + '@expo/rudder-sdk-node@1.1.1': resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==} engines: {node: '>=12'} @@ -3385,53 +3382,53 @@ packages: engines: {node: '>=18'} hasBin: true - '@react-native/assets-registry@0.76.7': - resolution: {integrity: sha512-o79whsqL5fbPTUQO9w1FptRd4cw1TaeOrXtQSLQeDrMVAenw/wmsjyPK10VKtvqxa1KNMtWEyfgxcM8CVZVFmg==} + '@react-native/assets-registry@0.76.9': + resolution: {integrity: sha512-pN0Ws5xsjWOZ8P37efh0jqHHQmq+oNGKT4AyAoKRpxBDDDmlAmpaYjer9Qz7PpDKF+IUyRjF/+rBsM50a8JcUg==} engines: {node: '>=18'} - '@react-native/babel-plugin-codegen@0.76.7': - resolution: {integrity: sha512-+8H4DXJREM4l/pwLF/wSVMRzVhzhGDix5jLezNrMD9J1U1AMfV2aSkWA1XuqR7pjPs/Vqf6TaPL7vJMZ4LU05Q==} + '@react-native/babel-plugin-codegen@0.76.9': + resolution: {integrity: sha512-vxL/vtDEIYHfWKm5oTaEmwcnNGsua/i9OjIxBDBFiJDu5i5RU3bpmDiXQm/bJxrJNPRp5lW0I0kpGihVhnMAIQ==} engines: {node: '>=18'} - '@react-native/babel-preset@0.76.7': - resolution: {integrity: sha512-/c5DYZ6y8tyg+g8tgXKndDT7mWnGmkZ9F+T3qNDfoE3Qh7ucrNeC2XWvU9h5pk8eRtj9l4SzF4aO1phzwoibyg==} + '@react-native/babel-preset@0.76.9': + resolution: {integrity: sha512-TbSeCplCM6WhL3hR2MjC/E1a9cRnMLz7i767T7mP90oWkklEjyPxWl+0GGoVGnJ8FC/jLUupg/HvREKjjif6lw==} engines: {node: '>=18'} peerDependencies: '@babel/core': '*' - '@react-native/codegen@0.76.7': - resolution: {integrity: sha512-FAn585Ll65YvkSrKDyAcsdjHhhAGiMlSTUpHh0x7J5ntudUns+voYms0xMP+pEPt0XuLdjhD7zLIIlAWP407+g==} + '@react-native/codegen@0.76.9': + resolution: {integrity: sha512-AzlCHMTKrAVC2709V4ZGtBXmGVtWTpWm3Ruv5vXcd3/anH4mGucfJ4rjbWKdaYQJMpXa3ytGomQrsIsT/s8kgA==} engines: {node: '>=18'} peerDependencies: '@babel/preset-env': ^7.1.6 - '@react-native/community-cli-plugin@0.76.7': - resolution: {integrity: sha512-lrcsY2WPLCEWU1pjdNV9+Ccj8vCEwCCURZiPa5aqi7lKB4C++1hPrxA8/CWWnTNcQp76DsBKGYqTFj7Ud4aupw==} + '@react-native/community-cli-plugin@0.76.9': + resolution: {integrity: sha512-08jx8ixCjjd4jNQwNpP8yqrjrDctN2qvPPlf6ebz1OJQk8e1sbUl3wVn1zhhMvWrYcaraDnatPb5uCPq+dn3NQ==} engines: {node: '>=18'} peerDependencies: - '@react-native-community/cli-server-api': '*' + '@react-native-community/cli': '*' peerDependenciesMeta: - '@react-native-community/cli-server-api': + '@react-native-community/cli': optional: true - '@react-native/debugger-frontend@0.76.7': - resolution: {integrity: sha512-89ZtZXt7ZxE94i7T94qzZMhp4Gfcpr/QVpGqEaejAxZD+gvDCH21cYSF+/Rz2ttBazm0rk5MZ0mFqb0Iqp1jmw==} + '@react-native/debugger-frontend@0.76.9': + resolution: {integrity: sha512-0Ru72Bm066xmxFuOXhhvrryxvb57uI79yDSFf+hxRpktkC98NMuRenlJhslMrbJ6WjCu1vOe/9UjWNYyxXTRTA==} engines: {node: '>=18'} - '@react-native/dev-middleware@0.76.7': - resolution: {integrity: sha512-Jsw8g9DyLPnR9yHEGuT09yHZ7M88/GL9CtU9WmyChlBwdXSeE3AmRqLegsV3XcgULQ1fqdemokaOZ/MwLYkjdA==} + '@react-native/dev-middleware@0.76.9': + resolution: {integrity: sha512-xkd3C3dRcmZLjFTEAOvC14q3apMLouIvJViCZY/p1EfCMrNND31dgE1dYrLTiI045WAWMt5bD15i6f7dE2/QWA==} engines: {node: '>=18'} - '@react-native/gradle-plugin@0.76.7': - resolution: {integrity: sha512-gQI6RcrJbigU8xk7F960C5xQIgvbBj20TUvGecD+N2PHfbLpqR+92cj7hz3UcbrCONmTP40WHnbMMJ8P+kLsrA==} + '@react-native/gradle-plugin@0.76.9': + resolution: {integrity: sha512-uGzp3dL4GfNDz+jOb8Nik1Vrfq1LHm0zESizrGhHACFiFlUSflVAnWuUAjlZlz5XfLhzGVvunG4Vdrpw8CD2ng==} engines: {node: '>=18'} - '@react-native/js-polyfills@0.76.7': - resolution: {integrity: sha512-+iEikj6c6Zvrg1c3cYMeiPB+5nS8EaIC3jCtP6Muk3qc7c386IymEPM2xycIlfg04DPZvO3D4P2/vaO9/TCnUg==} + '@react-native/js-polyfills@0.76.9': + resolution: {integrity: sha512-s6z6m8cK4SMjIX1hm8LT187aQ6//ujLrjzDBogqDCYXRbfjbAYovw5as/v2a2rhUIyJbS3UjokZm3W0H+Oh/RQ==} engines: {node: '>=18'} - '@react-native/metro-babel-transformer@0.76.7': - resolution: {integrity: sha512-jDS1wR7q46xY5ah+jF714Mvss9l7+lmwW/tplahZgLKozkYDC8Td5o9TOCgKlv18acw9H1V7zv8ivuRSj8ICPg==} + '@react-native/metro-babel-transformer@0.76.9': + resolution: {integrity: sha512-HGq11347UHNiO/NvVbAO35hQCmH8YZRs7in7nVq7SL99pnpZK4WXwLdAXmSuwz5uYqOuwnKYDlpadz8fkE94Mg==} engines: {node: '>=18'} peerDependencies: '@babel/core': '*' @@ -3442,11 +3439,14 @@ packages: '@react-native/normalize-colors@0.76.7': resolution: {integrity: sha512-ST1xxBuYVIXPdD81dR6+tzIgso7m3pa9+6rOBXTh5Xm7KEEFik7tnQX+GydXYMp3wr1gagJjragdXkPnxK6WNg==} + '@react-native/normalize-colors@0.76.9': + resolution: {integrity: sha512-TUdMG2JGk72M9d8DYbubdOlrzTYjw+YMe/xOnLU4viDgWRHsCbtRS9x0IAxRjs3amj/7zmK3Atm8jUPvdAc8qw==} + '@react-native/polyfills@2.0.0': resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==} - '@react-native/virtualized-lists@0.76.7': - resolution: {integrity: sha512-pRUf1jUO8H9Ft04CaWv76t34QI9wY0sydoYlIwEtqXjjMJgmgDoOCAWBjArgn2mk8/rK+u/uicI67ZCYCp1pJw==} + '@react-native/virtualized-lists@0.76.9': + resolution: {integrity: sha512-2neUfZKuqMK2LzfS8NyOWOyWUJOWgDym5fUph6fN9qF+LNPjAvnc4Zr9+o+59qjNu/yXwQgVMWNU4+8WJuPVWw==} engines: {node: '>=18'} peerDependencies: '@types/react': ^18.2.6 @@ -3491,28 +3491,6 @@ packages: '@react-navigation/routers@7.2.0': resolution: {integrity: sha512-lMyib39H4a//u+eiyt162U6TwCfI8zJbjl9ovjKtDddQ4/Vf7b8/OhyimnJH09N2CBfm4pv0gCV6Q0WnZcfaJg==} - '@rollup/plugin-node-resolve@16.0.0': - resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/plugin-typescript@12.1.2': - resolution: {integrity: sha512-cdtSp154H5sv637uMr1a8OTWB0L1SWDSm1rDGiyfcGcvQ6cuTs4MDk2BVEBGysUWago4OJN4EQZqOTl/QY3Jgg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: '*' - typescript: '>=3.7.0' - peerDependenciesMeta: - rollup: - optional: true - tslib: - optional: true - '@rollup/pluginutils@5.1.3': resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} engines: {node: '>=14.0.0'} @@ -4075,9 +4053,6 @@ packages: '@types/react@18.3.18': resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==} - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - '@types/stack-utils@2.0.3': resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} @@ -4530,8 +4505,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - babel-preset-expo@12.0.9: - resolution: {integrity: sha512-1c+ysrTavT49WgVAj0OX/TEzt1kU2mfPhDaDajstshNHXFKPenMPWSViA/DHrJKVIMwaqr+z3GbUOD9GtKgpdg==} + babel-preset-expo@12.0.11: + resolution: {integrity: sha512-4m6D92nKEieg+7DXa8uSvpr0GjfuRfM/G0t0I/Q5hF8HleEv5ms3z4dJ+p52qXSJsm760tMqLdO93Ywuoi7cCQ==} peerDependencies: babel-plugin-react-compiler: ^19.0.0-beta-9ee70a1-20241017 react-compiler-runtime: ^19.0.0-beta-8a03594-20241020 @@ -5527,8 +5502,8 @@ packages: resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - expo-asset@11.0.4: - resolution: {integrity: sha512-CdIywU0HrR3wsW5c3n0cT3jW9hccZdnqGsRqY+EY/RWzJbDXtDfAQVEiFHO3mDK7oveUwrP2jK/6ZRNek41/sg==} + expo-asset@11.0.5: + resolution: {integrity: sha512-TL60LmMBGVzs3NQcO8ylWqBumMh4sx0lmeJsn7+9C88fylGDhyyVnKZ1PyTXo9CVDBkndutZx2JUEQWM9BaiXw==} peerDependencies: expo: '*' react: '*' @@ -5565,8 +5540,8 @@ packages: peerDependencies: expo: '*' - expo-file-system@18.0.11: - resolution: {integrity: sha512-yDwYfEzWgPXsBZHJW2RJ8Q66ceiFN9Wa5D20pp3fjXVkzPBDwxnYwiPWk4pVmCa5g4X5KYMoMne1pUrsL4OEpg==} + expo-file-system@18.0.12: + resolution: {integrity: sha512-HAkrd/mb8r+G3lJ9MzmGeuW2B+BxQR1joKfeCyY4deLl1zoZ48FrAWjgZjHK9aHUVhJ0ehzInu/NQtikKytaeg==} peerDependencies: expo: '*' react-native: '*' @@ -5611,8 +5586,8 @@ packages: peerDependencies: expo: '*' - expo@52.0.38: - resolution: {integrity: sha512-6DZJjN/oEeYOPGoNUWE41vUuwVSl/Cg9o3rTbP62Pchgspp61Elsf8G7FtdcAtdgOzkJmbnPrPqklpMXGwpgfA==} + expo@52.0.47: + resolution: {integrity: sha512-Mkvl7Qi2k+V3FdNRUD+yDj8GqU4IiYulLfl36BmSZs8lh/kCYPhTiyBLiEGPfz7d25QKbPWG727ESozbkbvatw==} hasBin: true peerDependencies: '@expo/dom-webview': '*' @@ -6279,9 +6254,6 @@ packages: resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} engines: {node: '>= 0.4'} - is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - is-negative-zero@2.0.3: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} @@ -8051,8 +8023,8 @@ packages: react: '*' react-native: '*' - react-native@0.76.7: - resolution: {integrity: sha512-GPJcQeO3qUi1MvuhsC2DC6tH8gJQ4uc4JWPORrdeuCGFWE3QLsN8/hiChTEvJREHLfQSV61YPI8gIOtAQ8c37g==} + react-native@0.76.9: + resolution: {integrity: sha512-+LRwecWmTDco7OweGsrECIqJu0iyrREd6CTCgC/uLLYipiHvk+MH9nd6drFtCw/6Blz6eoKTcH9YTTJusNtrWg==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -8430,6 +8402,7 @@ packages: source-map@0.8.0-beta.0: resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} engines: {node: '>= 8'} + deprecated: The work that was done in this beta branch won't be included in future versions spawn-command@0.0.2: resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} @@ -10014,7 +9987,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 '@babel/helper-compilation-targets@7.26.5': dependencies: @@ -10059,8 +10032,8 @@ snapshots: '@babel/helper-member-expression-to-functions@7.25.9': dependencies: - '@babel/traverse': 7.26.5 - '@babel/types': 7.26.5 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 transitivePeerDependencies: - supports-color @@ -10082,7 +10055,7 @@ snapshots: '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 '@babel/helper-plugin-utils@7.26.5': {} @@ -10091,7 +10064,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.26.5 + '@babel/traverse': 7.28.3 transitivePeerDependencies: - supports-color @@ -10107,7 +10080,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: '@babel/traverse': 7.26.5 - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 transitivePeerDependencies: - supports-color @@ -10124,7 +10097,7 @@ snapshots: '@babel/helper-wrap-function@7.25.9': dependencies: '@babel/template': 7.27.2 - '@babel/traverse': 7.26.5 + '@babel/traverse': 7.28.3 '@babel/types': 7.28.2 transitivePeerDependencies: - supports-color @@ -10136,7 +10109,7 @@ snapshots: '@babel/highlight@7.25.9': dependencies: - '@babel/helper-validator-identifier': 7.25.9 + '@babel/helper-validator-identifier': 7.27.1 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.1.1 @@ -10617,7 +10590,7 @@ snapshots: '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.26.5 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 transitivePeerDependencies: - supports-color @@ -10804,7 +10777,7 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.26.5 - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 esutils: 2.0.3 '@babel/preset-react@7.26.3(@babel/core@7.26.0)': @@ -11510,7 +11483,7 @@ snapshots: dependencies: uuid: 8.3.2 - '@expo/cli@0.22.19(graphql@16.8.1)': + '@expo/cli@0.22.26(graphql@16.8.1)': dependencies: '@0no-co/graphql.web': 1.0.13(graphql@16.8.1) '@babel/runtime': 7.26.0 @@ -11525,12 +11498,12 @@ snapshots: '@expo/osascript': 2.1.6 '@expo/package-manager': 1.7.2 '@expo/plist': 0.2.2 - '@expo/prebuild-config': 8.0.29 + '@expo/prebuild-config': 8.2.0 '@expo/rudder-sdk-node': 1.1.1 '@expo/spawn-async': 1.7.2 '@expo/ws-tunnel': 1.0.5 '@expo/xcpretty': 4.3.2 - '@react-native/dev-middleware': 0.76.7 + '@react-native/dev-middleware': 0.76.9 '@urql/core': 5.1.0(graphql@16.8.1) '@urql/exchange-retry': 1.3.0(@urql/core@5.1.0(graphql@16.8.1)) accepts: 1.3.8 @@ -11543,7 +11516,7 @@ snapshots: ci-info: 3.9.0 compression: 1.7.5 connect: 3.7.0 - debug: 4.4.0 + debug: 4.4.1 env-editor: 0.4.2 fast-glob: 3.3.3 form-data: 3.0.2 @@ -11583,7 +11556,7 @@ snapshots: undici: 6.21.1 unique-string: 2.0.0 wrap-ansi: 7.0.0 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - bufferutil - encoding @@ -11603,7 +11576,7 @@ snapshots: '@expo/plist': 0.2.2 '@expo/sdk-runtime-versions': 1.0.0 chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 getenv: 1.0.0 glob: 10.4.5 resolve-from: 5.0.0 @@ -11655,7 +11628,7 @@ snapshots: '@expo/env@0.4.2': dependencies: chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 dotenv: 16.4.7 dotenv-expand: 11.0.7 getenv: 1.0.0 @@ -11667,7 +11640,7 @@ snapshots: '@expo/spawn-async': 1.7.2 arg: 5.0.2 chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 find-up: 5.0.0 getenv: 1.0.0 minimatch: 3.1.2 @@ -11699,15 +11672,15 @@ snapshots: '@expo/metro-config@0.19.12': dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.5 - '@babel/parser': 7.26.5 - '@babel/types': 7.26.5 + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 '@expo/config': 10.0.11 '@expo/env': 0.4.2 '@expo/json-file': 9.0.2 '@expo/spawn-async': 1.7.2 chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 fs-extra: 9.1.0 getenv: 1.0.0 glob: 10.4.5 @@ -11719,9 +11692,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))': + '@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))': dependencies: - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) optional: true '@expo/osascript@2.1.6': @@ -11766,6 +11739,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@expo/prebuild-config@8.2.0': + dependencies: + '@expo/config': 10.0.11 + '@expo/config-plugins': 9.0.17 + '@expo/config-types': 52.0.5 + '@expo/image-utils': 0.6.5 + '@expo/json-file': 9.0.2 + '@react-native/normalize-colors': 0.76.9 + debug: 4.4.1 + fs-extra: 9.1.0 + resolve-from: 5.0.0 + semver: 7.6.3 + xml2js: 0.6.0 + transitivePeerDependencies: + - supports-color + '@expo/rudder-sdk-node@1.1.1': dependencies: '@expo/bunyan': 4.0.1 @@ -12093,7 +12082,7 @@ snapshots: '@jest/source-map@28.1.2': dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.30 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -12135,7 +12124,7 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.30 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -12438,6 +12427,17 @@ snapshots: execa: 5.1.1 fast-glob: 3.3.3 + '@react-native-community/cli-config@17.0.0(typescript@5.5.4)': + dependencies: + '@react-native-community/cli-tools': 17.0.0 + chalk: 4.1.2 + cosmiconfig: 9.0.0(typescript@5.5.4) + deepmerge: 4.3.1 + fast-glob: 3.3.3 + joi: 17.13.3 + transitivePeerDependencies: + - typescript + '@react-native-community/cli-config@17.0.0(typescript@5.7.3)': dependencies: '@react-native-community/cli-tools': 17.0.0 @@ -12448,6 +12448,27 @@ snapshots: joi: 17.13.3 transitivePeerDependencies: - typescript + optional: true + + '@react-native-community/cli-doctor@17.0.0(typescript@5.5.4)': + dependencies: + '@react-native-community/cli-config': 17.0.0(typescript@5.5.4) + '@react-native-community/cli-platform-android': 17.0.0 + '@react-native-community/cli-platform-apple': 17.0.0 + '@react-native-community/cli-platform-ios': 17.0.0 + '@react-native-community/cli-tools': 17.0.0 + chalk: 4.1.2 + command-exists: 1.2.9 + deepmerge: 4.3.1 + envinfo: 7.14.0 + execa: 5.1.1 + node-stream-zip: 1.15.0 + ora: 5.4.1 + semver: 7.6.3 + wcwidth: 1.0.1 + yaml: 2.3.4 + transitivePeerDependencies: + - typescript '@react-native-community/cli-doctor@17.0.0(typescript@5.7.3)': dependencies: @@ -12468,6 +12489,7 @@ snapshots: yaml: 2.3.4 transitivePeerDependencies: - typescript + optional: true '@react-native-community/cli-platform-android@17.0.0': dependencies: @@ -12523,6 +12545,29 @@ snapshots: dependencies: joi: 17.13.3 + '@react-native-community/cli@17.0.0(typescript@5.5.4)': + dependencies: + '@react-native-community/cli-clean': 17.0.0 + '@react-native-community/cli-config': 17.0.0(typescript@5.5.4) + '@react-native-community/cli-doctor': 17.0.0(typescript@5.5.4) + '@react-native-community/cli-server-api': 17.0.0 + '@react-native-community/cli-tools': 17.0.0 + '@react-native-community/cli-types': 17.0.0 + chalk: 4.1.2 + commander: 9.5.0 + deepmerge: 4.3.1 + execa: 5.1.1 + find-up: 5.0.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.11 + prompts: 2.4.2 + semver: 7.6.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - typescript + - utf-8-validate + '@react-native-community/cli@17.0.0(typescript@5.7.3)': dependencies: '@react-native-community/cli-clean': 17.0.0 @@ -12545,17 +12590,18 @@ snapshots: - supports-color - typescript - utf-8-validate + optional: true - '@react-native/assets-registry@0.76.7': {} + '@react-native/assets-registry@0.76.9': {} - '@react-native/babel-plugin-codegen@0.76.7(@babel/preset-env@7.26.0(@babel/core@7.26.0))': + '@react-native/babel-plugin-codegen@0.76.9(@babel/preset-env@7.26.0(@babel/core@7.26.0))': dependencies: - '@react-native/codegen': 0.76.7(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@react-native/codegen': 0.76.9(@babel/preset-env@7.26.0(@babel/core@7.26.0)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))': + '@react-native/babel-preset@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0) @@ -12597,8 +12643,8 @@ snapshots: '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0) '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) - '@babel/template': 7.25.9 - '@react-native/babel-plugin-codegen': 0.76.7(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@babel/template': 7.27.2 + '@react-native/babel-plugin-codegen': 0.76.9(@babel/preset-env@7.26.0(@babel/core@7.26.0)) babel-plugin-syntax-hermes-parser: 0.25.1 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.26.0) react-refresh: 0.14.2 @@ -12606,9 +12652,9 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/codegen@0.76.7(@babel/preset-env@7.26.0(@babel/core@7.26.0))': + '@react-native/codegen@0.76.9(@babel/preset-env@7.26.0(@babel/core@7.26.0))': dependencies: - '@babel/parser': 7.26.5 + '@babel/parser': 7.28.3 '@babel/preset-env': 7.26.0(@babel/core@7.26.0) glob: 7.2.3 hermes-parser: 0.23.1 @@ -12620,10 +12666,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/community-cli-plugin@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)': + '@react-native/community-cli-plugin@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))': dependencies: - '@react-native/dev-middleware': 0.76.7 - '@react-native/metro-babel-transformer': 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@react-native/dev-middleware': 0.76.9 + '@react-native/metro-babel-transformer': 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) chalk: 4.1.2 execa: 5.1.1 invariant: 2.2.4 @@ -12634,7 +12680,30 @@ snapshots: readline: 1.3.0 semver: 7.6.3 optionalDependencies: - '@react-native-community/cli-server-api': 17.0.0 + '@react-native-community/cli': 17.0.0(typescript@5.5.4) + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/community-cli-plugin@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))': + dependencies: + '@react-native/dev-middleware': 0.76.9 + '@react-native/metro-babel-transformer': 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + chalk: 4.1.2 + execa: 5.1.1 + invariant: 2.2.4 + metro: 0.81.3 + metro-config: 0.81.3 + metro-core: 0.81.3 + node-fetch: 2.7.0 + readline: 1.3.0 + semver: 7.6.3 + optionalDependencies: + '@react-native-community/cli': 17.0.0(typescript@5.7.3) transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -12643,12 +12712,12 @@ snapshots: - supports-color - utf-8-validate - '@react-native/debugger-frontend@0.76.7': {} + '@react-native/debugger-frontend@0.76.9': {} - '@react-native/dev-middleware@0.76.7': + '@react-native/dev-middleware@0.76.9': dependencies: '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.76.7 + '@react-native/debugger-frontend': 0.76.9 chrome-launcher: 0.15.2 chromium-edge-launcher: 0.2.0 connect: 3.7.0 @@ -12658,20 +12727,20 @@ snapshots: open: 7.4.2 selfsigned: 2.4.1 serve-static: 1.16.2 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@react-native/gradle-plugin@0.76.7': {} + '@react-native/gradle-plugin@0.76.9': {} - '@react-native/js-polyfills@0.76.7': {} + '@react-native/js-polyfills@0.76.9': {} - '@react-native/metro-babel-transformer@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))': + '@react-native/metro-babel-transformer@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))': dependencies: '@babel/core': 7.26.0 - '@react-native/babel-preset': 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@react-native/babel-preset': 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) hermes-parser: 0.23.1 nullthrows: 1.1.1 transitivePeerDependencies: @@ -12682,26 +12751,37 @@ snapshots: '@react-native/normalize-colors@0.76.7': {} + '@react-native/normalize-colors@0.76.9': {} + '@react-native/polyfills@2.0.0': {} - '@react-native/virtualized-lists@0.76.7(@types/react@18.3.18)(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': + '@react-native/virtualized-lists@0.76.9(@types/react@18.3.18)(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': + dependencies: + invariant: 2.2.4 + nullthrows: 1.1.1 + react: 18.2.0 + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) + optionalDependencies: + '@types/react': 18.3.18 + + '@react-native/virtualized-lists@0.76.9(@types/react@18.3.18)(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) optionalDependencies: '@types/react': 18.3.18 - '@react-navigation/bottom-tabs@7.2.1(@react-navigation/native@7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-screens@4.4.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': + '@react-navigation/bottom-tabs@7.2.1(@react-navigation/native@7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-screens@4.4.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': dependencies: - '@react-navigation/elements': 2.2.6(@react-navigation/native@7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - '@react-navigation/native': 7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + '@react-navigation/elements': 2.2.6(@react-navigation/native@7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) - react-native-safe-area-context: 4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - react-native-screens: 4.4.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) + react-native-safe-area-context: 4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + react-native-screens: 4.4.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@react-native-masked-view/masked-view' @@ -12716,47 +12796,28 @@ snapshots: use-latest-callback: 0.2.3(react@18.2.0) use-sync-external-store: 1.4.0(react@18.2.0) - '@react-navigation/elements@2.2.6(@react-navigation/native@7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': + '@react-navigation/elements@2.2.6(@react-navigation/native@7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': dependencies: - '@react-navigation/native': 7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) - react-native-safe-area-context: 4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) + react-native-safe-area-context: 4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - '@react-navigation/native@7.0.15(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': + '@react-navigation/native@7.0.15(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)': dependencies: '@react-navigation/core': 7.4.0(react@18.2.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.8 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) use-latest-callback: 0.2.3(react@18.2.0) '@react-navigation/routers@7.2.0': dependencies: nanoid: 3.3.8 - '@rollup/plugin-node-resolve@16.0.0(rollup@4.34.9)': - dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.34.9) - '@types/resolve': 1.20.2 - deepmerge: 4.3.1 - is-module: 1.0.0 - resolve: 1.22.10 - optionalDependencies: - rollup: 4.34.9 - - '@rollup/plugin-typescript@12.1.2(rollup@4.34.9)(tslib@2.8.1)(typescript@5.7.3)': - dependencies: - '@rollup/pluginutils': 5.1.3(rollup@4.34.9) - resolve: 1.22.10 - typescript: 5.7.3 - optionalDependencies: - rollup: 4.34.9 - tslib: 2.8.1 - '@rollup/pluginutils@5.1.3(rollup@4.34.9)': dependencies: '@types/estree': 1.0.6 @@ -13284,13 +13345,13 @@ snapshots: dependencies: '@swc/counter': 0.1.3 - '@testing-library/react-native@13.2.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)': + '@testing-library/react-native@13.2.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: chalk: 4.1.2 jest-matcher-utils: 29.7.0 pretty-format: 29.7.0 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) react-test-renderer: 18.2.0(react@18.2.0) redent: 3.0.0 @@ -13318,16 +13379,16 @@ snapshots: '@types/babel__generator@7.6.6': dependencies: - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 '@types/babel__template@7.4.3': dependencies: - '@babel/parser': 7.26.5 - '@babel/types': 7.26.5 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 '@types/babel__traverse@7.20.3': dependencies: - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 '@types/cookie@0.6.0': {} @@ -13403,8 +13464,6 @@ snapshots: '@types/prop-types': 15.7.5 csstype: 3.1.2 - '@types/resolve@1.20.2': {} - '@types/stack-utils@2.0.3': {} '@types/statuses@2.0.5': {} @@ -13463,7 +13522,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.4) '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.5.4) - debug: 4.4.0 + debug: 4.4.1 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 @@ -13477,7 +13536,7 @@ snapshots: dependencies: '@typescript-eslint/types': 8.8.1 '@typescript-eslint/visitor-keys': 8.8.1 - debug: 4.4.0 + debug: 4.4.1 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -13593,7 +13652,7 @@ snapshots: '@vue/compiler-core@3.5.13': dependencies: - '@babel/parser': 7.26.5 + '@babel/parser': 7.28.3 '@vue/shared': 3.5.13 entities: 4.5.0 estree-walker: 2.0.2 @@ -13661,7 +13720,7 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -13922,8 +13981,8 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.25.9 - '@babel/types': 7.26.5 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.3 @@ -13983,7 +14042,7 @@ snapshots: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0) - babel-preset-expo@12.0.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)): + babel-preset-expo@12.0.11(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)): dependencies: '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0) @@ -13991,7 +14050,7 @@ snapshots: '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) '@babel/preset-react': 7.26.3(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) - '@react-native/babel-preset': 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@react-native/babel-preset': 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) babel-plugin-react-native-web: 0.19.13 react-refresh: 0.14.2 transitivePeerDependencies: @@ -14431,6 +14490,15 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 + cosmiconfig@9.0.0(typescript@5.5.4): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.5.4 + cosmiconfig@9.0.0(typescript@5.7.3): dependencies: env-paths: 2.2.1 @@ -14439,6 +14507,7 @@ snapshots: parse-json: 5.2.0 optionalDependencies: typescript: 5.7.3 + optional: true crc-32@1.2.2: {} @@ -15147,86 +15216,86 @@ snapshots: jest-message-util: 28.1.3 jest-util: 28.1.3 - expo-asset@11.0.4(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + expo-asset@11.0.5(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: '@expo/image-utils': 0.6.5 - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo-constants: 17.0.8(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo-constants: 17.0.8(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)) invariant: 2.2.4 md5-file: 3.2.3 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) transitivePeerDependencies: - supports-color - expo-build-properties@0.13.2(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-build-properties@0.13.2(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: ajv: 8.13.0 - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) semver: 7.6.3 - expo-constants@17.0.8(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)): + expo-constants@17.0.8(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)): dependencies: '@expo/config': 10.0.11 '@expo/env': 0.4.2 - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) transitivePeerDependencies: - supports-color - expo-dev-client@5.0.20(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-dev-client@5.0.20(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo-dev-launcher: 5.0.35(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) - expo-dev-menu: 6.0.25(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) - expo-dev-menu-interface: 1.9.3(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) - expo-manifests: 0.15.8(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) - expo-updates-interface: 1.0.0(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo-dev-launcher: 5.0.35(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo-dev-menu: 6.0.25(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo-dev-menu-interface: 1.9.3(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo-manifests: 0.15.8(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo-updates-interface: 1.0.0(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) transitivePeerDependencies: - supports-color - expo-dev-launcher@5.0.35(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-dev-launcher@5.0.35(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: ajv: 8.11.0 - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo-dev-menu: 6.0.25(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) - expo-manifests: 0.15.8(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo-dev-menu: 6.0.25(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo-manifests: 0.15.8(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) resolve-from: 5.0.0 transitivePeerDependencies: - supports-color - expo-dev-menu-interface@1.9.3(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-dev-menu-interface@1.9.3(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo-dev-menu@6.0.25(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-dev-menu@6.0.25(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo-dev-menu-interface: 1.9.3(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo-dev-menu-interface: 1.9.3(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)) - expo-file-system@18.0.11(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)): + expo-file-system@18.0.12(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) web-streams-polyfill: 3.3.3 - expo-font@13.0.4(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0): + expo-font@13.0.4(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) fontfaceobserver: 2.3.0 react: 18.2.0 expo-json-utils@0.14.0: {} - expo-keep-awake@14.0.3(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0): + expo-keep-awake@14.0.3(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) react: 18.2.0 - expo-manifests@0.15.8(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-manifests@0.15.8(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: '@expo/config': 10.0.11 - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) expo-json-utils: 0.14.0 transitivePeerDependencies: - supports-color @@ -15246,44 +15315,44 @@ snapshots: dependencies: invariant: 2.2.4 - expo-splash-screen@0.29.22(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-splash-screen@0.29.22(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: '@expo/prebuild-config': 8.0.29 - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - supports-color expo-status-bar@1.12.1: {} - expo-updates-interface@1.0.0(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): + expo-updates-interface@1.0.0(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)): dependencies: - expo: 52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo: 52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.26.0 - '@expo/cli': 0.22.19(graphql@16.8.1) + '@expo/cli': 0.22.26(graphql@16.8.1) '@expo/config': 10.0.11 '@expo/config-plugins': 9.0.17 '@expo/fingerprint': 0.11.11 '@expo/metro-config': 0.19.12 '@expo/vector-icons': 14.0.4 - babel-preset-expo: 12.0.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) - expo-asset: 11.0.4(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) - expo-constants: 17.0.8(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)) - expo-file-system: 18.0.11(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)) - expo-font: 13.0.4(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0) - expo-keep-awake: 14.0.3(expo@52.0.38(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0) + babel-preset-expo: 12.0.11(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + expo-asset: 11.0.5(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + expo-constants: 17.0.8(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)) + expo-file-system: 18.0.12(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)) + expo-font: 13.0.4(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0) + expo-keep-awake: 14.0.3(expo@52.0.47(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)))(graphql@16.8.1)(react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0))(react@18.2.0) expo-modules-autolinking: 2.0.8 expo-modules-core: 2.2.3 fbemitter: 3.0.0 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) web-streams-polyfill: 3.3.3 whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - '@expo/metro-runtime': 4.0.1(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0)) - react-native-webview: 13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + '@expo/metro-runtime': 4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0)) + react-native-webview: 13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -16005,8 +16074,6 @@ snapshots: is-map@2.0.3: {} - is-module@1.0.0: {} - is-negative-zero@2.0.3: {} is-node-process@1.2.0: {} @@ -16104,7 +16171,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.26.0 - '@babel/parser': 7.26.5 + '@babel/parser': 7.28.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.3 @@ -16337,7 +16404,7 @@ snapshots: jest-message-util@28.1.3: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 '@jest/types': 28.1.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -16349,7 +16416,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -16453,10 +16520,10 @@ snapshots: jest-snapshot@28.1.3: dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.5 + '@babel/generator': 7.28.3 '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) '@babel/traverse': 7.26.5 - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 @@ -16583,7 +16650,7 @@ snapshots: jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.26.0)): dependencies: '@babel/core': 7.26.0 - '@babel/parser': 7.26.5 + '@babel/parser': 7.28.3 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0) '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.0) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.0) @@ -17090,9 +17157,9 @@ snapshots: metro-source-map@0.81.3: dependencies: - '@babel/traverse': 7.26.5 + '@babel/traverse': 7.28.3 '@babel/traverse--for-generate-function-map': '@babel/traverse@7.28.3' - '@babel/types': 7.26.5 + '@babel/types': 7.28.2 flow-enums-runtime: 0.0.6 invariant: 2.2.4 metro-symbolicate: 0.81.3 @@ -17117,9 +17184,9 @@ snapshots: metro-transform-plugins@0.81.3: dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.5 - '@babel/template': 7.25.9 - '@babel/traverse': 7.26.5 + '@babel/generator': 7.28.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 flow-enums-runtime: 0.0.6 nullthrows: 1.1.1 transitivePeerDependencies: @@ -17128,9 +17195,9 @@ snapshots: metro-transform-worker@0.81.3: dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.5 - '@babel/parser': 7.26.5 - '@babel/types': 7.26.5 + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 flow-enums-runtime: 0.0.6 metro: 0.81.3 metro-babel-transformer: 0.81.3 @@ -17147,13 +17214,13 @@ snapshots: metro@0.81.3: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 '@babel/core': 7.26.0 - '@babel/generator': 7.26.5 - '@babel/parser': 7.26.5 - '@babel/template': 7.25.9 - '@babel/traverse': 7.26.5 - '@babel/types': 7.26.5 + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -17185,7 +17252,7 @@ snapshots: serialize-error: 2.1.0 source-map: 0.5.7 throat: 5.0.0 - ws: 8.18.0 + ws: 8.18.3 yargs: 17.7.2 transitivePeerDependencies: - bufferutil @@ -17634,7 +17701,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.26.2 + '@babel/code-frame': 7.27.1 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -18130,7 +18197,7 @@ snapshots: react-devtools-core@5.3.2: dependencies: shell-quote: 1.8.1 - ws: 8.18.0 + ws: 8.18.3 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -18179,26 +18246,26 @@ snapshots: transitivePeerDependencies: - supports-color - react-native-gesture-handler@2.20.2(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-gesture-handler@2.20.2(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) - react-native-mask-input@1.2.3(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-mask-input@1.2.3(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) react-native-masked-text@1.13.0: dependencies: date-and-time: 0.14.2 tinymask: 1.0.2 - react-native-reanimated@3.16.7(@babel/core@7.26.0)(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-reanimated@3.16.7(@babel/core@7.26.0)(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) @@ -18213,28 +18280,28 @@ snapshots: convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) transitivePeerDependencies: - supports-color - react-native-safe-area-context@4.12.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-safe-area-context@4.12.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) - react-native-screens@4.4.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-screens@4.4.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 react-freeze: 1.0.4(react@18.2.0) - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) warn-once: 0.1.1 - react-native-svg@15.6.0(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-svg@15.6.0(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) warn-once: 0.1.1 react-native-web@0.19.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -18252,23 +18319,30 @@ snapshots: transitivePeerDependencies: - encoding - react-native-webview@13.13.4(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): + dependencies: + escape-string-regexp: 4.0.0 + invariant: 2.2.4 + react: 18.2.0 + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) + + react-native-webview@13.13.4(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0): dependencies: escape-string-regexp: 4.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0) - react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0): + react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0): dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native/assets-registry': 0.76.7 - '@react-native/codegen': 0.76.7(@babel/preset-env@7.26.0(@babel/core@7.26.0)) - '@react-native/community-cli-plugin': 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0) - '@react-native/gradle-plugin': 0.76.7 - '@react-native/js-polyfills': 0.76.7 - '@react-native/normalize-colors': 0.76.7 - '@react-native/virtualized-lists': 0.76.7(@types/react@18.3.18)(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + '@react-native/assets-registry': 0.76.9 + '@react-native/codegen': 0.76.9(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@react-native/community-cli-plugin': 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4)) + '@react-native/gradle-plugin': 0.76.9 + '@react-native/js-polyfills': 0.76.9 + '@react-native/normalize-colors': 0.76.9 + '@react-native/virtualized-lists': 0.76.9(@types/react@18.3.18)(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -18298,14 +18372,66 @@ snapshots: semver: 7.6.3 stacktrace-parser: 0.1.10 whatwg-fetch: 3.6.20 - ws: 8.18.0 + ws: 8.18.3 + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.18 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@react-native-community/cli' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native/assets-registry': 0.76.9 + '@react-native/codegen': 0.76.9(@babel/preset-env@7.26.0(@babel/core@7.26.0)) + '@react-native/community-cli-plugin': 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3)) + '@react-native/gradle-plugin': 0.76.9 + '@react-native/js-polyfills': 0.76.9 + '@react-native/normalize-colors': 0.76.9 + '@react-native/virtualized-lists': 0.76.9(@types/react@18.3.18)(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.7.3))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + babel-jest: 29.7.0(@babel/core@7.26.0) + babel-plugin-syntax-hermes-parser: 0.23.1 + base64-js: 1.5.1 + chalk: 4.1.2 + commander: 12.1.0 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + glob: 7.2.3 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.81.3 + metro-source-map: 0.81.3 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 29.7.0 + promise: 8.3.0 + react: 18.2.0 + react-devtools-core: 5.3.2 + react-refresh: 0.14.2 + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + semver: 7.6.3 + stacktrace-parser: 0.1.10 + whatwg-fetch: 3.6.20 + ws: 8.18.3 yargs: 17.7.2 optionalDependencies: '@types/react': 18.3.18 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' - - '@react-native-community/cli-server-api' + - '@react-native-community/cli' - bufferutil - encoding - supports-color @@ -19408,7 +19534,7 @@ snapshots: lightningcss: 1.27.0 terser: 5.39.0 - vitest-react-native@0.1.5(react-native@0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)(vite@5.4.11(@types/node@22.10.7)(lightningcss@1.27.0)(terser@5.39.0)): + vitest-react-native@0.1.5(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0))(react@18.2.0)(vite@5.4.11(@types/node@22.10.7)(lightningcss@1.27.0)(terser@5.39.0)): dependencies: '@bunchtogether/vite-plugin-flow': 1.0.2 '@react-native/polyfills': 2.0.0 @@ -19416,7 +19542,7 @@ snapshots: flow-remove-types: 2.264.0 pirates: 4.0.6 react: 18.2.0 - react-native: 0.76.7(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli-server-api@17.0.0)(@types/react@18.3.18)(react@18.2.0) + react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@react-native-community/cli@17.0.0(typescript@5.5.4))(@types/react@18.3.18)(react@18.2.0) regenerator-runtime: 0.13.11 vite: 5.4.11(@types/node@22.10.7)(lightningcss@1.27.0)(terser@5.39.0) @@ -19683,8 +19809,7 @@ snapshots: ws@8.18.0: {} - ws@8.18.3: - optional: true + ws@8.18.3: {} xcode@3.0.1: dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 6c5e2447e..a2077af21 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -38,7 +38,7 @@ catalog: eslint-plugin-react: ^7.37.1 eslint-plugin-react-hooks: ^5.1.0-rc.0 events: ^3.3.0 - expo: ~52.0.38 + expo: ~52.0.47 expo-dev-client: ~5.0.20 expo-splash-screen: ~0.29.22 expo-status-bar: ~1.12.1 @@ -66,7 +66,7 @@ catalog: prettier: ^2.8.8 react: ^18.2.0 react-dom: ^18.2.0 - react-native: 0.76.7 + react-native: 0.76.9 react-native-builder-bob: ^0.23.2 react-native-gesture-handler: ~2.20.2 react-native-mask-input: ^1.2.3