From f238ff830176aef8b707d8ecf542899428766e40 Mon Sep 17 00:00:00 2001 From: lukestahl Date: Mon, 23 Oct 2023 18:58:15 +0200 Subject: [PATCH] dependency version bump --- README.md | 1 + apps/api/package.json | 32 +- apps/api/src/auth/auth.controller.ts | 39 +- .../auth/supertokens/supertokens.service.ts | 15 +- apps/expo/app/(app)/auth/signin/index.tsx | 125 +- apps/expo/components/auth/github.button.tsx | 58 +- apps/expo/package.json | 53 +- package.json | 12 +- pnpm-lock.yaml | 4515 +++++++---------- 9 files changed, 2126 insertions(+), 2724 deletions(-) diff --git a/README.md b/README.md index 08c332a..42dbec0 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ The main apps are: - [ ] Add support for Android devices (Deep Linking, Sign in with Apple, etc.) - [ ] Add support for Expo Web +- [ ] Support account linking ## Learn more diff --git a/apps/api/package.json b/apps/api/package.json index 477d2c9..d205807 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -20,40 +20,40 @@ "test:e2e": "jest --config ./test/jest-e2e.json" }, "dependencies": { - "@nestjs/common": "^10.2.5", + "@nestjs/common": "^10.2.7", "@nestjs/config": "^3.1.1", - "@nestjs/core": "^10.2.5", + "@nestjs/core": "^10.2.7", "@nestjs/jwt": "^10.1.1", "@nestjs/mapped-types": "*", - "@nestjs/platform-express": "^10.2.5", + "@nestjs/platform-express": "^10.2.7", "@nestjs/serve-static": "^4.0.0", "express": "^4.18.2", "handlebars": "^4.7.8", "hbs": "^4.2.0", "reflect-metadata": "^0.1.13", - "resend": "^1.0.0", + "resend": "^1.1.0", "rxjs": "^7.8.1", - "supertokens-node": "^15.2.0" + "supertokens-node": "^16.3.3" }, "devDependencies": { - "@nestjs/cli": "^10.1.17", + "@nestjs/cli": "^10.2.0", "@nestjs/schematics": "^10.0.2", - "@nestjs/testing": "^10.2.5", - "@types/express": "^4.17.17", - "@types/jest": "^29.5.5", - "@types/node": "^20.6.2", - "@types/supertest": "^2.0.12", - "@typescript-eslint/eslint-plugin": "^6.7.0", - "@typescript-eslint/parser": "^6.7.0", - "eslint": "^8.49.0", + "@nestjs/testing": "^10.2.7", + "@types/express": "^4.17.20", + "@types/jest": "^29.5.6", + "@types/node": "^20.8.7", + "@types/supertest": "^2.0.15", + "@typescript-eslint/eslint-plugin": "^6.8.0", + "@typescript-eslint/parser": "^6.8.0", + "eslint": "^8.52.0", "eslint-config-prettier": "^9.0.0", - "eslint-plugin-prettier": "^5.0.0", + "eslint-plugin-prettier": "^5.0.1", "jest": "^29.7.0", "prettier": "^3.0.3", "source-map-support": "^0.5.21", "supertest": "^6.3.3", "ts-jest": "^29.1.1", - "ts-loader": "^9.4.4", + "ts-loader": "^9.5.0", "ts-node": "^10.9.1", "tsconfig-paths": "^4.2.0", "typescript": "^5.2.2" diff --git a/apps/api/src/auth/auth.controller.ts b/apps/api/src/auth/auth.controller.ts index 8b2ddf0..8e7ddb9 100644 --- a/apps/api/src/auth/auth.controller.ts +++ b/apps/api/src/auth/auth.controller.ts @@ -24,7 +24,7 @@ import { } from 'supertokens-node/recipe/usermetadata'; import { SessionContainer } from 'supertokens-node/recipe/session'; import { JwtService } from '@nestjs/jwt'; -import { deleteUser } from 'supertokens-node'; +import supertokens, { deleteUser } from 'supertokens-node'; import { EmailService } from '../email/email.service'; @Controller() @@ -40,14 +40,14 @@ export class AuthController { async getSession(@Session() session: SessionContainer) { const [metaDataResponse, user, roles] = await Promise.all([ getUserMetadata(session.getUserId()), - ThirdPartyEmailPassword.getUserById(session.getUserId()), + supertokens.getUser(session.getUserId()), UserRoles.getRolesForUser(session.getTenantId(), session.getUserId()), ]); if (!user) { throw new UnauthorizedException(); } return { - metadata: { ...metaDataResponse.metadata, email: user.email }, + metadata: { ...metaDataResponse.metadata, email: user.emails[0] }, session: { thirdParty: user.thirdParty ?? null, userId: session.getUserId(), @@ -98,7 +98,7 @@ export class AuthController { ); if (response.status === 'OK') { await ThirdPartyEmailPassword.updateEmailOrPassword({ - userId: response.user.id, + recipeUserId: response.user.recipeUserId, email: response.user.email, }); } @@ -121,7 +121,7 @@ export class AuthController { const { oldPassword, newPassword } = body; const userId = session.getUserId(); - const userInfo = await ThirdPartyEmailPassword.getUserById(userId); + const userInfo = await supertokens.getUser(userId); if (userInfo === undefined) { throw new Error('Should never come here'); @@ -130,7 +130,7 @@ export class AuthController { const passwordValidResponse = await ThirdPartyEmailPassword.emailPasswordSignIn( session.getTenantId(), - userInfo.email, + userInfo.emails[0], oldPassword, ); @@ -139,7 +139,7 @@ export class AuthController { } const response = await ThirdPartyEmailPassword.updateEmailOrPassword({ - userId, + recipeUserId: session.getRecipeUserId(), password: newPassword, tenantIdForPasswordPolicy: session!.getTenantId(), }); @@ -177,8 +177,8 @@ export class AuthController { }; } - const sessionId = session.getUserId(); - const userAccount = await ThirdPartyEmailPassword.getUserById(sessionId!); + const userId = session.getUserId(); + const userAccount = await supertokens.getUser(userId!); if (userAccount.thirdParty !== undefined) { return { status: 'GENERAL_ERROR', @@ -187,20 +187,20 @@ export class AuthController { } const isVerified = await EmailVerification.isEmailVerified( - session.getUserId(), + session.getRecipeUserId(), email, ); if (!isVerified) { - const user = await ThirdPartyEmailPassword.getUserById( - session.getUserId(), - ); + const user = await supertokens.getUser(session.getUserId()); for (const tenantId of user.tenantIds) { // Since once user can be shared across many tenants, we need to check if // the email already exists in any of the tenants. - const usersWithEmail = await ThirdPartyEmailPassword.getUsersByEmail( + const usersWithEmail = await supertokens.listUsersByAccountInfo( tenantId, - email, + { + email, + }, ); for (const userWithEmail of usersWithEmail) { if (userWithEmail.id !== session.getUserId()) { @@ -215,13 +215,14 @@ export class AuthController { const response = await EmailVerification.sendEmailVerificationEmail( session.getTenantId(), session.getUserId(), + session.getRecipeUserId(), email, ); return response; } const response = await ThirdPartyEmailPassword.updateEmailOrPassword({ - userId: session.getUserId(), + recipeUserId: session.getRecipeUserId(), email: email, }); @@ -242,14 +243,14 @@ export class AuthController { expiresIn: '15m', }); - const response = await ThirdPartyEmailPassword.getUserById(userId); + const response = await supertokens.getUser(userId); if (!response) { throw new BadRequestException(); } - const { email } = response; + const { emails } = response; const deleteUrl = `${process.env.API_DOMAIN}/auth/delete-account/verify?token=${token}`; await this.emailService.sendAccountDeletionMail({ - email, + email: emails[0], accountDeletionLink: deleteUrl, }); return { diff --git a/apps/api/src/auth/supertokens/supertokens.service.ts b/apps/api/src/auth/supertokens/supertokens.service.ts index a340cc5..34fb7cf 100644 --- a/apps/api/src/auth/supertokens/supertokens.service.ts +++ b/apps/api/src/auth/supertokens/supertokens.service.ts @@ -58,7 +58,10 @@ export class SupertokensService { } const response = await originalImplementation.thirdPartySignInUpPOST(input); - if (response.status === 'OK' && response.createdNewUser) { + if ( + response.status === 'OK' && + response.createdNewRecipeUser + ) { let updatedUser: | { first_name?: string; @@ -66,7 +69,8 @@ export class SupertokensService { avatarUrl?: string; } | undefined = undefined; - if (response.user.thirdParty.id === 'apple') { + const [thirdParty] = response.user.thirdParty; + if (thirdParty.id === 'apple') { const user = response.rawUserInfoFromProvider .fromIdTokenPayload.user as { email: string; @@ -77,7 +81,7 @@ export class SupertokensService { first_name: user.first_name, last_name: user.last_name, }; - } else if (response.user.thirdParty.id === 'github') { + } else if (thirdParty.id === 'github') { const rawUser = response.rawUserInfoFromProvider .fromUserInfoAPI as { user: { @@ -92,7 +96,7 @@ export class SupertokensService { : undefined, last_name: '', }; - } else if (response.user.thirdParty.id === 'google') { + } else if (thirdParty.id === 'google') { const user = response.rawUserInfoFromProvider .fromIdTokenPayload as { email: string; @@ -144,7 +148,8 @@ export class SupertokensService { await EmailVerification.sendEmailVerificationEmail( input.tenantId, response.user.id, - response.user.email, + response.session.getRecipeUserId(), + response.user.emails[0], input.userContext, ); await UserRoles.createNewRoleOrAddPermissions('user', [ diff --git a/apps/expo/app/(app)/auth/signin/index.tsx b/apps/expo/app/(app)/auth/signin/index.tsx index ecc6b5e..f364b85 100644 --- a/apps/expo/app/(app)/auth/signin/index.tsx +++ b/apps/expo/app/(app)/auth/signin/index.tsx @@ -1,94 +1,81 @@ -import { LmButton } from "@tamagui-extras/core"; -import { LmInput } from "@tamagui-extras/form"; -import { Href, Link, Stack, router } from "expo-router"; -import { Formik } from "formik"; -import React from "react"; -import { - Button, - Heading, - ScrollView, - Text, - View, - XStack, - YStack, -} from "tamagui"; -import { AuthError } from "../../../../components/auth/auth.error"; -import { AuthStore } from "../../../../components/auth/auth.store"; -import { SocialProviders } from "../../../../components/auth/socialproviders"; -import { useSoftKeyboardEffect } from "../../../../components/keyboard"; -import { translate } from "../../../../components/translate"; +import { LmButton } from '@tamagui-extras/core' +import { LmInput } from '@tamagui-extras/form' +import { Href, Link, Stack, router } from 'expo-router' +import { Formik } from 'formik' +import React from 'react' +import { Button, Heading, ScrollView, Text, View, XStack, YStack } from 'tamagui' +import { AuthError } from '../../../../components/auth/auth.error' +import { AuthStore } from '../../../../components/auth/auth.store' +import { SocialProviders } from '../../../../components/auth/socialproviders' +import { useSoftKeyboardEffect } from '../../../../components/keyboard' +import { translate } from '../../../../components/translate' export default function SignIn() { - useSoftKeyboardEffect(); + useSoftKeyboardEffect() return ( <> { - const errors: Record = {}; + const errors: Record = {} if (!values.email) { - errors.email = translate.t("auth.login.errors.email.required"); - } else if ( - !/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(values.email) - ) { - errors.email = translate.t("auth.login.errors.email.invalid"); + errors.email = translate.t('auth.login.errors.email.required') + } else if (!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(values.email)) { + errors.email = translate.t('auth.login.errors.email.invalid') } else if (!values.password) { - errors.password = translate.t( - "auth.login.errors.password.required" - ); + errors.password = translate.t('auth.login.errors.password.required') } - return errors; + return errors }} onSubmit={async (values, { setSubmitting, setErrors }) => { try { await AuthStore.signIn({ email: values.email, password: values.password, - }); - router.push("/(app)/(authorized)/home"); + }) + router.push('/(app)/(authorized)/home') } catch (error) { if (error instanceof AuthError) { - if (error?.name === "USER_NOT_CONFIRMED_ERROR") { + if (error?.name === 'USER_NOT_CONFIRMED_ERROR') { try { - await AuthStore.verifyEmail(); + await AuthStore.verifyEmail() router.push( - ("/auth/email/verify-sent" + - `?mail=${values.email}`) as Href - ); + ('/auth/email/verify-sent' + `?mail=${values.email}`) as Href + ) } catch (errorTmp) { setErrors({ - password: translate.t("auth.login.errors.unknown"), - }); - console.log(errorTmp); + password: translate.t('auth.login.errors.unknown'), + }) + console.log(errorTmp) } - } else if (error?.name === "WRONG_CREDENTIALS_ERROR") { + } else if (error?.name === 'WRONG_CREDENTIALS_ERROR') { setErrors({ - password: translate.t("auth.login.errors.password.invalid"), - }); + password: translate.t('auth.login.errors.password.invalid'), + }) } else { setErrors({ - password: translate.t("auth.login.errors.unknown"), - }); + password: translate.t('auth.login.errors.unknown'), + }) } - console.log(error, error?.name); + console.log(error, error?.name) } else { setErrors({ - password: translate.t("auth.login.errors.unknown"), - }); - console.log(error); + password: translate.t('auth.login.errors.unknown'), + }) + console.log(error) } } - setSubmitting(false); + setSubmitting(false) }} > {({ @@ -102,14 +89,14 @@ export default function SignIn() { }) => ( - {translate.t("auth.login.subHeadline")} - {translate.t("auth.login.title")} + {translate.t('auth.login.subHeadline')} + {translate.t('auth.login.title')} handleSubmit()} value={values.password} error={!!errors.password} - placeholder={translate.t("auth.login.password")} - passwordIconProps={{ color: "$gray10" }} + placeholder={translate.t('auth.login.password')} + passwordIconProps={{ color: '$gray10' }} /> - + {errors.email || errors.password} - - {translate.t("auth.login.forgotPassword")} - + {translate.t('auth.login.forgotPassword')} handleSubmit()} loading={isSubmitting}> - {translate.t("auth.login.loginButton")} + {translate.t('auth.login.loginButton')} @@ -159,5 +144,5 @@ export default function SignIn() { - ); + ) } diff --git a/apps/expo/components/auth/github.button.tsx b/apps/expo/components/auth/github.button.tsx index 7250be3..c8ebdab 100644 --- a/apps/expo/components/auth/github.button.tsx +++ b/apps/expo/components/auth/github.button.tsx @@ -1,51 +1,51 @@ -import { LmButton } from "@tamagui-extras/core"; -import { makeRedirectUri, useAuthRequest } from "expo-auth-session"; -import { router } from "expo-router"; -import * as WebBrowser from "expo-web-browser"; -import * as React from "react"; -import { Path, Svg } from "react-native-svg"; -import { translate } from "../translate"; -import { AuthStore } from "./auth.store"; -import { appConfig } from "../../constants/app.config"; +import { LmButton } from '@tamagui-extras/core' +import { makeRedirectUri, useAuthRequest } from 'expo-auth-session' +import { router } from 'expo-router' +import * as WebBrowser from 'expo-web-browser' +import * as React from 'react' +import { Path, Svg } from 'react-native-svg' +import { translate } from '../translate' +import { AuthStore } from './auth.store' +import { appConfig } from '../../constants/app.config' -WebBrowser.maybeCompleteAuthSession(); +WebBrowser.maybeCompleteAuthSession() -const CLIENT_ID = process.env.EXPO_PUBLIC_GITHUB_CLIENT_ID as string; +const CLIENT_ID = process.env.EXPO_PUBLIC_GITHUB_CLIENT_ID as string const discovery = { - authorizationEndpoint: "https://github.com/login/oauth/authorize", - tokenEndpoint: "https://github.com/login/oauth/access_token", + authorizationEndpoint: 'https://github.com/login/oauth/authorize', + tokenEndpoint: 'https://github.com/login/oauth/access_token', revocationEndpoint: `https://github.com/settings/connections/applications/${CLIENT_ID}`, -}; +} export const GithubButton = () => { - const [loading, setLoading] = React.useState(false); + const [loading, setLoading] = React.useState(false) const [_request, _response, promptAsync] = useAuthRequest( { clientId: CLIENT_ID, - scopes: ["read:user", "user:email"], + scopes: ['read:user', 'user:email'], redirectUri: makeRedirectUri({ scheme: appConfig.bundleIdentifier, }), }, discovery - ); + ) return ( { - setLoading(true); + setLoading(true) try { - const response = await promptAsync(); - if (response.type === "success") { - const { code } = response.params; - await AuthStore.signInWithGithub({ code }); - router.replace("/(app)/(authorized)/home"); + const response = await promptAsync() + if (response.type === 'success') { + const { code } = response.params + await AuthStore.signInWithGithub({ code }) + router.replace('/(app)/(authorized)/home') } else { - console.error(response); + console.error(response) } } catch (error) { - console.log(error); + console.log(JSON.stringify(error)) } - setLoading(false); + setLoading(false) }} icon={ @@ -56,7 +56,7 @@ export const GithubButton = () => { } > - {translate.t("auth.login.github")} + {translate.t('auth.login.github')} - ); -}; + ) +} diff --git a/apps/expo/package.json b/apps/expo/package.json index f2bf740..2553e05 100644 --- a/apps/expo/package.json +++ b/apps/expo/package.json @@ -19,24 +19,24 @@ "@expo/vector-icons": "^13.0.0", "@react-native-async-storage/async-storage": "1.19.3", "@react-native-google-signin/google-signin": "^10.0.1", - "@react-navigation/native": "^6.1.8", + "@react-navigation/native": "^6.1.9", "@tamagui-extras/core": "^1.5.0", - "@tamagui-extras/form": "^1.6.0", - "@tamagui/animations-react-native": "^1.74.1", - "@tamagui/babel-plugin": "^1.74.1", - "@tamagui/checkbox": "^1.74.1", - "@tamagui/config": "^1.74.1", - "@tamagui/font-inter": "^1.74.1", - "@tamagui/lucide-icons": "^1.74.1", - "@tamagui/react-native-media-driver": "^1.74.1", - "@tamagui/shorthands": "^1.74.1", - "@tamagui/theme-base": "^1.74.1", - "@tamagui/themes": "^1.74.1", - "@tamagui/toast": "^1.74.1", + "@tamagui-extras/form": "^1.7.0", + "@tamagui/animations-react-native": "^1.75.1", + "@tamagui/babel-plugin": "^1.75.1", + "@tamagui/checkbox": "^1.75.1", + "@tamagui/config": "^1.75.1", + "@tamagui/font-inter": "^1.75.1", + "@tamagui/lucide-icons": "^1.75.1", + "@tamagui/react-native-media-driver": "^1.75.1", + "@tamagui/shorthands": "^1.75.1", + "@tamagui/theme-base": "^1.75.1", + "@tamagui/themes": "^1.75.1", + "@tamagui/toast": "^1.75.1", "axios": "^1.5.1", "babel-plugin-transform-inline-environment-variables": "^0.4.4", - "burnt": "^0.11.7", - "expo": "49.0.13", + "burnt": "^0.12.1", + "expo": "49.0.16", "expo-apple-authentication": "~6.1.2", "expo-auth-session": "5.2.0", "expo-blur": "~12.6.0", @@ -47,34 +47,34 @@ "expo-linear-gradient": "~12.5.0", "expo-linking": "~6.0.0", "expo-localization": "^14.5.0", - "expo-router": "2.0.8", + "expo-router": "2.0.9", "expo-splash-screen": "~0.22.0", "expo-status-bar": "~1.7.1", "expo-system-ui": "~2.6.0", "expo-web-browser": "~12.5.0", "formik": "^2.4.5", - "i18next": "^23.5.1", + "i18next": "^23.6.0", "metro": "^0.79.1", "metro-core": "^0.79.1", "mobx": "^6.10.2", "mobx-react": "^9.0.1", "react": "18.2.0", "react-dom": "^18.2.0", - "react-native": "0.72.5", + "react-native": "0.72.6", "react-native-avoid-softinput": "^4.0.1", - "react-native-gesture-handler": "~2.13.1", + "react-native-gesture-handler": "~2.13.3", "react-native-reanimated": "~3.5.4", - "react-native-safe-area-context": "4.7.2", - "react-native-screens": "~3.25.0", + "react-native-safe-area-context": "4.7.3", + "react-native-screens": "~3.26.0", "react-native-svg": "13.14.0", "react-native-url-polyfill": "^2.0.0", "react-native-web": "^0.19.9", "supertokens-react-native": "^4.0.7", - "tamagui": "^1.74.1" + "tamagui": "^1.75.1" }, "devDependencies": { - "@babel/core": "^7.23.0", - "@types/react": "~18.2.23", + "@babel/core": "^7.23.2", + "@types/react": "~18.2.31", "jest": "^29.7.0", "jest-expo": "~49.0.0", "react-test-renderer": "18.2.0", @@ -85,10 +85,5 @@ "metro": "0.76.0", "metro-resolver": "0.76.0" }, - "resolutions": { - "react-refresh": "~0.14.0", - "metro": "0.76.0", - "metro-resolver": "0.76.0" - }, "private": true } diff --git a/package.json b/package.json index 27f9d27..a1c1b3f 100644 --- a/package.json +++ b/package.json @@ -20,13 +20,13 @@ "react-native-web": "~0.19.6" }, "dependencies": { - "@babel/runtime": "^7.18.9", - "@manypkg/cli": "^0.19.1", - "check-dependency-version-consistency": "^3.0.3", - "eslint": "^8.49.0", - "node-gyp": "^9.3.1", + "@babel/runtime": "^7.23.2", + "@manypkg/cli": "^0.21.0", + "check-dependency-version-consistency": "^4.1.0", + "eslint": "^8.52.0", + "node-gyp": "^9.4.0", "prettier": "^3.0.3", - "turbo": "^1.10.3", + "turbo": "^1.10.16", "typescript": "^5.2.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a6dc0d3..e1e3571 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,26 +16,26 @@ importers: .: dependencies: '@babel/runtime': - specifier: ^7.18.9 - version: 7.18.9 + specifier: ^7.23.2 + version: 7.23.2 '@manypkg/cli': - specifier: ^0.19.1 - version: 0.19.1 + specifier: ^0.21.0 + version: 0.21.0 check-dependency-version-consistency: - specifier: ^3.0.3 - version: 3.0.3 + specifier: ^4.1.0 + version: 4.1.0 eslint: - specifier: ^8.49.0 - version: 8.49.0 + specifier: ^8.52.0 + version: 8.52.0 node-gyp: - specifier: ^9.3.1 - version: 9.3.1 + specifier: ^9.4.0 + version: 9.4.0 prettier: specifier: ^3.0.3 version: 3.0.3 turbo: - specifier: ^1.10.3 - version: 1.10.3 + specifier: ^1.10.16 + version: 1.10.16 typescript: specifier: ^5.2.2 version: 5.2.2 @@ -43,26 +43,26 @@ importers: apps/api: dependencies: '@nestjs/common': - specifier: ^10.2.5 - version: 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + specifier: ^10.2.7 + version: 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/config': specifier: ^3.1.1 - version: 3.1.1(@nestjs/common@10.2.5)(reflect-metadata@0.1.13) + version: 3.1.1(@nestjs/common@10.2.7)(reflect-metadata@0.1.13) '@nestjs/core': - specifier: ^10.2.5 - version: 10.2.5(@nestjs/common@10.2.5)(@nestjs/platform-express@10.2.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + specifier: ^10.2.7 + version: 10.2.7(@nestjs/common@10.2.7)(@nestjs/platform-express@10.2.7)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/jwt': specifier: ^10.1.1 - version: 10.1.1(@nestjs/common@10.2.5) + version: 10.1.1(@nestjs/common@10.2.7) '@nestjs/mapped-types': specifier: '*' version: 0.0.1(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13) '@nestjs/platform-express': - specifier: ^10.2.5 - version: 10.2.5(@nestjs/common@10.2.5)(@nestjs/core@10.2.5) + specifier: ^10.2.7 + version: 10.2.7(@nestjs/common@10.2.7)(@nestjs/core@10.2.7) '@nestjs/serve-static': specifier: ^4.0.0 - version: 4.0.0(@nestjs/common@10.2.5)(@nestjs/core@10.2.5)(express@4.18.2) + version: 4.0.0(@nestjs/common@10.2.7)(@nestjs/core@10.2.7)(express@4.18.2) express: specifier: ^4.18.2 version: 4.18.2 @@ -76,54 +76,54 @@ importers: specifier: ^0.1.13 version: 0.1.13 resend: - specifier: ^1.0.0 - version: 1.0.0 + specifier: ^1.1.0 + version: 1.1.0 rxjs: specifier: ^7.8.1 version: 7.8.1 supertokens-node: - specifier: ^15.2.0 - version: 15.2.0 + specifier: ^16.3.3 + version: 16.3.3 devDependencies: '@nestjs/cli': - specifier: ^10.1.17 - version: 10.1.17 + specifier: ^10.2.0 + version: 10.2.0 '@nestjs/schematics': specifier: ^10.0.2 - version: 10.0.2(typescript@5.2.2) + version: 10.0.2(chokidar@3.5.3)(typescript@5.2.2) '@nestjs/testing': - specifier: ^10.2.5 - version: 10.2.5(@nestjs/common@10.2.5)(@nestjs/core@10.2.5)(@nestjs/platform-express@10.2.5) + specifier: ^10.2.7 + version: 10.2.7(@nestjs/common@10.2.7)(@nestjs/core@10.2.7)(@nestjs/platform-express@10.2.7) '@types/express': - specifier: ^4.17.17 - version: 4.17.17 + specifier: ^4.17.20 + version: 4.17.20 '@types/jest': - specifier: ^29.5.5 - version: 29.5.5 + specifier: ^29.5.6 + version: 29.5.6 '@types/node': - specifier: ^20.6.2 - version: 20.6.2 + specifier: ^20.8.7 + version: 20.8.7 '@types/supertest': - specifier: ^2.0.12 - version: 2.0.12 + specifier: ^2.0.15 + version: 2.0.15 '@typescript-eslint/eslint-plugin': - specifier: ^6.7.0 - version: 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.2.2) + specifier: ^6.8.0 + version: 6.8.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2) '@typescript-eslint/parser': - specifier: ^6.7.0 - version: 6.7.0(eslint@8.49.0)(typescript@5.2.2) + specifier: ^6.8.0 + version: 6.8.0(eslint@8.52.0)(typescript@5.2.2) eslint: - specifier: ^8.49.0 - version: 8.49.0 + specifier: ^8.52.0 + version: 8.52.0 eslint-config-prettier: specifier: ^9.0.0 - version: 9.0.0(eslint@8.49.0) + version: 9.0.0(eslint@8.52.0) eslint-plugin-prettier: - specifier: ^5.0.0 - version: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.49.0)(prettier@3.0.3) + specifier: ^5.0.1 + version: 5.0.1(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@3.0.3) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + version: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) prettier: specifier: ^3.0.3 version: 3.0.3 @@ -135,13 +135,13 @@ importers: version: 6.3.3 ts-jest: specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.23.0)(jest@29.7.0)(typescript@5.2.2) + version: 29.1.1(@babel/core@7.23.2)(jest@29.7.0)(typescript@5.2.2) ts-loader: - specifier: ^9.4.4 - version: 9.4.4(typescript@5.2.2)(webpack@5.89.0) + specifier: ^9.5.0 + version: 9.5.0(typescript@5.2.2)(webpack@5.89.0) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@20.6.2)(typescript@5.2.2) + version: 10.9.1(@types/node@20.8.7)(typescript@5.2.2) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -156,52 +156,52 @@ importers: version: 13.0.0 '@react-native-async-storage/async-storage': specifier: 1.19.3 - version: 1.19.3(react-native@0.72.5) + version: 1.19.3(react-native@0.72.6) '@react-native-google-signin/google-signin': specifier: ^10.0.1 - version: 10.0.1(expo@49.0.13)(react-native@0.72.5)(react@18.2.0) + version: 10.0.1(expo@49.0.16)(react-native@0.72.6)(react@18.2.0) '@react-navigation/native': - specifier: ^6.1.8 - version: 6.1.8(react-native@0.72.5)(react@18.2.0) + specifier: ^6.1.9 + version: 6.1.9(react-native@0.72.6)(react@18.2.0) '@tamagui-extras/core': specifier: ^1.5.0 - version: 1.5.0(react-native-svg@13.9.0)(react-native@0.72.5)(react@18.2.0)(tamagui@1.74.1) + version: 1.5.0(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tamagui@1.75.1) '@tamagui-extras/form': - specifier: ^1.6.0 - version: 1.6.0(react-native-svg@13.9.0)(react-native@0.72.5)(react@18.2.0)(tamagui@1.74.1) + specifier: ^1.7.0 + version: 1.7.0(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tamagui@1.75.1) '@tamagui/animations-react-native': - specifier: ^1.74.1 - version: 1.74.1(react-native@0.72.5)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-native@0.72.6)(react@18.2.0) '@tamagui/babel-plugin': - specifier: ^1.74.1 - version: 1.74.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-dom@18.2.0)(react@18.2.0) '@tamagui/checkbox': - specifier: ^1.74.1 - version: 1.74.1(react-native@0.72.5)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-native@0.72.6)(react@18.2.0) '@tamagui/config': - specifier: ^1.74.1 - version: 1.74.1(react-native@0.72.5)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-dom@18.2.0)(react-native-reanimated@3.5.4)(react-native@0.72.6)(react@18.2.0) '@tamagui/font-inter': - specifier: ^1.74.1 - version: 1.74.1(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react@18.2.0) '@tamagui/lucide-icons': - specifier: ^1.74.1 - version: 1.74.1(react-native-svg@13.9.0)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-native-svg@13.9.0)(react@18.2.0) '@tamagui/react-native-media-driver': - specifier: ^1.74.1 - version: 1.74.1(react-native@0.72.5)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-native@0.72.6)(react@18.2.0) '@tamagui/shorthands': - specifier: ^1.74.1 - version: 1.74.1 + specifier: ^1.75.1 + version: 1.75.1 '@tamagui/theme-base': - specifier: ^1.74.1 - version: 1.74.1 + specifier: ^1.75.1 + version: 1.75.1 '@tamagui/themes': - specifier: ^1.74.1 - version: 1.74.1(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react@18.2.0) '@tamagui/toast': - specifier: ^1.74.1 - version: 1.74.1(react-native@0.72.5)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(react-native@0.72.6)(react@18.2.0) axios: specifier: ^1.5.1 version: 1.5.1 @@ -209,62 +209,62 @@ importers: specifier: ^0.4.4 version: 0.4.4 burnt: - specifier: ^0.11.7 - version: 0.11.7(expo@49.0.13)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) + specifier: ^0.12.1 + version: 0.12.1(expo@49.0.16)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) expo: - specifier: 49.0.13 - version: 49.0.13(@babel/core@7.23.0) + specifier: 49.0.16 + version: 49.0.16(@babel/core@7.23.2) expo-apple-authentication: specifier: ~6.1.2 - version: 6.1.2(expo@49.0.13) + version: 6.1.2(expo@49.0.16) expo-auth-session: specifier: 5.2.0 - version: 5.2.0(expo@49.0.13) + version: 5.2.0(expo@49.0.16) expo-blur: specifier: ~12.6.0 - version: 12.6.0(expo@49.0.13) + version: 12.6.0(expo@49.0.16) expo-dev-client: specifier: ~2.4.11 - version: 2.4.11(expo@49.0.13) + version: 2.4.11(expo@49.0.16) expo-dev-launcher: specifier: ^3.1.0 - version: 3.1.0(expo@49.0.13) + version: 3.1.0(expo@49.0.16) expo-font: specifier: ~11.6.0 - version: 11.6.0(expo@49.0.13) + version: 11.6.0(expo@49.0.16) expo-image-picker: specifier: ~14.5.0 - version: 14.5.0(expo@49.0.13) + version: 14.5.0(expo@49.0.16) expo-linear-gradient: specifier: ~12.5.0 - version: 12.5.0(expo@49.0.13) + version: 12.5.0(expo@49.0.16) expo-linking: specifier: ~6.0.0 - version: 6.0.0(expo@49.0.13) + version: 6.0.0(expo@49.0.16) expo-localization: specifier: ^14.5.0 - version: 14.5.0(expo@49.0.13) + version: 14.5.0(expo@49.0.16) expo-router: - specifier: 2.0.8 - version: 2.0.8(expo-constants@14.4.2)(expo-linking@6.0.0)(expo-modules-autolinking@1.5.1)(expo-status-bar@1.7.1)(expo@49.0.13)(metro@0.79.1)(react-dom@18.2.0)(react-native-gesture-handler@2.13.1)(react-native-reanimated@3.5.4)(react-native-safe-area-context@4.7.2)(react-native-screens@3.25.0)(react-native@0.72.5)(react@18.2.0) + specifier: 2.0.9 + version: 2.0.9(expo-constants@14.4.2)(expo-linking@6.0.0)(expo-modules-autolinking@1.5.1)(expo-status-bar@1.7.1)(expo@49.0.16)(metro@0.79.1)(react-dom@18.2.0)(react-native-gesture-handler@2.13.3)(react-native-reanimated@3.5.4)(react-native-safe-area-context@4.7.3)(react-native-screens@3.26.0)(react-native@0.72.6)(react@18.2.0) expo-splash-screen: specifier: ~0.22.0 - version: 0.22.0(expo-modules-autolinking@1.5.1)(expo@49.0.13) + version: 0.22.0(expo-modules-autolinking@1.5.1)(expo@49.0.16) expo-status-bar: specifier: ~1.7.1 version: 1.7.1 expo-system-ui: specifier: ~2.6.0 - version: 2.6.0(expo@49.0.13) + version: 2.6.0(expo@49.0.16) expo-web-browser: specifier: ~12.5.0 - version: 12.5.0(expo@49.0.13) + version: 12.5.0(expo@49.0.16) formik: specifier: ^2.4.5 version: 2.4.5(react@18.2.0) i18next: - specifier: ^23.5.1 - version: 23.5.1 + specifier: ^23.6.0 + version: 23.6.0 metro: specifier: ^0.79.1 version: 0.79.1 @@ -276,7 +276,7 @@ importers: version: 6.10.2 mobx-react: specifier: ^9.0.1 - version: 9.0.1(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) + version: 9.0.1(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) react: specifier: ^18.2.0 version: 18.2.0 @@ -284,51 +284,51 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) react-native: - specifier: 0.72.5 - version: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + specifier: 0.72.6 + version: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) react-native-avoid-softinput: specifier: ^4.0.1 - version: 4.0.1(react-native@0.72.5)(react@18.2.0) + version: 4.0.1(react-native@0.72.6)(react@18.2.0) react-native-gesture-handler: - specifier: ~2.13.1 - version: 2.13.1(react-native@0.72.5)(react@18.2.0) + specifier: ~2.13.3 + version: 2.13.3(react-native@0.72.6)(react@18.2.0) react-native-reanimated: specifier: ~3.5.4 - version: 3.5.4(@babel/core@7.23.0)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.5)(react@18.2.0) + version: 3.5.4(@babel/core@7.23.2)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.6)(react@18.2.0) react-native-safe-area-context: - specifier: 4.7.2 - version: 4.7.2(react-native@0.72.5)(react@18.2.0) + specifier: 4.7.3 + version: 4.7.3(react-native@0.72.6)(react@18.2.0) react-native-screens: - specifier: ~3.25.0 - version: 3.25.0(react-native@0.72.5)(react@18.2.0) + specifier: ~3.26.0 + version: 3.26.0(react-native@0.72.6)(react@18.2.0) react-native-svg: specifier: 13.9.0 - version: 13.9.0(react-native@0.72.5)(react@18.2.0) + version: 13.9.0(react-native@0.72.6)(react@18.2.0) react-native-url-polyfill: specifier: ^2.0.0 - version: 2.0.0(react-native@0.72.5) + version: 2.0.0(react-native@0.72.6) react-native-web: specifier: ~0.19.6 version: 0.19.6(react-dom@18.2.0)(react@18.2.0) supertokens-react-native: specifier: ^4.0.7 - version: 4.0.7(@react-native-async-storage/async-storage@1.19.3)(axios@1.5.1)(react-native@0.72.5) + version: 4.0.7(@react-native-async-storage/async-storage@1.19.3)(axios@1.5.1)(react-native@0.72.6) tamagui: - specifier: ^1.74.1 - version: 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.5)(react@18.2.0) + specifier: ^1.75.1 + version: 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.6)(react@18.2.0) devDependencies: '@babel/core': - specifier: ^7.23.0 - version: 7.23.0 + specifier: ^7.23.2 + version: 7.23.2 '@types/react': - specifier: ~18.2.23 - version: 18.2.23 + specifier: ~18.2.31 + version: 18.2.31 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + version: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) jest-expo: specifier: ~49.0.0 - version: 49.0.0(@babel/core@7.23.0)(jest@29.7.0)(react@18.2.0) + version: 49.0.0(@babel/core@7.23.2)(jest@29.7.0)(react@18.2.0) react-test-renderer: specifier: 18.2.0 version: 18.2.0(react@18.2.0) @@ -366,8 +366,8 @@ packages: source-map: 0.7.4 dev: true - /@angular-devkit/core@16.2.0(chokidar@3.5.3): - resolution: {integrity: sha512-l1k6Rqm3YM16BEn3CWyQKrk9xfu+2ux7Bw3oS+h1TO4/RoxO2PgHj8LLRh/WNrYVarhaqO7QZ5ePBkXNMkzJ1g==} + /@angular-devkit/core@16.2.7(chokidar@3.5.3): + resolution: {integrity: sha512-XskObYrg7NRdEuHnSVZOM7OeinEL8HzugjmKnawAa+dAbFCCoGsVWjMliA/Q8sb1yfGkyL0WW7DZABZj7EGwWA==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^3.5.2 @@ -379,17 +379,18 @@ packages: ajv-formats: 2.1.1(ajv@8.12.0) chokidar: 3.5.3 jsonc-parser: 3.2.0 + picomatch: 2.3.1 rxjs: 7.8.1 source-map: 0.7.4 dev: true - /@angular-devkit/schematics-cli@16.2.0(chokidar@3.5.3): - resolution: {integrity: sha512-f3HjrDvSrRMvESogLsqsZXsEg//trIBySCHRXCglPrWLVdBbIRctGOhXqZoclRxXimIKUx14zLsOWzDwZG8+HQ==} + /@angular-devkit/schematics-cli@16.2.7(chokidar@3.5.3): + resolution: {integrity: sha512-K10EE3qtSv4AoI3gnCNT80BbDNMK6UmpM8w0sd08hlNC4SCfzp+OFszV0AW29A5VK3zkbDQLJ6PL4wnNN4iuDQ==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/core': 16.2.0(chokidar@3.5.3) - '@angular-devkit/schematics': 16.2.0(chokidar@3.5.3) + '@angular-devkit/core': 16.2.7(chokidar@3.5.3) + '@angular-devkit/schematics': 16.2.7(chokidar@3.5.3) ansi-colors: 4.1.3 inquirer: 8.2.4 symbol-observable: 4.0.0 @@ -411,11 +412,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics@16.2.0(chokidar@3.5.3): - resolution: {integrity: sha512-QMDJXPE0+YQJ9Ap3MMzb0v7rx6ZbBEokmHgpdIjN3eILYmbAdsSGE8HTV8NjS9nKmcyE9OGzFCMb7PFrDTlTAw==} + /@angular-devkit/schematics@16.2.7(chokidar@3.5.3): + resolution: {integrity: sha512-zu3xHwA4w+kXHkyyjGl3i7uSU2/kKLPKuyyixw0WLcKUQCYd7TWmu8OC0qCDa42XkxP9gGL091dJFu56exgneA==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 16.2.0(chokidar@3.5.3) + '@angular-devkit/core': 16.2.7(chokidar@3.5.3) jsonc-parser: 3.2.0 magic-string: 0.30.1 ora: 5.4.1 @@ -440,15 +441,15 @@ packages: resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==} engines: {node: '>=6.9.0'} - /@babel/core@7.23.0: - resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==} + /@babel/core@7.23.2: + resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.13 '@babel/generator': 7.23.0 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helpers': 7.23.2 '@babel/parser': 7.23.0 '@babel/template': 7.22.15 @@ -495,42 +496,42 @@ packages: lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0): + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: false - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.0): + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: false - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.0): + /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2): resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 @@ -570,13 +571,13 @@ packages: dependencies: '@babel/types': 7.23.0 - /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0): + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 @@ -594,25 +595,25 @@ packages: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.0): + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 dev: false - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.0): + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -683,116 +684,116 @@ packages: dependencies: '@babel/types': 7.23.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.0): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.0): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.0): + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.0): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-proposal-decorators@7.23.2(@babel/core@7.23.0): + /@babel/plugin-proposal-decorators@7.23.2(@babel/core@7.23.2): resolution: {integrity: sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.0) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-export-default-from@7.22.17(@babel/core@7.23.0): + /@babel/plugin-proposal-export-default-from@7.22.17(@babel/core@7.23.2): resolution: {integrity: sha512-cop/3quQBVvdz6X5SJC6AhUv3C9DrVTM06LUEXimEdWAhCSyOJIr9NiZDU9leHZ0/aiG0Sh7Zmvaku5TWYNgbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.0): + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.0): + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.0): + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.0): + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. @@ -800,1024 +801,1024 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.0): + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.0): + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 dev: false - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.0): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.0): + /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.2): resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.23.0): + /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.0): + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.0): + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.0): + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.0): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0): + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.0): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.0): + /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2): resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.0): + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.0): + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: false - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 dev: false - /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.0): + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.0): + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.0): + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.0): + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: false - /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.0): + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 dev: false - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-object-assign@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-object-assign@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-iDhx9ARkXq4vhZ2CYOSnQXkmxkDgosLi3J8Z17mKz7LyzthtkdVchLD7WZ3aXeCuvJDOW3+1I5TpJmwIbF9MKQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.0): + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.0): + /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2): resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.0): + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.0): + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2): resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.0): + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) '@babel/types': 7.23.0 dev: false - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.0): + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2): resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: false - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.0): + /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.2): resolution: {integrity: sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.0) - babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.0) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.0) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: false - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.0): + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) dev: false - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.0): + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2): resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.0): + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/preset-env@7.23.2(@babel/core@7.23.0): + /@babel/preset-env@7.23.2(@babel/core@7.23.2): resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.0) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.0) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.0) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.0) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.0) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.0) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) '@babel/types': 7.23.0 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.0) - babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.0) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.0) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) core-js-compat: 3.33.1 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: false - /@babel/preset-flow@7.22.15(@babel/core@7.23.0): + /@babel/preset-flow@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) dev: false - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.0): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/types': 7.23.0 esutils: 2.0.3 dev: false - /@babel/preset-typescript@7.23.2(@babel/core@7.23.0): + /@babel/preset-typescript@7.23.2(@babel/core@7.23.2): resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2) dev: false - /@babel/register@7.22.15(@babel/core@7.23.0): + /@babel/register@7.22.15(@babel/core@7.23.2): resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -1876,26 +1877,18 @@ packages: '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 - /@bacons/react-views@1.1.3(react-native@0.72.5): + /@bacons/react-views@1.1.3(react-native@0.72.6): resolution: {integrity: sha512-aLipQAkQKRzG64e28XHBpByyBPfANz0A6POqYHGyryHizG9vLCLNQwLe8gwFANEMBWW2Mx5YdQ7RkNdQMQ+CXQ==} peerDependencies: react-native: '*' dependencies: - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@changesets/types@0.4.0: - resolution: {integrity: sha512-TclHHKDVYQ8rJGZgVeWiF7c91yWzTTWdPagltgutelGu/Psup5PQlUq6svx7S8suj+jXcaE34yEEsfIvzXXB2Q==} - dev: false - - /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: false - /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} @@ -1917,6 +1910,19 @@ packages: '@types/hammerjs': 2.0.43 dev: false + /@emotion/is-prop-valid@0.8.8: + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + requiresBuild: true + dependencies: + '@emotion/memoize': 0.7.4 + dev: false + optional: true + + /@emotion/memoize@0.7.4: + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + dev: false + optional: true + /@esbuild/android-arm64@0.19.5: resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==} engines: {node: '>=12'} @@ -2115,13 +2121,13 @@ packages: dev: false optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.49.0 + eslint: 8.52.0 eslint-visitor-keys: 3.4.3 /@eslint-community/regexpp@4.9.1: @@ -2144,8 +2150,8 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/js@8.49.0: - resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==} + /@eslint/js@8.52.0: + resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} /@expo/bunyan@4.0.0: @@ -2158,8 +2164,8 @@ packages: safe-json-stringify: 1.2.0 dev: false - /@expo/cli@0.10.13(expo-modules-autolinking@1.5.1): - resolution: {integrity: sha512-8ciyz+yIDih6zCNMWK0IyEv411W7vej/TaWIFGarogPVbFokXrUKr0aKoQG1RU1SLlY4eUpHakbIzqog+rhJdQ==} + /@expo/cli@0.10.14(expo-modules-autolinking@1.5.1): + resolution: {integrity: sha512-IIZ9mYYHpNkK9XJAWLPtwTwZmasDq/NJsHLPjLtw5la4ANjWWwKYUcl3XKBECKovSDn9WHEQHGsBz6cyKS88Mg==} hasBin: true dependencies: '@babel/runtime': 7.23.2 @@ -2275,7 +2281,7 @@ packages: getenv: 1.0.0 glob: 7.1.6 resolve-from: 5.0.0 - semver: 7.5.3 + semver: 7.5.4 slash: 3.0.0 xcode: 3.0.1 xml2js: 0.6.0 @@ -2320,7 +2326,7 @@ packages: getenv: 1.0.0 glob: 7.1.6 resolve-from: 5.0.0 - semver: 7.5.3 + semver: 7.5.4 slash: 3.0.0 xcode: 3.0.1 xml2js: 0.6.0 @@ -2394,7 +2400,7 @@ packages: '@expo/bunyan': 4.0.0 '@expo/metro-config': 0.10.7 '@expo/osascript': 2.0.33 - '@expo/spawn-async': 1.5.0 + '@expo/spawn-async': 1.7.2 body-parser: 1.20.2 chalk: 4.1.2 connect: 3.7.0 @@ -2502,21 +2508,21 @@ packages: - supports-color dev: false - /@expo/metro-runtime@2.2.10(react-native@0.72.5): - resolution: {integrity: sha512-4lEHpOpm7FFwnNsD985eZFtcf32WakD8wSGZmfqc/bkBks076PUb5qIfTgJviGEHF9OAuic+htQi/IcbEdBr9w==} + /@expo/metro-runtime@2.2.11(react-native@0.72.6): + resolution: {integrity: sha512-+XtEr1qbtjTH3exdxT6KUISp+C+KYVg1Ol4cgODlCsNcwmUjJmcs56JdE9IGoG2hX8Uhp/B6hbLS/+0nUWOG0Q==} peerDependencies: react-native: '*' dependencies: - '@bacons/react-views': 1.1.3(react-native@0.72.5) + '@bacons/react-views': 1.1.3(react-native@0.72.6) qs: 6.11.2 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /@expo/osascript@2.0.33: resolution: {integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==} engines: {node: '>=12'} dependencies: - '@expo/spawn-async': 1.5.0 + '@expo/spawn-async': 1.7.2 exec-async: 2.2.0 dev: false @@ -2524,7 +2530,7 @@ packages: resolution: {integrity: sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==} dependencies: '@expo/json-file': 8.2.37 - '@expo/spawn-async': 1.5.0 + '@expo/spawn-async': 1.7.2 ansi-regex: 5.0.1 chalk: 4.1.2 find-up: 5.0.0 @@ -2555,7 +2561,7 @@ packages: '@expo/json-file': 8.2.37 debug: 4.3.4 expo-modules-autolinking: 1.5.1 - fs-extra: 9.0.0 + fs-extra: 9.1.0 resolve-from: 5.0.0 semver: 7.5.3 xml2js: 0.6.0 @@ -2655,7 +2661,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@floating-ui/react-native@0.10.1(react-native@0.72.5)(react@18.2.0): + /@floating-ui/react-native@0.10.1(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-+GdYTrcZ9pD6+l63YU8hqCDZGsUeP4351kLY6dgjXUDYXYCr7M0rWnTWigVMOyafnDrTRXWxZxJbHo180+uFvQ==} peerDependencies: react: '>=16.8.0' @@ -2663,7 +2669,7 @@ packages: dependencies: '@floating-ui/core': 1.5.0 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /@floating-ui/react@0.24.8(react-dom@18.2.0)(react@18.2.0): @@ -2722,6 +2728,17 @@ packages: /@humanwhocodes/object-schema@2.0.1: resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} @@ -2743,7 +2760,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -2764,14 +2781,14 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -2805,7 +2822,7 @@ packages: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 jest-mock: 29.7.0 /@jest/expect-utils@29.7.0: @@ -2831,7 +2848,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.6.2 + '@types/node': 20.8.7 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -2863,7 +2880,7 @@ packages: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.20 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -2924,7 +2941,7 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 @@ -2949,7 +2966,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.5 '@types/istanbul-reports': 3.0.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 '@types/yargs': 15.0.17 chalk: 4.1.2 dev: false @@ -2960,7 +2977,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.5 '@types/istanbul-reports': 3.0.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 '@types/yargs': 16.0.7 chalk: 4.1.2 dev: false @@ -2972,7 +2989,7 @@ packages: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.5 '@types/istanbul-reports': 3.0.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 '@types/yargs': 17.0.29 chalk: 4.1.2 @@ -3018,17 +3035,16 @@ packages: resolution: {integrity: sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==} engines: {node: '>=8'} - /@manypkg/cli@0.19.1: - resolution: {integrity: sha512-EXBPPh6wYSKmSD5DdUjNG2rc55C2G/poIJ0D3O8tnk83o3nZh8g94JwN5/AumbSsDZ0yagmkS+DChNlRhIUG7w==} + /@manypkg/cli@0.21.0: + resolution: {integrity: sha512-q/JF25il2EXtyPpc5U/Pp7TMgJot/WmFkyh7M9FiutQkliHp58UqUxIPeUObLu9EtoAp/uP21t+TMDsq1DMbeg==} + engines: {node: '>=14.18.0'} hasBin: true dependencies: - '@babel/runtime': 7.18.9 - '@manypkg/get-packages': 1.1.3 + '@manypkg/get-packages': 2.2.0 chalk: 2.4.2 detect-indent: 6.1.0 find-up: 4.1.0 fs-extra: 8.1.0 - get-workspaces: 0.6.0 normalize-path: 3.0.0 p-limit: 2.3.0 package-json: 6.5.0 @@ -3037,41 +3053,85 @@ packages: semver: 6.3.1 spawndamnit: 2.0.0 validate-npm-package-name: 3.0.0 - transitivePeerDependencies: - - supports-color dev: false - /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + /@manypkg/find-root@2.2.1: + resolution: {integrity: sha512-34NlypD5mmTY65cFAK7QPgY5Tzt0qXR4ZRXdg97xAlkiLuwXUPBEXy5Hsqzd+7S2acsLxUz6Cs50rlDZQr4xUA==} + engines: {node: '>=14.18.0'} dependencies: - '@babel/runtime': 7.18.9 - '@types/node': 12.20.55 + '@manypkg/tools': 1.1.0 find-up: 4.1.0 fs-extra: 8.1.0 dev: false - /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + /@manypkg/get-packages@2.2.0: + resolution: {integrity: sha512-B5p5BXMwhGZKi/syEEAP1eVg5DZ/9LP+MZr0HqfrHLgu9fq0w4ZwH8yVen4JmjrxI2dWS31dcoswYzuphLaRxg==} + engines: {node: '>=14.18.0'} + dependencies: + '@manypkg/find-root': 2.2.1 + '@manypkg/tools': 1.1.0 + dev: false + + /@manypkg/tools@1.1.0: + resolution: {integrity: sha512-SkAyKAByB9l93Slyg8AUHGuM2kjvWioUTCckT/03J09jYnfEzMO/wSXmEhnKGYs6qx9De8TH4yJCl0Y9lRgnyQ==} + engines: {node: '>=14.18.0'} dependencies: - '@babel/runtime': 7.18.9 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 + jju: 1.4.0 read-yaml-file: 1.1.0 dev: false - /@mrmlnc/readdir-enhanced@2.2.1: - resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} - engines: {node: '>=4'} + /@motionone/animation@10.16.3: + resolution: {integrity: sha512-QUGWpLbMFLhyqKlngjZhjtxM8IqiJQjLK0DF+XOF6od9nhSvlaeEpOY/UMCRVcZn/9Tr2rZO22EkuCIjYdI74g==} dependencies: - call-me-maybe: 1.0.2 - glob-to-regexp: 0.3.0 + '@motionone/easing': 10.16.3 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 dev: false - /@nestjs/cli@10.1.17: - resolution: {integrity: sha512-jUEnR2DgC15Op+IhcRWb6cyJrhec9CUQO+GtxCF2Dv9MwLcr4sTDq1UOkfs09HAhpuI8otgF2LoWGTlW3qRuqg==} - engines: {node: '>= 16'} + /@motionone/dom@10.12.0: + resolution: {integrity: sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==} + dependencies: + '@motionone/animation': 10.16.3 + '@motionone/generators': 10.16.4 + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + hey-listen: 1.0.8 + tslib: 2.6.2 + dev: false + + /@motionone/easing@10.16.3: + resolution: {integrity: sha512-HWTMZbTmZojzwEuKT/xCdvoMPXjYSyQvuVM6jmM0yoGU6BWzsmYMeB4bn38UFf618fJCNtP9XeC/zxtKWfbr0w==} + dependencies: + '@motionone/utils': 10.16.3 + tslib: 2.6.2 + dev: false + + /@motionone/generators@10.16.4: + resolution: {integrity: sha512-geFZ3w0Rm0ZXXpctWsSf3REGywmLLujEjxPYpBR0j+ymYwof0xbV6S5kGqqsDKgyWKVWpUInqQYvQfL6fRbXeg==} + dependencies: + '@motionone/types': 10.16.3 + '@motionone/utils': 10.16.3 + tslib: 2.6.2 + dev: false + + /@motionone/types@10.16.3: + resolution: {integrity: sha512-W4jkEGFifDq73DlaZs3HUfamV2t1wM35zN/zX7Q79LfZ2sc6C0R1baUHZmqc/K5F3vSw3PavgQ6HyHLd/MXcWg==} + dev: false + + /@motionone/utils@10.16.3: + resolution: {integrity: sha512-WNWDksJIxQkaI9p9Z9z0+K27xdqISGNFy1SsWVGaiedTHq0iaT6iZujby8fT/ZnZxj1EOaxJtSfUPCFNU5CRoA==} + dependencies: + '@motionone/types': 10.16.3 + hey-listen: 1.0.8 + tslib: 2.6.2 + dev: false + + /@nestjs/cli@10.2.0: + resolution: {integrity: sha512-OMbn6A/YNu7QSk1nM8VucrtUwocaa0XEa9uoqRpw5Acvh/KIetvMHCn8L6yIBxiK7yvYiKa8q9U+RpLsKpKfgw==} + engines: {node: '>= 16.14'} hasBin: true peerDependencies: '@swc/cli': ^0.1.62 @@ -3082,15 +3142,16 @@ packages: '@swc/core': optional: true dependencies: - '@angular-devkit/core': 16.2.0(chokidar@3.5.3) - '@angular-devkit/schematics': 16.2.0(chokidar@3.5.3) - '@angular-devkit/schematics-cli': 16.2.0(chokidar@3.5.3) - '@nestjs/schematics': 10.0.2(chokidar@3.5.3)(typescript@5.1.6) + '@angular-devkit/core': 16.2.7(chokidar@3.5.3) + '@angular-devkit/schematics': 16.2.7(chokidar@3.5.3) + '@angular-devkit/schematics-cli': 16.2.7(chokidar@3.5.3) + '@nestjs/schematics': 10.0.2(chokidar@3.5.3)(typescript@5.2.2) chalk: 4.1.2 chokidar: 3.5.3 cli-table3: 0.6.3 commander: 4.1.1 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.88.2) + fork-ts-checker-webpack-plugin: 9.0.0(typescript@5.2.2)(webpack@5.89.0) + glob: 10.3.4 inquirer: 8.2.6 node-emoji: 1.11.0 ora: 5.4.1 @@ -3101,8 +3162,8 @@ packages: tree-kill: 1.2.2 tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.1.0 - typescript: 5.1.6 - webpack: 5.88.2 + typescript: 5.2.2 + webpack: 5.89.0 webpack-node-externals: 3.0.0 transitivePeerDependencies: - esbuild @@ -3110,8 +3171,8 @@ packages: - webpack-cli dev: true - /@nestjs/common@10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1): - resolution: {integrity: sha512-2BfkPZKmTVxflm8bhmClKKcHwhlyweEfbM25g7ldXIK9+utCPVXqBfZGORj2L8QagiT6bei48FJmGc2S1tiFEQ==} + /@nestjs/common@10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1): + resolution: {integrity: sha512-cUtCRXiUstDmh4bSBhVbq4cI439Gngp4LgLGLBmd5dqFQodfXKnSD441ldYfFiLz4rbUsnoMJz/8ZjuIEI+B7A==} peerDependencies: class-transformer: '*' class-validator: '*' @@ -3131,13 +3192,13 @@ packages: tslib: 2.6.2 uid: 2.0.2 - /@nestjs/config@3.1.1(@nestjs/common@10.2.5)(reflect-metadata@0.1.13): + /@nestjs/config@3.1.1(@nestjs/common@10.2.7)(reflect-metadata@0.1.13): resolution: {integrity: sha512-qu5QlNiJdqQtOsnB6lx4JCXPQ96jkKUsOGd+JXfXwqJqZcOSAq6heNFg0opW4pq4J/VZoNwoo87TNnx9wthnqQ==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 reflect-metadata: ^0.1.13 dependencies: - '@nestjs/common': 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) dotenv: 16.3.1 dotenv-expand: 10.0.0 lodash: 4.17.21 @@ -3145,8 +3206,8 @@ packages: uuid: 9.0.0 dev: false - /@nestjs/core@10.2.5(@nestjs/common@10.2.5)(@nestjs/platform-express@10.2.5)(reflect-metadata@0.1.13)(rxjs@7.8.1): - resolution: {integrity: sha512-O9AycZc4MjzIFrvCxcQVqfSNuN9eHZrfyVcYkp9CMPj6lGd9TQCZX2MmaP1CWs4UJBmTKflPdtPJ0sj9iIuvLQ==} + /@nestjs/core@10.2.7(@nestjs/common@10.2.7)(@nestjs/platform-express@10.2.7)(reflect-metadata@0.1.13)(rxjs@7.8.1): + resolution: {integrity: sha512-5GSu53QUUcwX17sNmlJPa1I0wIeAZOKbedyVuQx0ZAwWVa9g0wJBbsNP+R4EJ+j5Dkdzt/8xkiZvnKt8RFRR8g==} requiresBuild: true peerDependencies: '@nestjs/common': ^10.0.0 @@ -3163,8 +3224,8 @@ packages: '@nestjs/websockets': optional: true dependencies: - '@nestjs/common': 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/platform-express': 10.2.5(@nestjs/common@10.2.5)(@nestjs/core@10.2.5) + '@nestjs/common': 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': 10.2.7(@nestjs/common@10.2.7)(@nestjs/core@10.2.7) '@nuxtjs/opencollective': 0.3.2 fast-safe-stringify: 2.1.1 iterare: 1.2.1 @@ -3176,12 +3237,12 @@ packages: transitivePeerDependencies: - encoding - /@nestjs/jwt@10.1.1(@nestjs/common@10.2.5): + /@nestjs/jwt@10.1.1(@nestjs/common@10.2.7): resolution: {integrity: sha512-sISYylg8y1Mb7saxPx5Zh11i7v9JOh70CEC/rN6g43MrbFlJ57c1eYFrffxip1YAx3DmV4K67yXob3syKZMOew==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 dependencies: - '@nestjs/common': 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@types/jsonwebtoken': 9.0.2 jsonwebtoken: 9.0.0 dev: false @@ -3198,14 +3259,14 @@ packages: reflect-metadata: 0.1.13 dev: false - /@nestjs/platform-express@10.2.5(@nestjs/common@10.2.5)(@nestjs/core@10.2.5): - resolution: {integrity: sha512-BChjJfsVtsvds31rp5V7LwM2XEQaxkFKUE0TGSH91m95FRO65Fii5RH6atasmhZTIW+T8LR5LuI/MO7cgZOiVg==} + /@nestjs/platform-express@10.2.7(@nestjs/common@10.2.7)(@nestjs/core@10.2.7): + resolution: {integrity: sha512-p+kp6aJtkgAdVpUrCVmM6MKtOvjsbt7QofBiZMidjYesZkMeG5gZ1D2SK8XzvQ8VXHJfFgEdY2xcKGB+wJLOYQ==} peerDependencies: '@nestjs/common': ^10.0.0 '@nestjs/core': ^10.0.0 dependencies: - '@nestjs/common': 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.5(@nestjs/common@10.2.5)(@nestjs/platform-express@10.2.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.7(@nestjs/common@10.2.7)(@nestjs/platform-express@10.2.7)(reflect-metadata@0.1.13)(rxjs@7.8.1) body-parser: 1.20.2 cors: 2.8.5 express: 4.18.2 @@ -3214,22 +3275,7 @@ packages: transitivePeerDependencies: - supports-color - /@nestjs/schematics@10.0.2(chokidar@3.5.3)(typescript@5.1.6): - resolution: {integrity: sha512-DaZZjymYoIfRqC5W62lnYXIIods1PDY6CGc8+IpRwyinzffjKxZ3DF3exu+mdyvllzkXo9DTXkoX4zOPSJHCkw==} - peerDependencies: - typescript: '>=4.8.2' - dependencies: - '@angular-devkit/core': 16.1.8(chokidar@3.5.3) - '@angular-devkit/schematics': 16.1.8(chokidar@3.5.3) - comment-json: 4.2.3 - jsonc-parser: 3.2.0 - pluralize: 8.0.0 - typescript: 5.1.6 - transitivePeerDependencies: - - chokidar - dev: true - - /@nestjs/schematics@10.0.2(typescript@5.2.2): + /@nestjs/schematics@10.0.2(chokidar@3.5.3)(typescript@5.2.2): resolution: {integrity: sha512-DaZZjymYoIfRqC5W62lnYXIIods1PDY6CGc8+IpRwyinzffjKxZ3DF3exu+mdyvllzkXo9DTXkoX4zOPSJHCkw==} peerDependencies: typescript: '>=4.8.2' @@ -3244,7 +3290,7 @@ packages: - chokidar dev: true - /@nestjs/serve-static@4.0.0(@nestjs/common@10.2.5)(@nestjs/core@10.2.5)(express@4.18.2): + /@nestjs/serve-static@4.0.0(@nestjs/common@10.2.7)(@nestjs/core@10.2.7)(express@4.18.2): resolution: {integrity: sha512-8cTrNV2ngdHIjiLNsXePnw0+KY1ThrZGz/WeyAG5gIvmZNDbnZBOrPoYlKL+MOzlXlQStxR5jKLYmn+nJeoncQ==} peerDependencies: '@fastify/static': ^6.5.0 @@ -3260,14 +3306,14 @@ packages: fastify: optional: true dependencies: - '@nestjs/common': 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.5(@nestjs/common@10.2.5)(@nestjs/platform-express@10.2.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.7(@nestjs/common@10.2.7)(@nestjs/platform-express@10.2.7)(reflect-metadata@0.1.13)(rxjs@7.8.1) express: 4.18.2 path-to-regexp: 0.2.5 dev: false - /@nestjs/testing@10.2.5(@nestjs/common@10.2.5)(@nestjs/core@10.2.5)(@nestjs/platform-express@10.2.5): - resolution: {integrity: sha512-CaM8STNVyDdMhYnDD6aYnVWPz2ienrSDgMl7nkCAC0wcvKhldWuXQ2syTvQE243IIFOX/bMNuW3MsiqbaXfXxQ==} + /@nestjs/testing@10.2.7(@nestjs/common@10.2.7)(@nestjs/core@10.2.7)(@nestjs/platform-express@10.2.7): + resolution: {integrity: sha512-d2SIqiJIf/7NSILeNNWSdRvTTpHSouGgisGHwf5PVDC7z4/yXZw/wPO9eJhegnxFlqk6n2LW4QBTmMzbqjAfHA==} peerDependencies: '@nestjs/common': ^10.0.0 '@nestjs/core': ^10.0.0 @@ -3279,9 +3325,9 @@ packages: '@nestjs/platform-express': optional: true dependencies: - '@nestjs/common': 10.2.5(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.5(@nestjs/common@10.2.5)(@nestjs/platform-express@10.2.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/platform-express': 10.2.5(@nestjs/common@10.2.5)(@nestjs/core@10.2.5) + '@nestjs/common': 10.2.7(class-transformer@0.2.3)(class-validator@0.11.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.7(@nestjs/common@10.2.7)(@nestjs/platform-express@10.2.7)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': 10.2.7(@nestjs/common@10.2.7)(@nestjs/core@10.2.7) tslib: 2.6.2 dev: true @@ -3292,11 +3338,6 @@ packages: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat@1.1.3: - resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} - engines: {node: '>= 6'} - dev: false - /@nodelib/fs.stat@2.0.5: resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} engines: {node: '>= 8'} @@ -3315,11 +3356,10 @@ packages: semver: 7.5.4 dev: false - /@npmcli/fs@2.1.2: - resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /@npmcli/fs@3.1.0: + resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - '@gar/promisify': 1.1.3 semver: 7.5.4 dev: false @@ -3332,15 +3372,6 @@ packages: rimraf: 3.0.2 dev: false - /@npmcli/move-file@2.0.1: - resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - deprecated: This functionality has been moved to @npmcli/fs - dependencies: - mkdirp: 1.0.4 - rimraf: 3.0.2 - dev: false - /@nuxtjs/opencollective@0.3.2: resolution: {integrity: sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==} engines: {node: '>=8.0.0', npm: '>=5.0.0'} @@ -3356,6 +3387,12 @@ packages: resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} dev: false + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true + optional: true + /@pkgr/utils@2.4.2: resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} @@ -3373,7 +3410,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.23.2 react: 18.2.0 dev: false @@ -3382,7 +3419,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.23.2 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -3397,13 +3434,13 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-native-async-storage/async-storage@1.19.3(react-native@0.72.5): + /@react-native-async-storage/async-storage@1.19.3(react-native@0.72.6): resolution: {integrity: sha512-CwGfoHCWdPOTPS+2fW6YRE1fFBpT9++ahLEroX5hkgwyoQ+TkmjOaUxixdEIoVua9Pz5EF2pGOIJzqOTMWfBlA==} peerDependencies: react-native: ^0.0.0-0 || 0.60 - 0.72 || 1000.0.0 dependencies: merge-options: 3.0.4 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /@react-native-community/cli-clean@11.3.7: @@ -3500,7 +3537,7 @@ packages: - encoding dev: false - /@react-native-community/cli-plugin-metro@11.3.7(@babel/core@7.23.0): + /@react-native-community/cli-plugin-metro@11.3.7(@babel/core@7.23.2): resolution: {integrity: sha512-0WhgoBVGF1f9jXcuagQmtxpwpfP+2LbLZH4qMyo6OtYLWLG13n2uRep+8tdGzfNzl1bIuUTeE9yZSAdnf9LfYQ==} dependencies: '@react-native-community/cli-server-api': 11.3.7 @@ -3510,7 +3547,7 @@ packages: metro: 0.76.8 metro-config: 0.76.8 metro-core: 0.76.8 - metro-react-native-babel-transformer: 0.76.8(@babel/core@7.23.0) + metro-react-native-babel-transformer: 0.76.8(@babel/core@7.23.2) metro-resolver: 0.76.8 metro-runtime: 0.76.8 readline: 1.3.0 @@ -3563,7 +3600,7 @@ packages: joi: 17.11.0 dev: false - /@react-native-community/cli@11.3.7(@babel/core@7.23.0): + /@react-native-community/cli@11.3.7(@babel/core@7.23.2): resolution: {integrity: sha512-Ou8eDlF+yh2rzXeCTpMPYJ2fuqsusNOhmpYPYNQJQ2h6PvaF30kPomflgRILems+EBBuggRtcT+I+1YH4o/q6w==} engines: {node: '>=16'} hasBin: true @@ -3573,7 +3610,7 @@ packages: '@react-native-community/cli-debugger-ui': 11.3.7 '@react-native-community/cli-doctor': 11.3.7 '@react-native-community/cli-hermes': 11.3.7 - '@react-native-community/cli-plugin-metro': 11.3.7(@babel/core@7.23.0) + '@react-native-community/cli-plugin-metro': 11.3.7(@babel/core@7.23.2) '@react-native-community/cli-server-api': 11.3.7 '@react-native-community/cli-tools': 11.3.7 '@react-native-community/cli-types': 11.3.7 @@ -3593,7 +3630,7 @@ packages: - utf-8-validate dev: false - /@react-native-google-signin/google-signin@10.0.1(expo@49.0.13)(react-native@0.72.5)(react@18.2.0): + /@react-native-google-signin/google-signin@10.0.1(expo@49.0.16)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-oZoU2lfKyn0s0GqqdFsi4v2FSENrxQYQU9DD/RSkxDdkIQ49Wwo6p5LKlgXY04GwZEVdYMuvZN3G89gQW0ig2g==} peerDependencies: expo: '>=47.0.0' @@ -3603,9 +3640,9 @@ packages: expo: optional: true dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /@react-native/assets-registry@0.72.0: @@ -3618,7 +3655,7 @@ packages: '@babel/preset-env': ^7.1.6 dependencies: '@babel/parser': 7.23.0 - '@babel/preset-env': 7.23.2(@babel/core@7.23.0) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) flow-parser: 0.206.0 jscodeshift: 0.14.0(@babel/preset-env@7.23.2) nullthrows: 1.1.1 @@ -3641,17 +3678,17 @@ packages: resolution: {integrity: sha512-285lfdqSXaqKuBbbtP9qL2tDrfxdOFtIMvkKadtleRQkdOxx+uzGvFr82KHmc/sSiMtfXGp7JnFYWVh4sFl7Yw==} dev: false - /@react-native/virtualized-lists@0.72.8(react-native@0.72.5): + /@react-native/virtualized-lists@0.72.8(react-native@0.72.6): resolution: {integrity: sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==} peerDependencies: react-native: '*' dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@react-navigation/bottom-tabs@6.5.11(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native-screens@3.25.0)(react-native@0.72.5)(react@18.2.0): + /@react-navigation/bottom-tabs@6.5.11(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native-screens@3.26.0)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-CBN/NOdxnMvmjw+AJQI1kltOYaClTZmGec5pQ3ZNTPX86ytbIOylDIITKMfTgHZcIEFQDymx1SHeS++PIL3Szw==} peerDependencies: '@react-navigation/native': ^6.0.0 @@ -3660,13 +3697,13 @@ packages: react-native-safe-area-context: '>= 3.0.0' react-native-screens: '>= 3.0.0' dependencies: - '@react-navigation/elements': 1.3.21(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native@0.72.5)(react@18.2.0) - '@react-navigation/native': 6.1.8(react-native@0.72.5)(react@18.2.0) + '@react-navigation/elements': 1.3.21(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native@0.72.6)(react@18.2.0) + '@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0) color: 4.2.3 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) - react-native-safe-area-context: 4.7.2(react-native@0.72.5)(react@18.2.0) - react-native-screens: 3.25.0(react-native@0.72.5)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native-safe-area-context: 4.7.3(react-native@0.72.6)(react@18.2.0) + react-native-screens: 3.26.0(react-native@0.72.6)(react@18.2.0) warn-once: 0.1.1 dev: false @@ -3684,7 +3721,7 @@ packages: use-latest-callback: 0.1.7(react@18.2.0) dev: false - /@react-navigation/elements@1.3.21(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native@0.72.5)(react@18.2.0): + /@react-navigation/elements@1.3.21(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-eyS2C6McNR8ihUoYfc166O1D8VYVh9KIl0UQPI8/ZJVsStlfSTgeEEh+WXge6+7SFPnZ4ewzEJdSAHH+jzcEfg==} peerDependencies: '@react-navigation/native': ^6.0.0 @@ -3692,13 +3729,13 @@ packages: react-native: '*' react-native-safe-area-context: '>= 3.0.0' dependencies: - '@react-navigation/native': 6.1.8(react-native@0.72.5)(react@18.2.0) + '@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) - react-native-safe-area-context: 4.7.2(react-native@0.72.5)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native-safe-area-context: 4.7.3(react-native@0.72.6)(react@18.2.0) dev: false - /@react-navigation/native-stack@6.9.16(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native-screens@3.25.0)(react-native@0.72.5)(react@18.2.0): + /@react-navigation/native-stack@6.9.16(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native-screens@3.26.0)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-SrmBGr5YvRxDtdTacOkA/wvqwpt9kt+AsYpmt82hKMPKpu0v98WONedTXDzi6whhY3jeT2GZkwF8hyrJ+wDbTA==} peerDependencies: '@react-navigation/native': ^6.0.0 @@ -3707,17 +3744,17 @@ packages: react-native-safe-area-context: '>= 3.0.0' react-native-screens: '>= 3.0.0' dependencies: - '@react-navigation/elements': 1.3.21(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native@0.72.5)(react@18.2.0) - '@react-navigation/native': 6.1.8(react-native@0.72.5)(react@18.2.0) + '@react-navigation/elements': 1.3.21(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native@0.72.6)(react@18.2.0) + '@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) - react-native-safe-area-context: 4.7.2(react-native@0.72.5)(react@18.2.0) - react-native-screens: 3.25.0(react-native@0.72.5)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native-safe-area-context: 4.7.3(react-native@0.72.6)(react@18.2.0) + react-native-screens: 3.26.0(react-native@0.72.6)(react@18.2.0) warn-once: 0.1.1 dev: false - /@react-navigation/native@6.1.8(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-0alti852nV+8oCVm9H80G6kZvrHoy51+rXBvVCRUs2rNDDozC/xPZs8tyeCJkqdw3cpxZDK8ndXF22uWq28+0Q==} + /@react-navigation/native@6.1.9(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-AMuJDpwXE7UlfyhIXaUCCynXmv69Kb8NzKgKJO7v0k0L+u6xUTbt6xvshmJ79vsvaFyaEH9Jg5FMzek5/S5qNw==} peerDependencies: react: '*' react-native: '*' @@ -3727,7 +3764,7 @@ packages: fast-deep-equal: 3.1.3 nanoid: 3.3.6 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /@react-navigation/routers@6.1.9: @@ -3789,7 +3826,7 @@ packages: defer-to-connect: 1.1.3 dev: false - /@tamagui-extras/core@1.5.0(react-native-svg@13.9.0)(react-native@0.72.5)(react@18.2.0)(tamagui@1.74.1): + /@tamagui-extras/core@1.5.0(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tamagui@1.75.1): resolution: {integrity: sha512-zKsrroiNkwix1OQZVOloa0qc+QK8WBVH/2BFc8UbyWoJRQneWycWfGOF5CA8dpTiJljNMV48P05nOg0Dj9USgQ==} peerDependencies: react: '*' @@ -3798,120 +3835,132 @@ packages: tamagui: 1.29.3 dependencies: react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) - react-native-svg: 13.9.0(react-native@0.72.5)(react@18.2.0) - tamagui: 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.5)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native-svg: 13.9.0(react-native@0.72.6)(react@18.2.0) + tamagui: 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.6)(react@18.2.0) dev: false - /@tamagui-extras/form@1.6.0(react-native-svg@13.9.0)(react-native@0.72.5)(react@18.2.0)(tamagui@1.74.1): - resolution: {integrity: sha512-3j79TQXdHo2Q/4oYCeRbMMI2qRbDacYsUuW8pNu1CRAPzOFHsfeD2iIHH5sup9TmZaGKsbA+Kk8cvy8k1yysAw==} + /@tamagui-extras/form@1.7.0(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tamagui@1.75.1): + resolution: {integrity: sha512-VC4jtn9oADaVEKFva+b77um6/syO8t3tshxAEKSpu4y+fg5PZ6I9t66ekvko2uLYMBouIaSD2ujf8Tw+YIbwEA==} peerDependencies: react: '*' react-native: '*' tamagui: 1.29.3 dependencies: - '@tamagui-extras/core': 1.5.0(react-native-svg@13.9.0)(react-native@0.72.5)(react@18.2.0)(tamagui@1.74.1) + '@tamagui-extras/core': 1.5.0(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tamagui@1.75.1) react: 18.2.0 react-hook-form: 7.47.0(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) - tamagui: 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.5)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) + tamagui: 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.6)(react@18.2.0) transitivePeerDependencies: - react-native-svg dev: false - /@tamagui/accordion@1.74.1(react@18.2.0): - resolution: {integrity: sha512-TJJRW9xZ7nTXpq4O+d3yQhxXnK5QVu+moMhBWwuNCIvICEb2X+QMKVujSWSJeDICsSA2FEND1T72ABVQdg1KEg==} + /@tamagui/accordion@1.75.1(react@18.2.0): + resolution: {integrity: sha512-3BjPsmWtcRxpriN5VHGj/QLCk8zxFw39A5Ful9nYaF/UcAIOSEP6qG0mYTdBV0LlDX3+xZwrdnKts/Js9M56OQ==} peerDependencies: react: '*' dependencies: - '@tamagui/collapsible': 1.74.1(react@18.2.0) - '@tamagui/collection': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/collapsible': 1.75.1(react@18.2.0) + '@tamagui/collection': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/adapt@1.74.1(react@18.2.0): - resolution: {integrity: sha512-j0hpd+SEoVxeUc3TBnXEmoEPzfElEpJArhfg5uMDHTbImFFkR6LQzTYHvwn4qU7n6TkWBF0fSAHAtGP6CHvJow==} + /@tamagui/adapt@1.75.1(react@18.2.0): + resolution: {integrity: sha512-KlYTon57e3bnOqOskB9S7eU7/8WAWtfCq19MMB7X7tQfpapR0GqKJaZgBUU+yXiGam4Gx/NGMluxBgzACOX6gw==} dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/alert-dialog@1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-V/pf63IkJmcXUSi7FdKqTDNEpd5UMkTnwn5upqqQFKtML05K14hW58Zc22PZRqtdNSkKve95GkC9ud8tbVRMwA==} + /@tamagui/alert-dialog@1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-/qKHqrRVXOhFg2IyuJtvVEovL2K4J6EoxMwtEivR3x5kUjvaaiO6+KyJIVoQFpwb2WTkKCea8uC3CUbIWCac5w==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/aria-hidden': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/dialog': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/dismissable': 1.74.1(react@18.2.0) - '@tamagui/focus-scope': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/popper': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/remove-scroll': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/aria-hidden': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/dialog': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/dismissable': 1.75.1(react@18.2.0) + '@tamagui/focus-scope': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/popper': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/remove-scroll': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@tamagui/animate-presence@1.74.1(react@18.2.0): - resolution: {integrity: sha512-YULDUadXON7Y3B4JtaXdG1l3yeE0IzTNBFnvNIwwbmn5sqlt+P8JATnAOR4AYvqMML3+AzqWUsRjRDdk/2vOdA==} + /@tamagui/animate-presence@1.75.1(react@18.2.0): + resolution: {integrity: sha512-M4DAqXzL1aTrI12uk2ljAGJ2vhhVyG2dsnfPvHxYSOzlQcocuxu7AUC8dUhnPKHEBsLPXIBM8HQrEktD5tVVHQ==} + dependencies: + '@tamagui/use-force-update': 1.75.1(react@18.2.0) + '@tamagui/use-presence': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) + transitivePeerDependencies: + - react + dev: false + + /@tamagui/animate@1.75.1(react@18.2.0): + resolution: {integrity: sha512-x+flQ2rBivZ242QFrtLP8cKWbjuzyusvLLq+TeP6WreSa8+wgJKUv8i/bZ5oHOWlyLUbaM3xFK6E1hILh5Wotg==} dependencies: - '@tamagui/use-force-update': 1.74.1(react@18.2.0) - '@tamagui/use-presence': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/animate@1.74.1(react@18.2.0): - resolution: {integrity: sha512-rZMkb531OQxCI1RQvIvzD9FY3fcxbWu8Y6mOHvOFtPZp2ZiWUFkrCcq1H3HFzIyO6GMihrN50PbJt2QHUkXEJg==} + /@tamagui/animations-css@1.75.1(react@18.2.0): + resolution: {integrity: sha512-WGpn+AC9gitzeNpougtIHx1IXuZZlx0WZV3T+yhh+D4E6Keu2REUquzGRwbfmLEBMLPIM52WiRVtzILkri7HZQ==} dependencies: - '@tamagui/animate-presence': 1.74.1(react@18.2.0) + '@tamagui/cubic-bezier-animator': 1.75.1 + '@tamagui/use-presence': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/animations-css@1.74.1(react@18.2.0): - resolution: {integrity: sha512-IVWtxJQRk/Wvd0ZQOhWhwZ9TV71HYOP4MmSeBeJJahSo2O/ffGa69QmaX+csiSB7D21gIQXwvGun8OE0AiGufA==} + /@tamagui/animations-moti@1.75.1(react-dom@18.2.0)(react-native-reanimated@3.5.4)(react@18.2.0): + resolution: {integrity: sha512-uK/rEPcHzaoKqF+ua9U5LDIj+2boBvVaLUOuDbhF0o4I3kiogzdnithqNGkmE3NjNhSl8ya9Izl+mBqAVEMpBQ==} dependencies: - '@tamagui/cubic-bezier-animator': 1.74.1 - '@tamagui/use-presence': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/use-presence': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) + moti: 0.25.4(react-dom@18.2.0)(react-native-reanimated@3.5.4)(react@18.2.0) transitivePeerDependencies: - react + - react-dom + - react-native-reanimated dev: false - /@tamagui/animations-react-native@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-GUU9BM8k+CidAY+B2Ubl2B69Z2fay6+se4hWWjO0yum+SdsynKC0R2RUGkn/q4DOQgXEDa4ojPWNTZ1naNajgg==} + /@tamagui/animations-react-native@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-WqstJJSwJwsu4Sr8zI79mxw6HwPnJSHXE4VBUnj5bZIdMDXE9H+J0bs13IItkQm4M8G9zAYhDhvtdvf+Q8+23g==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/use-presence': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/use-presence': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/aria-hidden@1.74.1(react@18.2.0): - resolution: {integrity: sha512-WdCrgIfvLeMTQPiyi0tlsuIfSDqrDaiZcDRgXnCdWFE1nlzN8rkupmkybh1Vv5Rgz4TO5n9fh8jlhzQdWzmpsQ==} + /@tamagui/aria-hidden@1.75.1(react@18.2.0): + resolution: {integrity: sha512-2KUrU72TXAaBumCDfi3dxrrnUa2KSK1YgT6Ivb0DQAz9wCxYgcvr2cPvvRAxo2GHyXTxtAnrgfQnA9+T45vFQg==} peerDependencies: react: '*' dependencies: @@ -3919,29 +3968,29 @@ packages: react: 18.2.0 dev: false - /@tamagui/avatar@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-RY8Q3aOanU4c2u2u4Se88nIc8ADleeD3sczk+c+RDSrbFy0kuEoDA2hoDqxgDklmTlsEY2MuLg99Q5UYrYF/eA==} + /@tamagui/avatar@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-qlm18kIhjQkuBU+InsucoWUymMpXqNu2F+GK18ORTgWmrFcMvU3VXYeHFPt5/HrEtuDDMuj7//u635QcNTvLQw==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/image': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/shapes': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/image': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/shapes': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/babel-plugin@1.74.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-frZ5rtCb4isN8yqGvKCUfqXLVwI2ualebPHLeD/u6CRGwrxu+M5ILWRFOz86wDLvos4Ilkny3nSYbm9AfT9kvQ==} + /@tamagui/babel-plugin@1.75.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-2AJESs4dW86aQK88SDoMbsQoYWx3+nrb5fl18w5mUerduG+JPe6B8FiOiM/f6OCWo5a/noqqMABrWepWbbi5Fw==} dependencies: '@babel/generator': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 '@babel/traverse': 7.23.2 - '@tamagui/simple-hash': 1.74.1 - '@tamagui/static': 1.74.1(react-dom@18.2.0)(react@18.2.0) + '@tamagui/simple-hash': 1.75.1 + '@tamagui/static': 1.75.1(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - encoding - react @@ -3949,8 +3998,8 @@ packages: - supports-color dev: false - /@tamagui/build@1.74.1: - resolution: {integrity: sha512-ukCxDiAq9hW7a0GvMoVm0NmhJ8Bt1+vCjqufh95viifDMjWV89DH3jW6Kw/ke6qkxBSZZiveHBR3xUsQykKc8A==} + /@tamagui/build@1.75.1: + resolution: {integrity: sha512-LDhOGA5b3wDBeFWX5JYqhWzThbuH4XVzYlGCG+G+0QkvvKv4TbTrCyLDDf1FxhZA/9ssawbNT7h+77xJB2147w==} hasBin: true dependencies: '@types/fs-extra': 9.0.13 @@ -3964,289 +4013,292 @@ packages: typescript: 5.2.2 dev: false - /@tamagui/button@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-47h2mkhBjzTcOeEn3Ig1nL+7ainZHTQX7gERhlmhNd7yYG+OtaCJdO2vFKV3bICHo2vuQNInEWutnTY9NbeCfA==} + /@tamagui/button@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-Rbu7K3bIXxrT6GKkQZbgXvfsP/2s881KE15QhJsc7zdi69cwQJ06CVe7nXMiEXgoOxcUvSgJHfS352rhhKroKQ==} peerDependencies: react: '*' dependencies: - '@tamagui/font-size': 1.74.1(react@18.2.0) - '@tamagui/get-button-sized': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/helpers-tamagui': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/font-size': 1.75.1(react@18.2.0) + '@tamagui/get-button-sized': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/helpers-tamagui': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/card@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-P2yUej/hMBpglnnRU3ydCvAfiLekBZU7pbVmvV34dmchbnk3jMwo3ReM9j8LXLGU/00XVCzpJz++r5WHq2/fmA==} + /@tamagui/card@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-rZDib6OKw/Xe9HQiOTIIedQCuJdT8ef97JTEG7M7hSEquF/9eRjtcm9gzGbLAljsstiTubpFyBmqh7ljnioOPQ==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/checkbox@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-CRRzv0x94CgYJY34YxBpQVqODvDzzUr3cw0ffYqnltz9Cp2bGRShU2uLzzsDUPwt8r2NA9kw/TbJDdZk6NFRVw==} + /@tamagui/checkbox@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-C+/nmxpUZW+Xe8yKZZENr/qkTK5qdvHaurWDCtEby4goktXgYQU1YfXwv1GfZ/T4BmeDw5fl+zR9QaihDJsZzA==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/font-size': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/helpers-tamagui': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/label': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-previous': 1.74.1 + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/font-size': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/helpers-tamagui': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/label': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-previous': 1.75.1 react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/cli-color@1.74.1: - resolution: {integrity: sha512-TIZjetsLpakj2WcMO+JcbojZO8AMYr2SfBaKm8XLx9k2dpRnBOxKArZhKHu366+y0XbYX6Zgj74WFhg/TPhs3Q==} + /@tamagui/cli-color@1.75.1: + resolution: {integrity: sha512-0bXAd7d2/zTrI2yEZC9G6Cqh7VnEKC/iTJJ2lAuRLZZC5VEUeXTIqcQkpRpAQisp6Vb+ymC5JxDOf/+Kd2GxLg==} dev: false - /@tamagui/collapsible@1.74.1(react@18.2.0): - resolution: {integrity: sha512-HF9F4xZW+TDTnTxv7OVlnYcUI49JjBr7a1JWa62OFItybBn82/vaL34Q5A6ofXEaYHZFVeIV6aV/nbLTQ9ljuQ==} + /@tamagui/collapsible@1.75.1(react@18.2.0): + resolution: {integrity: sha512-s1exGCXf6d+zt+lIqpYYhDKnvbbz1q5Utr2V7TYuo+3rpX0WSPjP53g9eN9sXP2P5qK9BEAx/ZCG94aED+GenQ==} peerDependencies: react: '*' dependencies: - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/collection@1.74.1(react@18.2.0): - resolution: {integrity: sha512-ta0zUGDt+1Z5gfZtK51WdPcjsrHwzKQaIUr7kPFVyuMcejM3r1D/Ubvueb78LS1dZ+K+zOj5IjFdCF5NLuJxHQ==} + /@tamagui/collection@1.75.1(react@18.2.0): + resolution: {integrity: sha512-4AP0yvJ0ybrrwQJf/8agsxRAAtU76rM/NnPPnq34jVkKMZYXjz31P1SZ8l+TngcoANTP48Sp3JHWPk53hf2PMw==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/colors@1.74.1: - resolution: {integrity: sha512-zWOR+1zq5ueCOVa5S2619wDjCLcM6jpMYjSsqmm3I0Yq7MzX7E5xC9ZVzr4bNQocFZ0+KjqAETRuFvol6c2LDw==} + /@tamagui/colors@1.75.1: + resolution: {integrity: sha512-fQR/9M6ascmJzX/Rhc96fzfmwqVY0ZIYkZKMOrvk+tCTvVAO4J7fIIw5XR/kzOp0zEq7O4bLC0ok78MooNRyyg==} dev: false - /@tamagui/compose-refs@1.74.1(react@18.2.0): - resolution: {integrity: sha512-gDg3wyo5B+npukn2qAXelXro1aa4NllRv9AEBjpxsST3/DsJViOirLdnVQfxC4GIvMaJcEcuoQay95cX/ciePg==} + /@tamagui/compose-refs@1.75.1(react@18.2.0): + resolution: {integrity: sha512-mV2DWuHCdGovUpRMLpqEub7oY4F/b5FVPFhoxS12FFR0NhbQlFSC17UjUWkaPnCO3FiHx2DSqG9XKq9oa/NlCA==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/config-default@1.74.1(react@18.2.0): - resolution: {integrity: sha512-Lsc5bRdL7pa5tmJVVDPO+3XHe5E+m8aciIsWuwccyUMnYWcIHm5TMtt//E0d5wzYlXn706usi8zE+Z4cuYbSPg==} + /@tamagui/config-default@1.75.1(react@18.2.0): + resolution: {integrity: sha512-HsLfyKpGoBscZGqxefpdOLKaeRsyyywz7KKffopOy/6+qh/xyOBBUV098+TFsloo7Rd88RgIyuKBtYU7L/ahfw==} dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/shorthands': 1.74.1 + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/shorthands': 1.75.1 transitivePeerDependencies: - react dev: false - /@tamagui/config@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-1/Q3YfSUmiqYoW55Gojxpzl/8PTuUPk3C3ZcTmx9noawCZf7S56fEBhP8y8k5DJ5/DymJATphFpHEVqPgsE9Mw==} + /@tamagui/config@1.75.1(react-dom@18.2.0)(react-native-reanimated@3.5.4)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-OFddSEpdWAuD2186gKFQyhljG//Sf6Z4J4ANzO0hAUGFlGz/QvuZs0PIe2yaQgYCEjUOgb4y5FXFHirFjk5WMQ==} dependencies: - '@tamagui/animations-css': 1.74.1(react@18.2.0) - '@tamagui/animations-react-native': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/colors': 1.74.1 - '@tamagui/font-inter': 1.74.1(react@18.2.0) - '@tamagui/font-silkscreen': 1.74.1(react@18.2.0) - '@tamagui/react-native-media-driver': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/shorthands': 1.74.1 - '@tamagui/themes': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/animations-css': 1.75.1(react@18.2.0) + '@tamagui/animations-moti': 1.75.1(react-dom@18.2.0)(react-native-reanimated@3.5.4)(react@18.2.0) + '@tamagui/animations-react-native': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/colors': 1.75.1 + '@tamagui/font-inter': 1.75.1(react@18.2.0) + '@tamagui/font-silkscreen': 1.75.1(react@18.2.0) + '@tamagui/react-native-media-driver': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/shorthands': 1.75.1 + '@tamagui/themes': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) transitivePeerDependencies: - react + - react-dom - react-native + - react-native-reanimated dev: false - /@tamagui/constants@1.74.1(react@18.2.0): - resolution: {integrity: sha512-Jga0C+OWRlhzgtFxyderWFz+keCW+Vyg/htkoTKNQR14sgHDpSj1UklDyoxNY8ni72uxDp+l/eDpHLqumpo5fg==} + /@tamagui/constants@1.75.1(react@18.2.0): + resolution: {integrity: sha512-JQHm94sZtaIG6MI/krJOZzWTM50rOV8luGwfFBcLafVNong90ZHm6v6V99kqyfuqOWMaOG/dWZ4ZH6ZN3QUUXQ==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/core@1.74.1(react@18.2.0): - resolution: {integrity: sha512-WNOOKQAUeKTY232DKSYoE4zNXc3QEuK71rc+XQdMQ7HNt+N+5SBSywWqPfRc8O3QTnCamulwQqwJejaoWycXTg==} + /@tamagui/core@1.75.1(react@18.2.0): + resolution: {integrity: sha512-YJVDvi0bTl9pRts0QqbBu15KZSFyO6ZCeH7tqJtOpHcAmyjVCXQXfLXXEd8d2oPvR+UfK43X3Iy6IWyWeOGM2A==} peerDependencies: react: '*' dependencies: - '@tamagui/react-native-use-pressable': 1.74.1(react@18.2.0) - '@tamagui/react-native-use-responder-events': 1.74.1(react@18.2.0) - '@tamagui/use-event': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/react-native-use-pressable': 1.75.1(react@18.2.0) + '@tamagui/react-native-use-responder-events': 1.75.1(react@18.2.0) + '@tamagui/use-event': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/create-context@1.74.1(react@18.2.0): - resolution: {integrity: sha512-RgObKjjsgrdsrXjLnDuN6ebJiEwGPtpowQi5Y8RqwGZWCcWIGrpA/fYmfJ0pDrGseKppa9h1uQfWSuRhTdtboQ==} + /@tamagui/create-context@1.75.1(react@18.2.0): + resolution: {integrity: sha512-sp+bW2ceizeWRKmlcGT8NLYJHRjnup0mZgnG5zNJqDBbBbPXWEh0a8VPBdIxTruzlm1EcD/S25bmKDJ46LW+Qw==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/create-theme@1.74.1(react@18.2.0): - resolution: {integrity: sha512-TAA9oj3JMkycrLzZxdUvcpb231Z0xuIaov/5rqIa/mO3gLcZYVOFb3hoaGgBayzPv66ihPYm9f3e4huuagRp4g==} + /@tamagui/create-theme@1.75.1(react@18.2.0): + resolution: {integrity: sha512-/NmeLEZKj5SjA458lssbMcnEifDnZiBxFPlZkipCzqa4o3tCubwl1liAgKgpuUmxBz2VYLNeHHQHp1R5n/W5sw==} dependencies: - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/cubic-bezier-animator@1.74.1: - resolution: {integrity: sha512-5rq9DHLrckVi5vLf7q5673nD0kLcxGCMULRDyJGAanoyZZwfEmIuiXZQkPaFUl1mggvNIs8X84w1b9oyqtAcng==} + /@tamagui/cubic-bezier-animator@1.75.1: + resolution: {integrity: sha512-9DpUVYFACpFDA6FhMjQ2Gccav/jBpkEBjRRZmpRaq5SM9LWFiZXqIufSP+aAhIN2bjCjCvtDV/udVf2sH0PwJQ==} dev: false - /@tamagui/dialog@1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-qqI5QZJE2xk4Su9Xk1WeWeOaYLOU9vOzaGC+CQr6FtvkBtUvpMN4H6xMGCdZbk+6N6zPrZ7dyueS5Nar8F/zhA==} + /@tamagui/dialog@1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-jKA9nI/BnhPlZ0E0NbBSF4Yg75ihFuhYDiGFNxT9Ve+m33tFDrI9y39wU5H2Lqv5+1JUkxQzXA0igwXspbU7mg==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/adapt': 1.74.1(react@18.2.0) - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/aria-hidden': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/dismissable': 1.74.1(react@18.2.0) - '@tamagui/focus-scope': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/popper': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/remove-scroll': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/sheet': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/adapt': 1.75.1(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/aria-hidden': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/dismissable': 1.75.1(react@18.2.0) + '@tamagui/focus-scope': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/popper': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/remove-scroll': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/sheet': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@tamagui/dismissable@1.74.1(react@18.2.0): - resolution: {integrity: sha512-K5z6SbXvyY2PlYwgAcjTsZRVr0JRTrfZLStdpEo2vWicsjMJgG8XU5uvQYzt6Exj0NK8CS7+eMBOUHyVLbeJ4A==} + /@tamagui/dismissable@1.75.1(react@18.2.0): + resolution: {integrity: sha512-shFLvweXLDru5k9zAs7gHXriTKna1BWybjjnx2HWRey2mBihpqsgN69s95/B5h6Ma/9ookTsQ7FEIZTmA5XRzQ==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/use-escape-keydown': 1.74.1 - '@tamagui/use-event': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/use-escape-keydown': 1.75.1 + '@tamagui/use-event': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/fake-react-native@1.74.1: - resolution: {integrity: sha512-a3RNEevvnE9cq80CNY6H/rCcMSOe52gj8jXessQ/JdmDylRNdOo8J4T8EDSo/0OtO0jLQsgvFFZUAdYI/ZxarQ==} + /@tamagui/fake-react-native@1.75.1: + resolution: {integrity: sha512-KQF67QxQs+s16ohTsarWu633eTRpVHIO+MFihHlyZ9EsnfPXvXtlupJyjHOFgYeA5c8T2cL+V/H14UtHSw1m7A==} dev: false - /@tamagui/floating@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-4bg1ZSQR6WUH8PVa9QojqAo8mu5enUmi5hz6UOmvzkw3/auVLE/xoKSWcze3nEj3N0F5/D4+CkkRmJ36Uk+V9A==} + /@tamagui/floating@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-7D7Gr6fjGDDwCL9fbHGzozzpyHQd403m/JsTorxPNatC1L9FVHdqIN6em2dBN5iylVmXo67q8nTN0rkOY1gCXw==} peerDependencies: react: '*' dependencies: '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) - '@floating-ui/react-native': 0.10.1(react-native@0.72.5)(react@18.2.0) + '@floating-ui/react-native': 0.10.1(react-native@0.72.6)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - react-native dev: false - /@tamagui/focus-scope@1.74.1(react@18.2.0): - resolution: {integrity: sha512-9pnBc37AFUJr03SCNJ/izR0pJKGWCNzsqButnp7PW+RIEu7kP5pKcKfxCtR/zuEctXzC6hSOjgDhqg8t5Adr3Q==} + /@tamagui/focus-scope@1.75.1(react@18.2.0): + resolution: {integrity: sha512-QCzFPzGdXEIXxOxQLKMJFmZr+CtJ3iGgTufu5aKexISFFhcP9cryWg53bbOXMJtPBEkvYMncgcwEpzwkm2IwTA==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/use-event': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/use-event': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/focusable@1.74.1(react@18.2.0): - resolution: {integrity: sha512-YLHi/CLLWpoD+0oMld0kYqugAWOKj3a0i8B3D0s6KLHShm9f8Y6amyh/i8bAhENI+9BqE2cqkaqbZzYXLE0WqQ==} + /@tamagui/focusable@1.75.1(react@18.2.0): + resolution: {integrity: sha512-vOyQLuw7lXAxYsHTXSD/PmL873LKAC3mKPIdacFU5YJcdTrt+3EKFkyKzOPSBxDyTMn/1MX9YRzI9+kF7jJ74w==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/font-inter@1.74.1(react@18.2.0): - resolution: {integrity: sha512-uv79eK0c6DvVMNhvLD55MYjQiJmrTFoSK8kg/73uZniJIecRaT3DhtEhZNS6ewTW3ZmZVRo8XXy8z2a2kNlgag==} + /@tamagui/font-inter@1.75.1(react@18.2.0): + resolution: {integrity: sha512-BQ5dLEPkWAuWQNHc33v2TkyGFhEZaTLGPffzmUyUF5XikTSv1VvrIAma7zH0obY01oJJolDJKbCnC92Yt/Eseg==} dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/font-silkscreen@1.74.1(react@18.2.0): - resolution: {integrity: sha512-RFZITf+GfuWBApQUTWmVBYKo5rgOrOXYYV7XXsRxzzahEixWAtWEsRSJWVMzhAV/XkjLTcuSO6FXOQuYFcSyug==} + /@tamagui/font-silkscreen@1.75.1(react@18.2.0): + resolution: {integrity: sha512-gPcIbDoBDNCmtU5ymIv+IGiXU/EoFLqHSD6N+W9NAaATtaYxYbWP/oQ33xDDpoclG65JeEDcHii6fYFozhQZmg==} dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/font-size@1.74.1(react@18.2.0): - resolution: {integrity: sha512-jRtZbZwdoXXoME9+WaneHKuEUPHcI9VDoVdsQzXUsuIHiSPqG/6fRAnfhyB0feSoKUJhUemcSePMXobSOZlZ5Q==} + /@tamagui/font-size@1.75.1(react@18.2.0): + resolution: {integrity: sha512-FOeFpkRt/3s4RRtSDTzbPLu6wOhnu8fVzUjkG/Y3v0NZ+g3LJ4y94YvOlrg9WIaUyppD5YqlTgZaQTU3wFP4QQ==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/form@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-0EpDx3o+gUg4XHNTS1kzz2l6dgk5HWd330fQ4EqU2RuJksIs65ZcCn9hLqYU9G6QMMqazbQ7/UZMDA+fAKaoRQ==} + /@tamagui/form@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-LtyRm6CrWpm9r/UwpIkxDVCCQOYRgDH2LwAopfutFxELZIQeSRsmN/NyhwwpoBwJCAnzmLNntmjFYHJ2Esc4Yg==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/get-button-sized': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/get-font-sized': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/get-button-sized': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/get-font-sized': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/generate-themes@1.74.1(esbuild@0.19.5)(react@18.2.0): - resolution: {integrity: sha512-cOkGJdLmdMAXXv2Dh0tcxpItim6NymQXfVnsOITTwSin3GcHYaby1S9q+btzOovVBbuyPb0BwEj5oCz4C9aALA==} + /@tamagui/generate-themes@1.75.1(esbuild@0.19.5)(react@18.2.0): + resolution: {integrity: sha512-niDcmMdpkOZP6OsigE+uCYG4NJjbtJfqRBVuaimroJykElzHX73YfbIlNjmGJ8eCL9MWEk+lh4t18c6xXmtzGw==} dependencies: - '@tamagui/create-theme': 1.74.1(react@18.2.0) - '@tamagui/types': 1.74.1 + '@tamagui/create-theme': 1.75.1(react@18.2.0) + '@tamagui/types': 1.75.1 esbuild-register: 3.5.0(esbuild@0.19.5) fs-extra: 11.1.1 transitivePeerDependencies: @@ -4255,469 +4307,469 @@ packages: - supports-color dev: false - /@tamagui/get-button-sized@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-LhssOq1tSaKbF49BFzmci1KPTn66LHTMHHHxw8jIiK1QDwGQPDEVrgKT93161h/6bTcRsnxfheg7doQtKSsEpw==} + /@tamagui/get-button-sized@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-Di88iCjz/akiGhWFBBy0k3dq0nM3bZfhs/QGbyHgGDmVw+mYKox74SSDH3ByF8O0Qmvb3oONifN1bhoJ8a6LnQ==} peerDependencies: react: '*' dependencies: - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/get-font-sized@1.74.1(react@18.2.0): - resolution: {integrity: sha512-RPoISE+rreTOY0r/hkKoEfKYxnrICA5wSrSY56XKJLz6/G5qk1qHZsDpfxqbB2dce+A8gIJ599zlcCEZL/Hb0w==} + /@tamagui/get-font-sized@1.75.1(react@18.2.0): + resolution: {integrity: sha512-X0VOpVoiaFnOzcXebGBUhTadRBiw53Ied1/oiQaiwxLuGGfNPiy0j/BPq3dCSBbp/1ahm6z60kPrwjjZh9ggow==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/get-token@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-dpkJwLrt3OfNfVwVdYGgoA8CG8Q3wRwaPRMFoayAaTUBuhE69q20fSP1ZW/g7UvsTEHgNUQtTbDtDIyixngGIQ==} + /@tamagui/get-token@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-J8I9YR3w9Z6/P43/hLw+Rmu6kW+PXzl0vMuf8HtDWnS2cSQNbZm7qHt3CwPrFe4ayRCcz+kVpsyGCXFT61IlFg==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/group@1.74.1(@types/react@18.2.23)(react@18.2.0): - resolution: {integrity: sha512-xRzFlBPovoLOI7+6Jn/ZbPZLJXBSLKPZ1Qm44iFabF7aY+9DXVxKkTvnqXyx7HacmPjogh/JDa/uoHFa4eF3iA==} + /@tamagui/group@1.75.1(@types/react@18.2.31)(react@18.2.0): + resolution: {integrity: sha512-3QrYaYDbrcnTY8Jm8yAKsbd7NXl9w81/gZdkDnV8c/kgzQs64jwr6x5z5hngLYZB+pZSOXY+I7cQn3Zz7hvGRw==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 - reforest: 0.13.0(@types/react@18.2.23)(react@18.2.0) + reforest: 0.13.0(@types/react@18.2.31)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer dev: false - /@tamagui/helpers-icon@1.74.1(react-native-svg@13.9.0)(react@18.2.0): - resolution: {integrity: sha512-aumgXV1G1iUTcZ1iRTDIcVjR3SbxXHGZ2LzYgilZd8T3gZRzYA/YZ/IWzfRMPCjinvLJQEPUmxe1g4/lHvj2kQ==} + /@tamagui/helpers-icon@1.75.1(react-native-svg@13.9.0)(react@18.2.0): + resolution: {integrity: sha512-xDsGnwfVxmuUk4/j1hJ1a+RdCOzBFWx1iysZf9CHgYMNbLlDNmOSr5csxk++wp0BQbqBkgXij7DdWT4OUc9L2A==} peerDependencies: react: '*' react-native-svg: '>=12' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) react: 18.2.0 - react-native-svg: 13.9.0(react-native@0.72.5)(react@18.2.0) + react-native-svg: 13.9.0(react-native@0.72.6)(react@18.2.0) dev: false - /@tamagui/helpers-node@1.74.1: - resolution: {integrity: sha512-iE/K8liz0z98UfOXtRr3Ql78kEXUvEUcr0T9AD3kPr9L0HQMSVCrxHYvBq3Yw2LH9N636glvmIj+rnX6J5V62A==} + /@tamagui/helpers-node@1.75.1: + resolution: {integrity: sha512-2FDpylWk3XohekaIEq7RpBo5Q4PtVhI3QnwQacv3SA5BTfqRrgfw83OaqMc14bv47Oj2uF8ia50l+8bqjTApoA==} dependencies: - '@tamagui/types': 1.74.1 + '@tamagui/types': 1.75.1 dev: false - /@tamagui/helpers-tamagui@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-SLnK4pl5oe3QmCWQhh3eeJRlcCDuVeRqLB903XZeHHYMn1uY/+4jnKJQhMiqExKu5zIXXXLec1VQHsX4g3n6Mw==} + /@tamagui/helpers-tamagui@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-dua7cEwS1jWdWdDMIwBVv4yzlso2fdL6Tjwx9xW1EurjI+uJipAHkElf40Yrx4fqL0cW+1DgpYVJRfag0ZKo9Q==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/helpers': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/helpers': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/helpers@1.74.1(react@18.2.0): - resolution: {integrity: sha512-cASu+n6/Q1Xq87Vpb8gm3rM5fAJnPFnK1lQaGOowZgY+cpjH9tY5hDw5GRajA5bkamNkD5qhGbvSMorfFICFhQ==} + /@tamagui/helpers@1.75.1(react@18.2.0): + resolution: {integrity: sha512-uqJR9zQUKH5UFLCbZ5I1N1tZv0bcMaayI0H40D9mbGQkCWyjpQqXvxE3HWlr/kMmXgnoL9WcpyOXCQHBX8uDsQ==} dependencies: - '@tamagui/constants': 1.74.1(react@18.2.0) - '@tamagui/simple-hash': 1.74.1 + '@tamagui/constants': 1.75.1(react@18.2.0) + '@tamagui/simple-hash': 1.75.1 transitivePeerDependencies: - react dev: false - /@tamagui/image@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-m+Afa6SLXvs1jMgxYhmVRQZuoQ+4e+TwNSHnW8+8T96u/aURpn4guA8ei3+9XN/mMqtIlMZjFzShBWHcAZdx0w==} + /@tamagui/image@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-KjsmYp3h0k26On7YqgTedmdDVbF0CbBKwNjvhTUkrac7EBV2Zax7SLScNhwe8H8qN2axW3jLzNDPRtWRTXHh/A==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/label@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-MGeg0diitwdna59Wdb4yHvoOSiybWFMSrCHGmJRdk0+jG/h31cuk43RmbOzUO7cKfZQhdlMVEpNf6fk7xb8Ipg==} + /@tamagui/label@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-+jtUtD9AyD0rte/G1dNuWeqVr9+grZPwbMwl71E1gvVCiYfcrld+jh8ILdT46ceu8k4Qwq/BjfPGVOUw/FpL5w==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/get-button-sized': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/get-font-sized': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/get-button-sized': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/get-font-sized': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/linear-gradient@1.74.1(react@18.2.0): - resolution: {integrity: sha512-UoKAcpwMNdHgWl3XUhDfP52bxvRjzsc7Yjzpm/lFUkuY3U7aIWSjuKZW+hvqleDyFd3fCKlMMeM+qUKqFKECpQ==} + /@tamagui/linear-gradient@1.75.1(react@18.2.0): + resolution: {integrity: sha512-JB1+UpqLy4rGdYMaTaFZKs2jhQZU7Hhf8Eyn52+VS/IuqmhcgVPSZG2Z9ffMLlwWFUG1tOOOAGTeZdJKbwtgeg==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/list-item@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-WK3njxo8ySTzdB7rGl5iWXOQc7vK2wy0OnqAqbQ81rDK/KzuY3oYQzlJgHWVrJvuG4sAKZofLHXZogRfDV8DdA==} + /@tamagui/list-item@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-nFY2wrwCwL5gg04tRi7N25FkHkNBeGr3NNkCNCVQOooVNz/PQ1m3dOB5Hohcaf4W1rfTS608Nd84tEdToO93ag==} peerDependencies: react: '*' dependencies: - '@tamagui/font-size': 1.74.1(react@18.2.0) - '@tamagui/get-font-sized': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/helpers-tamagui': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/font-size': 1.75.1(react@18.2.0) + '@tamagui/get-font-sized': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/helpers-tamagui': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/lucide-icons@1.74.1(react-native-svg@13.9.0)(react@18.2.0): - resolution: {integrity: sha512-BSQEM3r+fe+AIgRdKs1QfI6LS/cVGD8UngLzJg7VLd7wT8tmgvmMApdwgixYY2zeXWsi38g3ZeRerp6DQ+4jNw==} + /@tamagui/lucide-icons@1.75.1(react-native-svg@13.9.0)(react@18.2.0): + resolution: {integrity: sha512-DEpFrpXtfjkvA4vxTY/AlersEWJHRFLCiK+kduJSOiFoiKgH+kW8FEJRt4TI2gfN8ojZqYzmTe0xvjJDraoDgg==} peerDependencies: react: '*' react-native-svg: '>=12' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/helpers-icon': 1.74.1(react-native-svg@13.9.0)(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/helpers-icon': 1.75.1(react-native-svg@13.9.0)(react@18.2.0) react: 18.2.0 - react-native-svg: 13.9.0(react-native@0.72.5)(react@18.2.0) + react-native-svg: 13.9.0(react-native@0.72.6)(react@18.2.0) dev: false - /@tamagui/normalize-css-color@1.74.1: - resolution: {integrity: sha512-RGAZW+Rd6Zio8MOdxtWA+7BSqjBA1DWMiT/0pQ6TX+wNK9m9LJQzb25skO+cZgi4JyUdBzOlSNi0s/DmNeb2/w==} + /@tamagui/normalize-css-color@1.75.1: + resolution: {integrity: sha512-iDA0L4pX6oOZivU1doEfE5dZy3sT5wlQqzGl7WhSAbfs/o43tUR+RfGzFpN7HYykHxKC3d6erdomT3/fWVaE/g==} dependencies: '@react-native/normalize-color': 2.1.0 dev: false - /@tamagui/polyfill-dev@1.74.1: - resolution: {integrity: sha512-91w3TKVEilA/6hurEyXljQVWK+S3VCKX7DLKYpgkYCGHJ3zaoBtV/Gm+BwfYAKByYEJZdUQsGNYI9TNWoO2uxw==} + /@tamagui/polyfill-dev@1.75.1: + resolution: {integrity: sha512-NW6XcVwYQ4xGXNvsu2XHzkYR59UmQh/bew5kuEhc3gmgrw7WXNnabANjov6uhi/2rHdrp4PJJDbnPw8sTh70pg==} dev: false - /@tamagui/popover@1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-nB1ciIndaqNf7EPlsvKr9Ina06Be6KhQQPyVQeW+Pw+SfZCyUbUTIkwZFcIAe7WnP2pCw7P4LSFx4FlhP/J/cg==} + /@tamagui/popover@1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-5tZRLWa8OVNrS+aQZBThM6bmnVJ6CZS7i6yDo+Q7uhmM9AWTYMk20iJm8COewW1rMhWI09YKwRfEt1w6Fwy4eg==} peerDependencies: react: '*' react-native: '*' dependencies: '@floating-ui/react': 0.24.8(react-dom@18.2.0)(react@18.2.0) - '@tamagui/adapt': 1.74.1(react@18.2.0) - '@tamagui/animate': 1.74.1(react@18.2.0) - '@tamagui/aria-hidden': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/dismissable': 1.74.1(react@18.2.0) - '@tamagui/floating': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/focus-scope': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/popper': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/remove-scroll': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/scroll-view': 1.74.1(react@18.2.0) - '@tamagui/sheet': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/adapt': 1.75.1(react@18.2.0) + '@tamagui/animate': 1.75.1(react@18.2.0) + '@tamagui/aria-hidden': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/dismissable': 1.75.1(react@18.2.0) + '@tamagui/floating': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/focus-scope': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/popper': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/remove-scroll': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/scroll-view': 1.75.1(react@18.2.0) + '@tamagui/sheet': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 react-freeze: 1.0.3(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-dom dev: false - /@tamagui/popper@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-r2AiOnd27iOtkLp1ygtkGa6N9xIP7S/NrKC1CjpoWX6gHmcjGEdFmHyRR9iC2iAb9dE1N1tF9+LZs09GMRt1NQ==} + /@tamagui/popper@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-9LMlC6a8TJ4FVSlCQPtslljoPIfcfs0aanGwpL8kyKFLkiPi6BOAWYUBRss4pgN5Q/+REyNWX9dRr60yqiEjqw==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/floating': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/floating': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/portal@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-I2BS/sd9PkjxumnMvmBl3BZuiCq44ocuTRUji0a938DaKgGNVLz463ZrsYKwbD6Rr5BZ5ELmGZym4f2vwrkOuw==} + /@tamagui/portal@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-fI2drtmLYsys8UwO7waOwr6nUWkqXYgkmXTUPCeGzCihB42m+DsbwWbIdEvTE0lAMkicI1FwXSiumhqDcGbOFg==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-event': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-event': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/progress@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-SY4iXbiHVxIlnuphDSp02GTgMzFt09fWlk7YIpMATG76vh4Xn13K4f+lW07SW8L0Zttg7dhjKBPe5Q9bHSXoYQ==} + /@tamagui/progress@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-OFjp/Y5PsVCTz4pPAPHLTRTEdd8Ypr9Mjza4ciK0/alvL0gZ2xgGaXnpz4xu9O6mYMJj2NImUfpAbh7EM+Jt/g==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/proxy-worm@1.74.1: - resolution: {integrity: sha512-+CzJjdU+GqT78Be01vkW5wZb/lwtRisGvaIqpNxzWYeLgONZ0S8jFn59Eq0pLEtYZauUozfUuBVnM6AAwM6e8Q==} + /@tamagui/proxy-worm@1.75.1: + resolution: {integrity: sha512-arBCkg7yo+wwLXZPwOWgVr+xtoymwUZd57j1gqwtv2cFP4YIjsaZejcKX1PsU6OaJhIGzuxhwa3HFgoKH+UVxg==} dev: false - /@tamagui/radio-group@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-8ZfPipPx8p4Svzza59XSPFZKc/ZpqtuECfGyrl18QDVj3unMXHiW/DLoJ1VJljqTPAajoeetJoaKCW7RKUPpvA==} + /@tamagui/radio-group@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-hEnuQMNFyAknzV1L0gW7o7U1epcNpOV6D+AqNcv2B/LuN6EB7tR2LETT4apZ0gBvTEOmzYnjACxl9zokMqCbPQ==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/label': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-previous': 1.74.1 + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/label': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-previous': 1.75.1 react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/react-native-media-driver@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-Vfq3ZSoddT+PlNSSq3X1Kz/kjc/m4Ck9oL4GmaSmCCgo4lIKJVtfWcYfqwgm6TXJd1rFYeLc5ejpfdFLw2HQVw==} + /@tamagui/react-native-media-driver@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-P6yA4Nmje+CZmFFGTLPT/yTUoP+jlzZvFvaP1lD2dMv3sTrQrukSZIICbTNF8UoQ7xMXa9UENvjyw29TXRZ+GQ==} peerDependencies: react-native: '*' dependencies: - '@tamagui/web': 1.74.1(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/react-native-prebuilt@1.74.1: - resolution: {integrity: sha512-0k9RkTdJ/NKl8Bdv5/dbYfoGCAFs6QvAvKcTpVIN/kd6gzM4Ok8Qn8ah4HRXmLbRydFGvwsaVS97WlSwdWXseQ==} + /@tamagui/react-native-prebuilt@1.75.1: + resolution: {integrity: sha512-gKKPGtZ51SlYnq3sLjSIm4Oojzypm7yZuTGQI+WpJeE4cDapx7G8+ueonZnW1scda8v52nm/VBdmGwYFFkzyFQ==} dev: false - /@tamagui/react-native-use-pressable@1.74.1(react@18.2.0): - resolution: {integrity: sha512-bLLVHzqFWYqJnrtJv8avcomo5MEgW7sRMnNiiC9paWRFfR44jJvAgPuV1jsDFnB7yCmIWl/OjKr1nGwuec0z1g==} + /@tamagui/react-native-use-pressable@1.75.1(react@18.2.0): + resolution: {integrity: sha512-V6bURJatRFjydgkS05otrZO1KiHZk3vnNdOkxD6CvRnklwi4HVSl7nzqTDZ5PnZpCY2Rnky6HWSNmIbTPl322Q==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/react-native-use-responder-events@1.74.1(react@18.2.0): - resolution: {integrity: sha512-oLQAm3+IEIbx/G5YjOyKul16mTJcZ5VBg87bQcKGqX0CYkjpwd1oj4ihz0rlfnUTerKhG1GyXQ2eg584L6CJAw==} + /@tamagui/react-native-use-responder-events@1.75.1(react@18.2.0): + resolution: {integrity: sha512-YDhz/jjan+tStT4PXP+4vxl+5kS/GLu5bnd25FhY2y/pH68KTtguV2TWrByev2uFbMcRZEBJxCmePtxmn3CCKg==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/remove-scroll@1.74.1(@types/react@18.2.23)(react@18.2.0): - resolution: {integrity: sha512-IEFVeKOvnxMp6Rp6FLyrdYkEjk+iJgwUpe3p9Ihv7gH9qE7d5Ub1fPmO+6CIH8KcU2Gu9O0h9gPhgyeh6kbyTw==} + /@tamagui/remove-scroll@1.75.1(@types/react@18.2.31)(react@18.2.0): + resolution: {integrity: sha512-+2vSjkMXq2sbwHlvlKTAahCiwh4pJ/rzFL2HwhoSlhWHjNEIYAc7UNhctyX0hb2s0HnkO+zGwg6w0WktXDgAEQ==} peerDependencies: react: '*' dependencies: react: 18.2.0 - react-remove-scroll: 2.5.7(@types/react@18.2.23)(react@18.2.0) + react-remove-scroll: 2.5.7(@types/react@18.2.31)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@tamagui/roving-focus@1.74.1(react@18.2.0): - resolution: {integrity: sha512-c9WqVln75vS9jzcPs2LbhYGgVj1/PrU37W6InxZhMMA+1U8cC7ZoF7FCF2S3gZ06nULKVatOr1E8VvohkQaEiA==} + /@tamagui/roving-focus@1.75.1(react@18.2.0): + resolution: {integrity: sha512-cjCDMJk8+KwzeRWwthrVbf7pQZRK8lgEK/173owqpAOIwidiG+O/LykSLvvvZZdXjnmUJc/zDVJO9ilNvpvq4A==} peerDependencies: react: '*' dependencies: - '@tamagui/collection': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-direction': 1.74.1(react@18.2.0) - '@tamagui/use-event': 1.74.1(react@18.2.0) + '@tamagui/collection': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-direction': 1.75.1(react@18.2.0) + '@tamagui/use-event': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/scroll-view@1.74.1(react@18.2.0): - resolution: {integrity: sha512-MCUB080nu5FAqoZWJoBBSwVlQ75wpKAeRA629VFlCdjgxWIJfxJiG2mFWlQI27aKVo9pgUQG1dPEd4nvjMsZhA==} + /@tamagui/scroll-view@1.75.1(react@18.2.0): + resolution: {integrity: sha512-jopmEoHZ1Aqhmaf9reZznnMUys+jKVnfdQ2jcWaRs6iJi8Mswz4tKNZYfAJhfUG2+D1LEg7x1qRR2P8tfvEdsw==} peerDependencies: react: '*' dependencies: - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/select@1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-Vedaw5G9VDA6UYecPzLcD2gva1y3REZOMF9Gm00zbFaalJOZpBaXbDZoT1PivhS2seGLcLa+yOkvzBa8kOhQOA==} + /@tamagui/select@1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-L1FkJ9pYNw5dAIitOUzCWbAtgjDeAh1n52FbaDWEfBn2uPXw8BoYEJCOtqumzS9tiN7/hbZxcg5PcCOfyykIkA==} peerDependencies: react: '*' react-native: '*' dependencies: '@floating-ui/react': 0.24.8(react-dom@18.2.0)(react@18.2.0) '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) - '@floating-ui/react-native': 0.10.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/adapt': 1.74.1(react@18.2.0) - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/dismissable': 1.74.1(react@18.2.0) - '@tamagui/focus-scope': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/list-item': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/remove-scroll': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/separator': 1.74.1(react@18.2.0) - '@tamagui/sheet': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-event': 1.74.1(react@18.2.0) - '@tamagui/use-previous': 1.74.1 + '@floating-ui/react-native': 0.10.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/adapt': 1.75.1(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/dismissable': 1.75.1(react@18.2.0) + '@tamagui/focus-scope': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/list-item': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/remove-scroll': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/separator': 1.75.1(react@18.2.0) + '@tamagui/sheet': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-event': 1.75.1(react@18.2.0) + '@tamagui/use-previous': 1.75.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@tamagui/separator@1.74.1(react@18.2.0): - resolution: {integrity: sha512-w2k5z8WWeFa1x0VMCqg2ZGdzo6QbX08MUO847vlrQQo7ChB5UT91Fq9/DQulNplqD61SGOcmZ8Z/fIkkGN1H1A==} + /@tamagui/separator@1.75.1(react@18.2.0): + resolution: {integrity: sha512-dONi6nnjgBzwXSNXCislZvOb5TnpqONJTuuWOe+U1/cy26Z+weDBt0fDN8mbuoD+zD5iFkOJ8jXsP8iZdZQTdA==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/shapes@1.74.1(react@18.2.0): - resolution: {integrity: sha512-ZSM+3cqqBL9jLu/s5/nLpt+YP7pJBbctVnhS9m3WubcX1Xc7NPxS/oI5bxY0AtJmnerCRYVoNS12uGgaAgW6Qw==} + /@tamagui/shapes@1.75.1(react@18.2.0): + resolution: {integrity: sha512-KZ3i6WZniTS0IJkAaACORgpTDVS3XTE6UDPuzTyTasw6sXx/X8l1mur481qU5ge3e8wMsD1pCVjtzPP+gy4bNg==} peerDependencies: react: '*' dependencies: - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/sheet@1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-Cx+yJ0v8aGUf2U4GSmOt9HBrgYHggQs6qAkwrEI4GGoyJEnJSaAoVuab9bto2dOGeC5g2/HVyS4bIU2Lkce1jw==} + /@tamagui/sheet@1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-Xi0z5AHmgm1Zk3/hdPHFFyeJtvkIP9NG+uRMTze0MePK4oCIJz7uXuRMsJIeGFnjam2u/lZ368hWeqQSUCSgSg==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/animations-react-native': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/remove-scroll': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/scroll-view': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-constant': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-keyboard-visible': 1.74.1(react-native@0.72.5)(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/animations-react-native': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/remove-scroll': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/scroll-view': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-constant': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-keyboard-visible': 1.75.1(react-native@0.72.6)(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@tamagui/shorthands@1.74.1: - resolution: {integrity: sha512-bgKUBrbaNOKrSFnvBz2/JgngwgG1EnAo1IMi6EjElzOF9Fs4XIbXZpmRwaaJy5nabvxph4QSPOOgfr6qMQgDww==} + /@tamagui/shorthands@1.75.1: + resolution: {integrity: sha512-nHRvERhJXu33qew2xg71QmUYyuHrCgGt1+aExHnRe1MDnjVoc3AfQSb27Zv4HdmN8OfFYwWRvq1J2SR05HDx1Q==} dev: false - /@tamagui/simple-hash@1.74.1: - resolution: {integrity: sha512-aeIReZQozbweJ7wTpsZ7AjkDeRM3YnVOwxLmaCk7C/5idHisP+uoALTgRdPQoyNeAGaPWBFYGr5Hqo6g/8++/A==} + /@tamagui/simple-hash@1.75.1: + resolution: {integrity: sha512-iFIGuFKlLKxjCq+6uy2/Bu1j9GoODgSxzBkUCh4pYmu/muKvBMY3+MpveENjwIm0ZKG0Qh+pa8Q4vcimDQdxyQ==} dev: false - /@tamagui/slider@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-/MEJzZgyF/q0/t/hz3yiaZJwmmakPJUqnJsmTXfVQBSn99rhOykLv9keHf48paGqORlPi+Qdn3iRHExr3Yu5zg==} + /@tamagui/slider@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-9+zGvYyWdndub7nRQWQsudfdb653NtuhJSBgneNz6OfFW+uk+4S9sPKZrsjTLPsEIgn/hLmDoyAPQncGyEpWxQ==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/helpers': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-direction': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/helpers': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-direction': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/stacks@1.74.1(react@18.2.0): - resolution: {integrity: sha512-K8mt57WwBWIacS4yowXJd19g7cyQejVFs7baexorhvzh0tARMCm5RKWBxal3DvAa88DnLBQy1SjqpM/WFgIxNA==} + /@tamagui/stacks@1.75.1(react@18.2.0): + resolution: {integrity: sha512-yb8YKAFrwIlHNassH9//wHTT5FiuSUmeFmmnxbdQ9w8X7RTdnaKq2ZPvK86B7M9lyCgFTG1wmCkeqxe0LVXBpw==} peerDependencies: react: '*' dependencies: - '@tamagui/core': 1.74.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/static@1.74.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-E34ZD5PiyefnBcux8i8plDRLOi1EMBsce4wHuPO5NxTclcTR5I8SOqXBiwu9x9OJ6LgdC/LyqGymcyeTVosIAg==} + /@tamagui/static@1.75.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-q8sOsOSP6ZTiQi92vtyE6xKyG/9K52d/z8EnnDkBpXIYyXyzbAB/zLRHAq0D/ZsXpdIGx6UtRH++DJZMXGXtRg==} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/parser': 7.23.0 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) '@babel/runtime': 7.23.2 '@babel/traverse': 7.23.2 '@babel/types': 7.23.0 - '@tamagui/build': 1.74.1 - '@tamagui/cli-color': 1.74.1 - '@tamagui/config-default': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/fake-react-native': 1.74.1 - '@tamagui/generate-themes': 1.74.1(esbuild@0.19.5)(react@18.2.0) - '@tamagui/helpers': 1.74.1(react@18.2.0) - '@tamagui/helpers-node': 1.74.1 - '@tamagui/proxy-worm': 1.74.1 - '@tamagui/react-native-prebuilt': 1.74.1 - '@tamagui/shorthands': 1.74.1 - '@tamagui/types': 1.74.1 - babel-literal-to-ast: 2.1.0(@babel/core@7.23.0) + '@tamagui/build': 1.75.1 + '@tamagui/cli-color': 1.75.1 + '@tamagui/config-default': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/fake-react-native': 1.75.1 + '@tamagui/generate-themes': 1.75.1(esbuild@0.19.5)(react@18.2.0) + '@tamagui/helpers': 1.75.1(react@18.2.0) + '@tamagui/helpers-node': 1.75.1 + '@tamagui/proxy-worm': 1.75.1 + '@tamagui/react-native-prebuilt': 1.75.1 + '@tamagui/shorthands': 1.75.1 + '@tamagui/types': 1.75.1 + babel-literal-to-ast: 2.1.0(@babel/core@7.23.2) esbuild: 0.19.5 esbuild-register: 3.5.0(esbuild@0.19.5) find-cache-dir: 3.3.2 @@ -4726,8 +4778,8 @@ packages: invariant: 2.2.4 lodash: 4.17.21 react-native-web: 0.19.6(react-dom@18.2.0)(react@18.2.0) - react-native-web-internals: 1.74.1(react@18.2.0) - react-native-web-lite: 1.74.1(react-dom@18.2.0)(react@18.2.0) + react-native-web-internals: 1.75.1(react@18.2.0) + react-native-web-lite: 1.75.1(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - encoding - react @@ -4735,39 +4787,39 @@ packages: - supports-color dev: false - /@tamagui/switch@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-ePYSvEXvKq9eCkJ78e16IXU6n2w4NGK+MDWppLLp5aUNVXzG8OriymEylqdjpMY6kbrQt4agly9u49K1BJJBig==} + /@tamagui/switch@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-ZmJieMeuzEnQvQsKTUnhfyiOXHKUe2RFcU4QKwtXGRJ/qiIFvhMdvmIpk9+EAn7BFB/17YDDInXPNQT5inneNQ==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/label': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-previous': 1.74.1 + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/label': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-previous': 1.75.1 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/tabs@1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-BIMX+d0xXt4YX4EHQvgJeboBa1LAd3AqClPK1/hf8I1XMum0fS3GebYdNtOI59lDpZpgoyI5hcRUkf5RR4PafQ==} + /@tamagui/tabs@1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-p7y3BPpJR4wPHeMjxO09ACd6/R/KSTps0cWL7ec9aFb4ikLn1GpSkFPQRsFLo0x0qOMCn4GO1Il9GP8S7ckMQA==} peerDependencies: react: '*' react-dom: '*' dependencies: - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/get-button-sized': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/group': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/roving-focus': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-direction': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/get-button-sized': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/group': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/roving-focus': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-direction': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: @@ -4776,84 +4828,93 @@ packages: - react-native dev: false - /@tamagui/text@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-OWu3dzSA+8xRQtXaixjePoNFtz94WWfTFzQcY6LI/tiBOG+KfnmHI3EpcU6s6dQDBq6mj9UNa4ue1eJ1MFbytg==} + /@tamagui/text@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-2B6lK2lY5ZyiwvClddbY0Dmob63ivZ7oebHLgvazgxkPXZp8ylIqvH5W26KNlx/5isBkFGd67oyiKz7TTDcWrQ==} peerDependencies: react: '*' dependencies: - '@tamagui/get-font-sized': 1.74.1(react@18.2.0) - '@tamagui/helpers-tamagui': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/get-font-sized': 1.75.1(react@18.2.0) + '@tamagui/helpers-tamagui': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - react-native dev: false - /@tamagui/theme-base@1.74.1: - resolution: {integrity: sha512-Xe2lSnvEbz/3rttzmoHBzWnSrNn8iMzd+Q++kmMpHYkiRETQCBq95CW5sWhMfY2cs0Z8aPZM4S1ZCE6A1xFYMg==} + /@tamagui/theme-base@1.75.1: + resolution: {integrity: sha512-TdTf7JE/VNOva8UpKU7XkhhTQs3TXEzVCSFPLAgZEtIfQjJZuYaAY8+tFCmff7KQeKZOEEwzsnSTk/0kluIdzg==} + dev: false + + /@tamagui/theme-builder@1.75.1(react@18.2.0): + resolution: {integrity: sha512-ke6DRl2xmYO+wONrlu6eFxTv+OyNmErvATBwLajz3XroeS1RT/t50pdTKHTWjbqL313zyJ/V1Uqk5HwBKRmL1w==} + dependencies: + '@tamagui/create-theme': 1.75.1(react@18.2.0) + transitivePeerDependencies: + - react dev: false - /@tamagui/theme@1.74.1(react@18.2.0): - resolution: {integrity: sha512-aD455alOcWY4DGshCDZPMZDsiJboqaurt6g2HFdai7rONqsNBwciqvJKmEB9IGA7/v8vF6YJtk58nGdGay539Q==} + /@tamagui/theme@1.75.1(react@18.2.0): + resolution: {integrity: sha512-+OfA7/Uc0i9GgsY/UvFgSpy/kmYgpJqfzTkjtNI79qq/Op7LkCntTO2s3hlReeME/azvrOpmJg6sMIlXFUUuFw==} peerDependencies: react: '*' dependencies: - '@tamagui/constants': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/constants': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/themes@1.74.1(react@18.2.0): - resolution: {integrity: sha512-MHyhAxsqEq6Zpwv9KQPM/Zcc42gxyiU82gti8V/1JlEHf/1UZnzrV/tukkFmC/7mlMLqdlMhX8k+wJCNd7n5/g==} + /@tamagui/themes@1.75.1(react@18.2.0): + resolution: {integrity: sha512-5GmLnhV/1UEL/MPrn3yvNbh4z9WXGP1gXToiK/I4Ic7IehLyvJwT3z+lZSDRc0D890tfYX2AWprQe18jivQ23A==} dependencies: - '@tamagui/colors': 1.74.1 - '@tamagui/create-theme': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/colors': 1.75.1 + '@tamagui/create-theme': 1.75.1(react@18.2.0) + '@tamagui/theme-builder': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) transitivePeerDependencies: - react dev: false - /@tamagui/timer@1.74.1: - resolution: {integrity: sha512-83jpYnnPI2e2hWS2IcYP+EIRrD7a3cIR7GFHLaF2StRbqifEl7MlzKWwd6LNhtTdrm8Rv/AUkshHersghI+irw==} + /@tamagui/timer@1.75.1: + resolution: {integrity: sha512-DpFCvgsB5bxVB1K7r1PNSBtS5JmR3pgmRfS9gy4BmggaGjn95e/X/ai2616EXNT58IAVd/WyKtTs5slvXxEfaA==} dev: false - /@tamagui/toast@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-pu9wHrjyA/eor6L6Eo8DNOpNKvQZDRSfBTuYVgZV1d16zzJjQY1RdZIU0snN2+jS430YeWpx8AcvyscHyZUnNw==} + /@tamagui/toast@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-gwlPYzUEde6qQHEcN/eooCh7Y0yAqrADG8HvVVNfpVK5zT69XR/A8vyI1Ggswbw/cCHhb5H0obhUbkciQPdVUw==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/dismissable': 1.74.1(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/visually-hidden': 1.74.1(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/dismissable': 1.75.1(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/visually-hidden': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/toggle-group@1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-SluxeJlWwr+xep6jiWgIRMNYg9li5lmTAQZDuZ7kZgm2EqgvGbyw3B2uUrXkczOPwWHKDNwchi0ekwkiSe/CbQ==} + /@tamagui/toggle-group@1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-2gCyYolUirsjPm7o9Uf+/ZyHuGRz8WRR+OizIMEcAReBw5oyMNDZmQGsr+yOxekWQzZ00NUxiiOH9efnlDAbTg==} peerDependencies: react: '*' dependencies: - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/font-size': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/group': 1.74.1(@types/react@18.2.23)(react@18.2.0) - '@tamagui/helpers-tamagui': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/roving-focus': 1.74.1(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-direction': 1.74.1(react@18.2.0) - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/font-size': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/group': 1.75.1(@types/react@18.2.31)(react@18.2.0) + '@tamagui/helpers-tamagui': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/roving-focus': 1.75.1(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-direction': 1.75.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 transitivePeerDependencies: - '@types/react' @@ -4861,158 +4922,158 @@ packages: - react-native dev: false - /@tamagui/tooltip@1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-DfM0v0AI3oGqfZvz9kNTjliowEBiXYVj63a/IXkNK69NZn8S3F30vC0mPaJ8vNv2SWEdznaw0aYX3TETGVdq3w==} + /@tamagui/tooltip@1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-hc90w3SNuYubaiOWnREW9R9WgxKFqSAnM+sM17lXwfsfpHBjFIPjLe9koGrGX2r01mz+IyDp54oWo6bDw4Sizg==} peerDependencies: react: '*' react-native: '*' dependencies: '@floating-ui/react': 0.24.8(react-dom@18.2.0)(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/floating': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/popover': 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) - '@tamagui/popper': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/floating': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/popover': 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) + '@tamagui/popper': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-dom dev: false - /@tamagui/types@1.74.1: - resolution: {integrity: sha512-/fcQzwpfZjY8LIaEctwXRMTj3rwQCdBaADnxsVLr1exC6XA+XepPBWLX2n8IMnzrkEpKjlPjnVS2TYZ0uiS69Q==} + /@tamagui/types@1.75.1: + resolution: {integrity: sha512-AdMhdiCmj914/8QIuAqqhMU63+t/ulkxh+ODmyqJEfXkb/2FilMQLVNaU0o59O6dOguz9KNvMgG6PF152eRCVg==} dev: false - /@tamagui/use-callback-ref@1.74.1: - resolution: {integrity: sha512-I0d2368q47KMFOkQ1UChTsxFAhpQZN4nI7WKLzpfa79wxQJQ55ym9VnpdT7P9dfaDZhZaXkMTVr2UGL914R5mg==} + /@tamagui/use-callback-ref@1.75.1: + resolution: {integrity: sha512-2R2rxMv7VFUT/+mya39yrpOjsK92r+volbWOjDU73hC4CFjRy0fz88kC2j15TGCodeezckMEiZdEcS6gkd98Ng==} dev: false - /@tamagui/use-constant@1.74.1(react@18.2.0): - resolution: {integrity: sha512-RjWUL2g+Sw6lEL8tUg0Jrssrx8kgcY1NscbAwTXdcrSU0K0NIZigIDdg5oG/oiqNn/wKYeaccKuvbBcWEsr/XQ==} + /@tamagui/use-constant@1.75.1(react@18.2.0): + resolution: {integrity: sha512-nClRntlwVhXTq27OQXHmxzfKmevQz/bjCWg2KIzxX+RdAy7lR9PRmxtJyc4KVvSrnWb2D3ziNUOk9lzVNZnzVA==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/use-controllable-state@1.74.1(react@18.2.0): - resolution: {integrity: sha512-TKLACxSXiA6EfHjnI1ymIZqDM9+t1OyIVsTjt0tHdd1r3CP9BsM+KTnreq2IVjd4rkQGM19bAgIPuw12iSnSgw==} + /@tamagui/use-controllable-state@1.75.1(react@18.2.0): + resolution: {integrity: sha512-xG7/iBL9R6U643mHVdk37Lw16206lODFrKnvSB2IWR+nuYNpsVIv6Z68azjKeSFHTx2hHSM5Z39mqhQdlXBPpg==} peerDependencies: react: '*' dependencies: - '@tamagui/use-event': 1.74.1(react@18.2.0) + '@tamagui/use-event': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/use-debounce@1.74.1(react@18.2.0): - resolution: {integrity: sha512-9fsPlnO6gQxO7F0FLnFiLcbeu5s5VkWk09t7O/PbFiggB38PHSWjkbKATiplvm0cyZbjOWv1XY1f0tEcuNzIkg==} + /@tamagui/use-debounce@1.75.1(react@18.2.0): + resolution: {integrity: sha512-IAH667Kr7NV9FmhITk0iXiJq68wKhRBVML7C2qNVBztk6n8bjYf14wVRoUoaI9p+6YHs6L6uLM18eYbzTJSALw==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/use-did-finish-ssr@1.74.1(react@18.2.0): - resolution: {integrity: sha512-VzVLjTS3GzVVwzqW9gMyZoZs75hhmh14nD0h6um4O5R/CtMDlBu8GM7+c8B0douS90k+f65IapEGR8FnveGNrw==} + /@tamagui/use-did-finish-ssr@1.75.1(react@18.2.0): + resolution: {integrity: sha512-+JywNV2cMkyEVGaItqS5aSf2bQEvlblImiclYk10WNjZVoP6kvEEdXz2Xhl8hNh15QiuRTW+YUSRV3ZOrZfN1g==} peerDependencies: react: '*' dependencies: - '@tamagui/constants': 1.74.1(react@18.2.0) + '@tamagui/constants': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/use-direction@1.74.1(react@18.2.0): - resolution: {integrity: sha512-7awrOcZKErakYj/JIYmCtWR+Zbsw01dmwA5yelyiGDVzLesgNtmlcD7Mv71ZN8xkRFHigBLEA4W6Y30xuElCzw==} + /@tamagui/use-direction@1.75.1(react@18.2.0): + resolution: {integrity: sha512-F6A3JkP/aGAKXlGEcveZi2+QLETzRSm+FqYUxp6L1U6HxTs656EeRlE34BcNauOTGzukIY7uSYk5arR8BNZF6w==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/use-escape-keydown@1.74.1: - resolution: {integrity: sha512-75nPRfqg1l7pUcI8mfHyMRPObFb+ytjAfAuT/HxbYxUbPDQgFWpozlgFO9zM8aZbW0DHQ2GvbIFzjprrbZrOeg==} + /@tamagui/use-escape-keydown@1.75.1: + resolution: {integrity: sha512-lbTf1nJKvPkqHPB1WnrRhJu9kKvp0P3QyOqWNEoavNmQSl4lTmVCbnwLj0v8pM/4Wq1Uunm7r57reTf/WB4emg==} dependencies: - '@tamagui/use-callback-ref': 1.74.1 + '@tamagui/use-callback-ref': 1.75.1 dev: false - /@tamagui/use-event@1.74.1(react@18.2.0): - resolution: {integrity: sha512-0QFiralY/Gut5hu22rW59PTGJVBQmrHaWiCHTfyJO6Ok+TqyjqosfxgngRBc8aXLlRwRMXeb+3Acf3wZhEf7Kg==} + /@tamagui/use-event@1.75.1(react@18.2.0): + resolution: {integrity: sha512-Uf1+j6bU1r2d2rBM7oJyPDgU7B2blMHW38dnOlqLG8tN/zh7vF6b3P6T1EnS6kGBXmOovOaZ8Qc5yZXQb9bxyA==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/use-force-update@1.74.1(react@18.2.0): - resolution: {integrity: sha512-OgdgHp5buCEP02rpTXcm18XYNx1sPFx/69QCp+nmUX4CggwNk+ItfySvbOp6TCNAYsfCTXt/vy/fFNLqMnwSOw==} + /@tamagui/use-force-update@1.75.1(react@18.2.0): + resolution: {integrity: sha512-cA4YSMWSQeZXMaGAJyi345uDsmJaCexzsOh/RbMTOpWLgXBh5PfYcF3ka6DgdQm4fGgQlhXxC97GP1O5puH5Sg==} peerDependencies: react: '*' dependencies: react: 18.2.0 dev: false - /@tamagui/use-keyboard-visible@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-OJI01NYe6VSvKhUZturIxwHSg3yC5XYq+Ufs6pbp9LFTAR459qTBWykNSPZO0xCPfCBwsi8G/Y0JXJx1jcTwlQ==} + /@tamagui/use-keyboard-visible@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-uVi7SuOe8H77Ioj+5c0w4KaXLBtT2mJ38sG2EFYfn6E7b90Fj0WkMSdqxaQMyL7GsByIUw2ZwjVDjnN0VDBdbQ==} peerDependencies: react: '*' react-native: '*' dependencies: react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/use-presence@1.74.1(react@18.2.0): - resolution: {integrity: sha512-MG9OmzN6kERTedJTZ2SoGiBRxkVZu4yIS/oxte9owLoO/LoVLVeCUrXWfuRXuDHjiIg1vhGD1DM2XA03M9nIKQ==} + /@tamagui/use-presence@1.75.1(react@18.2.0): + resolution: {integrity: sha512-7WXa8ADnmCP1cOC2ev1w2mzJ0R8ibIYznzWwn6x7vrjPpEqiVyvwpdpvSd5+JiV8pkboeLyUmMJ8ruSTOfLwOA==} peerDependencies: react: '*' dependencies: - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/use-previous@1.74.1: - resolution: {integrity: sha512-KuCpUagg6p2qBuqnNp05RpZIcO0qVx3J3T3ydgnaPVV5wjdzKOZtmC0FSuN3ZFkQ6vl5hQsD4xI6DMXO7nlh2g==} + /@tamagui/use-previous@1.75.1: + resolution: {integrity: sha512-TxZtK1mbba8Oi0cc5MgJNpNmOF17AQLuPHc+6Vz8mCoINXLkASBqsnCKw6tEuNQxE76j1g12S0BENCQWIKcAMQ==} dev: false - /@tamagui/use-window-dimensions@1.74.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-y49iu4cQJ6aP6dHe/xVZjQ1M1Mxtglx8F1ytgAFTM2RrlXovN5e4FGPm5Dq+clRYLzeMTLEE7DsY7z6Za2ZG9w==} + /@tamagui/use-window-dimensions@1.75.1(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-b/OHDjCQfVrHEt18GT68OVxwZ/1bJDMCZP3CjJoA+FXfUywirzKtMkHJYhhQOvUGdDs5KmpfmzYLQ6MOgCLVZA==} peerDependencies: react: '*' react-native: '*' dependencies: - '@tamagui/constants': 1.74.1(react@18.2.0) + '@tamagui/constants': 1.75.1(react@18.2.0) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /@tamagui/visually-hidden@1.74.1(react@18.2.0): - resolution: {integrity: sha512-5V10tOke4XrSpRO80nQ48nbJwoqtUtDMrJCqEgVN5NDC2IrNtVOVUe4rD6BYMczvT4kZ4Ef7zSM8Y/vXuUrE2w==} + /@tamagui/visually-hidden@1.75.1(react@18.2.0): + resolution: {integrity: sha512-QyP6JaU+FgLP04zZokW1EJ+Jojp/ABmompIBv1rudBAYL3VAccMS1n7cbO7RJXXZLGjU5G0wylCmNfH6p4Yg+Q==} peerDependencies: react: '*' dependencies: - '@tamagui/web': 1.74.1(react@18.2.0) + '@tamagui/web': 1.75.1(react@18.2.0) react: 18.2.0 dev: false - /@tamagui/web@1.74.1(react@18.2.0): - resolution: {integrity: sha512-7USS7sMf38GFq/mDHNjvOoHdpaiL9rCBMqzI9z2z+pQWctBRMcmnYtLjPLKdnyzsAaBhp0bS8waG0suJQMzZFA==} + /@tamagui/web@1.75.1(react@18.2.0): + resolution: {integrity: sha512-Z/qdmU7RGRqH8fwR+Clh7jFsKy/9I9j5nJnmiJnlapzmjdMC40XqzUgV2S4hB8KnQrnnXs1ZD46XxsOuE2eouQ==} peerDependencies: react: '*' dependencies: - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/constants': 1.74.1(react@18.2.0) - '@tamagui/helpers': 1.74.1(react@18.2.0) - '@tamagui/normalize-css-color': 1.74.1 - '@tamagui/timer': 1.74.1 - '@tamagui/use-did-finish-ssr': 1.74.1(react@18.2.0) - '@tamagui/use-force-update': 1.74.1(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/constants': 1.75.1(react@18.2.0) + '@tamagui/helpers': 1.75.1(react@18.2.0) + '@tamagui/normalize-css-color': 1.75.1 + '@tamagui/timer': 1.75.1 + '@tamagui/use-did-finish-ssr': 1.75.1(react@18.2.0) + '@tamagui/use-force-update': 1.75.1(react@18.2.0) react: 18.2.0 dev: false @@ -5069,13 +5130,13 @@ packages: resolution: {integrity: sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==} dependencies: '@types/connect': 3.4.37 - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: true /@types/connect@3.4.37: resolution: {integrity: sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: true /@types/cookiejar@2.1.3: @@ -5103,14 +5164,14 @@ packages: /@types/express-serve-static-core@4.17.39: resolution: {integrity: sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 '@types/qs': 6.9.9 '@types/range-parser': 1.2.6 '@types/send': 0.17.3 dev: true - /@types/express@4.17.17: - resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} + /@types/express@4.17.20: + resolution: {integrity: sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==} dependencies: '@types/body-parser': 1.19.4 '@types/express-serve-static-core': 4.17.39 @@ -5121,20 +5182,13 @@ packages: /@types/fs-extra@9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: - '@types/node': 20.6.2 - dev: false - - /@types/glob@7.2.0: - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} - dependencies: - '@types/minimatch': 5.1.2 - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: false /@types/graceful-fs@4.1.8: resolution: {integrity: sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: true /@types/hammerjs@2.0.43: @@ -5144,7 +5198,7 @@ packages: /@types/hoist-non-react-statics@3.3.4: resolution: {integrity: sha512-ZchYkbieA+7tnxwX/SCBySx9WwvWR8TaP5tb2jRAzwvLb/rWchGw3v0w3pqUbUvj0GCwW2Xz/AVPSk6kUGctXQ==} dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 hoist-non-react-statics: 3.3.2 dev: false @@ -5165,17 +5219,21 @@ packages: dependencies: '@types/istanbul-lib-report': 3.0.2 - /@types/jest@29.5.5: - resolution: {integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==} + /@types/jest@29.5.6: + resolution: {integrity: sha512-/t9NnzkOpXb4Nfvg17ieHE6EeSjDS2SGSpNYfoLbUAeL/EOueU/RSdOWFpfQTXBEM7BguYW1XQ0EbM+6RlIh6w==} dependencies: expect: 29.7.0 pretty-format: 29.7.0 dev: true + /@types/js-yaml@4.0.8: + resolution: {integrity: sha512-m6jnPk1VhlYRiLFm3f8X9Uep761f+CK8mHyS65LutH2OhmBF0BeMEjHgg05usH8PLZMWWc/BUR9RPmkvpWnyRA==} + dev: false + /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 '@types/tough-cookie': 4.0.4 parse5: 7.1.2 dev: true @@ -5186,13 +5244,13 @@ packages: /@types/jsonwebtoken@9.0.2: resolution: {integrity: sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: false /@types/keyv@3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: false /@types/mime@1.3.4: @@ -5203,16 +5261,10 @@ packages: resolution: {integrity: sha512-i8MBln35l856k5iOhKk2XJ4SeAWg75mLIpZB4v6imOagKL6twsukBZGDMNhdOVk7yRFTMPpfILocMos59Q1otQ==} dev: true - /@types/minimatch@5.1.2: - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - dev: false - - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: false - - /@types/node@20.6.2: - resolution: {integrity: sha512-Y+/1vGBHV/cYk6OI1Na/LHzwnlNCAfU3ZNGrc1LdRe/LAIbdDPTTv/HU3M7yXN448aTVDq3eKRm2cg7iKLb8gw==} + /@types/node@20.8.7: + resolution: {integrity: sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==} + dependencies: + undici-types: 5.25.3 /@types/parse-json@4.0.1: resolution: {integrity: sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==} @@ -5228,8 +5280,8 @@ packages: resolution: {integrity: sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==} dev: true - /@types/react@18.2.23: - resolution: {integrity: sha512-qHLW6n1q2+7KyBEYnrZpcsAmU/iiCh9WGCKgXvMxx89+TYdJWRjZohVIo9XTcoLhfX3+/hP0Pbulu3bCZQ9PSA==} + /@types/react@18.2.31: + resolution: {integrity: sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==} dependencies: '@types/prop-types': 15.7.9 '@types/scheduler': 0.16.5 @@ -5238,7 +5290,7 @@ packages: /@types/responselike@1.0.2: resolution: {integrity: sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA==} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: false /@types/scheduler@0.16.5: @@ -5256,7 +5308,7 @@ packages: resolution: {integrity: sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==} dependencies: '@types/mime': 1.3.4 - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: true /@types/serve-static@1.15.4: @@ -5264,7 +5316,7 @@ packages: dependencies: '@types/http-errors': 2.0.3 '@types/mime': 3.0.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: true /@types/stack-utils@2.0.2: @@ -5274,11 +5326,11 @@ packages: resolution: {integrity: sha512-GfpwJgYSr3yO+nArFkmyqv3i0vZavyEG5xPd/o95RwpKYpsOKJYI5XLdxLpdRbZI3YiGKKdIOFIf/jlP7A0Jxg==} dependencies: '@types/cookiejar': 2.1.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 dev: true - /@types/supertest@2.0.12: - resolution: {integrity: sha512-X3HPWTwXRerBZS7Mo1k6vMVR1Z6zmJcDVn5O/31whe0tnjE4te6ZJSJGq1RiqHPjzPdMTfjCFogDJmwng9xHaQ==} + /@types/supertest@2.0.15: + resolution: {integrity: sha512-jUCZZ/TMcpGzoSaed9Gjr8HCf3HehExdibyw3OHHEL1als1KmyzcOZZH4MjbObI8TkWsEr7bc7gsW0WTDni+qQ==} dependencies: '@types/superagent': 4.1.20 dev: true @@ -5310,8 +5362,8 @@ packages: dependencies: '@types/yargs-parser': 21.0.2 - /@typescript-eslint/eslint-plugin@6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==} + /@typescript-eslint/eslint-plugin@6.8.0(@typescript-eslint/parser@6.8.0)(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-GosF4238Tkes2SHPQ1i8f6rMtG6zlKwMEB0abqSJ3Npvos+doIlc/ATG+vX1G9coDF3Ex78zM3heXHLyWEwLUw==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -5322,13 +5374,13 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.9.1 - '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 6.7.0 - '@typescript-eslint/type-utils': 6.7.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/parser': 6.8.0(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/scope-manager': 6.8.0 + '@typescript-eslint/type-utils': 6.8.0(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.8.0(eslint@8.52.0)(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.8.0 debug: 4.3.4 - eslint: 8.49.0 + eslint: 8.52.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 @@ -5339,8 +5391,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@6.7.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==} + /@typescript-eslint/parser@6.8.0(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-5tNs6Bw0j6BdWuP8Fx+VH4G9fEPDxnVI7yH1IAPkQH5RUtvKwRoqdecAPdQXv4rSOADAaz1LFBZvZG7VbXivSg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -5349,27 +5401,27 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.7.0 - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/scope-manager': 6.8.0 + '@typescript-eslint/types': 6.8.0 + '@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.8.0 debug: 4.3.4 - eslint: 8.49.0 + eslint: 8.52.0 typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@6.7.0: - resolution: {integrity: sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==} + /@typescript-eslint/scope-manager@6.8.0: + resolution: {integrity: sha512-xe0HNBVwCph7rak+ZHcFD6A+q50SMsFwcmfdjs9Kz4qDh5hWhaPhFjRs/SODEhroBI5Ruyvyz9LfwUJ624O40g==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/types': 6.8.0 + '@typescript-eslint/visitor-keys': 6.8.0 dev: true - /@typescript-eslint/type-utils@6.7.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==} + /@typescript-eslint/type-utils@6.8.0(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-RYOJdlkTJIXW7GSldUIHqc/Hkto8E+fZN96dMIFhuTJcQwdRoGN2rEWA8U6oXbLo0qufH7NPElUb+MceHtz54g==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -5378,23 +5430,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2) + '@typescript-eslint/utils': 6.8.0(eslint@8.52.0)(typescript@5.2.2) debug: 4.3.4 - eslint: 8.49.0 + eslint: 8.52.0 ts-api-utils: 1.0.3(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@6.7.0: - resolution: {integrity: sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==} + /@typescript-eslint/types@6.8.0: + resolution: {integrity: sha512-p5qOxSum7W3k+llc7owEStXlGmSl8FcGvhYt8Vjy7FqEnmkCVlM3P57XQEGj58oqaBWDQXbJDZxwUWMS/EAPNQ==} engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@6.7.0(typescript@5.2.2): - resolution: {integrity: sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==} + /@typescript-eslint/typescript-estree@6.8.0(typescript@5.2.2): + resolution: {integrity: sha512-ISgV0lQ8XgW+mvv5My/+iTUdRmGspducmQcDw5JxznasXNnZn3SKNrTRuMsEXv+V/O+Lw9AGcQCfVaOPCAk/Zg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -5402,8 +5454,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/types': 6.8.0 + '@typescript-eslint/visitor-keys': 6.8.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -5414,33 +5466,36 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@6.7.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==} + /@typescript-eslint/utils@6.8.0(eslint@8.52.0)(typescript@5.2.2): + resolution: {integrity: sha512-dKs1itdE2qFG4jr0dlYLQVppqTE+Itt7GmIf/vX6CSvsW+3ov8PbWauVKyyfNngokhIO9sKZeRGCUo1+N7U98Q==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) '@types/json-schema': 7.0.14 '@types/semver': 7.5.4 - '@typescript-eslint/scope-manager': 6.7.0 - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.2.2) - eslint: 8.49.0 + '@typescript-eslint/scope-manager': 6.8.0 + '@typescript-eslint/types': 6.8.0 + '@typescript-eslint/typescript-estree': 6.8.0(typescript@5.2.2) + eslint: 8.52.0 semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys@6.7.0: - resolution: {integrity: sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==} + /@typescript-eslint/visitor-keys@6.8.0: + resolution: {integrity: sha512-oqAnbA7c+pgOhW2OhGvxm0t1BULX5peQI/rLsNDpGM78EebV3C9IGbX5HNZabuZ6UQrYveCLjKo8Iy/lLlBkkg==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.7.0 + '@typescript-eslint/types': 6.8.0 eslint-visitor-keys: 3.4.3 dev: true + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + /@urql/core@2.3.6(graphql@15.8.0): resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==} peerDependencies: @@ -5745,7 +5800,6 @@ packages: /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - dev: true /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} @@ -5763,6 +5817,10 @@ packages: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} + /ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + /any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} @@ -5819,21 +5877,6 @@ packages: tslib: 2.6.2 dev: false - /arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} - dev: false - - /arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} - dev: false - - /arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} - dev: false - /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} @@ -5841,35 +5884,13 @@ packages: resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} dev: true - /array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} - dependencies: - array-uniq: 1.0.3 - dev: false - /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - /array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} - dev: false - - /array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} - dev: false - /asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - /assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} - dev: false - /ast-types@0.15.2: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} engines: {node: '>=4'} @@ -5903,12 +5924,6 @@ packages: engines: {node: '>= 4.0.0'} dev: false - /atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true - dev: false - /axios@0.26.1(debug@4.3.4): resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} dependencies: @@ -5927,25 +5942,25 @@ packages: - debug dev: false - /babel-core@7.0.0-bridge.0(@babel/core@7.23.0): + /babel-core@7.0.0-bridge.0(@babel/core@7.23.2): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 dev: false - /babel-jest@29.7.0(@babel/core@7.23.0): + /babel-jest@29.7.0(@babel/core@7.23.2): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.3 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.23.0) + babel-preset-jest: 29.6.3(@babel/core@7.23.2) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -5953,12 +5968,12 @@ packages: - supports-color dev: true - /babel-literal-to-ast@2.1.0(@babel/core@7.23.0): + /babel-literal-to-ast@2.1.0(@babel/core@7.23.2): resolution: {integrity: sha512-CxfpQ0ysQ0bZOhlaPgcWjl79Em16Rhqc6++UAFn0A3duiXmuyhhj8yyl9PYbj0I0CyjrHovdDbp2QEKT7uIMxw==} peerDependencies: '@babel/core': ^7.1.2 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/parser': 7.23.0 '@babel/traverse': 7.23.2 '@babel/types': 7.23.0 @@ -6000,38 +6015,38 @@ packages: resolve: 1.22.8 dev: false - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.0): + /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2): resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.0 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: false - /babel-plugin-polyfill-corejs3@0.8.5(@babel/core@7.23.0): + /babel-plugin-polyfill-corejs3@0.8.5(@babel/core@7.23.2): resolution: {integrity: sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) core-js-compat: 3.33.1 transitivePeerDependencies: - supports-color dev: false - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.0): + /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2): resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) transitivePeerDependencies: - supports-color dev: false @@ -6044,10 +6059,10 @@ packages: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: false - /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.0): + /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.2): resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) transitivePeerDependencies: - '@babel/core' dev: false @@ -6056,86 +6071,86 @@ packages: resolution: {integrity: sha512-bJILBtn5a11SmtR2j/3mBOjX4K3weC6cq+NNZ7hG22wCAqpc3qtj/iN7dSe9HDiS46lgp1nHsQgeYrea/RUe+g==} dev: false - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.0): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0) - dev: true - - /babel-preset-expo@9.5.2(@babel/core@7.23.0): + '@babel/core': 7.23.2 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + dev: true + + /babel-preset-expo@9.5.2(@babel/core@7.23.2): resolution: {integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==} dependencies: - '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.0) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.0) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.0) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) - '@babel/preset-env': 7.23.2(@babel/core@7.23.0) + '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.2) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) babel-plugin-module-resolver: 5.0.0 babel-plugin-react-native-web: 0.18.12 - metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.0) + metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.2) transitivePeerDependencies: - '@babel/core' - supports-color dev: false - /babel-preset-fbjs@3.4.0(@babel/core@7.23.0): + /babel-preset-fbjs@3.4.0(@babel/core@7.23.2): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.0) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 dev: false - /babel-preset-jest@29.6.3(@babel/core@7.23.0): + /babel-preset-jest@29.6.3(@babel/core@7.23.2): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) dev: true /balanced-match@1.0.2: @@ -6148,19 +6163,6 @@ packages: /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - /base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} - dependencies: - cache-base: 1.0.1 - class-utils: 0.3.6 - component-emitter: 1.3.0 - define-property: 1.0.0 - isobject: 3.0.1 - mixin-deep: 1.3.2 - pascalcase: 0.1.1 - dev: false - /better-opn@3.0.2: resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} engines: {node: '>=12.0.0'} @@ -6265,24 +6267,6 @@ packages: dependencies: balanced-match: 1.0.2 - /braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} - dependencies: - arr-flatten: 1.1.0 - array-unique: 0.3.2 - extend-shallow: 2.0.1 - fill-range: 4.0.0 - isobject: 3.0.1 - repeat-element: 1.1.4 - snapdragon: 0.8.2 - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} @@ -6350,16 +6334,16 @@ packages: run-applescript: 5.0.0 dev: true - /burnt@0.11.7(expo@49.0.13)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-Td70Axu53eDdEFDehCW1IvBY6xopdgcIISHMDKhQQFKAuoxdYHsensfXIzOAsjqTaNFA8NFmnYfLdQhAoPc9MA==} + /burnt@0.12.1(expo@49.0.16)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-a5EQvG8CR1JDmOyY9aiUORnJ39wpmZMMva5qbCTXadtNJAjLDZTvrmp7cvYB9i+Jfe1wVhvCCFfEios7M9/88Q==} peerDependencies: expo: '*' react: '*' react-native: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) sf-symbols-typescript: 1.0.0 sonner: 0.3.5(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: @@ -6392,7 +6376,7 @@ packages: glob: 7.2.3 infer-owner: 1.0.4 lru-cache: 6.0.0 - minipass: 3.1.6 + minipass: 3.3.6 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -6407,45 +6391,22 @@ packages: - bluebird dev: false - /cacache@16.1.3: - resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /cacache@17.1.4: + resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - '@npmcli/fs': 2.1.2 - '@npmcli/move-file': 2.0.1 - chownr: 2.0.0 - fs-minipass: 2.1.0 - glob: 8.1.0 - infer-owner: 1.0.4 + '@npmcli/fs': 3.1.0 + fs-minipass: 3.0.3 + glob: 10.3.4 lru-cache: 7.18.3 - minipass: 3.3.6 + minipass: 7.0.4 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 - mkdirp: 1.0.4 p-map: 4.0.0 - promise-inflight: 1.0.1 - rimraf: 3.0.2 - ssri: 9.0.1 + ssri: 10.0.5 tar: 6.2.0 - unique-filename: 2.0.1 - transitivePeerDependencies: - - bluebird - dev: false - - /cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} - dependencies: - collection-visit: 1.0.0 - component-emitter: 1.3.0 - get-value: 2.0.6 - has-value: 1.0.0 - isobject: 3.0.1 - set-value: 2.0.1 - to-object-path: 0.3.0 - union-value: 1.0.1 - unset-value: 1.0.0 + unique-filename: 3.0.0 dev: false /cacheable-request@6.1.0: @@ -6468,10 +6429,6 @@ packages: get-intrinsic: 1.2.2 set-function-length: 1.1.1 - /call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} - dev: false - /caller-callsite@2.0.0: resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} engines: {node: '>=4'} @@ -6552,18 +6509,20 @@ packages: resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} dev: false - /check-dependency-version-consistency@3.0.3: - resolution: {integrity: sha512-BmCr4v9xBGCPBTUoJwqaSJV9VqWXxAR983BogbEMU/y3NqwbvFkgpUBNW9YTP79Kv9FIy8X+G/5TU79HpI8C6Q==} - engines: {node: ^12.20.0 || ^14.14.0 || >=16.0.0} + /check-dependency-version-consistency@4.1.0: + resolution: {integrity: sha512-xghkzKgMxpAfeP9OJfVrErtv8BU4h5kHYQyheHC0j0RYRVNWti0qI3+HkFgWBKejq2UE2wOnoWZlvDKFj6jFoA==} + engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true dependencies: + '@types/js-yaml': 4.0.8 chalk: 5.3.0 - commander: 9.5.0 + commander: 10.0.1 edit-json-file: 1.7.0 globby: 13.2.2 + js-yaml: 4.1.0 semver: 7.5.4 table: 6.8.1 - type-fest: 2.19.0 + type-fest: 3.13.1 dev: false /chokidar@3.5.3: @@ -6605,16 +6564,6 @@ packages: /class-transformer@0.2.3: resolution: {integrity: sha512-qsP+0xoavpOlJHuYsQJsN58HXSl8Jvveo+T37rEvCEeRfMWoytAyR0Ua/YsFgpM6AZYZ/og2PJwArwzJl1aXtQ==} - /class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} - dependencies: - arr-union: 3.1.0 - define-property: 0.2.5 - isobject: 3.0.1 - static-extend: 0.1.2 - dev: false - /class-validator@0.11.1: resolution: {integrity: sha512-6CGdjwJLmKw+sQbK5ZDo1v1yTajkqfPOUDWSYVIlhUiCh6Phy8sAnMFE2XKHAcKAdoOz4jJUQhjPQWPYUuHxrA==} dependencies: @@ -6707,14 +6656,6 @@ packages: resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} dev: true - /collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} - dependencies: - map-visit: 1.0.0 - object-visit: 1.0.1 - dev: false - /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -6820,6 +6761,7 @@ packages: /component-emitter@1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + dev: true /component-type@1.2.1: resolution: {integrity: sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg==} @@ -6923,11 +6865,6 @@ packages: resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==} dev: true - /copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} - dev: false - /core-js-compat@3.33.1: resolution: {integrity: sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==} dependencies: @@ -6965,7 +6902,7 @@ packages: yaml: 1.10.2 dev: true - /create-jest@29.7.0(@types/node@20.6.2)(ts-node@10.9.1): + /create-jest@29.7.0(@types/node@20.8.7)(ts-node@10.9.1): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -6974,7 +6911,7 @@ packages: chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -7237,28 +7174,6 @@ packages: engines: {node: '>=12'} dev: true - /define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: 0.1.6 - dev: false - - /define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: 1.0.2 - dev: false - - /define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: 1.0.2 - isobject: 3.0.1 - dev: false - /del@6.1.1: resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} engines: {node: '>=10'} @@ -7338,13 +7253,6 @@ packages: engines: {node: '>=0.3.1'} dev: true - /dir-glob@2.2.2: - resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} - engines: {node: '>=4'} - dependencies: - path-type: 3.0.0 - dev: false - /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} @@ -7410,6 +7318,9 @@ packages: resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} dev: false + /eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + /ecdsa-sig-formatter@1.0.11: resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} dependencies: @@ -7451,6 +7362,9 @@ packages: /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + /encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -7599,17 +7513,17 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier@9.0.0(eslint@8.49.0): + /eslint-config-prettier@9.0.0(eslint@8.52.0): resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.49.0 + eslint: 8.52.0 dev: true - /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.49.0)(prettier@3.0.3): - resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==} + /eslint-plugin-prettier@5.0.1(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@3.0.3): + resolution: {integrity: sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: '@types/eslint': '>=8.0.0' @@ -7622,8 +7536,8 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.49.0 - eslint-config-prettier: 9.0.0(eslint@8.49.0) + eslint: 8.52.0 + eslint-config-prettier: 9.0.0(eslint@8.52.0) prettier: 3.0.3 prettier-linter-helpers: 1.0.0 synckit: 0.8.5 @@ -7648,18 +7562,19 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint@8.49.0: - resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==} + /eslint@8.52.0: + resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0) '@eslint-community/regexpp': 4.9.1 '@eslint/eslintrc': 2.1.2 - '@eslint/js': 8.49.0 + '@eslint/js': 8.52.0 '@humanwhocodes/config-array': 0.11.13 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -7811,21 +7726,6 @@ packages: engines: {node: '>= 0.8.0'} dev: true - /expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} - dependencies: - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - posix-character-classes: 0.1.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /expect@29.7.0: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -7837,28 +7737,28 @@ packages: jest-util: 29.7.0 dev: true - /expo-apple-authentication@6.1.2(expo@49.0.13): + /expo-apple-authentication@6.1.2(expo@49.0.16): resolution: {integrity: sha512-wXGrltitAu/MncQ7F16uQIZO5Uva2tof7pBa3pbEg1g6TAp4YQhJ1iwEeit0Jlk9J64R9c+kKzbyuRquWMzyyA==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-application@5.3.1(expo@49.0.13): + /expo-application@5.3.1(expo@49.0.16): resolution: {integrity: sha512-HR2+K+Hm33vLw/TfbFaHrvUbRRNRco8R+3QaCKy7eJC2LFfT05kZ15ynGaKfB5DJ/oqPV3mxXVR/EfwmE++hoA==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-asset@8.10.1(expo@49.0.13): + /expo-asset@8.10.1(expo@49.0.16): resolution: {integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==} dependencies: blueimp-md5: 2.19.0 - expo-constants: 14.4.2(expo@49.0.13) - expo-file-system: 15.4.4(expo@49.0.13) + expo-constants: 14.4.2(expo@49.0.16) + expo-file-system: 15.4.4(expo@49.0.16) invariant: 2.2.4 md5-file: 3.2.3 path-browserify: 1.0.1 @@ -7868,13 +7768,13 @@ packages: - supports-color dev: false - /expo-auth-session@5.2.0(expo@49.0.13): + /expo-auth-session@5.2.0(expo@49.0.16): resolution: {integrity: sha512-IihmXSBbytPUgUvq7Gj+v4Q8wcQNsAQ8Tbp5OklNLfO/6OZRDkGp/mM+aI0+tlmDrZabZ2cTLDVMBqi30b5eKg==} dependencies: - expo-constants: 15.0.0(expo@49.0.13) - expo-crypto: 12.6.0(expo@49.0.13) - expo-linking: 6.0.0(expo@49.0.13) - expo-web-browser: 12.5.0(expo@49.0.13) + expo-constants: 15.0.0(expo@49.0.16) + expo-crypto: 12.6.0(expo@49.0.16) + expo-linking: 6.0.0(expo@49.0.16) + expo-web-browser: 12.5.0(expo@49.0.16) invariant: 2.2.4 qs: 6.11.2 transitivePeerDependencies: @@ -7882,190 +7782,190 @@ packages: - supports-color dev: false - /expo-blur@12.6.0(expo@49.0.13): + /expo-blur@12.6.0(expo@49.0.16): resolution: {integrity: sha512-yrZYu4mQX4ZJtSrjNVMuB9kCMB8Xerk5Zn5iES6ojmGAk+yxJ/jdyhaUVqbpaA8LBmspdKgQz2dW8+9wa8dSAg==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-constants@14.4.2(expo@49.0.13): + /expo-constants@14.4.2(expo@49.0.16): resolution: {integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==} peerDependencies: expo: '*' dependencies: '@expo/config': 8.1.2 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) uuid: 3.4.0 transitivePeerDependencies: - supports-color dev: false - /expo-constants@14.5.1(expo@49.0.13): + /expo-constants@14.5.1(expo@49.0.16): resolution: {integrity: sha512-06OKXQmKI0vuje++6lm7w1kO3rKsZAHio/4d9hwQuVAtExJ6RM92BnpzkDAV16ZheVN/FHKzNyY1BYLqXfujMw==} peerDependencies: expo: '*' dependencies: '@expo/config': 8.2.1 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) uuid: 3.4.0 transitivePeerDependencies: - supports-color dev: false - /expo-constants@15.0.0(expo@49.0.13): + /expo-constants@15.0.0(expo@49.0.16): resolution: {integrity: sha512-HDg5irjqv3GWDmVtaVV+tjhEKgYuiN8V2tb6l1R22SfVvka3rb1qMA+/mqO5unaBOVaWZ3kRCrA5qn9buUoeJw==} peerDependencies: expo: '*' dependencies: '@expo/config': 8.3.1 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) uuid: 3.4.0 transitivePeerDependencies: - supports-color dev: false - /expo-crypto@12.6.0(expo@49.0.13): + /expo-crypto@12.6.0(expo@49.0.16): resolution: {integrity: sha512-wSq64eIJxk4lQBidtcW9wNF5AgO/UvV8W8mDhb7bo6P3xH41yvu/P4FcxevQY1taGA8VHD+fO+xQDrhPiHzFqQ==} peerDependencies: expo: '*' dependencies: base64-js: 1.5.1 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-dev-client@2.4.11(expo@49.0.13): + /expo-dev-client@2.4.11(expo@49.0.16): resolution: {integrity: sha512-A7aKQZeEYG0YJ51GnjOFkMNe118jD1cbU+v5iM3E+H1Co5aVtnlGZWcv8Dtw3uGuWxRgbWGds5TGNbcDmJ1hDg==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) - expo-dev-launcher: 2.4.13(expo@49.0.13) - expo-dev-menu: 3.2.1(expo@49.0.13) - expo-dev-menu-interface: 1.3.0(expo@49.0.13) + expo: 49.0.16(@babel/core@7.23.2) + expo-dev-launcher: 2.4.13(expo@49.0.16) + expo-dev-menu: 3.2.1(expo@49.0.16) + expo-dev-menu-interface: 1.3.0(expo@49.0.16) expo-manifests: 0.7.2 - expo-updates-interface: 0.10.1(expo@49.0.13) + expo-updates-interface: 0.10.1(expo@49.0.16) dev: false - /expo-dev-launcher@2.4.13(expo@49.0.13): + /expo-dev-launcher@2.4.13(expo@49.0.16): resolution: {integrity: sha512-afszaREyGnhWJMmcOuDGs83r0UWeRvZrOHlKQxxst/UhAeFQqlDmkEjwtDWfTUy7BoXuuw2CuQtUFH+vTyjEGA==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) - expo-dev-menu: 3.2.1(expo@49.0.13) + expo: 49.0.16(@babel/core@7.23.2) + expo-dev-menu: 3.2.1(expo@49.0.16) resolve-from: 5.0.0 semver: 7.5.4 dev: false - /expo-dev-launcher@3.1.0(expo@49.0.13): + /expo-dev-launcher@3.1.0(expo@49.0.16): resolution: {integrity: sha512-tzXAyf2eyPVFJmvnhhsUE9hvq6FCXPPOebvRSCXn52EFnXz8LpLX6lcOwprVLsYAOBuJ97tli/k7JbN8VX2wPQ==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) - expo-dev-menu: 4.1.0(expo@49.0.13) - expo-manifests: 0.9.0(expo@49.0.13) + expo: 49.0.16(@babel/core@7.23.2) + expo-dev-menu: 4.1.0(expo@49.0.16) + expo-manifests: 0.9.0(expo@49.0.16) resolve-from: 5.0.0 semver: 7.5.4 transitivePeerDependencies: - supports-color dev: false - /expo-dev-menu-interface@1.3.0(expo@49.0.13): + /expo-dev-menu-interface@1.3.0(expo@49.0.16): resolution: {integrity: sha512-WtRP7trQ2lizJJTTFXUSGGn1deIeHaYej0sUynvu/uC69VrSP4EeSnYOxbmEO29kuT/MsQBMGu0P/AkMQOqCOg==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-dev-menu-interface@1.4.0(expo@49.0.13): + /expo-dev-menu-interface@1.4.0(expo@49.0.16): resolution: {integrity: sha512-uNoYthxkriKeFed9/YLvqXWIgP6Eyj1QX5+xpnhnmoe7Ewwos/Wk61CkPHo/dJESX34jj3tVjCcfV9itSLSptg==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-dev-menu@3.2.1(expo@49.0.13): + /expo-dev-menu@3.2.1(expo@49.0.16): resolution: {integrity: sha512-SxH/ZUIYZliMBjJTpiECVSDkP7e81mbGNLH8ZD69iCAfLeH7P1OPXFycEdcvN33I7tVqzFgARGLK/W/8JV+U9w==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) - expo-dev-menu-interface: 1.3.0(expo@49.0.13) + expo: 49.0.16(@babel/core@7.23.2) + expo-dev-menu-interface: 1.3.0(expo@49.0.16) semver: 7.5.4 dev: false - /expo-dev-menu@4.1.0(expo@49.0.13): + /expo-dev-menu@4.1.0(expo@49.0.16): resolution: {integrity: sha512-jYcSQeGam2QQMbxiyp+BW+c/br965O9ih+FUlLgO8oBByG6KAL6Ff929aUbD/mnAxVBm4vLlN7K5iKLyaL8xKg==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) - expo-dev-menu-interface: 1.4.0(expo@49.0.13) + expo: 49.0.16(@babel/core@7.23.2) + expo-dev-menu-interface: 1.4.0(expo@49.0.16) semver: 7.5.4 dev: false - /expo-file-system@15.4.4(expo@49.0.13): + /expo-file-system@15.4.4(expo@49.0.16): resolution: {integrity: sha512-F0xS88D85F7qVQ61r0qBnzh6VW/s6iIl+VaQEEi2nAIOQHw1JIEj4yCXPLTtbyn5VmArbe2dSL3KYz1V+BLkKA==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) uuid: 3.4.0 dev: false - /expo-font@11.4.0(expo@49.0.13): + /expo-font@11.4.0(expo@49.0.16): resolution: {integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) fontfaceobserver: 2.3.0 dev: false - /expo-font@11.6.0(expo@49.0.13): + /expo-font@11.6.0(expo@49.0.16): resolution: {integrity: sha512-ekfU0MN7vzJNGwQCJhxnhF2M9Fq/RtVF5xSQpr8+f4ISPimmKfEcArMHKCl4oG3saFVjSRX7fLbo38WOv3z5Mw==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) fontfaceobserver: 2.3.0 dev: false - /expo-head@0.0.14(expo@49.0.13)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-NvG6dwzi06F2hlYuz1rW/O8B/Us/2lDHTHZv0DJJmSWjAuT3Ja04WtS0QI9Yn5n0bSKKPrEGl4515q1zJ9MI0A==} + /expo-head@0.0.15(expo@49.0.16)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-cofGqFe06Nr2h5/A3UYCuwq5jEABEwAFOu+TKXxXf0gbKhBNCarbstttlJmmzzAuMO2+HAk4T0J8pv7eibkM6w==} peerDependencies: expo: '*' react: '*' react-native: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) react: 18.2.0 react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) transitivePeerDependencies: - react-dom dev: false - /expo-image-loader@4.4.0(expo@49.0.13): + /expo-image-loader@4.4.0(expo@49.0.16): resolution: {integrity: sha512-dq88tiRB8aB1U+O/oJI7IY4VU9Nu2iDjEwR8QDfLtD4xWd5lNGoyic5Vh7911E1qNJFqNMSVIVzOD5l1SQ3A6g==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-image-picker@14.5.0(expo@49.0.13): + /expo-image-picker@14.5.0(expo@49.0.16): resolution: {integrity: sha512-9icvfQuWMdNKufFqu+FxenKcfybz9ior+XYQCIl/q5+mpHPo2tKq8I30vu2BjsOJ0Cfo7V4vMeN7a9F/3ooUfQ==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) - expo-image-loader: 4.4.0(expo@49.0.13) + expo: 49.0.16(@babel/core@7.23.2) + expo-image-loader: 4.4.0(expo@49.0.16) dev: false /expo-json-utils@0.7.1: @@ -8076,27 +7976,27 @@ packages: resolution: {integrity: sha512-qr29nwg9l9W3Taww8qFuiUVKdICQqATP5WK/aNx762D039SzpAKqcD8Hvqmf7ICJQEaXv7xUromRImhkgELBHA==} dev: false - /expo-keep-awake@12.3.0(expo@49.0.13): + /expo-keep-awake@12.3.0(expo@49.0.16): resolution: {integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-linear-gradient@12.5.0(expo@49.0.13): + /expo-linear-gradient@12.5.0(expo@49.0.16): resolution: {integrity: sha512-GOV2wODawr2biRCtF2Yb5+wLzvnwXS8dAblfQO7qjyh4f7TDTJn7X0TlVSDMNhIdbAcZBrdxvGFeE2iXdzQ6ow==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-linking@6.0.0(expo@49.0.13): + /expo-linking@6.0.0(expo@49.0.16): resolution: {integrity: sha512-BVj+9yfMfQg1r23uQOES3Y47XdigKV0Qg0jJ5zP+3SO/mZ98s3r5wASOGLhujvO9/SqOh/BdotcTsO9sasxCag==} dependencies: '@types/qs': 6.9.9 - expo-constants: 14.5.1(expo@49.0.13) + expo-constants: 14.5.1(expo@49.0.16) invariant: 2.2.4 qs: 6.11.2 url-parse: 1.5.10 @@ -8105,12 +8005,12 @@ packages: - supports-color dev: false - /expo-localization@14.5.0(expo@49.0.13): + /expo-localization@14.5.0(expo@49.0.16): resolution: {integrity: sha512-hax+Gs5akRCKeMhDRugTW+n7ORYkKoLFWPUXviupsAioR9MXSoghRqE9nOJio8mFwhhMiUA8BflppdpUxxOiSA==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) rtl-detect: 1.0.4 dev: false @@ -8120,13 +8020,13 @@ packages: expo-json-utils: 0.7.1 dev: false - /expo-manifests@0.9.0(expo@49.0.13): + /expo-manifests@0.9.0(expo@49.0.16): resolution: {integrity: sha512-aHo3AlDnPT53RqiJbv4OAhivDORkMhxKXk+uAIgestOR1SwkdYmzf44d2k+rEiloX7TQzlh5i6GKKZVVkqGNTw==} peerDependencies: expo: '*' dependencies: '@expo/config': 8.3.1 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) expo-json-utils: 0.9.0 transitivePeerDependencies: - supports-color @@ -8153,8 +8053,8 @@ packages: invariant: 2.2.4 dev: false - /expo-router@2.0.8(expo-constants@14.4.2)(expo-linking@6.0.0)(expo-modules-autolinking@1.5.1)(expo-status-bar@1.7.1)(expo@49.0.13)(metro@0.79.1)(react-dom@18.2.0)(react-native-gesture-handler@2.13.1)(react-native-reanimated@3.5.4)(react-native-safe-area-context@4.7.2)(react-native-screens@3.25.0)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-hKm15AzEmqASgts1qf1UQzjB4ON6iXrV+KsHVicK7L3lb2rLpI6Cj5ayWjjUAQ7GmTw5O2FR/gdlPYil4hALIQ==} + /expo-router@2.0.9(expo-constants@14.4.2)(expo-linking@6.0.0)(expo-modules-autolinking@1.5.1)(expo-status-bar@1.7.1)(expo@49.0.16)(metro@0.79.1)(react-dom@18.2.0)(react-native-gesture-handler@2.13.3)(react-native-reanimated@3.5.4)(react-native-safe-area-context@4.7.3)(react-native-screens@3.26.0)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-QLqKiIGvwXlXfI7rG9cbBWadmUWamrYvW60K2sH/wwMDHdylwdr9aSSqQmFFQzfbQInuLKnSbh5EHOddOOqmdA==} peerDependencies: '@react-navigation/drawer': ^6.5.8 '@testing-library/jest-native': '*' @@ -8175,25 +8075,25 @@ packages: react-native-reanimated: optional: true dependencies: - '@bacons/react-views': 1.1.3(react-native@0.72.5) - '@expo/metro-runtime': 2.2.10(react-native@0.72.5) + '@bacons/react-views': 1.1.3(react-native@0.72.6) + '@expo/metro-runtime': 2.2.11(react-native@0.72.6) '@radix-ui/react-slot': 1.0.1(react@18.2.0) - '@react-navigation/bottom-tabs': 6.5.11(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native-screens@3.25.0)(react-native@0.72.5)(react@18.2.0) - '@react-navigation/native': 6.1.8(react-native@0.72.5)(react@18.2.0) - '@react-navigation/native-stack': 6.9.16(@react-navigation/native@6.1.8)(react-native-safe-area-context@4.7.2)(react-native-screens@3.25.0)(react-native@0.72.5)(react@18.2.0) - expo: 49.0.13(@babel/core@7.23.0) - expo-constants: 14.4.2(expo@49.0.13) - expo-head: 0.0.14(expo@49.0.13)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) - expo-linking: 6.0.0(expo@49.0.13) - expo-splash-screen: 0.20.5(expo-modules-autolinking@1.5.1)(expo@49.0.13) + '@react-navigation/bottom-tabs': 6.5.11(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native-screens@3.26.0)(react-native@0.72.6)(react@18.2.0) + '@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0) + '@react-navigation/native-stack': 6.9.16(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.7.3)(react-native-screens@3.26.0)(react-native@0.72.6)(react@18.2.0) + expo: 49.0.16(@babel/core@7.23.2) + expo-constants: 14.4.2(expo@49.0.16) + expo-head: 0.0.15(expo@49.0.16)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) + expo-linking: 6.0.0(expo@49.0.16) + expo-splash-screen: 0.20.5(expo-modules-autolinking@1.5.1)(expo@49.0.16) expo-status-bar: 1.7.1 metro: 0.79.1 query-string: 7.1.3 react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0) - react-native-gesture-handler: 2.13.1(react-native@0.72.5)(react@18.2.0) - react-native-reanimated: 3.5.4(@babel/core@7.23.0)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.5)(react@18.2.0) - react-native-safe-area-context: 4.7.2(react-native@0.72.5)(react@18.2.0) - react-native-screens: 3.25.0(react-native@0.72.5)(react@18.2.0) + react-native-gesture-handler: 2.13.3(react-native@0.72.6)(react@18.2.0) + react-native-reanimated: 3.5.4(@babel/core@7.23.2)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.6)(react@18.2.0) + react-native-safe-area-context: 4.7.3(react-native@0.72.6)(react@18.2.0) + react-native-screens: 3.26.0(react-native@0.72.6)(react@18.2.0) schema-utils: 4.2.0 url: 0.11.3 transitivePeerDependencies: @@ -8205,26 +8105,26 @@ packages: - supports-color dev: false - /expo-splash-screen@0.20.5(expo-modules-autolinking@1.5.1)(expo@49.0.13): + /expo-splash-screen@0.20.5(expo-modules-autolinking@1.5.1)(expo@49.0.16): resolution: {integrity: sha512-nTALYdjHpeEA30rdOWSguxn72ctv8WM8ptuUgpfRgsWyn4i6rwYds/rBXisX69XO5fg+XjHAQqijGx/b28+3tg==} peerDependencies: expo: '*' dependencies: '@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.5.1) - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) transitivePeerDependencies: - encoding - expo-modules-autolinking - supports-color dev: false - /expo-splash-screen@0.22.0(expo-modules-autolinking@1.5.1)(expo@49.0.13): + /expo-splash-screen@0.22.0(expo-modules-autolinking@1.5.1)(expo@49.0.16): resolution: {integrity: sha512-+iKesrtp8s3IQDXPgCwI6PZzQwhSGR/LLND1wOux8HrCmtveJQpomKBIdvwTb26GNKZiN1EtiQbnBZhn3EiKaA==} peerDependencies: expo: '*' dependencies: '@expo/prebuild-config': 6.4.0(expo-modules-autolinking@1.5.1) - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) transitivePeerDependencies: - encoding - expo-modules-autolinking @@ -8235,52 +8135,52 @@ packages: resolution: {integrity: sha512-Wkm9uCmuQQBSU+l/AekWAQ1d0FYw560yL116+OAKJDyKBOUpPURoWkFbabM1EDxv+5scTuSThr/CvsA0nsSCow==} dev: false - /expo-system-ui@2.6.0(expo@49.0.13): + /expo-system-ui@2.6.0(expo@49.0.16): resolution: {integrity: sha512-QvWpFoVnQnGq6y3C9Rpm6WeIxkdRaPe/rLgMnhmKYNdoq31WYEZkrJLH8ri04XeT29v1yupVeXhh+2yvrm2OhQ==} peerDependencies: expo: '*' dependencies: '@react-native/normalize-color': 2.1.0 debug: 4.3.4 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) transitivePeerDependencies: - supports-color dev: false - /expo-updates-interface@0.10.1(expo@49.0.13): + /expo-updates-interface@0.10.1(expo@49.0.16): resolution: {integrity: sha512-I6JMR7EgjXwckrydDmrkBEX/iw750dcqpzQVsjznYWfi0HTEOxajLHB90fBFqQkUV5i5s4Fd3hYQ1Cn0oMzUbA==} peerDependencies: expo: '*' dependencies: - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) dev: false - /expo-web-browser@12.5.0(expo@49.0.13): + /expo-web-browser@12.5.0(expo@49.0.16): resolution: {integrity: sha512-3uDzP19DqcEicLOB4ZH6pGWzxlCQ8mLHSmWMmfXEBhZjooUkHUrysbzkNvQQa24ijy3uoUybX4jW0xPss594kA==} peerDependencies: expo: '*' dependencies: compare-urls: 2.0.0 - expo: 49.0.13(@babel/core@7.23.0) + expo: 49.0.16(@babel/core@7.23.2) url: 0.11.3 dev: false - /expo@49.0.13(@babel/core@7.23.0): - resolution: {integrity: sha512-k2QFmT5XN490ksjKJgogfS5SFj6ZKCu1GwWz4VUV4S9gkPjzr8zQAZoVPKaWxUYRb6xDpTJXdhLt7gSnV3bJvw==} + /expo@49.0.16(@babel/core@7.23.2): + resolution: {integrity: sha512-1TcpWUEpzCQ7FjtwO1j+l/UvNgrEDZWfQm4kOo9eVZVDNKavYo+KL4XXHeljSAOOGhI/plmpD3bvhfYoywOAFQ==} hasBin: true dependencies: '@babel/runtime': 7.23.2 - '@expo/cli': 0.10.13(expo-modules-autolinking@1.5.1) + '@expo/cli': 0.10.14(expo-modules-autolinking@1.5.1) '@expo/config': 8.1.2 '@expo/config-plugins': 7.2.5 '@expo/vector-icons': 13.0.0 - babel-preset-expo: 9.5.2(@babel/core@7.23.0) - expo-application: 5.3.1(expo@49.0.13) - expo-asset: 8.10.1(expo@49.0.13) - expo-constants: 14.4.2(expo@49.0.13) - expo-file-system: 15.4.4(expo@49.0.13) - expo-font: 11.4.0(expo@49.0.13) - expo-keep-awake: 12.3.0(expo@49.0.13) + babel-preset-expo: 9.5.2(@babel/core@7.23.2) + expo-application: 5.3.1(expo@49.0.16) + expo-asset: 8.10.1(expo@49.0.16) + expo-constants: 14.4.2(expo@49.0.16) + expo-file-system: 15.4.4(expo@49.0.16) + expo-font: 11.4.0(expo@49.0.16) + expo-keep-awake: 12.3.0(expo@49.0.16) expo-modules-autolinking: 1.5.1 expo-modules-core: 1.5.11 fbemitter: 3.0.0 @@ -8298,6 +8198,10 @@ packages: - utf-8-validate dev: false + /exponential-backoff@3.1.1: + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} + dev: false + /express@4.18.2: resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} engines: {node: '>= 0.10.0'} @@ -8343,14 +8247,6 @@ packages: is-extendable: 0.1.1 dev: false - /extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} - dependencies: - assign-symbols: 1.0.0 - is-extendable: 1.0.1 - dev: false - /external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} @@ -8360,22 +8256,6 @@ packages: tmp: 0.0.33 dev: true - /extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} - dependencies: - array-unique: 0.3.2 - define-property: 1.0.0 - expand-brackets: 2.1.4 - extend-shallow: 2.0.1 - fragment-cache: 0.2.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -8383,20 +8263,6 @@ packages: resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} dev: true - /fast-glob@2.2.7: - resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} - engines: {node: '>=4.0.0'} - dependencies: - '@mrmlnc/readdir-enhanced': 2.2.1 - '@nodelib/fs.stat': 1.1.3 - glob-parent: 3.1.0 - is-glob: 4.0.3 - merge2: 1.4.1 - micromatch: 3.1.10 - transitivePeerDependencies: - - supports-color - dev: false - /fast-glob@3.3.1: resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} engines: {node: '>=8.6.0'} @@ -8480,19 +8346,9 @@ packages: dependencies: flat-cache: 3.1.1 - /fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 2.0.1 - is-number: 3.0.0 - repeat-string: 1.6.1 - to-regex-range: 2.1.1 - dev: false - - /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 @@ -8627,17 +8483,19 @@ packages: resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==} dev: false - /for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} - dev: false - /foreachasync@3.0.0: resolution: {integrity: sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==} dev: false - /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.88.2): - resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} + /foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + + /fork-ts-checker-webpack-plugin@9.0.0(typescript@5.2.2)(webpack@5.89.0): + resolution: {integrity: sha512-Kw3JjsfGs0piB0V2Em8gCuo51O3p4KyCOK0Tn8X57oq2mSNBrMmONALRBw5frcmWsOVU7iELXXsJ+FVxJeQuhA==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: typescript: '>3.6.0' @@ -8655,8 +8513,8 @@ packages: schema-utils: 3.3.0 semver: 7.5.4 tapable: 2.2.1 - typescript: 5.1.6 - webpack: 5.88.2 + typescript: 5.2.2 + webpack: 5.89.0 dev: true /form-data@3.0.1: @@ -8705,11 +8563,28 @@ packages: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} - /fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} + /framer-motion@6.5.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==} + peerDependencies: + react: '>=16.8 || ^17.0.0 || ^18.0.0' + react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' + dependencies: + '@motionone/dom': 10.12.0 + framesync: 6.0.1 + hey-listen: 1.0.8 + popmotion: 11.0.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + style-value-types: 5.0.0 + tslib: 2.6.2 + optionalDependencies: + '@emotion/is-prop-valid': 0.8.8 + dev: false + + /framesync@6.0.1: + resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==} dependencies: - map-cache: 0.2.2 + tslib: 2.6.2 dev: false /freeport-async@2.0.0: @@ -8739,15 +8614,6 @@ packages: universalify: 2.0.0 dev: false - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: false - /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} @@ -8784,6 +8650,13 @@ packages: minipass: 3.3.6 dev: false + /fs-minipass@3.0.3: + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + minipass: 7.0.4 + dev: false + /fs-monkey@1.0.5: resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} dev: true @@ -8869,33 +8742,10 @@ packages: resolve-pkg-maps: 1.0.0 dev: false - /get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} - dev: false - - /get-workspaces@0.6.0: - resolution: {integrity: sha512-EWfuENHoxNGk4xoel0jJdm/nhm8oMGQYRsTWJDqrHaj7jyebSckZI0TwQaeWX1rzqpMLULYFrdxhYJPI1l2j3w==} - dependencies: - '@changesets/types': 0.4.0 - fs-extra: 7.0.1 - globby: 9.2.0 - read-yaml-file: 1.1.0 - transitivePeerDependencies: - - supports-color - dev: false - /getenv@1.0.0: resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==} engines: {node: '>=6'} - /glob-parent@3.1.0: - resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} - dependencies: - is-glob: 3.1.0 - path-dirname: 1.0.2 - dev: false - /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -8908,14 +8758,21 @@ packages: dependencies: is-glob: 4.0.3 - /glob-to-regexp@0.3.0: - resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} - dev: false - /glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} dev: true + /glob@10.3.4: + resolution: {integrity: sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.1 + minipass: 7.0.4 + path-scurry: 1.10.1 + /glob@6.0.4: resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==} dependencies: @@ -9000,22 +8857,6 @@ packages: slash: 4.0.0 dev: false - /globby@9.2.0: - resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} - engines: {node: '>=6'} - dependencies: - '@types/glob': 7.2.0 - array-union: 1.0.2 - dir-glob: 2.2.2 - fast-glob: 2.2.7 - glob: 7.2.3 - ignore: 4.0.6 - pify: 4.0.1 - slash: 2.0.0 - transitivePeerDependencies: - - supports-color - dev: false - /google-libphonenumber@3.2.33: resolution: {integrity: sha512-1QKCvAlfq8zY1mviORI9lDzM3I/hwm9+h0CwYBTLq59DBbSHMd5zBOLqHZFiBLicRpwIz46Nynvbywj1XApKvA==} engines: {node: '>=0.10'} @@ -9121,37 +8962,6 @@ packages: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: false - /has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} - dependencies: - get-value: 2.0.6 - has-values: 0.1.4 - isobject: 2.1.0 - dev: false - - /has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} - dependencies: - get-value: 2.0.6 - has-values: 1.0.0 - isobject: 3.0.1 - dev: false - - /has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} - dev: false - - /has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} - dependencies: - is-number: 3.0.0 - kind-of: 4.0.0 - dev: false - /hasown@2.0.0: resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} engines: {node: '>= 0.4'} @@ -9198,6 +9008,10 @@ packages: engines: {node: '>=8'} dev: true + /hey-listen@1.0.8: + resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} + dev: false + /hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: @@ -9299,8 +9113,8 @@ packages: resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} dev: false - /i18next@23.5.1: - resolution: {integrity: sha512-JelYzcaCoFDaa+Ysbfz2JsGAKkrHiMG6S61+HLBUEIPaF40WMwW9hCPymlQGrP+wWawKxKPuSuD71WZscCsWHg==} + /i18next@23.6.0: + resolution: {integrity: sha512-z0Cxr0MGkt+kli306WS4nNNM++9cgt2b2VCMprY92j+AIab/oclgPxdwtTZVLP1zn5t5uo8M6uLsZmYrcjr3HA==} dependencies: '@babel/runtime': 7.23.2 dev: false @@ -9320,11 +9134,6 @@ packages: /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - /ignore@4.0.6: - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} - engines: {node: '>= 4'} - dev: false - /ignore@5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} @@ -9477,20 +9286,6 @@ packages: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} - /is-accessor-descriptor@0.1.6: - resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: false - - /is-accessor-descriptor@1.0.0: - resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 6.0.3 - dev: false - /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -9513,38 +9308,6 @@ packages: dependencies: hasown: 2.0.0 - /is-data-descriptor@0.1.4: - resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: false - - /is-data-descriptor@1.0.0: - resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 6.0.3 - dev: false - - /is-descriptor@0.1.6: - resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} - engines: {node: '>=0.10.0'} - dependencies: - is-accessor-descriptor: 0.1.6 - is-data-descriptor: 0.1.4 - kind-of: 5.1.0 - dev: false - - /is-descriptor@1.0.2: - resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} - engines: {node: '>=0.10.0'} - dependencies: - is-accessor-descriptor: 1.0.0 - is-data-descriptor: 1.0.0 - kind-of: 6.0.3 - dev: false - /is-directory@0.3.1: resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} engines: {node: '>=0.10.0'} @@ -9566,13 +9329,6 @@ packages: engines: {node: '>=0.10.0'} dev: false - /is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} - dependencies: - is-plain-object: 2.0.4 - dev: false - /is-extglob@1.0.0: resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} engines: {node: '>=0.10.0'} @@ -9603,13 +9359,6 @@ packages: is-extglob: 1.0.0 dev: false - /is-glob@3.1.0: - resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} - engines: {node: '>=0.10.0'} - dependencies: - is-extglob: 2.1.1 - dev: false - /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -9639,13 +9388,6 @@ packages: resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} dev: false - /is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: false - /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -9715,11 +9457,6 @@ packages: engines: {node: '>=0.10.0'} dev: false - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: false - /is-wsl@1.1.0: resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} engines: {node: '>=4'} @@ -9737,13 +9474,6 @@ packages: /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - /isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} - dependencies: - isarray: 1.0.0 - dev: false - /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} @@ -9758,7 +9488,7 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/parser': 7.23.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -9771,7 +9501,7 @@ packages: resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/parser': 7.23.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -9816,6 +9546,14 @@ packages: resolution: {integrity: sha512-4dG1D1x/7g8PwHS9aK6QV5V94+ZvyP4+d19qDv43EzImmrndysIl4prmJ1hWWIGCqrZHyaHBm6BSEWHOLnpoNw==} dev: false + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + /jest-changed-files@29.7.0: resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -9833,7 +9571,7 @@ packages: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -9854,7 +9592,7 @@ packages: - supports-color dev: true - /jest-cli@29.7.0(@types/node@20.6.2)(ts-node@10.9.1): + /jest-cli@29.7.0(@types/node@20.8.7)(ts-node@10.9.1): resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -9868,10 +9606,10 @@ packages: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + create-jest: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -9882,7 +9620,7 @@ packages: - ts-node dev: true - /jest-config@29.7.0(@types/node@20.6.2)(ts-node@10.9.1): + /jest-config@29.7.0(@types/node@20.8.7)(ts-node@10.9.1): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -9894,11 +9632,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 - babel-jest: 29.7.0(@babel/core@7.23.0) + '@types/node': 20.8.7 + babel-jest: 29.7.0(@babel/core@7.23.2) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -9917,7 +9655,7 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@20.6.2)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@20.8.7)(typescript@5.2.2) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -9964,7 +9702,7 @@ packages: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 20.6.2 + '@types/node': 20.8.7 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -9981,17 +9719,17 @@ packages: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 jest-mock: 29.7.0 jest-util: 29.7.0 - /jest-expo@49.0.0(@babel/core@7.23.0)(jest@29.7.0)(react@18.2.0): + /jest-expo@49.0.0(@babel/core@7.23.2)(jest@29.7.0)(react@18.2.0): resolution: {integrity: sha512-nglYg6QPYSqCsrsOFiGosQi+m1rrqmYluPbFXNnXNEOrB2MvxMOgQJeWfMHDExHMX1ymLWX+7y8mYo6XVJpBJQ==} hasBin: true dependencies: '@expo/config': 8.1.2 '@jest/create-cache-key-function': 29.7.0 - babel-jest: 29.7.0(@babel/core@7.23.0) + babel-jest: 29.7.0(@babel/core@7.23.2) find-up: 5.0.0 jest-environment-jsdom: 29.7.0 jest-watch-select-projects: 2.0.0 @@ -10019,7 +9757,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.8 - '@types/node': 20.6.2 + '@types/node': 20.8.7 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -10069,7 +9807,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 jest-util: 29.7.0 /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -10128,7 +9866,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -10159,7 +9897,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -10182,15 +9920,15 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) '@babel/types': 7.23.0 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -10211,7 +9949,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -10223,7 +9961,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -10256,7 +9994,7 @@ packages: dependencies: ansi-escapes: 6.2.0 chalk: 4.1.2 - jest: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + jest: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) jest-regex-util: 29.6.3 jest-watcher: 29.7.0 slash: 5.1.0 @@ -10270,7 +10008,7 @@ packages: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.6.2 + '@types/node': 20.8.7 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -10282,7 +10020,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -10290,13 +10028,13 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 20.6.2 + '@types/node': 20.8.7 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest@29.7.0(@types/node@20.6.2)(ts-node@10.9.1): + /jest@29.7.0(@types/node@20.8.7)(ts-node@10.9.1): resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -10309,7 +10047,7 @@ packages: '@jest/core': 29.7.0(ts-node@10.9.1) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + jest-cli: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -10321,6 +10059,10 @@ packages: resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==} dev: false + /jju@1.4.0: + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + dev: false + /joi@17.11.0: resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==} dependencies: @@ -10380,17 +10122,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/parser': 7.23.0 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) - '@babel/preset-env': 7.23.2(@babel/core@7.23.0) - '@babel/preset-flow': 7.22.15(@babel/core@7.23.0) - '@babel/preset-typescript': 7.23.2(@babel/core@7.23.0) - '@babel/register': 7.22.15(@babel/core@7.23.0) - babel-core: 7.0.0-bridge.0(@babel/core@7.23.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) + '@babel/register': 7.22.15(@babel/core@7.23.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.2) chalk: 4.1.2 flow-parser: 0.206.0 graceful-fs: 4.2.11 @@ -10574,18 +10316,6 @@ packages: is-buffer: 1.1.6 dev: false - /kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} - dependencies: - is-buffer: 1.1.6 - dev: false - - /kind-of@5.1.0: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} - engines: {node: '>=0.10.0'} - dev: false - /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -10826,7 +10556,6 @@ packages: /lru-cache@10.0.1: resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} engines: {node: 14 || >=16.14} - dev: true /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} @@ -10896,28 +10625,26 @@ packages: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} dev: true - /make-fetch-happen@10.2.1: - resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /make-fetch-happen@11.1.1: + resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: agentkeepalive: 4.5.0 - cacache: 16.1.3 + cacache: 17.1.4 http-cache-semantics: 4.1.1 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 lru-cache: 7.18.3 - minipass: 3.3.6 - minipass-collect: 1.0.2 - minipass-fetch: 2.1.2 + minipass: 5.0.0 + minipass-fetch: 3.0.4 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 socks-proxy-agent: 7.0.0 - ssri: 9.0.1 + ssri: 10.0.5 transitivePeerDependencies: - - bluebird - supports-color dev: false @@ -10926,18 +10653,6 @@ packages: dependencies: tmpl: 1.0.5 - /map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - dev: false - - /map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} - dependencies: - object-visit: 1.0.1 - dev: false - /md5-file@3.2.3: resolution: {integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==} engines: {node: '>=0.10'} @@ -11018,7 +10733,7 @@ packages: resolution: {integrity: sha512-Hh6PW34Ug/nShlBGxkwQJSgPGAzSJ9FwQXhUImkzdsDgVu6zj5bx258J8cJVSandjNoQ8nbaHK6CaHlnbZKbyA==} engines: {node: '>=16'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 hermes-parser: 0.12.0 nullthrows: 1.1.1 transitivePeerDependencies: @@ -11029,7 +10744,7 @@ packages: resolution: {integrity: sha512-WvE/At9r0LoNoxGgGhULV4H5ieuLs8AHfVUtTpHaOpgE326BwHNiUYaWuCpaM/BTTlajQltK/U1t+MqbbvFG9A==} engines: {node: '>=18'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 hermes-parser: 0.15.0 nullthrows: 1.1.1 transitivePeerDependencies: @@ -11195,65 +10910,65 @@ packages: uglify-es: 3.3.9 dev: false - /metro-react-native-babel-preset@0.76.8(@babel/core@7.23.0): + /metro-react-native-babel-preset@0.76.8(@babel/core@7.23.2): resolution: {integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==} engines: {node: '>=16'} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.23.0 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.0) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-export-default-from': 7.22.17(@babel/core@7.23.0) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.0) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.0) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-export-default-from': 7.22.17(@babel/core@7.23.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) '@babel/template': 7.22.15 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.0) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.2) react-refresh: 0.14.0 transitivePeerDependencies: - supports-color dev: false - /metro-react-native-babel-transformer@0.76.8(@babel/core@7.23.0): + /metro-react-native-babel-transformer@0.76.8(@babel/core@7.23.2): resolution: {integrity: sha512-3h+LfS1WG1PAzhq8QF0kfXjxuXetbY/lgz8vYMQhgrMMp17WM1DNJD0gjx8tOGYbpbBC1qesJ45KMS4o5TA73A==} engines: {node: '>=16'} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.23.0 - babel-preset-fbjs: 3.4.0(@babel/core@7.23.0) + '@babel/core': 7.23.2 + babel-preset-fbjs: 3.4.0(@babel/core@7.23.2) hermes-parser: 0.12.0 - metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.0) + metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.2) nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -11273,7 +10988,7 @@ packages: resolution: {integrity: sha512-XKahvB+iuYJSCr3QqCpROli4B4zASAYpkK+j3a0CJmokxCDNbgyI4Fp88uIL6rNaZfN0Mv35S0b99SdFXIfHjg==} engines: {node: '>=16'} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.23.2 react-refresh: 0.14.0 dev: false @@ -11281,7 +10996,7 @@ packages: resolution: {integrity: sha512-RRBFPjaex8/Q6M+4V0oOYrd4mDG0iNkRMSdT5iojUe9pF24pRmqwG2gm3NBBgh4UAzYPI0NsJ6AB8JTmchfCAg==} engines: {node: '>=18'} dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.23.2 react-refresh: 0.14.0 dev: false @@ -11351,7 +11066,7 @@ packages: resolution: {integrity: sha512-PlkGTQNqS51Bx4vuufSQCdSn2R2rt7korzngo+b5GCkeX5pjinPjnO2kNhQ8l+5bO0iUD/WZ9nsM2PGGKIkWFA==} engines: {node: '>=16'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/template': 7.22.15 '@babel/traverse': 7.23.2 @@ -11364,7 +11079,7 @@ packages: resolution: {integrity: sha512-kGDpBJGpijC/OVrpngCiyvzrT6sfSPqFOiyEzU02j+8UCmxKCofbdv62nT97dzseR+iWkzFPcCbq8Nc7/CFwwA==} engines: {node: '>=18'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/template': 7.22.15 '@babel/traverse': 7.23.2 @@ -11377,11 +11092,11 @@ packages: resolution: {integrity: sha512-mE1fxVAnJKmwwJyDtThildxxos9+DGs9+vTrx2ktSFMEVTtXS/bIv2W6hux1pqivqAfyJpTeACXHk5u2DgGvIQ==} engines: {node: '>=16'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/parser': 7.23.0 '@babel/types': 7.23.0 - babel-preset-fbjs: 3.4.0(@babel/core@7.23.0) + babel-preset-fbjs: 3.4.0(@babel/core@7.23.2) metro: 0.76.8 metro-babel-transformer: 0.76.8 metro-cache: 0.76.8 @@ -11400,7 +11115,7 @@ packages: resolution: {integrity: sha512-WA15xo7EvJgutlhRKldgPTtwOWur4xDO5uQc5e/vZuhGtahcV0b4v2lXp+t3z5gs9DBqajsczce1A+3pY9wcQQ==} engines: {node: '>=18'} dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/parser': 7.23.0 '@babel/types': 7.23.0 @@ -11424,7 +11139,7 @@ packages: hasBin: true dependencies: '@babel/code-frame': 7.22.13 - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/parser': 7.23.0 '@babel/template': 7.22.15 @@ -11454,7 +11169,7 @@ packages: metro-inspector-proxy: 0.76.8 metro-minify-terser: 0.76.8 metro-minify-uglify: 0.76.8 - metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.0) + metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.2) metro-resolver: 0.76.8 metro-runtime: 0.76.8 metro-source-map: 0.76.8 @@ -11484,7 +11199,7 @@ packages: hasBin: true dependencies: '@babel/code-frame': 7.22.13 - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/parser': 7.23.0 '@babel/template': 7.22.15 @@ -11534,27 +11249,6 @@ packages: - utf-8-validate dev: false - /micromatch@3.1.10: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - braces: 2.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - extglob: 2.0.4 - fragment-cache: 0.2.1 - kind-of: 6.0.3 - nanomatch: 1.2.13 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -11625,7 +11319,6 @@ packages: engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 - dev: false /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -11637,11 +11330,11 @@ packages: minipass: 3.3.6 dev: false - /minipass-fetch@2.1.2: - resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /minipass-fetch@3.0.4: + resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 3.3.6 + minipass: 7.0.4 minipass-sized: 1.0.3 minizlib: 2.1.2 optionalDependencies: @@ -11696,7 +11389,6 @@ packages: /minipass@7.0.4: resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} engines: {node: '>=16 || 14 >=14.17'} - dev: true /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} @@ -11706,14 +11398,6 @@ packages: yallist: 4.0.0 dev: false - /mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} - dependencies: - for-in: 1.0.2 - is-extendable: 1.0.1 - dev: false - /mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true @@ -11726,7 +11410,7 @@ packages: hasBin: true dev: false - /mobx-react-lite@4.0.5(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): + /mobx-react-lite@4.0.5(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-StfB2wxE8imKj1f6T8WWPf4lVMx3cYH9Iy60bbKXEs21+HQ4tvvfIBZfSmMXgQAefi8xYEwQIz4GN9s0d2h7dg==} peerDependencies: mobx: ^6.9.0 @@ -11742,11 +11426,11 @@ packages: mobx: 6.10.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) use-sync-external-store: 1.2.0(react@18.2.0) dev: false - /mobx-react@9.0.1(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0): + /mobx-react@9.0.1(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-0idiElBgNMJg20YqGgHvYEnlqIJpPDQaOkxj2dHJIZeqCvUh+zBkBkMkpUFw/uEd1OdPUvT0y+AFBqsWIUAXww==} peerDependencies: mobx: ^6.9.0 @@ -11760,16 +11444,28 @@ packages: optional: true dependencies: mobx: 6.10.2 - mobx-react-lite: 4.0.5(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) + mobx-react-lite: 4.0.5(mobx@6.10.2)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false /mobx@6.10.2: resolution: {integrity: sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ==} dev: false + /moti@0.25.4(react-dom@18.2.0)(react-native-reanimated@3.5.4)(react@18.2.0): + resolution: {integrity: sha512-UiH0WcWzUYlUmo8Y1F+iyVW+qVVZ3YkXO3Q/gQUZzOhje6+Q0MdllYfqKW2m5IhFs+Vxt2i+osjvWBxXKK2yOw==} + peerDependencies: + react-native-reanimated: '*' + dependencies: + framer-motion: 6.5.1(react-dom@18.2.0)(react@18.2.0) + react-native-reanimated: 3.5.4(@babel/core@7.23.2)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.6)(react@18.2.0) + transitivePeerDependencies: + - react + - react-dom + dev: false + /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -11819,25 +11515,6 @@ packages: hasBin: true dev: false - /nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - fragment-cache: 0.2.1 - is-windows: 1.0.2 - kind-of: 6.0.3 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} @@ -11883,18 +11560,6 @@ packages: lodash: 4.17.21 dev: true - /node-fetch@2.6.12: - resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - dependencies: - whatwg-url: 5.0.0 - dev: false - /node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -11911,15 +11576,16 @@ packages: engines: {node: '>= 6.13.0'} dev: false - /node-gyp@9.3.1: - resolution: {integrity: sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==} + /node-gyp@9.4.0: + resolution: {integrity: sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==} engines: {node: ^12.13 || ^14.13 || >=16} hasBin: true dependencies: env-paths: 2.2.1 + exponential-backoff: 3.1.1 glob: 7.2.3 graceful-fs: 4.2.11 - make-fetch-happen: 10.2.1 + make-fetch-happen: 11.1.1 nopt: 6.0.0 npmlog: 6.0.2 rimraf: 3.0.2 @@ -11927,7 +11593,6 @@ packages: tar: 6.2.0 which: 2.0.2 transitivePeerDependencies: - - bluebird - supports-color dev: false @@ -12040,32 +11705,9 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - /object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} - dependencies: - copy-descriptor: 0.1.1 - define-property: 0.2.5 - kind-of: 3.2.2 - dev: false - /object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - /object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} - dependencies: - isobject: 3.0.1 - dev: false - - /object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} - dependencies: - isobject: 3.0.1 - dev: false - /on-finished@2.3.0: resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} @@ -12312,11 +11954,6 @@ packages: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} - /pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} - dev: false - /password-prompt@1.1.3: resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==} dependencies: @@ -12328,10 +11965,6 @@ packages: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} dev: false - /path-dirname@1.0.2: - resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} - dev: false - /path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} @@ -12368,7 +12001,6 @@ packages: dependencies: lru-cache: 10.0.1 minipass: 7.0.4 - dev: true /path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} @@ -12380,13 +12012,6 @@ packages: /path-to-regexp@3.2.0: resolution: {integrity: sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==} - /path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} - dependencies: - pify: 3.0.0 - dev: false - /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} @@ -12406,11 +12031,6 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} - dev: false - /pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} @@ -12464,9 +12084,13 @@ packages: engines: {node: '>=4.0.0'} dev: false - /posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} + /popmotion@11.0.3: + resolution: {integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==} + dependencies: + framesync: 6.0.1 + hey-listen: 1.0.8 + style-value-types: 5.0.0 + tslib: 2.6.2 dev: false /postcss-value-parser@4.2.0: @@ -12765,7 +12389,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.18.9 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 18.2.0 @@ -12794,18 +12418,18 @@ packages: /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-native-avoid-softinput@4.0.1(react-native@0.72.5)(react@18.2.0): + /react-native-avoid-softinput@4.0.1(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-feMt+Pb/wEcuobbIRDHXj1leXT15uC8CekgwMb/t8s61kWy5ifCGtX/YqDZMDRiD0sqeFLZx0gykLQOSrCpybA==} peerDependencies: react: '>=17.0.0' react-native: '>=0.65.0' dependencies: react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /react-native-gesture-handler@2.13.1(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-hW454X7sjuiBN+lobqw63pmT3boAmTl5OP6zQLq83iEe4T6PcHZ9lxzgCrebtgmutY8cJfq9rM2dOUVh9WBcww==} + /react-native-gesture-handler@2.13.3(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-6sNXtmRfYxQWgH0TjQX03QQ4UfCyM8jX1Ee1jXc3uNgefk03qapGGxZ2noXodGWKHzpsqMxB0O1lFLGew0GRrw==} peerDependencies: react: '*' react-native: '*' @@ -12816,10 +12440,10 @@ packages: lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /react-native-reanimated@3.5.4(@babel/core@7.23.0)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.5)(react@18.2.0): + /react-native-reanimated@3.5.4(@babel/core@7.23.2)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.22.5)(@babel/plugin-transform-shorthand-properties@7.22.5)(@babel/plugin-transform-template-literals@7.22.5)(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-8we9LLDO1o4Oj9/DICeEJ2K1tjfqkJagqQUglxeUAkol/HcEJ6PGxIrpBcNryLqCDYEcu6FZWld/FzizBIw6bg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -12831,43 +12455,43 @@ packages: react: '*' react-native: '*' dependencies: - '@babel/core': 7.23.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-object-assign': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0) - '@babel/preset-typescript': 7.23.2(@babel/core@7.23.0) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-object-assign': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) + '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /react-native-safe-area-context@4.7.2(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-5fy/hRNJ7bI/U2SliOeKf0D80J4lXPc1NsRiNS7Xaz8YTnqlzWib1ViItkwKPfufe54YKzVBMmM32RpdzvO2gg==} + /react-native-safe-area-context@4.7.3(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-Z+oldEQ/tHRU5X++ePdIGosPT9Fa93Mtky/Ptdh7qei4HqBUOcMnIj0KKCJGPRYyvN7j/63Ix0YqqYyVUEof5g==} peerDependencies: react: '*' react-native: '*' dependencies: react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /react-native-screens@3.25.0(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-TSC2Ad0hh763I8QT6XxMsPXAagQ+RawDSdFtKRvIz9fCYr96AjRwwaqmYivbqlDywOgcRBkIVynkFtp0ThmlYw==} + /react-native-screens@3.26.0(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-KLJZkYSeKnK3gNzlJXsaz2GZQE09YKlvCVgh/yvGAcl0t5x65Zj+fhci+OLx9F7El/Bah/v1ZmSlGYgnASO2BQ==} peerDependencies: react: '*' react-native: '*' dependencies: react: 18.2.0 react-freeze: 1.0.3(react@18.2.0) - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) warn-once: 0.1.1 dev: false - /react-native-svg@13.9.0(react-native@0.72.5)(react@18.2.0): + /react-native-svg@13.9.0(react-native@0.72.6)(react@18.2.0): resolution: {integrity: sha512-Ey18POH0dA0ob/QiwCBVrxIiwflhYuw0P0hBlOHeY4J5cdbs8ngdKHeWC/Kt9+ryP6fNoEQ1PUgPYw2Bs/rp5Q==} peerDependencies: react: '*' @@ -12876,51 +12500,51 @@ packages: css-select: 5.1.0 css-tree: 1.1.3 react: 18.2.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) dev: false - /react-native-url-polyfill@1.3.0(react-native@0.72.5): + /react-native-url-polyfill@1.3.0(react-native@0.72.6): resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} peerDependencies: react-native: '*' dependencies: - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) whatwg-url-without-unicode: 8.0.0-3 dev: false - /react-native-url-polyfill@2.0.0(react-native@0.72.5): + /react-native-url-polyfill@2.0.0(react-native@0.72.6): resolution: {integrity: sha512-My330Do7/DvKnEvwQc0WdcBnFPploYKp9CYlefDXzIdEaA+PAhDYllkvGeEroEzvc4Kzzj2O4yVdz8v6fjRvhA==} peerDependencies: react-native: '*' dependencies: - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) whatwg-url-without-unicode: 8.0.0-3 dev: false - /react-native-web-internals@1.74.1(react@18.2.0): - resolution: {integrity: sha512-zLKHEkCpfWp+ZgkP3rEGa2azDSc945Jhg651uZXgfPmtZJhzSCTJ2ZNkuogR0oFAnlgShbDgzUVTZRQzDTwU4Q==} + /react-native-web-internals@1.75.1(react@18.2.0): + resolution: {integrity: sha512-+Uud5pahyNwiHuqwDi5zZXqaYS5iovwSGXS6fAeH+SNE73ZKKo40801r9eb1Rrg3j2eHDkBBGXC11H2QLKUC1w==} peerDependencies: react: '*' dependencies: - '@tamagui/normalize-css-color': 1.74.1 - '@tamagui/react-native-use-pressable': 1.74.1(react@18.2.0) - '@tamagui/react-native-use-responder-events': 1.74.1(react@18.2.0) - '@tamagui/simple-hash': 1.74.1 + '@tamagui/normalize-css-color': 1.75.1 + '@tamagui/react-native-use-pressable': 1.75.1(react@18.2.0) + '@tamagui/react-native-use-responder-events': 1.75.1(react@18.2.0) + '@tamagui/simple-hash': 1.75.1 react: 18.2.0 styleq: 0.1.3 dev: false - /react-native-web-lite@1.74.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-SDDcV5QFCwarr8pHKFcPikAPgW5havZc2NJ43g/TQQD0h54bTiMWKNU6uLG6NMXooLpgJpx0MhQ3MhRJFYqAaw==} + /react-native-web-lite@1.75.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-gOGU1h+XwY2aKOThEkWLASsYs8L8EmzXoGU00wZ/jx1PHO6C6DQsuKESxEDtl48ZVflIL54dkUCpQlwGemzkYQ==} peerDependencies: react: '*' react-dom: '*' dependencies: - '@tamagui/normalize-css-color': 1.74.1 + '@tamagui/normalize-css-color': 1.75.1 invariant: 2.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native-web-internals: 1.74.1(react@18.2.0) + react-native-web-internals: 1.75.1(react@18.2.0) styleq: 0.1.3 dev: false @@ -12944,15 +12568,15 @@ packages: - encoding dev: false - /react-native@0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0): - resolution: {integrity: sha512-oIewslu5DBwOmo7x5rdzZlZXCqDIna0R4dUwVpfmVteORYLr4yaZo5wQnMeR+H7x54GaMhmgeqp0ZpULtulJFg==} + /react-native@0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0): + resolution: {integrity: sha512-RafPY2gM7mcrFySS8TL8x+TIO3q7oAlHpzEmC7Im6pmXni6n1AuufGaVh0Narbr1daxstw7yW7T9BKW5dpVc2A==} engines: {node: '>=16'} hasBin: true peerDependencies: react: 18.2.0 dependencies: '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 11.3.7(@babel/core@7.23.0) + '@react-native-community/cli': 11.3.7(@babel/core@7.23.2) '@react-native-community/cli-platform-android': 11.3.7 '@react-native-community/cli-platform-ios': 11.3.7 '@react-native/assets-registry': 0.72.0 @@ -12960,7 +12584,7 @@ packages: '@react-native/gradle-plugin': 0.72.11 '@react-native/js-polyfills': 0.72.1 '@react-native/normalize-colors': 0.72.0 - '@react-native/virtualized-lists': 0.72.8(react-native@0.72.5) + '@react-native/virtualized-lists': 0.72.8(react-native@0.72.6) abort-controller: 3.0.0 anser: 1.4.10 base64-js: 1.5.1 @@ -13002,7 +12626,7 @@ packages: engines: {node: '>=0.10.0'} dev: false - /react-remove-scroll-bar@2.3.4(@types/react@18.2.23)(react@18.2.0): + /react-remove-scroll-bar@2.3.4(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -13012,13 +12636,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.23)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.31)(react@18.2.0) tslib: 2.6.2 dev: false - /react-remove-scroll@2.5.7(@types/react@18.2.23)(react@18.2.0): + /react-remove-scroll@2.5.7(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==} engines: {node: '>=10'} peerDependencies: @@ -13028,13 +12652,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.23)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.23)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.31)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.31)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.2.23)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.23)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.31)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.31)(react@18.2.0) dev: false /react-shallow-renderer@16.15.0(react@18.2.0): @@ -13046,7 +12670,7 @@ packages: react: 18.2.0 react-is: 18.2.0 - /react-style-singleton@2.2.1(@types/react@18.2.23)(react@18.2.0): + /react-style-singleton@2.2.1(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -13056,7 +12680,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -13139,14 +12763,14 @@ packages: /reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} - /reforest@0.13.0(@types/react@18.2.23)(react@18.2.0): + /reforest@0.13.0(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-f0It/s51f1UWCCCni0viULALDBhxWBPFnLmZRYtKcz4zYeNWqeNTdcnU/OpBry9tk+jyMQcH3MLK8UdzsAvA5w==} peerDependencies: react: '>=16.8' dependencies: performant-array-to-tree: 1.11.0 react: 18.2.0 - zustand: 4.4.4(@types/react@18.2.23)(react@18.2.0) + zustand: 4.4.4(@types/react@18.2.31)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer @@ -13174,15 +12798,7 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.18.9 - dev: false - - /regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 3.0.2 - safe-regex: 1.1.0 + '@babel/runtime': 7.23.2 dev: false /regexpu-core@5.3.2: @@ -13222,14 +12838,10 @@ packages: resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==} dev: false - /repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} - dev: false - /repeat-string@1.6.1: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} + dev: true /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} @@ -13259,15 +12871,12 @@ packages: resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} dev: false - /resend@1.0.0: - resolution: {integrity: sha512-8LEE4gncmcm8bsvxvahZFpFk5hxUrKdagqWoX/MRXVU2YZ9coYxqZDeDYXG9pexz1A694bjE1hiQbBAA+bHAow==} - engines: {node: '>=16'} + /resend@1.1.0: + resolution: {integrity: sha512-it8TIDVT+/gAiJsUlv2tdHuvzwCCv4Zwu+udDqIm/dIuByQwe68TtFDcPccxqpSVVrNCBxxXLzsdT1tsV+P3GA==} + engines: {node: '>=18'} dependencies: '@react-email/render': 0.0.7 - node-fetch: 2.6.12 type-fest: 3.13.0 - transitivePeerDependencies: - - encoding dev: false /resolve-cwd@3.0.0: @@ -13294,11 +12903,6 @@ packages: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} dev: false - /resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated - dev: false - /resolve.exports@2.0.2: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} engines: {node: '>=10'} @@ -13339,11 +12943,6 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 - /ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} - dev: false - /retry@0.12.0: resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} engines: {node: '>= 4'} @@ -13427,12 +13026,6 @@ packages: dev: false optional: true - /safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} - dependencies: - ret: 0.1.15 - dev: false - /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} @@ -13584,16 +13177,6 @@ packages: gopd: 1.0.1 has-property-descriptors: 1.0.1 - /set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 2.0.1 - is-extendable: 0.1.1 - is-plain-object: 2.0.4 - split-string: 3.1.0 - dev: false - /set-value@4.1.0: resolution: {integrity: sha512-zTEg4HL0RwVrqcWs3ztF+x1vkxfm0lP+MQQFPiMJTKVceBwEV0A569Ou8l9IYQG8jOZdMVI1hGsc0tmeD2o/Lw==} engines: {node: '>=11.0'} @@ -13671,6 +13254,10 @@ packages: /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + /simple-plist@1.3.1: resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==} dependencies: @@ -13687,11 +13274,6 @@ packages: /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - /slash@2.0.0: - resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} - engines: {node: '>=6'} - dev: false - /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -13733,38 +13315,6 @@ packages: engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} dev: false - /snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} - dependencies: - define-property: 1.0.0 - isobject: 3.0.1 - snapdragon-util: 3.0.1 - dev: false - - /snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: false - - /snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} - dependencies: - base: 0.11.2 - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - map-cache: 0.2.2 - source-map: 0.5.7 - source-map-resolve: 0.5.3 - use: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: false - /socks-proxy-agent@7.0.0: resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} engines: {node: '>= 10'} @@ -13806,17 +13356,6 @@ packages: engines: {node: '>=0.10.0'} dev: false - /source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - dependencies: - atob: 2.1.2 - decode-uri-component: 0.2.2 - resolve-url: 0.2.1 - source-map-url: 0.4.1 - urix: 0.1.0 - dev: false - /source-map-support@0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} dependencies: @@ -13830,11 +13369,6 @@ packages: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated - dev: false - /source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} @@ -13860,13 +13394,6 @@ packages: engines: {node: '>=6'} dev: false - /split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 3.0.2 - dev: false - /split@1.0.1: resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} dependencies: @@ -13876,16 +13403,16 @@ packages: /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - /ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} + /ssri@10.0.5: + resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - minipass: 3.1.6 + minipass: 7.0.4 dev: false - /ssri@9.0.1: - resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: false @@ -13907,14 +13434,6 @@ packages: type-fest: 0.7.1 dev: false - /static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} - dependencies: - define-property: 0.2.5 - object-copy: 0.1.0 - dev: false - /statuses@1.5.0: resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} @@ -13966,6 +13485,14 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: @@ -13994,7 +13521,6 @@ packages: engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 - dev: true /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} @@ -14036,6 +13562,13 @@ packages: resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==} dev: false + /style-value-types@5.0.0: + resolution: {integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==} + dependencies: + hey-listen: 1.0.8 + tslib: 2.6.2 + dev: false + /styleq@0.1.3: resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==} dev: false @@ -14097,8 +13630,8 @@ packages: resolution: {integrity: sha512-r0JFBjkMIdep3Lbk3JA+MpnpuOtw4RSyrlRAbrzMcxwiYco3GFWl/daimQZ5b1forOiUODpOlXbSOljP/oyurg==} dev: false - /supertokens-node@15.2.0: - resolution: {integrity: sha512-lsiO77FHIiSP3gmS07YFVYRctNVchoW4+JkDfaiTdfSpSBoX+VDWCHwl7mbH47nuodIGz1JzYQuXEiaO26o7HA==} + /supertokens-node@16.3.3: + resolution: {integrity: sha512-5s02+buTKjOoOH4Dbr048kAWPGP4KslQVYLa2bnnle4uz+jXZ1ZZmAfJRLqKTIy0LGWM8wuwrsoo0yIY1T0yIw==} dependencies: content-type: 1.0.5 cookie: 0.4.0 @@ -14117,18 +13650,18 @@ packages: - supports-color dev: false - /supertokens-react-native@4.0.7(@react-native-async-storage/async-storage@1.19.3)(axios@1.5.1)(react-native@0.72.5): + /supertokens-react-native@4.0.7(@react-native-async-storage/async-storage@1.19.3)(axios@1.5.1)(react-native@0.72.6): resolution: {integrity: sha512-reNDwU0q1fAItaF5MOZKEqzBctEoPbhNi04rQgDh8sZt/u71AXeGCHOVDSRnbbQ0HJeLPA8nGytTGb2Pl54J2Q==} peerDependencies: '@react-native-async-storage/async-storage': '>=1.13.0 <2.0.x' axios: '*' react-native: '>=0.61.5 <1.0.x' dependencies: - '@react-native-async-storage/async-storage': 1.19.3(react-native@0.72.5) + '@react-native-async-storage/async-storage': 1.19.3(react-native@0.72.6) axios: 1.5.1 base-64: 1.0.0 - react-native: 0.72.5(@babel/core@7.23.0)(@babel/preset-env@7.23.2)(react@18.2.0) - react-native-url-polyfill: 1.3.0(react-native@0.72.5) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@18.2.0) + react-native-url-polyfill: 1.3.0(react-native@0.72.6) supertokens-js-override: 0.0.4 dev: false @@ -14194,65 +13727,65 @@ packages: strip-ansi: 6.0.1 dev: false - /tamagui@1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.5)(react@18.2.0): - resolution: {integrity: sha512-c2bRCmSyoTtZmW9wJNw1CFlORhxq9musEy7JWHyWVPZfmXFqCQrR+B5uHT1Vnn7zUSvaxKJrQjiN0zlb364v1Q==} + /tamagui@1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native-web@0.19.6)(react-native@0.72.6)(react@18.2.0): + resolution: {integrity: sha512-wf5BuxPBEM11sZapp7HkRmaoZG32JK+nR+DlLfq7CgNti6/YFgfBUHH9/rSs6Y0s47WBdmYJz0v7U/fu0SCB2A==} peerDependencies: react: '*' react-native-web: '*' dependencies: - '@tamagui/accordion': 1.74.1(react@18.2.0) - '@tamagui/adapt': 1.74.1(react@18.2.0) - '@tamagui/alert-dialog': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/animate-presence': 1.74.1(react@18.2.0) - '@tamagui/avatar': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/button': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/card': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/checkbox': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/compose-refs': 1.74.1(react@18.2.0) - '@tamagui/core': 1.74.1(react@18.2.0) - '@tamagui/create-context': 1.74.1(react@18.2.0) - '@tamagui/dialog': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/fake-react-native': 1.74.1 - '@tamagui/focusable': 1.74.1(react@18.2.0) - '@tamagui/font-size': 1.74.1(react@18.2.0) - '@tamagui/form': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/get-button-sized': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/get-font-sized': 1.74.1(react@18.2.0) - '@tamagui/get-token': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/helpers': 1.74.1(react@18.2.0) - '@tamagui/helpers-tamagui': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/image': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/label': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/linear-gradient': 1.74.1(react@18.2.0) - '@tamagui/list-item': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/polyfill-dev': 1.74.1 - '@tamagui/popover': 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) - '@tamagui/popper': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/portal': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/progress': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/radio-group': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/react-native-media-driver': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/scroll-view': 1.74.1(react@18.2.0) - '@tamagui/select': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/separator': 1.74.1(react@18.2.0) - '@tamagui/shapes': 1.74.1(react@18.2.0) - '@tamagui/sheet': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/slider': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/stacks': 1.74.1(react@18.2.0) - '@tamagui/switch': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/tabs': 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) - '@tamagui/text': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/theme': 1.74.1(react@18.2.0) - '@tamagui/toggle-group': 1.74.1(@types/react@18.2.23)(react-native@0.72.5)(react@18.2.0) - '@tamagui/tooltip': 1.74.1(@types/react@18.2.23)(react-dom@18.2.0)(react-native@0.72.5)(react@18.2.0) - '@tamagui/use-controllable-state': 1.74.1(react@18.2.0) - '@tamagui/use-debounce': 1.74.1(react@18.2.0) - '@tamagui/use-force-update': 1.74.1(react@18.2.0) - '@tamagui/use-window-dimensions': 1.74.1(react-native@0.72.5)(react@18.2.0) - '@tamagui/visually-hidden': 1.74.1(react@18.2.0) + '@tamagui/accordion': 1.75.1(react@18.2.0) + '@tamagui/adapt': 1.75.1(react@18.2.0) + '@tamagui/alert-dialog': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/animate-presence': 1.75.1(react@18.2.0) + '@tamagui/avatar': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/button': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/card': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/checkbox': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/compose-refs': 1.75.1(react@18.2.0) + '@tamagui/core': 1.75.1(react@18.2.0) + '@tamagui/create-context': 1.75.1(react@18.2.0) + '@tamagui/dialog': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/fake-react-native': 1.75.1 + '@tamagui/focusable': 1.75.1(react@18.2.0) + '@tamagui/font-size': 1.75.1(react@18.2.0) + '@tamagui/form': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/get-button-sized': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/get-font-sized': 1.75.1(react@18.2.0) + '@tamagui/get-token': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/helpers': 1.75.1(react@18.2.0) + '@tamagui/helpers-tamagui': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/image': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/label': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/linear-gradient': 1.75.1(react@18.2.0) + '@tamagui/list-item': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/polyfill-dev': 1.75.1 + '@tamagui/popover': 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) + '@tamagui/popper': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/portal': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/progress': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/radio-group': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/react-native-media-driver': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/scroll-view': 1.75.1(react@18.2.0) + '@tamagui/select': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/separator': 1.75.1(react@18.2.0) + '@tamagui/shapes': 1.75.1(react@18.2.0) + '@tamagui/sheet': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/slider': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/stacks': 1.75.1(react@18.2.0) + '@tamagui/switch': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/tabs': 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) + '@tamagui/text': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/theme': 1.75.1(react@18.2.0) + '@tamagui/toggle-group': 1.75.1(@types/react@18.2.31)(react-native@0.72.6)(react@18.2.0) + '@tamagui/tooltip': 1.75.1(@types/react@18.2.31)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0) + '@tamagui/use-controllable-state': 1.75.1(react@18.2.0) + '@tamagui/use-debounce': 1.75.1(react@18.2.0) + '@tamagui/use-force-update': 1.75.1(react@18.2.0) + '@tamagui/use-window-dimensions': 1.75.1(react-native@0.72.6)(react@18.2.0) + '@tamagui/visually-hidden': 1.75.1(react@18.2.0) react: 18.2.0 react-native-web: 0.19.6(react-dom@18.2.0)(react@18.2.0) - reforest: 0.13.0(@types/react@18.2.23)(react@18.2.0) + reforest: 0.13.0(@types/react@18.2.31)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer @@ -14322,30 +13855,6 @@ packages: supports-hyperlinks: 2.3.0 dev: false - /terser-webpack-plugin@5.3.9(webpack@5.88.2): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.20 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.22.0 - webpack: 5.88.2 - dev: true - /terser-webpack-plugin@5.3.9(webpack@5.89.0): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} @@ -14439,42 +13948,17 @@ packages: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - /to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: false - /to-readable-stream@1.0.0: resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} engines: {node: '>=6'} dev: false - /to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} - dependencies: - is-number: 3.0.0 - repeat-string: 1.6.1 - dev: false - /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - /to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} - dependencies: - define-property: 2.0.2 - extend-shallow: 3.0.2 - regex-not: 1.0.2 - safe-regex: 1.1.0 - dev: false - /toidentifier@1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} @@ -14520,7 +14004,7 @@ packages: /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest@29.1.1(@babel/core@7.23.0)(jest@29.7.0)(typescript@5.2.2): + /ts-jest@29.1.1(@babel/core@7.23.2)(jest@29.7.0)(typescript@5.2.2): resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -14541,10 +14025,10 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.23.0 + '@babel/core': 7.23.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.6.2)(ts-node@10.9.1) + jest: 29.7.0(@types/node@20.8.7)(ts-node@10.9.1) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -14554,8 +14038,8 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader@9.4.4(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w==} + /ts-loader@9.5.0(typescript@5.2.2)(webpack@5.89.0): + resolution: {integrity: sha512-LLlB/pkB4q9mW2yLdFMnK3dEHbrBjeZTYguaaIfusyojBgAGf5kF+O6KcWqiGzWqHk0LBsoolrp4VftEURhybg==} engines: {node: '>=12.0.0'} peerDependencies: typescript: '*' @@ -14565,11 +14049,12 @@ packages: enhanced-resolve: 5.15.0 micromatch: 4.0.5 semver: 7.5.4 + source-map: 0.7.4 typescript: 5.2.2 webpack: 5.89.0 dev: true - /ts-node@10.9.1(@types/node@20.6.2)(typescript@5.2.2): + /ts-node@10.9.1(@types/node@20.8.7)(typescript@5.2.2): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -14588,7 +14073,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.6.2 + '@types/node': 20.8.7 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -14621,65 +14106,64 @@ packages: /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /turbo-darwin-64@1.10.3: - resolution: {integrity: sha512-IIB9IomJGyD3EdpSscm7Ip1xVWtYb7D0x7oH3vad3gjFcjHJzDz9xZ/iw/qItFEW+wGFcLSRPd+1BNnuLM8AsA==} + /turbo-darwin-64@1.10.16: + resolution: {integrity: sha512-+Jk91FNcp9e9NCLYlvDDlp2HwEDp14F9N42IoW3dmHI5ZkGSXzalbhVcrx3DOox3QfiNUHxzWg4d7CnVNCuuMg==} cpu: [x64] os: [darwin] requiresBuild: true dev: false optional: true - /turbo-darwin-arm64@1.10.3: - resolution: {integrity: sha512-SBNmOZU9YEB0eyNIxeeQ+Wi0Ufd+nprEVp41rgUSRXEIpXjsDjyBnKnF+sQQj3+FLb4yyi/yZQckB+55qXWEsw==} + /turbo-darwin-arm64@1.10.16: + resolution: {integrity: sha512-jqGpFZipIivkRp/i+jnL8npX0VssE6IAVNKtu573LXtssZdV/S+fRGYA16tI46xJGxSAivrZ/IcgZrV6Jk80bw==} cpu: [arm64] os: [darwin] requiresBuild: true dev: false optional: true - /turbo-linux-64@1.10.3: - resolution: {integrity: sha512-kvAisGKE7xHJdyMxZLvg53zvHxjqPK1UVj4757PQqtx9dnjYHSc8epmivE6niPgDHon5YqImzArCjVZJYpIGHQ==} + /turbo-linux-64@1.10.16: + resolution: {integrity: sha512-PpqEZHwLoizQ6sTUvmImcRmACyRk9EWLXGlqceogPZsJ1jTRK3sfcF9fC2W56zkSIzuLEP07k5kl+ZxJd8JMcg==} cpu: [x64] os: [linux] requiresBuild: true dev: false optional: true - /turbo-linux-arm64@1.10.3: - resolution: {integrity: sha512-Qgaqln0IYRgyL0SowJOi+PNxejv1I2xhzXOI+D+z4YHbgSx87ox1IsALYBlK8VRVYY8VCXl+PN12r1ioV09j7A==} + /turbo-linux-arm64@1.10.16: + resolution: {integrity: sha512-TMjFYz8to1QE0fKVXCIvG/4giyfnmqcQIwjdNfJvKjBxn22PpbjeuFuQ5kNXshUTRaTJihFbuuCcb5OYFNx4uw==} cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /turbo-windows-64@1.10.3: - resolution: {integrity: sha512-rbH9wManURNN8mBnN/ZdkpUuTvyVVEMiUwFUX4GVE5qmV15iHtZfDLUSGGCP2UFBazHcpNHG1OJzgc55GFFrUw==} + /turbo-windows-64@1.10.16: + resolution: {integrity: sha512-+jsf68krs0N66FfC4/zZvioUap/Tq3sPFumnMV+EBo8jFdqs4yehd6+MxIwYTjSQLIcpH8KoNMB0gQYhJRLZzw==} cpu: [x64] os: [win32] requiresBuild: true dev: false optional: true - /turbo-windows-arm64@1.10.3: - resolution: {integrity: sha512-ThlkqxhcGZX39CaTjsHqJnqVe+WImjX13pmjnpChz6q5HHbeRxaJSFzgrHIOt0sUUVx90W/WrNRyoIt/aafniw==} + /turbo-windows-arm64@1.10.16: + resolution: {integrity: sha512-sKm3hcMM1bl0B3PLG4ifidicOGfoJmOEacM5JtgBkYM48ncMHjkHfFY7HrJHZHUnXM4l05RQTpLFoOl/uIo2HQ==} cpu: [arm64] os: [win32] requiresBuild: true dev: false optional: true - /turbo@1.10.3: - resolution: {integrity: sha512-U4gKCWcKgLcCjQd4Pl8KJdfEKumpyWbzRu75A6FCj6Ctea1PIm58W6Ltw1QXKqHrl2pF9e1raAskf/h6dlrPCA==} + /turbo@1.10.16: + resolution: {integrity: sha512-2CEaK4FIuSZiP83iFa9GqMTQhroW2QryckVqUydmg4tx78baftTOS0O+oDAhvo9r9Nit4xUEtC1RAHoqs6ZEtg==} hasBin: true - requiresBuild: true optionalDependencies: - turbo-darwin-64: 1.10.3 - turbo-darwin-arm64: 1.10.3 - turbo-linux-64: 1.10.3 - turbo-linux-arm64: 1.10.3 - turbo-windows-64: 1.10.3 - turbo-windows-arm64: 1.10.3 + turbo-darwin-64: 1.10.16 + turbo-darwin-arm64: 1.10.16 + turbo-linux-64: 1.10.16 + turbo-linux-arm64: 1.10.16 + turbo-windows-64: 1.10.16 + turbo-windows-arm64: 1.10.16 dev: false /twilio@4.19.0(debug@4.3.4): @@ -14737,11 +14221,6 @@ packages: engines: {node: '>=8'} dev: false - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} - dev: false - /type-fest@3.13.0: resolution: {integrity: sha512-Gur3yQGM9qiLNs0KPP7LPgeRbio2QTt4xXouobMCarR0/wyW3F+F/+OWwshg3NG0Adon7uQfSZBpB46NfhoF1A==} engines: {node: '>=14.16'} @@ -14750,7 +14229,6 @@ packages: /type-fest@3.13.1: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - dev: true /type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} @@ -14762,12 +14240,6 @@ packages: /typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typescript@5.1.6: - resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} - engines: {node: '>=14.17'} - hasBin: true - dev: true - /typescript@5.2.2: resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} engines: {node: '>=14.17'} @@ -14801,6 +14273,9 @@ packages: dependencies: '@lukeed/csprng': 1.1.0 + /undici-types@5.25.3: + resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==} + /unicode-canonical-property-names-ecmascript@2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} engines: {node: '>=4'} @@ -14824,27 +14299,17 @@ packages: engines: {node: '>=4'} dev: false - /union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} - dependencies: - arr-union: 3.1.0 - get-value: 2.0.6 - is-extendable: 0.1.1 - set-value: 2.0.1 - dev: false - /unique-filename@1.1.1: resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} dependencies: unique-slug: 2.0.2 dev: false - /unique-filename@2.0.1: - resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /unique-filename@3.0.0: + resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - unique-slug: 3.0.0 + unique-slug: 4.0.0 dev: false /unique-slug@2.0.2: @@ -14853,9 +14318,9 @@ packages: imurmurhash: 0.1.4 dev: false - /unique-slug@3.0.0: - resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + /unique-slug@4.0.0: + resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: imurmurhash: 0.1.4 dev: false @@ -14897,14 +14362,6 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - /unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} - dependencies: - has-value: 0.3.1 - isobject: 3.0.1 - dev: false - /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} @@ -14925,11 +14382,6 @@ packages: dependencies: punycode: 2.3.0 - /urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated - dev: false - /url-join@4.0.0: resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==} dev: false @@ -14954,7 +14406,7 @@ packages: qs: 6.11.2 dev: false - /use-callback-ref@1.3.0(@types/react@18.2.23)(react@18.2.0): + /use-callback-ref@1.3.0(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -14964,7 +14416,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 react: 18.2.0 tslib: 2.6.2 dev: false @@ -14977,7 +14429,7 @@ packages: react: 18.2.0 dev: false - /use-sidecar@1.1.2(@types/react@18.2.23)(react@18.2.0): + /use-sidecar@1.1.2(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -14987,7 +14439,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 @@ -15001,11 +14453,6 @@ packages: react: 18.2.0 dev: false - /use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} - dev: false - /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -15130,46 +14577,6 @@ packages: engines: {node: '>=10.13.0'} dev: true - /webpack@5.88.2: - resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.6 - '@types/estree': 1.0.3 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.22.1 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(webpack@5.88.2) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - /webpack@5.89.0: resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} engines: {node: '>=10.13.0'} @@ -15304,6 +14711,14 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -15483,7 +14898,7 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - /zustand@4.4.4(@types/react@18.2.23)(react@18.2.0): + /zustand@4.4.4(@types/react@18.2.31)(react@18.2.0): resolution: {integrity: sha512-5UTUIAiHMNf5+mFp7/AnzJXS7+XxktULFN0+D1sCiZWyX7ZG+AQpqs2qpYrynRij4QvoDdCD+U+bmg/cG3Ucxw==} engines: {node: '>=12.7.0'} peerDependencies: @@ -15498,7 +14913,7 @@ packages: react: optional: true dependencies: - '@types/react': 18.2.23 + '@types/react': 18.2.31 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) dev: false