diff --git a/.gitignore b/.gitignore
index 8338c06d..2b8abc60 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,8 @@ apps/*/credentials.json
apps/*/build
packages/*/build
+apps/*/dist
+
# Turborepo
.turbo
diff --git a/README.md b/README.md
index 31584367..430225b2 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,8 @@ To run the repository locally, run these two commands:
- `$ pnpm install` - This installs all required Node libraries using [pnpm](https://pnpm.io/).
- `$ pnpm dev` - Starts the development servers for all **apps**.
+In Expo SDK 49+, you can switch between Expo Go and an expo-dev-client development build by pressing "s" after expo start. This respository doesn't require the expo-dev-client, but because it is installed expo start defaults to it. If you want to use the expo-dev-client with plugins, you must first build and install the development build on your device or simulator by runing `pnpm ios -d` or `pnpm android -d`.
+
### Commands
Because this monorepo uses [Turborepo](https://turbo.build/repo), you don't need to run additional commands to set things up. Whenever you run `$ pnpm build`, it will build all **packages** if they aren't built yet. In this monorepo we use a few commands or pipelines:
diff --git a/apps/mobile/App.tsx b/apps/mobile/App.tsx
deleted file mode 100644
index 63f335c8..00000000
--- a/apps/mobile/App.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import { HomeIcon, HomeScreen } from '@acme/feature-home';
-import { StatusBar } from 'expo-status-bar';
-import { StyleSheet, View } from 'react-native';
-
-export default function App() {
- return (
-
-
-
-
-
- );
-}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: '#fff',
- alignItems: 'center',
- justifyContent: 'center',
- },
-});
diff --git a/apps/mobile/app.json b/apps/mobile/app.json
index 5bdc5cf1..1f97ff58 100644
--- a/apps/mobile/app.json
+++ b/apps/mobile/app.json
@@ -2,6 +2,7 @@
"expo": {
"name": "expo-monorepo",
"slug": "expo-monorepo",
+ "scheme": "expo-monorepo",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
@@ -29,7 +30,11 @@
}
},
"web": {
- "favicon": "./assets/favicon.png"
- }
+ "favicon": "./assets/favicon.png",
+ "bundler": "metro"
+ },
+ "plugins": [
+ "expo-router"
+ ]
}
}
diff --git a/apps/mobile/app/(auth)/sign-in.tsx b/apps/mobile/app/(auth)/sign-in.tsx
new file mode 100644
index 00000000..50a4dc54
--- /dev/null
+++ b/apps/mobile/app/(auth)/sign-in.tsx
@@ -0,0 +1,11 @@
+import { Text, View } from 'react-native';
+import { useAuth } from '@acme/app-mobile/context/auth';
+
+export default function SignIn() {
+ const { signIn } = useAuth();
+ return (
+
+ signIn()}>Sign In
+
+ );
+}
\ No newline at end of file
diff --git a/apps/mobile/app/_layout.tsx b/apps/mobile/app/_layout.tsx
new file mode 100644
index 00000000..607dcf9a
--- /dev/null
+++ b/apps/mobile/app/_layout.tsx
@@ -0,0 +1,11 @@
+import { Slot } from 'expo-router';
+import { Provider } from '@acme/app-mobile/context/auth';
+
+export default function Root() {
+ return (
+ // Setup the auth context and render our layout inside of it.
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/apps/mobile/app/index.tsx b/apps/mobile/app/index.tsx
new file mode 100644
index 00000000..46b53295
--- /dev/null
+++ b/apps/mobile/app/index.tsx
@@ -0,0 +1,12 @@
+import { Text, View } from 'react-native';
+
+import { useAuth } from '@acme/app-mobile/context/auth';
+
+export default function Index() {
+ const { signOut } = useAuth();
+ return (
+
+ signOut()}>Sign Out
+
+ );
+}
\ No newline at end of file
diff --git a/apps/mobile/babel.config.js b/apps/mobile/babel.config.js
index 9d89e131..e1cbf6f4 100644
--- a/apps/mobile/babel.config.js
+++ b/apps/mobile/babel.config.js
@@ -2,5 +2,6 @@ module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
+ plugins: ['expo-router/babel'],
};
};
diff --git a/apps/mobile/context/auth.tsx b/apps/mobile/context/auth.tsx
new file mode 100644
index 00000000..9eb5d4d8
--- /dev/null
+++ b/apps/mobile/context/auth.tsx
@@ -0,0 +1,47 @@
+import { router, useSegments } from 'expo-router';
+import React from 'react';
+
+const AuthContext = React.createContext(null);
+
+// This hook can be used to access the user info.
+export function useAuth() {
+ return React.useContext(AuthContext);
+}
+
+// This hook will protect the route access based on user authentication.
+function useProtectedRoute(user) {
+ const segments = useSegments();
+
+ React.useEffect(() => {
+ const inAuthGroup = segments[0] === '(auth)';
+
+ if (
+ // If the user is not signed in and the initial segment is not anything in the auth group.
+ !user &&
+ !inAuthGroup
+ ) {
+ // Redirect to the sign-in page.
+ router.replace('/sign-in');
+ } else if (user && inAuthGroup) {
+ // Redirect away from the sign-in page.
+ router.replace('/');
+ }
+ }, [user, segments]);
+}
+
+export function Provider(props) {
+ const [user, setAuth] = React.useState(null);
+
+ useProtectedRoute(user);
+
+ return (
+ setAuth({}),
+ signOut: () => setAuth(null),
+ user,
+ }}>
+ {props.children}
+
+ );
+}
\ No newline at end of file
diff --git a/apps/mobile/index.js b/apps/mobile/index.js
index 9d5d25a6..2c7517c7 100644
--- a/apps/mobile/index.js
+++ b/apps/mobile/index.js
@@ -1,8 +1,3 @@
-import { registerRootComponent } from 'expo';
-
-import App from './App';
-
-// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
-// It also ensures that whether you load the app in the Expo client or in a native build,
-// the environment is set up appropriately
-registerRootComponent(App);
+import 'expo-dev-client';
+import 'react-native-gesture-handler';
+import 'expo-router/entry';
\ No newline at end of file
diff --git a/apps/mobile/package.json b/apps/mobile/package.json
index 7873fe9b..f10252b7 100644
--- a/apps/mobile/package.json
+++ b/apps/mobile/package.json
@@ -6,23 +6,31 @@
"scripts": {
"dev": "expo start",
"lint": "eslint --ext js,ts,tsx .",
+ "prebuild": "expo prebuild",
"build": "expo export --output-dir ./build --platform all",
"start": "expo start",
- "android": "expo start --android",
- "ios": "expo start --ios",
+ "android": "expo run:android",
+ "ios": "expo run:ios",
"web": "expo start --web",
"eas-build-pre-install": "npm install --global pnpm@7.x",
"eas-build-post-install": "pnpm run -w build:mobile"
},
"dependencies": {
"@acme/feature-home": "*",
- "expo": "^49.0.2",
+ "expo": "^49.0.8",
+ "expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.5",
+ "expo-linking": "^5.0.2",
+ "expo-router": "2.0.4",
+ "expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.9",
"react": "18.2.0",
"react-dom": "18.2.0",
- "react-native": "0.72.1",
+ "react-native": "0.72.3",
+ "react-native-gesture-handler": "~2.12.0",
+ "react-native-safe-area-context": "4.6.3",
+ "react-native-screens": "~3.22.0",
"react-native-web": "~0.19.6"
},
"devDependencies": {
diff --git a/apps/mobile/tsconfig.json b/apps/mobile/tsconfig.json
index b9567f60..7886cc19 100644
--- a/apps/mobile/tsconfig.json
+++ b/apps/mobile/tsconfig.json
@@ -1,6 +1,7 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
+ "jsx": "react",
"strict": true
}
}
diff --git a/package.json b/package.json
index 116ed510..e7936858 100644
--- a/package.json
+++ b/package.json
@@ -9,11 +9,14 @@
"test": "turbo test",
"build": "turbo build",
"build:mobile": "turbo build --filter=\"...{./apps/mobile}\"",
- "build:web": "turbo build --filter=\"...{./apps/web}\""
+ "build:web": "turbo build --filter=\"...{./apps/web}\"",
+ "clean": "turbo clean:modules && turbo clean:apps && pnpm install",
+ "clean:modules": "rm -rf node_modules && rm -rf apps/*/node_modules && rm -rf packages/*/node_modules",
+ "clean:apps": "rm -rf apps/*/ios && rm -rf apps/*/android && rm -rf apps/*/.expo"
},
"devDependencies": {
"turbo": "^1.10.7",
- "typescript": "^4.9.5"
+ "typescript": "^5.1.3"
},
"pnpm": {
"peerDependencyRules": {
diff --git a/packages/feature-home/package.json b/packages/feature-home/package.json
index cadad776..53884ebc 100644
--- a/packages/feature-home/package.json
+++ b/packages/feature-home/package.json
@@ -31,8 +31,6 @@
"babel-preset-expo": "~9.5.0",
"jest": "^29.4.3",
"jest-expo": "^49.0.0",
- "react": "18.2.0",
- "react-native": "0.72.1",
"react-test-renderer": "18.2.0",
"tsup": "^6.5.0"
},
diff --git a/packages/ui/package.json b/packages/ui/package.json
index bd8f6547..bf065875 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -28,8 +28,6 @@
"babel-preset-expo": "~9.5.0",
"jest": "^29.4.3",
"jest-expo": "^49.0.0",
- "react": "18.2.0",
- "react-native": "0.72.1",
"react-test-renderer": "18.2.0",
"tsup": "^6.5.0"
},
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f945212e..3b0dee84 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,7 +1,7 @@
lockfileVersion: '6.0'
settings:
- autoInstallPeers: true
+ autoInstallPeers: false
excludeLinksFromLockfile: false
importers:
@@ -12,8 +12,8 @@ importers:
specifier: ^1.10.7
version: 1.10.7
typescript:
- specifier: ^4.9.5
- version: 4.9.5
+ specifier: ^5.1.3
+ version: 5.1.6
apps/mobile:
dependencies:
@@ -21,17 +21,29 @@ importers:
specifier: '*'
version: link:../../packages/feature-home
expo:
- specifier: ^49.0.2
- version: 49.0.2(@babel/core@7.20.2)
+ specifier: ^49.0.8
+ version: 49.0.8(@babel/core@7.20.2)
+ expo-constants:
+ specifier: ~14.4.2
+ version: 14.4.2(expo@49.0.8)
expo-dev-client:
specifier: ~2.4.5
- version: 2.4.5(expo@49.0.2)
+ version: 2.4.6(expo@49.0.8)
+ expo-linking:
+ specifier: ^5.0.2
+ version: 5.0.2(expo@49.0.8)
+ expo-router:
+ specifier: 2.0.4
+ version: 2.0.4(expo-constants@14.4.2)(expo-linking@5.0.2)(expo-status-bar@1.6.0)(expo@49.0.8)(react-dom@18.2.0)(react-native-gesture-handler@2.12.1)(react-native-safe-area-context@4.6.3)(react-native-screens@3.22.1)(react-native@0.72.3)(react@18.2.0)
+ expo-splash-screen:
+ specifier: ~0.20.5
+ version: 0.20.5(expo@49.0.8)
expo-status-bar:
specifier: ~1.6.0
version: 1.6.0
expo-updates:
specifier: ~0.18.9
- version: 0.18.9(expo@49.0.2)
+ version: 0.18.11(expo@49.0.8)
react:
specifier: 18.2.0
version: 18.2.0
@@ -39,8 +51,17 @@ importers:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
react-native:
- specifier: 0.72.1
- version: 0.72.1(@babel/core@7.20.2)(react@18.2.0)
+ specifier: 0.72.3
+ version: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ react-native-gesture-handler:
+ specifier: ~2.12.0
+ version: 2.12.1(react-native@0.72.3)(react@18.2.0)
+ react-native-safe-area-context:
+ specifier: 4.6.3
+ version: 4.6.3(react-native@0.72.3)(react@18.2.0)
+ react-native-screens:
+ specifier: ~3.22.0
+ version: 3.22.1(react-native@0.72.3)(react@18.2.0)
react-native-web:
specifier: ~0.19.6
version: 0.19.6(react-dom@18.2.0)(react@18.2.0)
@@ -93,22 +114,22 @@ importers:
version: 8.34.0
eslint-config-next:
specifier: ^13.2.1
- version: 13.2.1(eslint@8.34.0)(typescript@4.9.5)
+ version: 13.2.1(eslint@8.34.0)
packages/eslint-config:
dependencies:
'@typescript-eslint/eslint-plugin':
specifier: ^5.42.1
- version: 5.42.1(@typescript-eslint/parser@5.42.1)(eslint@8.34.0)(typescript@4.9.5)
+ version: 5.42.1(@typescript-eslint/parser@5.42.1)(eslint@8.34.0)
'@typescript-eslint/parser':
specifier: ^5.42.1
- version: 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ version: 5.42.1(eslint@8.34.0)
eslint:
specifier: ^8.34.0
version: 8.34.0
eslint-config-universe:
specifier: ^11.2.0
- version: 11.2.0(eslint@8.34.0)(prettier@2.7.1)(typescript@4.9.5)
+ version: 11.2.0(eslint@8.34.0)(prettier@2.7.1)
prettier:
specifier: ^2.7.1
version: 2.7.1
@@ -118,16 +139,13 @@ importers:
'@acme/ui':
specifier: '*'
version: link:../ui
- react-native-web:
- specifier: '*'
- version: 0.19.6(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@acme/eslint-config':
specifier: '*'
version: link:../eslint-config
'@testing-library/react-native':
specifier: ^11.4.0
- version: 11.4.0(jest@29.4.3)(react-native@0.72.1)(react-test-renderer@18.2.0)(react@18.2.0)
+ version: 11.4.0(jest@29.4.3)(react-test-renderer@18.2.0)
'@tsconfig/recommended':
specifier: ^1.0.1
version: 1.0.1
@@ -142,38 +160,28 @@ importers:
version: 0.70.6
babel-preset-expo:
specifier: ~9.5.0
- version: 9.5.0(@babel/core@7.20.2)
+ version: 9.5.0
jest:
specifier: ^29.4.3
version: 29.4.3
jest-expo:
specifier: ^49.0.0
- version: 49.0.0(jest@29.4.3)(react@18.2.0)
- react:
- specifier: 18.2.0
- version: 18.2.0
- react-native:
- specifier: 0.72.1
- version: 0.72.1(@babel/core@7.20.2)(react@18.2.0)
+ version: 49.0.0(jest@29.4.3)
react-test-renderer:
specifier: 18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.2.0
tsup:
specifier: ^6.5.0
- version: 6.5.0(typescript@4.9.5)
+ version: 6.5.0
packages/ui:
- dependencies:
- react-native-web:
- specifier: '*'
- version: 0.19.6(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@acme/eslint-config':
specifier: '*'
version: link:../eslint-config
'@testing-library/react-native':
specifier: ^11.4.0
- version: 11.4.0(jest@29.4.3)(react-native@0.72.1)(react-test-renderer@18.2.0)(react@18.2.0)
+ version: 11.4.0(jest@29.4.3)(react-test-renderer@18.2.0)
'@tsconfig/recommended':
specifier: ^1.0.1
version: 1.0.1
@@ -188,25 +196,19 @@ importers:
version: 0.70.6
babel-preset-expo:
specifier: ~9.5.0
- version: 9.5.0(@babel/core@7.20.2)
+ version: 9.5.0
jest:
specifier: ^29.4.3
version: 29.4.3
jest-expo:
specifier: ^49.0.0
- version: 49.0.0(jest@29.4.3)(react@18.2.0)
- react:
- specifier: 18.2.0
- version: 18.2.0
- react-native:
- specifier: 0.72.1
- version: 0.72.1(@babel/core@7.20.2)(react@18.2.0)
+ version: 49.0.0(jest@29.4.3)
react-test-renderer:
specifier: 18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.2.0
tsup:
specifier: ^6.5.0
- version: 6.5.0(typescript@4.9.5)
+ version: 6.5.0
packages:
@@ -220,7 +222,7 @@ packages:
/@babel/code-frame@7.10.4:
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
dependencies:
- '@babel/highlight': 7.18.6
+ '@babel/highlight': 7.22.5
/@babel/code-frame@7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
@@ -318,6 +320,22 @@ packages:
browserslist: 4.21.4
semver: 6.3.0
+ /@babel/helper-compilation-targets@7.20.7:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: true
+
/@babel/helper-compilation-targets@7.20.7(@babel/core@7.20.2):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
@@ -334,6 +352,26 @@ packages:
lru-cache: 5.1.1
semver: 6.3.0
+ /@babel/helper-create-class-features-plugin@7.19.0:
+ resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.21.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-split-export-declaration': 7.22.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/helper-create-class-features-plugin@7.19.0(@babel/core@7.20.2):
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
engines: {node: '>=6.9.0'}
@@ -354,6 +392,19 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/helper-create-regexp-features-plugin@7.19.0:
+ resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.22.5
+ regexpu-core: 5.2.1
+ dev: true
+
/@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.20.2):
resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
engines: {node: '>=6.9.0'}
@@ -367,6 +418,24 @@ packages:
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.2.1
+ /@babel/helper-define-polyfill-provider@0.3.3:
+ resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ peerDependencies:
+ '@babel/core': ^7.4.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-compilation-targets': 7.20.7
+ '@babel/helper-plugin-utils': 7.22.5
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.2):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
@@ -483,6 +552,23 @@ packages:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-remap-async-to-generator@7.22.5:
+ resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-wrap-function': 7.22.5
+ '@babel/types': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.20.2):
resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==}
engines: {node: '>=6.9.0'}
@@ -615,6 +701,18 @@ packages:
dependencies:
'@babel/types': 7.22.5
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6:
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.20.2):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
@@ -627,6 +725,20 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9:
+ resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-proposal-optional-chaining': 7.21.0
+ dev: true
+
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.20.2):
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
@@ -641,6 +753,23 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.2)
+ /@babel/plugin-proposal-async-generator-functions@7.20.7:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.5
+ '@babel/plugin-syntax-async-generators': 7.8.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.2):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
@@ -658,6 +787,21 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-class-properties@7.18.6:
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.2):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -673,6 +817,22 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-class-static-block@7.18.6:
+ resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.20.2):
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
@@ -689,6 +849,24 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-decorators@7.19.1:
+ resolution: {integrity: sha512-LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/plugin-syntax-decorators': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-proposal-decorators@7.19.1(@babel/core@7.20.2):
resolution: {integrity: sha512-LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw==}
engines: {node: '>=6.9.0'}
@@ -707,7 +885,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.2):
+ /@babel/plugin-proposal-dynamic-import@7.18.6:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -716,12 +894,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3
+ dev: true
- /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.20.2):
- resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -731,10 +909,10 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2)
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
+ /@babel/plugin-proposal-export-default-from@7.18.10:
+ resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -742,12 +920,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-export-default-from': 7.18.6
+ dev: true
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
+ /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.20.2):
+ resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -757,10 +935,10 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.20.2)
- /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
+ /@babel/plugin-proposal-export-namespace-from@7.18.9:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -768,12 +946,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3
+ dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -783,10 +961,10 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.2)
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ /@babel/plugin-proposal-json-strings@7.18.6:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -794,12 +972,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3
+ dev: true
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.2):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -807,15 +985,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/compat-data': 7.21.0
'@babel/core': 7.20.2
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2)
- '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.2)
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ /@babel/plugin-proposal-logical-assignment-operators@7.18.9:
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -823,12 +998,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
+ dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -838,11 +1013,10 @@ packages:
dependencies:
'@babel/core': 7.20.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.20.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.2)
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -850,14 +1024,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
+ dev: true
- /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -866,13 +1038,198 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2)
+
+ /@babel/plugin-proposal-numeric-separator@7.18.6:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4
+ dev: true
+
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.2)
+
+ /@babel/plugin-proposal-object-rest-spread@7.20.7:
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3
+ '@babel/plugin-transform-parameters': 7.20.7
+ dev: true
+
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.2):
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.20.2
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.2)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.2)
+
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3
+ dev: true
+
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.2)
+
+ /@babel/plugin-proposal-optional-chaining@7.21.0:
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3
+ dev: true
+
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.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.20.2)
+
+ /@babel/plugin-proposal-private-methods@7.18.6:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-class-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.20.2)
+ '@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/plugin-proposal-private-property-in-object@7.18.6:
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.20.2)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.2)
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-regexp-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.2):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
@@ -883,22 +1240,700 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
+ '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-async-generators@7.8.4:
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-bigint@7.8.3:
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-properties@7.12.13:
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-class-static-block@7.14.5:
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-decorators@7.19.0:
+ resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-decorators@7.19.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-dynamic-import@7.8.3:
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-export-default-from@7.18.6:
+ resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-export-namespace-from@7.8.3:
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-flow@7.22.5:
+ resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-import-assertions@7.20.0:
+ resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-import-meta@7.10.4:
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-json-strings@7.8.3:
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-jsx@7.18.6:
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4:
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3:
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-numeric-separator@7.10.4:
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-object-rest-spread@7.8.3:
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3:
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-optional-chaining@7.8.3:
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-private-property-in-object@7.14.5:
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-top-level-await@7.14.5:
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-syntax-typescript@7.18.6:
+ resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-transform-arrow-functions@7.18.6:
+ resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-transform-async-to-generator@7.22.5:
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.20.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/plugin-transform-block-scoped-functions@7.18.6:
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-transform-block-scoping@7.21.0:
+ resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-transform-classes@7.21.0:
+ resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.20.7
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.2)
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/plugin-transform-computed-properties@7.18.9:
+ resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2):
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ /@babel/plugin-transform-destructuring@7.20.7:
+ resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -907,10 +1942,23 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-transform-dotall-regex@7.18.6:
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-regexp-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -918,10 +1966,11 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ /@babel/plugin-transform-duplicate-keys@7.18.9:
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -929,11 +1978,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-syntax-decorators@7.19.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -944,19 +1993,21 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ /@babel/plugin-transform-exponentiation-operator@7.18.6:
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -965,21 +2016,24 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ /@babel/plugin-transform-flow-strip-types@7.22.5:
+ resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-flow': 7.22.5
+ dev: true
- /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
+ /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -989,9 +2043,10 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.20.2)
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
+ /@babel/plugin-transform-for-of@7.18.8:
+ resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -999,11 +2054,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
+ /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.2):
+ resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1014,20 +2069,23 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2):
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ /@babel/plugin-transform-function-name@7.18.9:
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-compilation-targets': 7.20.7
+ '@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -1035,10 +2093,12 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.2)
+ '@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ /@babel/plugin-transform-literals@7.18.9:
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1046,11 +2106,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -1060,19 +2121,21 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ /@babel/plugin-transform-member-expression-literals@7.18.6:
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2):
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -1082,19 +2145,24 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ /@babel/plugin-transform-modules-amd@7.20.11:
+ resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.20.2):
+ resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
@@ -1102,21 +2170,29 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ /@babel/plugin-transform-modules-commonjs@7.21.2:
+ resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1125,10 +2201,14 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ /@babel/plugin-transform-modules-systemjs@7.20.11:
+ resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1136,11 +2216,16 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.20.2):
+ resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1149,10 +2234,15 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ /@babel/plugin-transform-modules-umd@7.18.6:
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1160,11 +2250,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1173,26 +2266,39 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.20.2)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
+ /@babel/plugin-transform-named-capturing-groups-regex@7.19.1:
+ resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-create-regexp-features-plugin': 7.19.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.20.2):
+ resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
+ /@babel/plugin-transform-new-target@7.18.6:
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1200,11 +2306,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-classes@7.21.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1213,20 +2319,25 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.2)
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.22.5
+
+ /@babel/plugin-transform-object-super@7.18.6:
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1236,9 +2347,12 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.20.7
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.20.2):
- resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
+ /@babel/plugin-transform-parameters@7.20.7:
+ resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1246,11 +2360,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
+ /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.20.2):
+ resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1259,11 +2373,10 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
+ /@babel/plugin-transform-property-literals@7.18.6:
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1271,11 +2384,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1284,11 +2397,22 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
+ /@babel/plugin-transform-react-display-name@7.18.6:
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1298,10 +2422,9 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.20.2)
- /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
+ /@babel/plugin-transform-react-jsx-self@7.18.6:
+ resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1309,12 +2432,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.20.2)
+ dev: true
- /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.2):
- resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
+ /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1325,8 +2447,8 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ /@babel/plugin-transform-react-jsx-source@7.18.6:
+ resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1334,13 +2456,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.20.2)
- '@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ /@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1351,8 +2471,8 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ /@babel/plugin-transform-react-jsx@7.19.0:
+ resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1360,11 +2480,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.18.6
+ '@babel/types': 7.22.5
+ dev: true
- /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.20.2):
- resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
+ /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1373,13 +2497,14 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.2)
+ '@babel/types': 7.22.5
- /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.20.2):
- resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
+ /@babel/plugin-transform-regenerator@7.18.6:
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1387,15 +2512,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.20.2
- transitivePeerDependencies:
- - supports-color
+ regenerator-transform: 0.15.0
+ dev: true
- /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.20.2):
- resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
+ /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1404,15 +2526,11 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.22.5
- transitivePeerDependencies:
- - supports-color
+ regenerator-transform: 0.15.0
- /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
+ /@babel/plugin-transform-reserved-words@7.18.6:
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1420,27 +2538,23 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.22.5
- transitivePeerDependencies:
- - supports-color
+ dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.20.2):
- resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ /@babel/plugin-transform-runtime@7.19.1:
+ resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1448,11 +2562,18 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.3.3
+ babel-plugin-polyfill-corejs3: 0.6.0
+ babel-plugin-polyfill-regenerator: 0.4.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ /@babel/plugin-transform-runtime@7.19.1(@babel/core@7.20.2):
+ resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1461,13 +2582,17 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.20.7
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.2)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.2)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.2)
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.20.2):
- resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
+ /@babel/plugin-transform-shorthand-properties@7.18.6:
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1475,11 +2600,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1490,8 +2615,8 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ /@babel/plugin-transform-spread@7.19.0:
+ resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1499,11 +2624,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ dev: true
- /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
+ /@babel/plugin-transform-spread@7.19.0(@babel/core@7.20.2):
+ resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1513,9 +2639,10 @@ packages:
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-react-jsx-source@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
+ /@babel/plugin-transform-sticky-regex@7.18.6:
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1523,11 +2650,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1536,14 +2663,10 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.2)
- '@babel/types': 7.22.5
- /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
+ /@babel/plugin-transform-template-literals@7.18.9:
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1551,12 +2674,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- regenerator-transform: 0.15.0
+ dev: true
- /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1567,8 +2689,8 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-runtime@7.19.1(@babel/core@7.20.2):
- resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
+ /@babel/plugin-transform-typeof-symbol@7.18.9:
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1576,18 +2698,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.2)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.2)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.2)
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
+ dev: true
- /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.20.2):
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1598,8 +2713,8 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-spread@7.19.0(@babel/core@7.20.2):
- resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
+ /@babel/plugin-transform-typescript@7.19.1:
+ resolution: {integrity: sha512-+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1607,12 +2722,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
+ '@babel/helper-create-class-features-plugin': 7.19.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.18.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
+ /@babel/plugin-transform-typescript@7.19.1(@babel/core@7.20.2):
+ resolution: {integrity: sha512-+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1621,10 +2739,14 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.20.2)
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ /@babel/plugin-transform-unicode-escapes@7.18.10:
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1632,11 +2754,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.20.2):
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.20.2):
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1647,8 +2769,8 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typescript@7.19.1(@babel/core@7.20.2):
- resolution: {integrity: sha512-+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ==}
+ /@babel/plugin-transform-unicode-regex@7.18.6:
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1656,15 +2778,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.20.2)
+ '@babel/helper-create-regexp-features-plugin': 7.19.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.20.2)
- transitivePeerDependencies:
- - supports-color
+ dev: true
- /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.20.2):
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.20.2):
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1673,10 +2792,11 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.20.2):
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
+ /@babel/preset-env@7.20.2:
+ resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1684,9 +2804,84 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.2
- '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.20.2)
+ '@babel/compat-data': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7
+ '@babel/plugin-proposal-class-properties': 7.18.6
+ '@babel/plugin-proposal-class-static-block': 7.18.6
+ '@babel/plugin-proposal-dynamic-import': 7.18.6
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9
+ '@babel/plugin-proposal-json-strings': 7.18.6
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6
+ '@babel/plugin-proposal-numeric-separator': 7.18.6
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6
+ '@babel/plugin-proposal-optional-chaining': 7.21.0
+ '@babel/plugin-proposal-private-methods': 7.18.6
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6
+ '@babel/plugin-syntax-async-generators': 7.8.4
+ '@babel/plugin-syntax-class-properties': 7.12.13
+ '@babel/plugin-syntax-class-static-block': 7.14.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3
+ '@babel/plugin-syntax-import-assertions': 7.20.0
+ '@babel/plugin-syntax-json-strings': 7.8.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5
+ '@babel/plugin-syntax-top-level-await': 7.14.5
+ '@babel/plugin-transform-arrow-functions': 7.18.6
+ '@babel/plugin-transform-async-to-generator': 7.22.5
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6
+ '@babel/plugin-transform-block-scoping': 7.21.0
+ '@babel/plugin-transform-classes': 7.21.0
+ '@babel/plugin-transform-computed-properties': 7.18.9
+ '@babel/plugin-transform-destructuring': 7.20.7
+ '@babel/plugin-transform-dotall-regex': 7.18.6
+ '@babel/plugin-transform-duplicate-keys': 7.18.9
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6
+ '@babel/plugin-transform-for-of': 7.18.8
+ '@babel/plugin-transform-function-name': 7.18.9
+ '@babel/plugin-transform-literals': 7.18.9
+ '@babel/plugin-transform-member-expression-literals': 7.18.6
+ '@babel/plugin-transform-modules-amd': 7.20.11
+ '@babel/plugin-transform-modules-commonjs': 7.21.2
+ '@babel/plugin-transform-modules-systemjs': 7.20.11
+ '@babel/plugin-transform-modules-umd': 7.18.6
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1
+ '@babel/plugin-transform-new-target': 7.18.6
+ '@babel/plugin-transform-object-super': 7.18.6
+ '@babel/plugin-transform-parameters': 7.20.7
+ '@babel/plugin-transform-property-literals': 7.18.6
+ '@babel/plugin-transform-regenerator': 7.18.6
+ '@babel/plugin-transform-reserved-words': 7.18.6
+ '@babel/plugin-transform-shorthand-properties': 7.18.6
+ '@babel/plugin-transform-spread': 7.19.0
+ '@babel/plugin-transform-sticky-regex': 7.18.6
+ '@babel/plugin-transform-template-literals': 7.18.9
+ '@babel/plugin-transform-typeof-symbol': 7.18.9
+ '@babel/plugin-transform-unicode-escapes': 7.18.10
+ '@babel/plugin-transform-unicode-regex': 7.18.6
+ '@babel/preset-modules': 0.1.5
+ '@babel/types': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.3.3
+ babel-plugin-polyfill-corejs3: 0.6.0
+ babel-plugin-polyfill-regenerator: 0.4.1
+ core-js-compat: 3.25.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
/@babel/preset-env@7.20.2(@babel/core@7.20.2):
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
@@ -1788,7 +2983,23 @@ packages:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.20.2)
+ dev: false
+
+ /@babel/preset-modules@0.1.5:
+ resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6
+ '@babel/plugin-transform-dotall-regex': 7.18.6
+ '@babel/types': 7.22.5
+ esutils: 2.0.3
+ dev: true
/@babel/preset-modules@0.1.5(@babel/core@7.20.2):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
@@ -1820,6 +3031,7 @@ packages:
'@babel/plugin-transform-typescript': 7.19.1(@babel/core@7.20.2)
transitivePeerDependencies:
- supports-color
+ dev: false
/@babel/register@7.18.9(@babel/core@7.20.2):
resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
@@ -1836,6 +3048,7 @@ packages:
make-dir: 2.1.0
pirates: 4.0.5
source-map-support: 0.5.21
+ dev: false
/@babel/runtime-corejs3@7.19.1:
resolution: {integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==}
@@ -1942,10 +3155,25 @@ packages:
'@babel/helper-validator-identifier': 7.22.5
to-fast-properties: 2.0.0
+ /@bacons/react-views@1.1.3(react-native@0.72.3):
+ resolution: {integrity: sha512-aLipQAkQKRzG64e28XHBpByyBPfANz0A6POqYHGyryHizG9vLCLNQwLe8gwFANEMBWW2Mx5YdQ7RkNdQMQ+CXQ==}
+ peerDependencies:
+ react-native: '*'
+ dependencies:
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ dev: false
+
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
+ /@egjs/hammerjs@2.0.17:
+ resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ '@types/hammerjs': 2.0.41
+ dev: false
+
/@esbuild/android-arm@0.15.18:
resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==}
engines: {node: '>=12'}
@@ -1990,15 +3218,15 @@ packages:
safe-json-stringify: 1.2.0
dev: false
- /@expo/cli@0.10.10(expo-modules-autolinking@1.5.0):
- resolution: {integrity: sha512-YN5ziGfb+CBY51ezZHSRTnZ6FpJT8t8RG4OIKPFyvuO7PWctC52CEXgJ6CJDzgxAaiD/ubogciVAYqjvNa6Lnw==}
+ /@expo/cli@0.10.11(expo-modules-autolinking@1.5.1):
+ resolution: {integrity: sha512-ehaAOw4SwkJ9uL5z9c3RD4LJpmMDCXZBCWZG4fonUGutks4t/GLoNRcdENkWsf6NSgkdPNgNl8KwphU1p083PQ==}
hasBin: true
dependencies:
'@babel/runtime': 7.21.0
'@expo/code-signing-certificates': 0.0.5
'@expo/config': 8.1.2
'@expo/config-plugins': 7.2.5
- '@expo/dev-server': 0.5.4
+ '@expo/dev-server': 0.5.5
'@expo/devcert': 1.0.0
'@expo/env': 0.0.5
'@expo/json-file': 8.2.37
@@ -2006,7 +3234,7 @@ packages:
'@expo/osascript': 2.0.33
'@expo/package-manager': 1.0.1
'@expo/plist': 0.0.20
- '@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.5.0)
+ '@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.5.1)
'@expo/rudder-sdk-node': 1.1.1
'@expo/spawn-async': 1.5.0
'@expo/xcpretty': 4.2.2
@@ -2114,8 +3342,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@expo/dev-server@0.5.4:
- resolution: {integrity: sha512-+4CxCWq+lLIiOtO6r1CErU9U4irepBJbXUMzeQ3Vik9FEkuhMwSHHHAxxOB+VmD5IuomubUY3RVMUzEWABIouw==}
+ /@expo/dev-server@0.5.5:
+ resolution: {integrity: sha512-t0fT8xH1exwYsH5hh7bAt85VF+gXxg24qrbny2rR/iKoPTWFCd2JNQV8pvfLg51hvrywQ3YCBuT3lU1w7aZxFA==}
dependencies:
'@expo/bunyan': 4.0.0
'@expo/metro-config': 0.10.6
@@ -2213,6 +3441,16 @@ packages:
- supports-color
dev: false
+ /@expo/metro-runtime@2.2.6(react-native@0.72.3):
+ resolution: {integrity: sha512-GCN2Ayn9COiPLvmS3MjrqJnRyfJLVcpvjdjnxe5WlWdT4CFNwTwBUXZsv+CxHVQLoWTWzCmYy3aC7CJahcfTLg==}
+ peerDependencies:
+ react-native: '*'
+ dependencies:
+ '@bacons/react-views': 1.1.3(react-native@0.72.3)
+ qs: 6.11.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ dev: false
+
/@expo/osascript@2.0.33:
resolution: {integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==}
engines: {node: '>=12'}
@@ -2237,14 +3475,37 @@ packages:
sudo-prompt: 9.1.1
dev: false
- /@expo/plist@0.0.20:
- resolution: {integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==}
- dependencies:
- '@xmldom/xmldom': 0.7.9
- base64-js: 1.5.1
- xmlbuilder: 14.0.0
-
- /@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.0):
+ /@expo/plist@0.0.20:
+ resolution: {integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==}
+ dependencies:
+ '@xmldom/xmldom': 0.7.9
+ base64-js: 1.5.1
+ xmlbuilder: 14.0.0
+
+ /@expo/prebuild-config@6.2.6:
+ resolution: {integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==}
+ peerDependencies:
+ expo-modules-autolinking: '>=0.8.1'
+ peerDependenciesMeta:
+ expo-modules-autolinking:
+ optional: true
+ dependencies:
+ '@expo/config': 8.1.2
+ '@expo/config-plugins': 7.2.5
+ '@expo/config-types': 49.0.0
+ '@expo/image-utils': 0.3.22
+ '@expo/json-file': 8.2.37
+ debug: 4.3.4
+ fs-extra: 9.1.0
+ resolve-from: 5.0.0
+ semver: 7.5.3
+ xml2js: 0.6.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ dev: false
+
+ /@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.1):
resolution: {integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==}
peerDependencies:
expo-modules-autolinking: '>=0.8.1'
@@ -2258,7 +3519,7 @@ packages:
'@expo/image-utils': 0.3.22
'@expo/json-file': 8.2.37
debug: 4.3.4
- expo-modules-autolinking: 1.5.0
+ expo-modules-autolinking: 1.5.1
fs-extra: 9.1.0
resolve-from: 5.0.0
semver: 7.5.3
@@ -2321,11 +3582,13 @@ packages:
/@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+ dev: false
/@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.3.0
+ dev: false
/@humanwhocodes/config-array@0.11.8:
resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
@@ -2590,6 +3853,7 @@ packages:
'@types/node': 18.7.18
'@types/yargs': 16.0.4
chalk: 4.1.2
+ dev: false
/@jest/types@29.4.3:
resolution: {integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==}
@@ -2615,7 +3879,7 @@ packages:
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.14
- '@jridgewell/trace-mapping': 0.3.15
+ '@jridgewell/trace-mapping': 0.3.17
/@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
@@ -2630,6 +3894,7 @@ packages:
dependencies:
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.17
+ dev: false
/@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
@@ -2819,20 +4084,40 @@ packages:
tslib: 2.5.0
dev: true
- /@react-native-community/cli-clean@11.3.3:
- resolution: {integrity: sha512-5csu0Z2wNkLRZs4AxA+5UVtOdyGqdjZ9DEPccePlkN9IXEHTia2GdDuWZVVnlC50Ab3eTaGDKvFzy9QONHQusw==}
+ /@radix-ui/react-compose-refs@1.0.0(react@18.2.0):
+ resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
+ peerDependencies:
+ react: ^16.8 || ^17.0 || ^18.0
+ dependencies:
+ '@babel/runtime': 7.21.0
+ react: 18.2.0
+ dev: false
+
+ /@radix-ui/react-slot@1.0.1(react@18.2.0):
+ resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==}
+ peerDependencies:
+ react: ^16.8 || ^17.0 || ^18.0
+ dependencies:
+ '@babel/runtime': 7.21.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
+ react: 18.2.0
+ dev: false
+
+ /@react-native-community/cli-clean@11.3.5:
+ resolution: {integrity: sha512-1+7BU962wKkIkHRp/uW3jYbQKKGtU7L+R3g59D8K6uLccuxJYUBJv18753ojMa6SD3SAq5Xh31bAre+YwVcOTA==}
dependencies:
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
execa: 5.1.1
prompts: 2.4.2
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-config@11.3.3:
- resolution: {integrity: sha512-j87RHJlybNHD1mYSkHnWA4qLkEO6qVn0+sREZGdQ6gVmOzxvLzvEB+YMoNEEqFGmPiyt3WTMLgi7jUr6WVoKuQ==}
+ /@react-native-community/cli-config@11.3.5:
+ resolution: {integrity: sha512-fMblIsHlUleKfGsgWyjFJYfx1SqrsnhS/QXfA8w7iT6GrNOOjBp5UWx8+xlMDFcmOb9e42g1ExFDKl3n8FWkxQ==}
dependencies:
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
cosmiconfig: 5.2.1
deepmerge: 4.3.1
@@ -2840,21 +4125,23 @@ packages:
joi: 17.6.0
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-debugger-ui@11.3.3:
- resolution: {integrity: sha512-iVKcwyK2iKlq/qVtSbhk5fGsrOamAx7j50QhDMrZ6NmYZq+k75k253+YTzXoxWdPPZhsdhmILuBJgf8orIYCPQ==}
+ /@react-native-community/cli-debugger-ui@11.3.5:
+ resolution: {integrity: sha512-o5JVCKEpPUXMX4r3p1cYjiy3FgdOEkezZcQ6owWEae2dYvV19lLYyJwnocm9Y7aG9PvpgI3PIMVh3KZbhS21eA==}
dependencies:
serve-static: 1.15.0
transitivePeerDependencies:
- supports-color
+ dev: false
- /@react-native-community/cli-doctor@11.3.3:
- resolution: {integrity: sha512-11MlCYZkZ602lmoxZUM6FZYjqFgyYci0X0QoBgBHi+3hqmrlA9JkYR/6OpPo34ASVObhE4DQ7eZ1+EQnVJHXsA==}
+ /@react-native-community/cli-doctor@11.3.5:
+ resolution: {integrity: sha512-+4BuFHjoV4FFjX5y60l0s6nS0agidb1izTVwsFixeFKW73LUkOLu+Ae5HI94RAFEPE4ePEVNgYX3FynIau6K0g==}
dependencies:
- '@react-native-community/cli-config': 11.3.3
- '@react-native-community/cli-platform-android': 11.3.3
- '@react-native-community/cli-platform-ios': 11.3.3
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-config': 11.3.5
+ '@react-native-community/cli-platform-android': 11.3.5
+ '@react-native-community/cli-platform-ios': 11.3.5
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
command-exists: 1.2.9
envinfo: 7.8.1
@@ -2871,33 +4158,36 @@ packages:
yaml: 2.3.1
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-hermes@11.3.3:
- resolution: {integrity: sha512-IoBLspPg4EwKwYj+5Ki4xrGUz7vVeE9soULCXJij2IKB68U63WmjG42+ng96+ryJDaQqERqF7NGll1jqnenJYQ==}
+ /@react-native-community/cli-hermes@11.3.5:
+ resolution: {integrity: sha512-+3m34hiaJpFel8BlJE7kJOaPzWR/8U8APZG2LXojbAdBAg99EGmQcwXIgsSVJFvH8h/nezf4DHbsPKigIe33zA==}
dependencies:
- '@react-native-community/cli-platform-android': 11.3.3
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-platform-android': 11.3.5
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
hermes-profile-transformer: 0.0.6
ip: 1.1.8
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-platform-android@11.3.3:
- resolution: {integrity: sha512-hjkPTJXKw2PZNKdeZZ1I4Mv2gRbPOfZmpgRVXtDwEP4cXZUGTDP54lBhFnC+8KxiKJBWJ/m4wYyC3ZqX87M2jg==}
+ /@react-native-community/cli-platform-android@11.3.5:
+ resolution: {integrity: sha512-s4Lj7FKxJ/BofGi/ifjPfrA9MjFwIgYpHnHBSlqtbsvPoSYzmVCU2qlWM8fb3AmkXIwyYt4A6MEr3MmNT2UoBg==}
dependencies:
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
execa: 5.1.1
glob: 7.2.3
logkitty: 0.7.1
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-platform-ios@11.3.3:
- resolution: {integrity: sha512-mFdZjOaPCQy3y4DoMdA5l5/zVXtvsi8pbJFTV7ms7avNShuqqvue/Fm4wmiccZd0Zfi5p9TOP3Bh9Aw/jC+UAQ==}
+ /@react-native-community/cli-platform-ios@11.3.5:
+ resolution: {integrity: sha512-ytJC/YCFD7P+KuQHOT5Jzh1ho2XbJEjq71yHa1gJP2PG/Q/uB4h1x2XpxDqv5iXU6E250yjvKMmkReKTW4CTig==}
dependencies:
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
execa: 5.1.1
fast-xml-parser: 4.1.2
@@ -2905,20 +4195,21 @@ packages:
ora: 5.4.1
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-plugin-metro@11.3.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-jbutvKqjIUTIuSK6mGmVt+x/MygLAIG6VNIwbywFtY+P4CCxUxo8o8h3O2cPRB2xeg9qikksm3Wys7fME4Ly+A==}
+ /@react-native-community/cli-plugin-metro@11.3.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-r9AekfeLKdblB7LfWB71IrNy1XM03WrByQlUQajUOZAP2NmUUBLl9pMZscPjJeOSgLpHB9ixEFTIOhTabri/qg==}
dependencies:
- '@react-native-community/cli-server-api': 11.3.3
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-server-api': 11.3.5
+ '@react-native-community/cli-tools': 11.3.5
chalk: 4.1.2
execa: 5.1.1
- metro: 0.76.5
- metro-config: 0.76.5
- metro-core: 0.76.5
- metro-react-native-babel-transformer: 0.76.5(@babel/core@7.20.2)
- metro-resolver: 0.76.5
- metro-runtime: 0.76.5
+ metro: 0.76.7
+ metro-config: 0.76.7
+ metro-core: 0.76.7
+ metro-react-native-babel-transformer: 0.76.7(@babel/core@7.20.2)
+ metro-resolver: 0.76.7
+ metro-runtime: 0.76.7
readline: 1.3.0
transitivePeerDependencies:
- '@babel/core'
@@ -2926,12 +4217,13 @@ packages:
- encoding
- supports-color
- utf-8-validate
+ dev: false
- /@react-native-community/cli-server-api@11.3.3:
- resolution: {integrity: sha512-3ja7WZzXMCeGTaeWLzKxAoueqLjsuo0YURcAjqf044rkY5F1Xk5yIaTN8fb66Lnl2eB3DwuatqEB4dYl34/GZw==}
+ /@react-native-community/cli-server-api@11.3.5:
+ resolution: {integrity: sha512-PM/jF13uD1eAKuC84lntNuM5ZvJAtyb+H896P1dBIXa9boPLa3KejfUvNVoyOUJ5s8Ht25JKbc3yieV2+GMBDA==}
dependencies:
- '@react-native-community/cli-debugger-ui': 11.3.3
- '@react-native-community/cli-tools': 11.3.3
+ '@react-native-community/cli-debugger-ui': 11.3.5
+ '@react-native-community/cli-tools': 11.3.5
compression: 1.7.4
connect: 3.7.0
errorhandler: 1.5.1
@@ -2944,9 +4236,10 @@ packages:
- encoding
- supports-color
- utf-8-validate
+ dev: false
- /@react-native-community/cli-tools@11.3.3:
- resolution: {integrity: sha512-rRFSOAVVwI9R9PyPMff5WqmHbgJYrzGHFH1PA+tFvuiSmWlAf51bzkZIPehTBAQON03a6d5epNsGlBKMLA/BKw==}
+ /@react-native-community/cli-tools@11.3.5:
+ resolution: {integrity: sha512-zDklE1+ah/zL4BLxut5XbzqCj9KTHzbYBKX7//cXw2/0TpkNCaY9c+iKx//gZ5m7U1OKbb86Fm2b0AKtKVRf6Q==}
dependencies:
appdirsjs: 1.2.7
chalk: 4.1.2
@@ -2959,26 +4252,28 @@ packages:
shell-quote: 1.7.3
transitivePeerDependencies:
- encoding
+ dev: false
- /@react-native-community/cli-types@11.3.3:
- resolution: {integrity: sha512-/u7N93ZUsKAGv3WSGAjKhpK2uCPBkyaw/SuScjHAuL9ifPjvwDhi71K5NbCcYl3ZYh5K39EF3Hm664Jfk9c0MQ==}
+ /@react-native-community/cli-types@11.3.5:
+ resolution: {integrity: sha512-pf0kdWMEfPSV/+8rcViDCFzbLMtWIHMZ8ay7hKwqaoWegsJ0oprSF2tSTH+LSC/7X1Beb9ssIvHj1m5C4es5Xg==}
dependencies:
joi: 17.6.0
+ dev: false
- /@react-native-community/cli@11.3.3(@babel/core@7.20.2):
- resolution: {integrity: sha512-+XwD9IEtaff0q8hyWTQL4xVc7V4P8B7zD0zpcEV8FVV+qUfIFMbNpaYNJFlNOFYRzZmo0/hXsa66S/Im5perlQ==}
+ /@react-native-community/cli@11.3.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-wMXgKEWe6uesw7vyXKKjx5EDRog0QdXHxdgRguG14AjQRao1+4gXEWq2yyExOTi/GDY6dfJBUGTCwGQxhnk/Lg==}
engines: {node: '>=16'}
hasBin: true
dependencies:
- '@react-native-community/cli-clean': 11.3.3
- '@react-native-community/cli-config': 11.3.3
- '@react-native-community/cli-debugger-ui': 11.3.3
- '@react-native-community/cli-doctor': 11.3.3
- '@react-native-community/cli-hermes': 11.3.3
- '@react-native-community/cli-plugin-metro': 11.3.3(@babel/core@7.20.2)
- '@react-native-community/cli-server-api': 11.3.3
- '@react-native-community/cli-tools': 11.3.3
- '@react-native-community/cli-types': 11.3.3
+ '@react-native-community/cli-clean': 11.3.5
+ '@react-native-community/cli-config': 11.3.5
+ '@react-native-community/cli-debugger-ui': 11.3.5
+ '@react-native-community/cli-doctor': 11.3.5
+ '@react-native-community/cli-hermes': 11.3.5
+ '@react-native-community/cli-plugin-metro': 11.3.5(@babel/core@7.20.2)
+ '@react-native-community/cli-server-api': 11.3.5
+ '@react-native-community/cli-tools': 11.3.5
+ '@react-native-community/cli-types': 11.3.5
chalk: 4.1.2
commander: 9.4.1
execa: 5.1.1
@@ -2993,9 +4288,11 @@ packages:
- encoding
- supports-color
- utf-8-validate
+ dev: false
/@react-native/assets-registry@0.72.0:
resolution: {integrity: sha512-Im93xRJuHHxb1wniGhBMsxLwcfzdYreSZVQGDoMJgkd6+Iky61LInGEHnQCTN0fKNYF1Dvcofb4uMmE1RQHXHQ==}
+ dev: false
/@react-native/codegen@0.72.6:
resolution: {integrity: sha512-idTVI1es/oopN0jJT/0jB6nKdvTUKE3757zA5+NPXZTeB46CIRbmmos4XBiAec8ufu9/DigLPbHTYAaMNZJ6Ig==}
@@ -3011,27 +4308,117 @@ packages:
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
+ dev: false
/@react-native/gradle-plugin@0.72.11:
resolution: {integrity: sha512-P9iRnxiR2w7EHcZ0mJ+fmbPzMby77ZzV6y9sJI3lVLJzF7TLSdbwcQyD3lwMsiL+q5lKUHoZJS4sYmih+P2HXw==}
+ dev: false
/@react-native/js-polyfills@0.72.1:
resolution: {integrity: sha512-cRPZh2rBswFnGt5X5EUEPs0r+pAsXxYsifv/fgy9ZLQokuT52bPH+9xjDR+7TafRua5CttGW83wP4TntRcWNDA==}
+ dev: false
/@react-native/normalize-color@2.1.0:
resolution: {integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==}
/@react-native/normalize-colors@0.72.0:
resolution: {integrity: sha512-285lfdqSXaqKuBbbtP9qL2tDrfxdOFtIMvkKadtleRQkdOxx+uzGvFr82KHmc/sSiMtfXGp7JnFYWVh4sFl7Yw==}
+ dev: false
- /@react-native/virtualized-lists@0.72.6(react-native@0.72.1):
+ /@react-native/virtualized-lists@0.72.6(react-native@0.72.3):
resolution: {integrity: sha512-JhT6ydu35LvbSKdwnhWDuGHMOwM0WAh9oza/X8vXHA8ELHRyQ/4p8eKz/bTQcbQziJaaleUURToGhFuCtgiMoA==}
peerDependencies:
react-native: '*'
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react-native: 0.72.1(@babel/core@7.20.2)(react@18.2.0)
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ dev: false
+
+ /@react-navigation/bottom-tabs@6.5.8(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native-screens@3.22.1)(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-0aa/jXea+LyBgR5NoRNWGKw0aFhjHwCkusigMRXIrCA4kINauDcAO0w0iFbZeKfaTCVAix5kK5UxDJJ2aJpevg==}
+ peerDependencies:
+ '@react-navigation/native': ^6.0.0
+ react: '*'
+ react-native: '*'
+ react-native-safe-area-context: '>= 3.0.0'
+ react-native-screens: '>= 3.0.0'
+ dependencies:
+ '@react-navigation/elements': 1.3.18(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native@0.72.3)(react@18.2.0)
+ '@react-navigation/native': 6.1.7(react-native@0.72.3)(react@18.2.0)
+ color: 4.2.3
+ react: 18.2.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ react-native-safe-area-context: 4.6.3(react-native@0.72.3)(react@18.2.0)
+ react-native-screens: 3.22.1(react-native@0.72.3)(react@18.2.0)
+ warn-once: 0.1.1
+ dev: false
+
+ /@react-navigation/core@6.4.9(react@18.2.0):
+ resolution: {integrity: sha512-G9GH7bP9x0qqupxZnkSftnkn4JoXancElTvFc8FVGfEvxnxP+gBo3wqcknyBi7M5Vad4qecsYjCOa9wqsftv9g==}
+ peerDependencies:
+ react: '*'
+ dependencies:
+ '@react-navigation/routers': 6.1.9
+ escape-string-regexp: 4.0.0
+ nanoid: 3.3.6
+ query-string: 7.1.3
+ react: 18.2.0
+ react-is: 16.13.1
+ use-latest-callback: 0.1.6(react@18.2.0)
+ dev: false
+
+ /@react-navigation/elements@1.3.18(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-/0hwnJkrr415yP0Hf4PjUKgGyfshrvNUKFXN85Mrt1gY49hy9IwxZgrrxlh0THXkPeq8q4VWw44eHDfAcQf20Q==}
+ peerDependencies:
+ '@react-navigation/native': ^6.0.0
+ react: '*'
+ react-native: '*'
+ react-native-safe-area-context: '>= 3.0.0'
+ dependencies:
+ '@react-navigation/native': 6.1.7(react-native@0.72.3)(react@18.2.0)
+ react: 18.2.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ react-native-safe-area-context: 4.6.3(react-native@0.72.3)(react@18.2.0)
+ dev: false
+
+ /@react-navigation/native-stack@6.9.13(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native-screens@3.22.1)(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-ejlepMrvFneewL+XlXHHhn+6y3lwvavM4/R7XwBV0XJxCymujexK+7Vkg7UcvJ1lx4CRhOcyBSNfGmdNIHREyQ==}
+ peerDependencies:
+ '@react-navigation/native': ^6.0.0
+ react: '*'
+ react-native: '*'
+ react-native-safe-area-context: '>= 3.0.0'
+ react-native-screens: '>= 3.0.0'
+ dependencies:
+ '@react-navigation/elements': 1.3.18(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native@0.72.3)(react@18.2.0)
+ '@react-navigation/native': 6.1.7(react-native@0.72.3)(react@18.2.0)
+ react: 18.2.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ react-native-safe-area-context: 4.6.3(react-native@0.72.3)(react@18.2.0)
+ react-native-screens: 3.22.1(react-native@0.72.3)(react@18.2.0)
+ warn-once: 0.1.1
+ dev: false
+
+ /@react-navigation/native@6.1.7(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-W6E3+AtTombMucCRo6q7vPmluq8hSjS+IxfazJ/SokOe7ChJX7eLvvralIsJkjFj3iWV1KgOSnHxa6hdiFasBw==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ '@react-navigation/core': 6.4.9(react@18.2.0)
+ escape-string-regexp: 4.0.0
+ fast-deep-equal: 3.1.3
+ nanoid: 3.3.6
+ react: 18.2.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ dev: false
+
+ /@react-navigation/routers@6.1.9:
+ resolution: {integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==}
+ dependencies:
+ nanoid: 3.3.6
+ dev: false
/@rushstack/eslint-patch@1.2.0:
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
@@ -3048,12 +4435,15 @@ packages:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
+ dev: false
/@sideway/formula@3.0.0:
resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
+ dev: false
/@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
+ dev: false
/@sinclair/typebox@0.24.41:
resolution: {integrity: sha512-TJCgQurls4FipFvHeC+gfAzb+GGstL0TDwYJKQVtTeSvJIznWzP7g3bAd5gEBlr8+bIxqnWS9VGVWREDhmE8jA==}
@@ -3078,7 +4468,7 @@ packages:
tslib: 2.4.0
dev: false
- /@testing-library/react-native@11.4.0(jest@29.4.3)(react-native@0.72.1)(react-test-renderer@18.2.0)(react@18.2.0):
+ /@testing-library/react-native@11.4.0(jest@29.4.3)(react-test-renderer@18.2.0):
resolution: {integrity: sha512-Pw1T3QoRyoPlnbDPI7pJCRChX/HquEVk6b9XfUuO/LrLJpqAOtZQDYz67eVJfVlhIlTu7hesm57ikIabOWKSlg==}
peerDependencies:
jest: '>=28.0.0'
@@ -3091,9 +4481,7 @@ packages:
dependencies:
jest: 29.4.3
pretty-format: 29.3.1
- react: 18.2.0
- react-native: 0.72.1(@babel/core@7.20.2)(react@18.2.0)
- react-test-renderer: 18.2.0(react@18.2.0)
+ react-test-renderer: 18.2.0
dev: true
/@tootallnate/once@2.0.0:
@@ -3140,6 +4528,10 @@ packages:
'@types/node': 18.7.18
dev: true
+ /@types/hammerjs@2.0.41:
+ resolution: {integrity: sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==}
+ dev: false
+
/@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
@@ -3186,6 +4578,10 @@ packages:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: true
+ /@types/qs@6.9.7:
+ resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
+ dev: false
+
/@types/react-dom@18.0.11:
resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
dependencies:
@@ -3195,7 +4591,7 @@ packages:
/@types/react-native@0.70.6:
resolution: {integrity: sha512-ynQ2jj0km9d7dbnyKqVdQ6Nti7VQ8SLTA/KKkkS5+FnvGyvij2AOo1/xnkBR/jnSNXuzrvGVzw2n0VWfppmfKw==}
dependencies:
- '@types/react': 18.0.28
+ '@types/react': 18.2.14
dev: true
/@types/react@18.0.25:
@@ -3249,13 +4645,14 @@ packages:
resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
dependencies:
'@types/yargs-parser': 21.0.0
+ dev: false
/@types/yargs@17.0.13:
resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==}
dependencies:
'@types/yargs-parser': 21.0.0
- /@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.42.1)(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.42.1)(eslint@8.34.0):
resolution: {integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3266,23 +4663,22 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)
'@typescript-eslint/scope-manager': 5.42.1
- '@typescript-eslint/type-utils': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/type-utils': 5.42.1(eslint@8.34.0)
+ '@typescript-eslint/utils': 5.42.1(eslint@8.34.0)
debug: 4.3.4
eslint: 8.34.0
ignore: 5.2.0
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.7
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/eslint-plugin@5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/eslint-plugin@5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.34.0):
resolution: {integrity: sha512-alFpFWNucPLdUOySmXCJpzr6HKC3bu7XooShWM+3w/EL6J2HIoB2PFxpLnq4JauWVk6DiVeNKzQlFEaE+X9sGw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3293,24 +4689,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)
'@typescript-eslint/scope-manager': 5.53.0
- '@typescript-eslint/type-utils': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/type-utils': 5.53.0(eslint@8.34.0)
+ '@typescript-eslint/utils': 5.53.0(eslint@8.34.0)
debug: 4.3.4
eslint: 8.34.0
grapheme-splitter: 1.0.4
ignore: 5.2.0
natural-compare-lite: 1.4.0
regexpp: 3.2.0
- semver: 7.3.7
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ semver: 7.5.4
+ tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/parser@5.42.1(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/parser@5.42.1(eslint@8.34.0):
resolution: {integrity: sha512-kAV+NiNBWVQDY9gDJDToTE/NO8BHi4f6b7zTsVAJoTkmB/zlfOpiEVBzHOKtlgTndCKe8vj9F/PuolemZSh50Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3322,14 +4717,13 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.42.1
'@typescript-eslint/types': 5.42.1
- '@typescript-eslint/typescript-estree': 5.42.1(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.42.1
debug: 4.3.4
eslint: 8.34.0
- typescript: 4.9.5
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/parser@5.53.0(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/parser@5.53.0(eslint@8.34.0):
resolution: {integrity: sha512-MKBw9i0DLYlmdOb3Oq/526+al20AJZpANdT6Ct9ffxcV8nKCHz63t/S0IhlTFNsBIHJv+GY5SFJ0XfqVeydQrQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3341,10 +4735,9 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.53.0
'@typescript-eslint/types': 5.53.0
- '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.53.0
debug: 4.3.4
eslint: 8.34.0
- typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -3364,7 +4757,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.53.0
dev: false
- /@typescript-eslint/type-utils@5.42.1(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/type-utils@5.42.1(eslint@8.34.0):
resolution: {integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3374,17 +4767,16 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.42.1(typescript@4.9.5)
- '@typescript-eslint/utils': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.42.1
+ '@typescript-eslint/utils': 5.42.1(eslint@8.34.0)
debug: 4.3.4
eslint: 8.34.0
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/type-utils@5.53.0(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/type-utils@5.53.0(eslint@8.34.0):
resolution: {integrity: sha512-HO2hh0fmtqNLzTAme/KnND5uFNwbsdYhCZghK2SoxGp3Ifn2emv+hi0PBUjzzSh0dstUIFqOj3bp0AwQlK4OWw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3394,12 +4786,11 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5)
- '@typescript-eslint/utils': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.53.0
+ '@typescript-eslint/utils': 5.53.0(eslint@8.34.0)
debug: 4.3.4
eslint: 8.34.0
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -3413,7 +4804,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/typescript-estree@5.42.1(typescript@4.9.5):
+ /@typescript-eslint/typescript-estree@5.42.1:
resolution: {integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3427,13 +4818,12 @@ packages:
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.7
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ semver: 7.5.4
+ tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree@5.53.0(typescript@4.9.5):
+ /@typescript-eslint/typescript-estree@5.53.0:
resolution: {integrity: sha512-eKmipH7QyScpHSkhbptBBYh9v8FxtngLquq292YTEQ1pxVs39yFBlLC1xeIZcPPz1RWGqb7YgERJRGkjw8ZV7w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3448,13 +4838,12 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/utils@5.42.1(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/utils@5.42.1(eslint@8.34.0):
resolution: {integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3464,17 +4853,17 @@ packages:
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.42.1
'@typescript-eslint/types': 5.42.1
- '@typescript-eslint/typescript-estree': 5.42.1(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.42.1
eslint: 8.34.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0(eslint@8.34.0)
- semver: 7.3.7
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /@typescript-eslint/utils@5.53.0(eslint@8.34.0)(typescript@4.9.5):
+ /@typescript-eslint/utils@5.53.0(eslint@8.34.0):
resolution: {integrity: sha512-VUOOtPv27UNWLxFwQK/8+7kvxVC+hPHNsJjzlJyotlaHjLSIgOCKj9I0DBUjwOOA64qjBwx5afAPjksqOxMO0g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -3484,7 +4873,7 @@ packages:
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.53.0
'@typescript-eslint/types': 5.53.0
- '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.53.0
eslint: 8.34.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0(eslint@8.34.0)
@@ -3542,6 +4931,7 @@ packages:
engines: {node: '>=6.5'}
dependencies:
event-target-shim: 5.0.1
+ dev: false
/accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
@@ -3549,6 +4939,7 @@ packages:
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
+ dev: false
/acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
@@ -3557,23 +4948,18 @@ packages:
acorn-walk: 8.2.0
dev: true
- /acorn-jsx@5.3.2(acorn@8.8.0):
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.8.0
+ acorn: 8.8.2
/acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn@8.8.0:
- resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
/acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
@@ -3595,6 +4981,24 @@ packages:
indent-string: 4.0.0
dev: false
+ /ajv-formats@2.1.1:
+ resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+ dependencies:
+ ajv: 8.12.0
+ dev: false
+
+ /ajv-keywords@5.1.0(ajv@8.12.0):
+ resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
+ peerDependencies:
+ ajv: ^8.8.2
+ dependencies:
+ ajv: 8.12.0
+ fast-deep-equal: 3.1.3
+ dev: false
+
/ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
@@ -3603,8 +5007,18 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
+ /ajv@8.12.0:
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+ dev: false
+
/anser@1.4.10:
resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
+ dev: false
/ansi-escapes@3.2.0:
resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
@@ -3630,10 +5044,12 @@ packages:
colorette: 1.4.0
slice-ansi: 2.1.0
strip-ansi: 5.2.0
+ dev: false
/ansi-regex@4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
+ dev: false
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
@@ -3672,6 +5088,7 @@ packages:
/appdirsjs@1.2.7:
resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==}
+ dev: false
/application-config-path@0.1.0:
resolution: {integrity: sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==}
@@ -3763,6 +5180,7 @@ packages:
/asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
+ dev: false
/ast-types-flow@0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
@@ -3773,16 +5191,20 @@ packages:
engines: {node: '>=4'}
dependencies:
tslib: 2.5.0
+ dev: false
/astral-regex@1.0.0:
resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
engines: {node: '>=4'}
+ dev: false
/async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
+ dev: false
/async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ dev: false
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -3815,6 +5237,27 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.2
+ dev: false
+
+ /babel-jest@29.4.3:
+ resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.8.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@jest/transform': 29.4.3
+ '@types/babel__core': 7.1.19
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.4.3
+ chalk: 4.1.2
+ graceful-fs: 4.2.10
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
/babel-jest@29.4.3(@babel/core@7.20.2):
resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==}
@@ -3870,6 +5313,21 @@ packages:
reselect: 4.1.8
resolve: 1.22.1
+ /babel-plugin-polyfill-corejs2@0.3.3:
+ resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.2):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
@@ -3885,6 +5343,20 @@ packages:
transitivePeerDependencies:
- supports-color
+ /babel-plugin-polyfill-corejs3@0.6.0:
+ resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-define-polyfill-provider': 0.3.3
+ core-js-compat: 3.25.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.2):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
@@ -3899,6 +5371,19 @@ packages:
transitivePeerDependencies:
- supports-color
+ /babel-plugin-polyfill-regenerator@0.4.1:
+ resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/helper-define-polyfill-provider': 0.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.2):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
@@ -3921,6 +5406,15 @@ packages:
/babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
+ dev: false
+
+ /babel-plugin-transform-flow-enums@0.0.2:
+ resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
+ dependencies:
+ '@babel/plugin-syntax-flow': 7.22.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ dev: true
/babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.20.2):
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
@@ -3929,6 +5423,28 @@ packages:
transitivePeerDependencies:
- '@babel/core'
+ /babel-preset-current-node-syntax@1.0.1:
+ resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/plugin-syntax-async-generators': 7.8.4
+ '@babel/plugin-syntax-bigint': 7.8.3
+ '@babel/plugin-syntax-class-properties': 7.12.13
+ '@babel/plugin-syntax-import-meta': 7.10.4
+ '@babel/plugin-syntax-json-strings': 7.8.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5
+ dev: true
+
/babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.2):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
@@ -3952,6 +5468,22 @@ packages:
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.2)
dev: true
+ /babel-preset-expo@9.5.0:
+ resolution: {integrity: sha512-c5YPPro5g0rVf6WtednbCdRPFkZ+VT43/DhQQNh8rRubDxvKHT1bq0EUG0cgm5M61hXjTwgLJn9YzxX1TeBm/g==}
+ dependencies:
+ '@babel/plugin-proposal-decorators': 7.19.1
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7
+ '@babel/plugin-transform-react-jsx': 7.19.0
+ '@babel/preset-env': 7.20.2
+ babel-plugin-module-resolver: 5.0.0
+ babel-plugin-react-native-web: 0.18.12
+ metro-react-native-babel-preset: 0.76.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: true
+
/babel-preset-expo@9.5.0(@babel/core@7.20.2):
resolution: {integrity: sha512-c5YPPro5g0rVf6WtednbCdRPFkZ+VT43/DhQQNh8rRubDxvKHT1bq0EUG0cgm5M61hXjTwgLJn9YzxX1TeBm/g==}
dependencies:
@@ -3966,6 +5498,23 @@ packages:
transitivePeerDependencies:
- '@babel/core'
- supports-color
+ dev: true
+
+ /babel-preset-expo@9.5.2(@babel/core@7.20.2):
+ resolution: {integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==}
+ dependencies:
+ '@babel/plugin-proposal-decorators': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.20.2)
+ '@babel/preset-env': 7.20.2(@babel/core@7.20.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.20.2)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: false
/babel-preset-fbjs@3.4.0(@babel/core@7.20.2):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
@@ -3979,7 +5528,7 @@ packages:
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2)
'@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.2)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.2)
- '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.20.2)
'@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.2)
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.2)
'@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.20.2)
@@ -3988,7 +5537,7 @@ packages:
'@babel/plugin-transform-classes': 7.21.0(@babel/core@7.20.2)
'@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.20.2)
'@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.20.2)
- '@babel/plugin-transform-flow-strip-types': 7.19.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.20.2)
'@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.20.2)
'@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.20.2)
'@babel/plugin-transform-literals': 7.18.9(@babel/core@7.20.2)
@@ -4005,6 +5554,20 @@ packages:
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /babel-preset-jest@29.4.3:
+ resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ babel-plugin-jest-hoist: 29.4.3
+ babel-preset-current-node-syntax: 1.0.1
+ dev: true
/babel-preset-jest@29.4.3(@babel/core@7.20.2):
resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==}
@@ -4048,6 +5611,7 @@ packages:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.0
+ dev: false
/blueimp-md5@2.19.0:
resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
@@ -4146,6 +5710,7 @@ packages:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
+ dev: false
/builtins@1.0.3:
resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
@@ -4164,6 +5729,7 @@ packages:
/bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
+ dev: false
/bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
@@ -4205,23 +5771,26 @@ packages:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
/caller-callsite@2.0.0:
resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
engines: {node: '>=4'}
dependencies:
callsites: 2.0.0
+ dev: false
/caller-path@2.0.0:
resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
engines: {node: '>=4'}
dependencies:
caller-callsite: 2.0.0
+ dev: false
/callsites@2.0.0:
resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
engines: {node: '>=4'}
+ dev: false
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -4301,6 +5870,7 @@ packages:
/ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
+ dev: false
/ci-info@3.4.0:
resolution: {integrity: sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug==}
@@ -4326,10 +5896,12 @@ packages:
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
+ dev: false
/cli-spinners@2.7.0:
resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==}
engines: {node: '>=6'}
+ dev: false
/client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
@@ -4341,6 +5913,7 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
+ dev: false
/cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
@@ -4357,10 +5930,12 @@ packages:
is-plain-object: 2.0.4
kind-of: 6.0.3
shallow-clone: 3.0.1
+ dev: false
/clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
+ dev: false
/clone@2.1.2:
resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
@@ -4393,8 +5968,24 @@ packages:
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ /color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: false
+
+ /color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+ dev: false
+
/colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+ dev: false
/combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
@@ -4404,12 +5995,15 @@ packages:
/command-exists@1.2.9:
resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
+ dev: false
/commander@2.13.0:
resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==}
+ dev: false
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ dev: false
/commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
@@ -4423,9 +6017,11 @@ packages:
/commander@9.4.1:
resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==}
engines: {node: ^12.20.0 || >=14}
+ dev: false
/commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+ dev: false
/compare-versions@3.6.0:
resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==}
@@ -4440,6 +6036,7 @@ packages:
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
+ dev: false
/compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
@@ -4454,9 +6051,10 @@ packages:
vary: 1.1.2
transitivePeerDependencies:
- supports-color
+ dev: false
/concat-map@0.0.1:
- resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
/connect@3.7.0:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
@@ -4468,6 +6066,7 @@ packages:
utils-merge: 1.0.1
transitivePeerDependencies:
- supports-color
+ dev: false
/content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
@@ -4495,6 +6094,7 @@ packages:
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ dev: false
/cosmiconfig@5.2.1:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
@@ -4504,6 +6104,7 @@ packages:
is-directory: 0.3.1
js-yaml: 3.14.1
parse-json: 4.0.0
+ dev: false
/cross-fetch@3.1.5:
resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
@@ -4591,6 +6192,7 @@ packages:
/dayjs@1.11.5:
resolution: {integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==}
+ dev: false
/debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -4626,11 +6228,17 @@ packages:
/decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
+ dev: false
/decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
+ /decode-uri-component@0.2.2:
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
+ dev: false
+
/dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
dev: true
@@ -4651,6 +6259,7 @@ packages:
/deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
+ dev: false
/default-gateway@4.2.0:
resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==}
@@ -4664,6 +6273,7 @@ packages:
resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==}
dependencies:
clone: 1.0.4
+ dev: false
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
@@ -4696,10 +6306,12 @@ packages:
/denodeify@1.2.1:
resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
+ dev: false
/depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
+ dev: false
/deprecated-react-native-prop-types@4.1.0:
resolution: {integrity: sha512-WfepZHmRbbdTvhcolb8aOKEvQdcmTMn5tKLbqbXmkBvjFjRVWAYqsXk/DBsV8TZxws8SdGHLuHaJrHSQUPRdfw==}
@@ -4707,10 +6319,12 @@ packages:
'@react-native/normalize-colors': 0.72.0
invariant: 2.2.4
prop-types: 15.8.1
+ dev: false
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dev: false
/detect-libc@1.0.3:
resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
@@ -4770,6 +6384,7 @@ packages:
/ee-first@1.1.1:
resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ dev: false
/electron-to-chromium@1.4.251:
resolution: {integrity: sha512-k4o4cFrWPv4SoJGGAydd07GmlRVzmeDIJ6MaEChTUjk4Dmomn189tCicSzil2oyvbPoGgg2suwPDNWq4gWRhoQ==}
@@ -4789,6 +6404,7 @@ packages:
/encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ dev: false
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
@@ -4818,6 +6434,7 @@ packages:
resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
engines: {node: '>=4'}
hasBin: true
+ dev: false
/eol@0.9.1:
resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==}
@@ -4832,6 +6449,7 @@ packages:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
dependencies:
stackframe: 1.3.4
+ dev: false
/errorhandler@1.5.1:
resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
@@ -4839,6 +6457,7 @@ packages:
dependencies:
accepts: 1.3.8
escape-html: 1.0.3
+ dev: false
/es-abstract@1.20.2:
resolution: {integrity: sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==}
@@ -5145,6 +6764,7 @@ packages:
/escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+ dev: false
/escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
@@ -5171,7 +6791,7 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-next@13.2.1(eslint@8.34.0)(typescript@4.9.5):
+ /eslint-config-next@13.2.1(eslint@8.34.0):
resolution: {integrity: sha512-2GAx7EjSiCzJN6H2L/v1kbYrNiwQxzkyjy6eWSjuhAKt+P6d3nVNHGy9mON8ZcYd72w/M8kyMjm4UB9cvijgrw==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -5182,7 +6802,7 @@ packages:
dependencies:
'@next/eslint-plugin-next': 13.2.1
'@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)
eslint: 8.34.0
eslint-import-resolver-node: 0.3.6
eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.26.0)(eslint@8.34.0)
@@ -5190,7 +6810,6 @@ packages:
eslint-plugin-jsx-a11y: 6.6.1(eslint@8.34.0)
eslint-plugin-react: 7.31.8(eslint@8.34.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.34.0)
- typescript: 4.9.5
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
@@ -5205,7 +6824,7 @@ packages:
eslint: 8.34.0
dev: false
- /eslint-config-universe@11.2.0(eslint@8.34.0)(prettier@2.7.1)(typescript@4.9.5):
+ /eslint-config-universe@11.2.0(eslint@8.34.0)(prettier@2.7.1):
resolution: {integrity: sha512-exyQ2DozdDjq+FmIFmo0l3LDVBIn9l8/hJn6EP/EYKGutj0Wr7MvDLp1nVLP07Wk9ykD0Hi2s8g+TP4SW5cOmQ==}
peerDependencies:
eslint: '>=8.10'
@@ -5214,8 +6833,8 @@ packages:
prettier:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.34.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/eslint-plugin': 5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.34.0)
+ '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)
eslint: 8.34.0
eslint-config-prettier: 8.5.0(eslint@8.34.0)
eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.53.0)(eslint@8.34.0)
@@ -5280,7 +6899,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)
debug: 3.2.7
eslint: 8.34.0
eslint-import-resolver-node: 0.3.6
@@ -5310,7 +6929,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)
debug: 3.2.7
eslint: 8.34.0
eslint-import-resolver-node: 0.3.6
@@ -5339,7 +6958,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.42.1(eslint@8.34.0)
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
@@ -5370,7 +6989,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.53.0(eslint@8.34.0)
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
@@ -5595,8 +7214,8 @@ packages:
resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.8.0
- acorn-jsx: 5.3.2(acorn@8.8.0)
+ acorn: 8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.3.0
/esprima@4.0.1:
@@ -5632,10 +7251,12 @@ packages:
/etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
+ dev: false
/event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
+ dev: false
/exec-async@2.2.0:
resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
@@ -5684,20 +7305,20 @@ packages:
jest-util: 29.4.3
dev: true
- /expo-application@5.3.0(expo@49.0.2):
+ /expo-application@5.3.0(expo@49.0.8):
resolution: {integrity: sha512-XLkaELwmiXW6JjFVkwuiFQaGZoNKAxNAcSJkFdz8s4rCljEwehylbzoPk37QHw3cxqb4v0/2EICtg4C4kpEVCA==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
dev: false
- /expo-asset@8.10.1(expo@49.0.2):
+ /expo-asset@8.10.1(expo@49.0.8):
resolution: {integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==}
dependencies:
blueimp-md5: 2.19.0
- expo-constants: 14.4.2(expo@49.0.2)
- expo-file-system: 15.4.2(expo@49.0.2)
+ expo-constants: 14.4.2(expo@49.0.8)
+ expo-file-system: 15.4.3(expo@49.0.8)
invariant: 2.2.4
md5-file: 3.2.3
path-browserify: 1.0.1
@@ -5707,57 +7328,57 @@ packages:
- supports-color
dev: false
- /expo-constants@14.4.2(expo@49.0.2):
+ /expo-constants@14.4.2(expo@49.0.8):
resolution: {integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==}
peerDependencies:
expo: '*'
dependencies:
'@expo/config': 8.1.2
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
uuid: 3.4.0
transitivePeerDependencies:
- supports-color
dev: false
- /expo-dev-client@2.4.5(expo@49.0.2):
- resolution: {integrity: sha512-lcrOLJF8rlesNXnnuJJ2Dg4cj0Yuuo5KlG+ZLZ+lERIi5Grmm9hx3CoGVnj5A9FZB20nbUeoNPdkuCul3B/skw==}
+ /expo-dev-client@2.4.6(expo@49.0.8):
+ resolution: {integrity: sha512-oRectvtOh86HDf0fk7pjw0CahLRR2W75QkRDuXerLsUfzpbSg9KKm0kGuK3YZ+E6QpAo3FkXTkdAztDLYXCtTQ==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
- expo-dev-launcher: 2.4.7(expo@49.0.2)
- expo-dev-menu: 3.1.7(expo@49.0.2)
- expo-dev-menu-interface: 1.3.0(expo@49.0.2)
+ expo: 49.0.8(@babel/core@7.20.2)
+ expo-dev-launcher: 2.4.8(expo@49.0.8)
+ expo-dev-menu: 3.1.8(expo@49.0.8)
+ expo-dev-menu-interface: 1.3.0(expo@49.0.8)
expo-manifests: 0.7.1
- expo-updates-interface: 0.10.1(expo@49.0.2)
+ expo-updates-interface: 0.10.1(expo@49.0.8)
dev: false
- /expo-dev-launcher@2.4.7(expo@49.0.2):
- resolution: {integrity: sha512-kgIaCfbEaDcjNg2nzUcCus6LfinLy3RWAwT/BMFIS296tbubjTlq4iwO29q9tar2wlCywhNYN9FMBy61VxtiQQ==}
+ /expo-dev-launcher@2.4.8(expo@49.0.8):
+ resolution: {integrity: sha512-OrCBtoTrFVYyXCzpw6QdJks4xJICdDO18VzlWT1JwJdSFFZ45nkKLzcEcMDTUM9/i2pqaJznPhs1upRaIK1sfA==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
- expo-dev-menu: 3.1.7(expo@49.0.2)
+ expo: 49.0.8(@babel/core@7.20.2)
+ expo-dev-menu: 3.1.8(expo@49.0.8)
resolve-from: 5.0.0
semver: 7.5.4
dev: false
- /expo-dev-menu-interface@1.3.0(expo@49.0.2):
+ /expo-dev-menu-interface@1.3.0(expo@49.0.8):
resolution: {integrity: sha512-WtRP7trQ2lizJJTTFXUSGGn1deIeHaYej0sUynvu/uC69VrSP4EeSnYOxbmEO29kuT/MsQBMGu0P/AkMQOqCOg==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
dev: false
- /expo-dev-menu@3.1.7(expo@49.0.2):
- resolution: {integrity: sha512-4tJmiepdHyhv3pn5Rla06tv1Auiom9hPkw92sO+kRTecbW4zH9iZFdxiFQIcjEoBtymx3WHPO6XJJrWC6dgdow==}
+ /expo-dev-menu@3.1.8(expo@49.0.8):
+ resolution: {integrity: sha512-kNFmuzLQRDovP1tBj70h5mPaqPWHTl33q9kbCKHOZJujv9McHafUyOolU2vPB+wHk89VLYhwuwvKKarNzxft/w==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
- expo-dev-menu-interface: 1.3.0(expo@49.0.2)
+ expo: 49.0.8(@babel/core@7.20.2)
+ expo-dev-menu-interface: 1.3.0(expo@49.0.8)
semver: 7.5.4
dev: false
@@ -5765,34 +7386,64 @@ packages:
resolution: {integrity: sha512-FSPy0ThcJBvzEzOZVhpOrYyHgQ8U1jJ4v7u7tr1x0KOVRqyf25APEQZFxxRPn3zAYW0tQ+uDTCbrwNymFqhQfw==}
dev: false
- /expo-file-system@15.4.2(expo@49.0.2):
- resolution: {integrity: sha512-WFaEWuFEuUpETiq85YlhKYJgedccWTjtCMnYGAgyNfCfvnIgfMCVH7dWudGuxhfAcTZqh36OcqtSckbtbhOtyg==}
+ /expo-file-system@15.4.3(expo@49.0.8):
+ resolution: {integrity: sha512-HaaCBTUATs2+i7T4jxIvoU9rViAHMvOD2eBaJ1H7xPHlwZlMORjQs7bsNKonR/TQoduxZBJLVZGawvaAJNCH8g==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
uuid: 3.4.0
dev: false
- /expo-font@11.4.0(expo@49.0.2):
+ /expo-font@11.4.0(expo@49.0.8):
resolution: {integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
fontfaceobserver: 2.3.0
dev: false
+ /expo-head@0.0.11(expo-constants@14.4.2)(expo@49.0.8)(react-dom@18.2.0)(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-nQ/DmxuLRLmCmnWFvfKoqG0/CA1SqEe4kvPlp7sAjsptLC7BHxOTViNchLznOlXTc/9yG05YYzZbWHvjIeE08Q==}
+ peerDependencies:
+ expo: '*'
+ expo-constants: '*'
+ react: '*'
+ react-native: '*'
+ dependencies:
+ expo: 49.0.8(@babel/core@7.20.2)
+ expo-constants: 14.4.2(expo@49.0.8)
+ react: 18.2.0
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ transitivePeerDependencies:
+ - react-dom
+ dev: false
+
/expo-json-utils@0.7.1:
resolution: {integrity: sha512-L0lyH8diXQtV0q5BLbFlcoxTqPF5im79xDHPhybB0j36xYdm65hjwRJ4yMrPIN5lR18hj48FUZeONiDHRyEvIg==}
dev: false
- /expo-keep-awake@12.3.0(expo@49.0.2):
+ /expo-keep-awake@12.3.0(expo@49.0.8):
resolution: {integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
+ dev: false
+
+ /expo-linking@5.0.2(expo@49.0.8):
+ resolution: {integrity: sha512-SPQus0+tYGx9c69Uw4wmdo3rkKX8vRT1vyJz/mvkpSlZN986s0NmP/V0M5vDv5Zv2qZzVdqJyuITFe0Pg5aI+A==}
+ dependencies:
+ '@types/qs': 6.9.7
+ expo-constants: 14.4.2(expo@49.0.8)
+ invariant: 2.2.4
+ qs: 6.11.0
+ url-parse: 1.5.10
+ transitivePeerDependencies:
+ - expo
+ - supports-color
dev: false
/expo-manifests@0.7.1:
@@ -5801,8 +7452,8 @@ packages:
expo-json-utils: 0.7.1
dev: false
- /expo-modules-autolinking@1.5.0:
- resolution: {integrity: sha512-i9zll5xNYh0/sjaa6hpZlTHodKEu2tMEFsJJYsfBMTt8G9J8gGhalOydrX/Ql1E8bQ4GxnLAqrM7duR0Tj2VTQ==}
+ /expo-modules-autolinking@1.5.1:
+ resolution: {integrity: sha512-yt5a1VCp2BF9CrsO689PCD5oXKP14MMhnOanQMvDn4BDpURYfzAlDVGC5fZrNQKtwn/eq3bcrxIwZ7D9QjVVRg==}
hasBin: true
dependencies:
'@expo/config': 8.1.2
@@ -5815,13 +7466,76 @@ packages:
- supports-color
dev: false
- /expo-modules-core@1.5.6:
- resolution: {integrity: sha512-3OsWO8p0BSX7qgkYPnl+B/fz5rCJt1rU3nsa1fi1p3Oy44bvvdb2FVejTBIb87I41i0Rcj7vn2uG1KWuK1TA1Q==}
+ /expo-modules-core@1.5.10:
+ resolution: {integrity: sha512-+m+poHkhjAhRZmngSLUpJJoxhjoExYKSr4J5luy4N+YMlowK31Zewztg4xsPrNRoPvGK/B5uCm0UEzIQvLsNGg==}
dependencies:
compare-versions: 3.6.0
invariant: 2.2.4
dev: false
+ /expo-router@2.0.4(expo-constants@14.4.2)(expo-linking@5.0.2)(expo-status-bar@1.6.0)(expo@49.0.8)(react-dom@18.2.0)(react-native-gesture-handler@2.12.1)(react-native-safe-area-context@4.6.3)(react-native-screens@3.22.1)(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-ILa7UxO6KceRUZ47Lw9wF0Ndftc05l3n4RlijvJLaqg9mGnBZ4WDMXGZEMVg4+oVJTXZEBjh9N3Tc9iHntonEQ==}
+ peerDependencies:
+ '@react-navigation/drawer': ^6.5.8
+ '@testing-library/jest-native': '*'
+ expo: ^49.0.0
+ expo-constants: '*'
+ expo-linking: '*'
+ expo-status-bar: '*'
+ metro: ~0.76.7
+ react-native-gesture-handler: '*'
+ react-native-reanimated: '*'
+ react-native-safe-area-context: '*'
+ react-native-screens: '*'
+ peerDependenciesMeta:
+ '@react-navigation/drawer':
+ optional: true
+ '@testing-library/jest-native':
+ optional: true
+ react-native-reanimated:
+ optional: true
+ dependencies:
+ '@bacons/react-views': 1.1.3(react-native@0.72.3)
+ '@expo/metro-runtime': 2.2.6(react-native@0.72.3)
+ '@radix-ui/react-slot': 1.0.1(react@18.2.0)
+ '@react-navigation/bottom-tabs': 6.5.8(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native-screens@3.22.1)(react-native@0.72.3)(react@18.2.0)
+ '@react-navigation/native': 6.1.7(react-native@0.72.3)(react@18.2.0)
+ '@react-navigation/native-stack': 6.9.13(@react-navigation/native@6.1.7)(react-native-safe-area-context@4.6.3)(react-native-screens@3.22.1)(react-native@0.72.3)(react@18.2.0)
+ expo: 49.0.8(@babel/core@7.20.2)
+ expo-constants: 14.4.2(expo@49.0.8)
+ expo-head: 0.0.11(expo-constants@14.4.2)(expo@49.0.8)(react-dom@18.2.0)(react-native@0.72.3)(react@18.2.0)
+ expo-linking: 5.0.2(expo@49.0.8)
+ expo-splash-screen: 0.20.5(expo@49.0.8)
+ expo-status-bar: 1.6.0
+ 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.12.1(react-native@0.72.3)(react@18.2.0)
+ react-native-safe-area-context: 4.6.3(react-native@0.72.3)(react@18.2.0)
+ react-native-screens: 3.22.1(react-native@0.72.3)(react@18.2.0)
+ schema-utils: 4.2.0
+ url: 0.11.1
+ transitivePeerDependencies:
+ - encoding
+ - expo-modules-autolinking
+ - react
+ - react-dom
+ - react-native
+ - supports-color
+ dev: false
+
+ /expo-splash-screen@0.20.5(expo@49.0.8):
+ resolution: {integrity: sha512-nTALYdjHpeEA30rdOWSguxn72ctv8WM8ptuUgpfRgsWyn4i6rwYds/rBXisX69XO5fg+XjHAQqijGx/b28+3tg==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ '@expo/prebuild-config': 6.2.6
+ expo: 49.0.8(@babel/core@7.20.2)
+ transitivePeerDependencies:
+ - encoding
+ - expo-modules-autolinking
+ - supports-color
+ dev: false
+
/expo-status-bar@1.6.0:
resolution: {integrity: sha512-e//Oi2WPdomMlMDD3skE4+1ZarKCJ/suvcB4Jo/nO427niKug5oppcPNYO+csR6y3ZglGuypS+3pp/hJ+Xp6fQ==}
dev: false
@@ -5830,16 +7544,16 @@ packages:
resolution: {integrity: sha512-t+h5Zqaukd3Tn97LaWPpibVsmiC/TFP8F+8sAUliwCSMzgcb5TATRs2NcAB+JcIr8EP3JJDyYXJrZle1cjs4mQ==}
dev: false
- /expo-updates-interface@0.10.1(expo@49.0.2):
+ /expo-updates-interface@0.10.1(expo@49.0.8):
resolution: {integrity: sha512-I6JMR7EgjXwckrydDmrkBEX/iw750dcqpzQVsjznYWfi0HTEOxajLHB90fBFqQkUV5i5s4Fd3hYQ1Cn0oMzUbA==}
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.2(@babel/core@7.20.2)
+ expo: 49.0.8(@babel/core@7.20.2)
dev: false
- /expo-updates@0.18.9(expo@49.0.2):
- resolution: {integrity: sha512-TZ9Pqz2V91RGEvImmiquOii161HCHcUe+kuHP0ULBrroK9q+988t9/RWfwBFKxSpLvy78S/GnobChkWN+ymVIQ==}
+ /expo-updates@0.18.11(expo@49.0.8):
+ resolution: {integrity: sha512-X7huYVAq7RhBUcoGQKk2P9K0LJdDr5EDBPQbHRM/zrQNXuW7DhCkQBVbhT6/L7pIqdVAsAxx0FqxcZcx44pDWA==}
hasBin: true
peerDependencies:
expo: '*'
@@ -5848,11 +7562,12 @@ packages:
'@expo/config': 8.1.2
'@expo/config-plugins': 7.2.5
arg: 4.1.0
- expo: 49.0.2(@babel/core@7.20.2)
+ chalk: 4.1.2
+ expo: 49.0.8(@babel/core@7.20.2)
expo-eas-client: 0.6.0
expo-manifests: 0.7.1
expo-structured-headers: 3.3.0
- expo-updates-interface: 0.10.1(expo@49.0.2)
+ expo-updates-interface: 0.10.1(expo@49.0.8)
fbemitter: 3.0.0
resolve-from: 5.0.0
transitivePeerDependencies:
@@ -5860,24 +7575,24 @@ packages:
- supports-color
dev: false
- /expo@49.0.2(@babel/core@7.20.2):
- resolution: {integrity: sha512-fpUz1vegrd1lPzS+A+HbkOF5Lt+tIq6vKiSmw6sW89JMBx5rpKTnTnVVvDuMOG1pnXxZlmQtYTrw0C6H9zcTNw==}
+ /expo@49.0.8(@babel/core@7.20.2):
+ resolution: {integrity: sha512-lkTRwMvJP8j7KAHJB+aZqI9dH1hw7j2QE1X9Okpcf+t0deGqH36XqkjUCcU6KYgCOjSnt8fvRm89TJR5Oq0ElA==}
hasBin: true
dependencies:
'@babel/runtime': 7.21.0
- '@expo/cli': 0.10.10(expo-modules-autolinking@1.5.0)
+ '@expo/cli': 0.10.11(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.0(@babel/core@7.20.2)
- expo-application: 5.3.0(expo@49.0.2)
- expo-asset: 8.10.1(expo@49.0.2)
- expo-constants: 14.4.2(expo@49.0.2)
- expo-file-system: 15.4.2(expo@49.0.2)
- expo-font: 11.4.0(expo@49.0.2)
- expo-keep-awake: 12.3.0(expo@49.0.2)
- expo-modules-autolinking: 1.5.0
- expo-modules-core: 1.5.6
+ babel-preset-expo: 9.5.2(@babel/core@7.20.2)
+ expo-application: 5.3.0(expo@49.0.8)
+ expo-asset: 8.10.1(expo@49.0.8)
+ expo-constants: 14.4.2(expo@49.0.8)
+ expo-file-system: 15.4.3(expo@49.0.8)
+ expo-font: 11.4.0(expo@49.0.8)
+ expo-keep-awake: 12.3.0(expo@49.0.8)
+ expo-modules-autolinking: 1.5.1
+ expo-modules-core: 1.5.10
fbemitter: 3.0.0
invariant: 2.2.4
md5-file: 3.2.3
@@ -5921,6 +7636,7 @@ packages:
hasBin: true
dependencies:
strnum: 1.0.5
+ dev: false
/fastq@1.13.0:
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
@@ -5974,6 +7690,11 @@ packages:
dependencies:
to-regex-range: 5.0.1
+ /filter-obj@1.1.0:
+ resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/finalhandler@1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
@@ -5987,6 +7708,7 @@ packages:
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
+ dev: false
/find-babel-config@2.0.0:
resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==}
@@ -6002,6 +7724,7 @@ packages:
commondir: 1.0.1
make-dir: 2.1.0
pkg-dir: 3.0.0
+ dev: false
/find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
@@ -6041,10 +7764,12 @@ packages:
/flow-enums-runtime@0.0.5:
resolution: {integrity: sha512-PSZF9ZuaZD03sT9YaIs0FrGJ7lSUw7rHZIex+73UYVXg46eL/wxN5PaVcPJFudE2cJu5f0fezitV5aBkLHPUOQ==}
+ dev: false
/flow-parser@0.206.0:
resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==}
engines: {node: '>=0.4.0'}
+ dev: false
/fontfaceobserver@2.3.0:
resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==}
@@ -6080,8 +7805,9 @@ packages:
dev: false
/fresh@0.5.2:
- resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
+ dev: false
/fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
@@ -6090,6 +7816,7 @@ packages:
graceful-fs: 4.2.10
jsonfile: 4.0.0
universalify: 0.1.2
+ dev: false
/fs-extra@9.0.0:
resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==}
@@ -6164,7 +7891,6 @@ packages:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.3
- dev: false
/get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
@@ -6377,19 +8103,28 @@ packages:
dependencies:
function-bind: 1.1.1
- /hermes-estree@0.8.0:
- resolution: {integrity: sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==}
+ /hermes-estree@0.12.0:
+ resolution: {integrity: sha512-+e8xR6SCen0wyAKrMT3UD0ZCCLymKhRgjEB5sS28rKiFir/fXgLoeRilRUssFCILmGHb+OvHDUlhxs0+IEyvQw==}
+ dev: false
- /hermes-parser@0.8.0:
- resolution: {integrity: sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==}
+ /hermes-parser@0.12.0:
+ resolution: {integrity: sha512-d4PHnwq6SnDLhYl3LHNHvOg7nQ6rcI7QVil418REYksv0Mh3cEkHDcuhGxNQ3vgnLSLl4QSvDrFCwQNYdpWlzw==}
dependencies:
- hermes-estree: 0.8.0
+ hermes-estree: 0.12.0
+ dev: false
/hermes-profile-transformer@0.0.6:
resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
engines: {node: '>=8'}
dependencies:
source-map: 0.7.4
+ dev: false
+
+ /hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+ dependencies:
+ react-is: 16.13.1
+ dev: false
/hosted-git-info@3.0.8:
resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==}
@@ -6418,6 +8153,7 @@ packages:
setprototypeof: 1.2.0
statuses: 2.0.1
toidentifier: 1.0.1
+ dev: false
/http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
@@ -6463,6 +8199,7 @@ packages:
/ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ dev: false
/ignore@5.2.0:
resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
@@ -6474,6 +8211,7 @@ packages:
hasBin: true
dependencies:
queue: 6.0.2
+ dev: false
/import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
@@ -6481,6 +8219,7 @@ packages:
dependencies:
caller-path: 2.0.0
resolve-from: 3.0.0
+ dev: false
/import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
@@ -6559,6 +8298,7 @@ packages:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
+ dev: false
/ip-regex@2.1.0:
resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
@@ -6567,6 +8307,7 @@ packages:
/ip@1.1.8:
resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
+ dev: false
/ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
@@ -6584,6 +8325,10 @@ packages:
/is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ /is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ dev: false
+
/is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
@@ -6630,6 +8375,7 @@ packages:
/is-directory@0.3.1:
resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
engines: {node: '>=0.10.0'}
+ dev: false
/is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
@@ -6648,6 +8394,7 @@ packages:
/is-fullwidth-code-point@2.0.0:
resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
engines: {node: '>=4'}
+ dev: false
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
@@ -6674,6 +8421,7 @@ packages:
/is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
+ dev: false
/is-invalid-path@0.1.0:
resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==}
@@ -6710,6 +8458,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
+ dev: false
/is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -6767,6 +8516,7 @@ packages:
/is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
+ dev: false
/is-valid-path@0.1.1:
resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==}
@@ -6783,6 +8533,7 @@ packages:
/is-wsl@1.1.0:
resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
engines: {node: '>=4'}
+ dev: false
/is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
@@ -6792,6 +8543,7 @@ packages:
/isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+ dev: false
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -6799,6 +8551,7 @@ packages:
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
+ dev: false
/istanbul-lib-coverage@3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
@@ -6898,7 +8651,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.10
import-local: 3.1.0
- jest-config: 29.4.3(@types/node@18.7.18)
+ jest-config: 29.4.3
jest-util: 29.4.3
jest-validate: 29.4.3
prompts: 2.4.2
@@ -6909,6 +8662,44 @@ packages:
- ts-node
dev: true
+ /jest-config@29.4.3:
+ resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@types/node': '*'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ ts-node:
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@jest/test-sequencer': 29.4.3
+ '@jest/types': 29.4.3
+ babel-jest: 29.4.3(@babel/core@7.20.2)
+ chalk: 4.1.2
+ ci-info: 3.4.0
+ deepmerge: 4.2.2
+ glob: 7.2.3
+ graceful-fs: 4.2.10
+ jest-circus: 29.4.3
+ jest-environment-node: 29.4.3
+ jest-get-type: 29.4.3
+ jest-regex-util: 29.4.3
+ jest-resolve: 29.4.3
+ jest-runner: 29.4.3
+ jest-util: 29.4.3
+ jest-validate: 29.4.3
+ micromatch: 4.0.5
+ parse-json: 5.2.0
+ pretty-format: 29.4.3
+ slash: 3.0.0
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/jest-config@29.4.3(@types/node@18.7.18):
resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -7020,20 +8811,20 @@ packages:
jest-mock: 29.4.3
jest-util: 29.4.3
- /jest-expo@49.0.0(jest@29.4.3)(react@18.2.0):
+ /jest-expo@49.0.0(jest@29.4.3):
resolution: {integrity: sha512-nglYg6QPYSqCsrsOFiGosQi+m1rrqmYluPbFXNnXNEOrB2MvxMOgQJeWfMHDExHMX1ymLWX+7y8mYo6XVJpBJQ==}
hasBin: true
dependencies:
'@expo/config': 8.1.2
'@jest/create-cache-key-function': 29.3.1
- babel-jest: 29.4.3(@babel/core@7.20.2)
+ babel-jest: 29.4.3
find-up: 5.0.0
jest-environment-jsdom: 29.4.3
jest-watch-select-projects: 2.0.0
jest-watch-typeahead: 2.2.1(jest@29.4.3)
json5: 2.2.3
lodash: 4.17.21
- react-test-renderer: 18.2.0(react@18.2.0)
+ react-test-renderer: 18.2.0
transitivePeerDependencies:
- '@babel/core'
- bufferutil
@@ -7127,6 +8918,7 @@ packages:
/jest-regex-util@27.5.1:
resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ dev: false
/jest-regex-util@29.4.3:
resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==}
@@ -7259,6 +9051,7 @@ packages:
ci-info: 3.4.0
graceful-fs: 4.2.10
picomatch: 2.3.1
+ dev: false
/jest-util@29.4.3:
resolution: {integrity: sha512-ToSGORAz4SSSoqxDSylWX8JzkOQR7zoBtNRsA7e+1WUX5F8jrOwaNpuh1YfJHJKDHXLHmObv5eOjejUd+/Ws+Q==}
@@ -7327,6 +9120,7 @@ packages:
'@types/node': 18.7.18
merge-stream: 2.0.0
supports-color: 8.1.1
+ dev: false
/jest-worker@29.4.3:
resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==}
@@ -7370,6 +9164,7 @@ packages:
'@sideway/address': 4.1.4
'@sideway/formula': 3.0.0
'@sideway/pinpoint': 2.0.0
+ dev: false
/join-component@1.1.0:
resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==}
@@ -7401,9 +9196,11 @@ packages:
/jsc-android@250231.0.0:
resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==}
+ dev: false
/jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
+ dev: false
/jscodeshift@0.14.0:
resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
@@ -7435,6 +9232,7 @@ packages:
write-file-atomic: 2.4.3
transitivePeerDependencies:
- supports-color
+ dev: false
/jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
@@ -7488,6 +9286,7 @@ packages:
/json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+ dev: false
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
@@ -7510,6 +9309,10 @@ packages:
/json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ /json-schema-traverse@1.0.0:
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
+ dev: false
+
/json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
@@ -7517,7 +9320,7 @@ packages:
resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
hasBin: true
dependencies:
- minimist: 1.2.6
+ minimist: 1.2.8
/json5@2.2.1:
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
@@ -7533,6 +9336,7 @@ packages:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
graceful-fs: 4.2.10
+ dev: false
/jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
@@ -7552,6 +9356,7 @@ packages:
/kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
+ dev: false
/kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
@@ -7718,6 +9523,7 @@ packages:
/lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
+ dev: false
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -7735,6 +9541,7 @@ packages:
dependencies:
chalk: 4.1.2
is-unicode-supported: 0.1.0
+ dev: false
/logkitty@0.7.1:
resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
@@ -7743,6 +9550,7 @@ packages:
ansi-fragments: 0.2.1
dayjs: 1.11.5
yargs: 15.4.1
+ dev: false
/loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
@@ -7767,6 +9575,7 @@ packages:
dependencies:
pify: 4.0.1
semver: 5.7.1
+ dev: false
/make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -7809,12 +9618,13 @@ packages:
dev: false
/media-typer@0.3.0:
- resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
+ resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
engines: {node: '>= 0.6'}
dev: false
/memoize-one@5.2.1:
resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
+ dev: false
/memoize-one@6.0.0:
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
@@ -7831,53 +9641,58 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /metro-babel-transformer@0.76.5:
- resolution: {integrity: sha512-KmsMXY6VHjPLRQLwTITjLo//7ih8Ts39HPF2zODkaYav/ZLNq0QP7eGuW54dvk/sZiL9le1kaBwTN4BWQI1VZQ==}
+ /metro-babel-transformer@0.76.7:
+ resolution: {integrity: sha512-bgr2OFn0J4r0qoZcHrwEvccF7g9k3wdgTOgk6gmGHrtlZ1Jn3oCpklW/DfZ9PzHfjY2mQammKTc19g/EFGyOJw==}
engines: {node: '>=16'}
dependencies:
'@babel/core': 7.20.2
- hermes-parser: 0.8.0
- metro-source-map: 0.76.5
+ hermes-parser: 0.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
+ dev: false
- /metro-cache-key@0.76.5:
- resolution: {integrity: sha512-QERX6ejYMt4BPr0ZMf7adnrOivmFSUbCim9FlU6cAeWUib+pV5P/Ph3KicWnOzJpbQz93+tHHG7vcsP6OrvLMw==}
+ /metro-cache-key@0.76.7:
+ resolution: {integrity: sha512-0pecoIzwsD/Whn/Qfa+SDMX2YyasV0ndbcgUFx7w1Ct2sLHClujdhQ4ik6mvQmsaOcnGkIyN0zcceMDjC2+BFQ==}
engines: {node: '>=16'}
+ dev: false
- /metro-cache@0.76.5:
- resolution: {integrity: sha512-8XalhoMNWDK6bi41oqxIpecTYRt4WsmtoHdqshgJIYshJ6qov0NuDw0pOfnS8rgMNHxPpuWyXc7NyKERqVRzaw==}
+ /metro-cache@0.76.7:
+ resolution: {integrity: sha512-nWBMztrs5RuSxZRI7hgFgob5PhYDmxICh9FF8anm9/ito0u0vpPvRxt7sRu8fyeD2AHdXqE7kX32rWY0LiXgeg==}
engines: {node: '>=16'}
dependencies:
- metro-core: 0.76.5
+ metro-core: 0.76.7
rimraf: 3.0.2
+ dev: false
- /metro-config@0.76.5:
- resolution: {integrity: sha512-SCMVIDOtm8s3H62E9z2IcY4Q9GVMqDurbiJS3PHrWgTZjwZFaL59lrW4W6DvzvFZHa9bbxKric5TFtwvVuyOCg==}
+ /metro-config@0.76.7:
+ resolution: {integrity: sha512-CFDyNb9bqxZemiChC/gNdXZ7OQkIwmXzkrEXivcXGbgzlt/b2juCv555GWJHyZSlorwnwJfY3uzAFu4A9iRVfg==}
engines: {node: '>=16'}
dependencies:
+ connect: 3.7.0
cosmiconfig: 5.2.1
jest-validate: 29.4.3
- metro: 0.76.5
- metro-cache: 0.76.5
- metro-core: 0.76.5
- metro-runtime: 0.76.5
+ metro: 0.76.7
+ metro-cache: 0.76.7
+ metro-core: 0.76.7
+ metro-runtime: 0.76.7
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
+ dev: false
- /metro-core@0.76.5:
- resolution: {integrity: sha512-yJvIe8a3sAG92U7+E7Bw6m4lae9RB180fp9iQZFBqY437Ilv4nE6PR8EWB6d8c4yt9fXIL1Hc+KyQv7OPFx/rQ==}
+ /metro-core@0.76.7:
+ resolution: {integrity: sha512-0b8KfrwPmwCMW+1V7ZQPkTy2tsEKZjYG9Pu1PTsu463Z9fxX7WaR0fcHFshv+J1CnQSUTwIGGjbNvj1teKe+pw==}
engines: {node: '>=16'}
dependencies:
lodash.throttle: 4.1.1
- metro-resolver: 0.76.5
+ metro-resolver: 0.76.7
+ dev: false
- /metro-file-map@0.76.5:
- resolution: {integrity: sha512-9VS7zsec7BpTb+0v1DObOXso6XU/7oVBObQWp0EWBQpFcU1iF1lit2nnLQh2AyGCnSr8JVnuUe8gXhNH6xtPMg==}
+ /metro-file-map@0.76.7:
+ resolution: {integrity: sha512-s+zEkTcJ4mOJTgEE2ht4jIo1DZfeWreQR3tpT3gDV/Y/0UQ8aJBTv62dE775z0GLsWZApiblAYZsj7ZE8P06nw==}
engines: {node: '>=16'}
dependencies:
anymatch: 3.1.2
@@ -7896,37 +9711,196 @@ packages:
fsevents: 2.3.2
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /metro-inspector-proxy@0.76.7:
+ resolution: {integrity: sha512-rNZ/6edTl/1qUekAhAbaFjczMphM50/UjtxiKulo6vqvgn/Mjd9hVqDvVYfAMZXqPvlusD88n38UjVYPkruLSg==}
+ engines: {node: '>=16'}
+ hasBin: true
+ dependencies:
+ connect: 3.7.0
+ debug: 2.6.9
+ node-fetch: 2.6.7
+ ws: 7.5.9
+ yargs: 17.7.1
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - supports-color
+ - utf-8-validate
+ dev: false
+
+ /metro-minify-terser@0.76.7:
+ resolution: {integrity: sha512-FQiZGhIxCzhDwK4LxyPMLlq0Tsmla10X7BfNGlYFK0A5IsaVKNJbETyTzhpIwc+YFRT4GkFFwgo0V2N5vxO5HA==}
+ engines: {node: '>=16'}
+ dependencies:
+ terser: 5.16.5
+ dev: false
+
+ /metro-minify-uglify@0.76.7:
+ resolution: {integrity: sha512-FuXIU3j2uNcSvQtPrAJjYWHruPiQ+EpE++J9Z+VznQKEHcIxMMoQZAfIF2IpZSrZYfLOjVFyGMvj41jQMxV1Vw==}
+ engines: {node: '>=16'}
+ dependencies:
+ uglify-es: 3.3.9
+ dev: false
+
+ /metro-react-native-babel-preset@0.76.5:
+ resolution: {integrity: sha512-IlVKeTon5fef77rQ6WreSmrabmbc3dEsLwr/sL80fYjobjsD8FRCnOlbaJdgUf2SMJmSIoawgjh5Yeebv+gJzg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@babel/core': '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7
+ '@babel/plugin-proposal-class-properties': 7.18.6
+ '@babel/plugin-proposal-export-default-from': 7.18.10
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6
+ '@babel/plugin-proposal-numeric-separator': 7.18.6
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6
+ '@babel/plugin-proposal-optional-chaining': 7.21.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3
+ '@babel/plugin-syntax-export-default-from': 7.18.6
+ '@babel/plugin-syntax-flow': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6
+ '@babel/plugin-transform-async-to-generator': 7.22.5
+ '@babel/plugin-transform-block-scoping': 7.21.0
+ '@babel/plugin-transform-classes': 7.21.0
+ '@babel/plugin-transform-computed-properties': 7.18.9
+ '@babel/plugin-transform-destructuring': 7.20.7
+ '@babel/plugin-transform-flow-strip-types': 7.22.5
+ '@babel/plugin-transform-function-name': 7.18.9
+ '@babel/plugin-transform-literals': 7.18.9
+ '@babel/plugin-transform-modules-commonjs': 7.21.2
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1
+ '@babel/plugin-transform-parameters': 7.20.7
+ '@babel/plugin-transform-react-display-name': 7.18.6
+ '@babel/plugin-transform-react-jsx': 7.19.0
+ '@babel/plugin-transform-react-jsx-self': 7.18.6
+ '@babel/plugin-transform-react-jsx-source': 7.18.6
+ '@babel/plugin-transform-runtime': 7.19.1
+ '@babel/plugin-transform-shorthand-properties': 7.18.6
+ '@babel/plugin-transform-spread': 7.19.0
+ '@babel/plugin-transform-sticky-regex': 7.18.6
+ '@babel/plugin-transform-typescript': 7.19.1
+ '@babel/plugin-transform-unicode-regex': 7.18.6
+ '@babel/template': 7.22.5
+ babel-plugin-transform-flow-enums: 0.0.2
+ react-refresh: 0.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /metro-react-native-babel-preset@0.76.5(@babel/core@7.20.2):
+ resolution: {integrity: sha512-IlVKeTon5fef77rQ6WreSmrabmbc3dEsLwr/sL80fYjobjsD8FRCnOlbaJdgUf2SMJmSIoawgjh5Yeebv+gJzg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@babel/core': '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.20.2
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.20.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.20.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.20.2)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.20.2)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.20.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx-source': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-runtime': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-typescript': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.20.2)
+ '@babel/template': 7.22.5
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.20.2)
+ react-refresh: 0.4.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /metro-inspector-proxy@0.76.5:
- resolution: {integrity: sha512-leqwei1qNMKOEbhqlQ37K+7OIp1JRgvS5qERO+J0ZTg7ZeJTaBHSFU7FnCeRHB9Tu7/FSfypY2PxjydZDwvUEQ==}
+ /metro-react-native-babel-preset@0.76.7(@babel/core@7.20.2):
+ resolution: {integrity: sha512-R25wq+VOSorAK3hc07NW0SmN8z9S/IR0Us0oGAsBcMZnsgkbOxu77Mduqf+f4is/wnWHc5+9bfiqdLnaMngiVw==}
engines: {node: '>=16'}
- hasBin: true
+ peerDependencies:
+ '@babel/core': '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
dependencies:
- connect: 3.7.0
- debug: 2.6.9
- node-fetch: 2.6.7
- ws: 7.5.9
- yargs: 17.7.1
+ '@babel/core': 7.20.2
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.20.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.20.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.2)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.20.2)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.20.2)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.20.2)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.20.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx-self': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-react-jsx-source': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-runtime': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.20.2)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.20.2)
+ '@babel/plugin-transform-typescript': 7.19.1(@babel/core@7.20.2)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.20.2)
+ '@babel/template': 7.22.5
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.20.2)
+ react-refresh: 0.4.3
transitivePeerDependencies:
- - bufferutil
- - encoding
- supports-color
- - utf-8-validate
-
- /metro-minify-terser@0.76.5:
- resolution: {integrity: sha512-zizTXqlHcG7PArB5hfz1Djz/oCaOaTSXTZDNp8Y9K2FmmfLU3dU2eoDbNNiCnm5QdDtFIndLMXdqqe6omTfp4g==}
- engines: {node: '>=16'}
- dependencies:
- terser: 5.16.5
-
- /metro-minify-uglify@0.76.5:
- resolution: {integrity: sha512-JZNO5eK8r625/cheWSl+y7n0RlHLt03iSMgXPAxirH8BiFqPzs7h+c57r4AvSs793VXcF7L3sI1sAOj+nRqTeg==}
- engines: {node: '>=16'}
- dependencies:
- uglify-es: 3.3.9
+ dev: false
- /metro-react-native-babel-preset@0.76.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-IlVKeTon5fef77rQ6WreSmrabmbc3dEsLwr/sL80fYjobjsD8FRCnOlbaJdgUf2SMJmSIoawgjh5Yeebv+gJzg==}
+ /metro-react-native-babel-preset@0.76.8(@babel/core@7.20.2):
+ resolution: {integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==}
engines: {node: '>=16'}
peerDependencies:
'@babel/core': '*'
@@ -7975,9 +9949,10 @@ packages:
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
+ dev: false
- /metro-react-native-babel-transformer@0.76.5(@babel/core@7.20.2):
- resolution: {integrity: sha512-7m2u7jQ1I2mwGm48Vrki5cNNSv4d2HegHMGmE5G2AAa6Pr2O3ajaX2yNoAKF8TCLO38/8pa9fZd0VWAlO/YMcA==}
+ /metro-react-native-babel-transformer@0.76.7(@babel/core@7.20.2):
+ resolution: {integrity: sha512-W6lW3J7y/05ph3c2p3KKJNhH0IdyxdOCbQ5it7aM2MAl0SM4wgKjaV6EYv9b3rHklpV6K3qMH37UKVcjMooWiA==}
engines: {node: '>=16'}
peerDependencies:
'@babel/core': '*'
@@ -7987,56 +9962,59 @@ packages:
dependencies:
'@babel/core': 7.20.2
babel-preset-fbjs: 3.4.0(@babel/core@7.20.2)
- hermes-parser: 0.8.0
- metro-babel-transformer: 0.76.5
- metro-react-native-babel-preset: 0.76.5(@babel/core@7.20.2)
- metro-source-map: 0.76.5
+ hermes-parser: 0.12.0
+ metro-react-native-babel-preset: 0.76.7(@babel/core@7.20.2)
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
+ dev: false
- /metro-resolver@0.76.5:
- resolution: {integrity: sha512-QNsbDdf0xL1HefP6fhh1g3umqiX1qWEuCiBaTFroYRqM7u7RATt8mCu4n/FwSYhATuUUujHTIb2EduuQPbSGRQ==}
+ /metro-resolver@0.76.7:
+ resolution: {integrity: sha512-pC0Wgq29HHIHrwz23xxiNgylhI8Rq1V01kQaJ9Kz11zWrIdlrH0ZdnJ7GC6qA0ErROG+cXmJ0rJb8/SW1Zp2IA==}
engines: {node: '>=16'}
+ dev: false
- /metro-runtime@0.76.5:
- resolution: {integrity: sha512-1JAf9/v/NDHLhoTfiJ0n25G6dRkX7mjTkaMJ6UUXIyfIuSucoK5yAuOBx8OveNIekoLRjmyvSmyN5ojEeRmpvQ==}
+ /metro-runtime@0.76.7:
+ resolution: {integrity: sha512-MuWHubQHymUWBpZLwuKZQgA/qbb35WnDAKPo83rk7JRLIFPvzXSvFaC18voPuzJBt1V98lKQIonh6MiC9gd8Ug==}
engines: {node: '>=16'}
dependencies:
'@babel/runtime': 7.21.0
react-refresh: 0.4.3
+ dev: false
- /metro-source-map@0.76.5:
- resolution: {integrity: sha512-1EhYPcoftONlvnOzgos7daE8hsJKOgSN3nD3Xf/yaY1F0aLeGeuWfpiNLLeFDNyUhfObHSuNxNhDQF/x1GFEbw==}
+ /metro-source-map@0.76.7:
+ resolution: {integrity: sha512-Prhx7PeRV1LuogT0Kn5VjCuFu9fVD68eefntdWabrksmNY6mXK8pRqzvNJOhTojh6nek+RxBzZeD6MIOOyXS6w==}
engines: {node: '>=16'}
dependencies:
'@babel/traverse': 7.22.8
'@babel/types': 7.22.5
invariant: 2.2.4
- metro-symbolicate: 0.76.5
+ metro-symbolicate: 0.76.7
nullthrows: 1.1.1
- ob1: 0.76.5
+ ob1: 0.76.7
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
+ dev: false
- /metro-symbolicate@0.76.5:
- resolution: {integrity: sha512-7iftzh6G6HO4UDBmjsi2Yu4d6IkApv6Kg+jmBvkTjCXr8HwnKKum89gMg/FRMix+Rhhut0dnMpz6mAbtKTU9JQ==}
+ /metro-symbolicate@0.76.7:
+ resolution: {integrity: sha512-p0zWEME5qLSL1bJb93iq+zt5fz3sfVn9xFYzca1TJIpY5MommEaS64Va87lp56O0sfEIvh4307Oaf/ZzRjuLiQ==}
engines: {node: '>=16'}
hasBin: true
dependencies:
invariant: 2.2.4
- metro-source-map: 0.76.5
+ metro-source-map: 0.76.7
nullthrows: 1.1.1
source-map: 0.5.7
through2: 2.0.5
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
+ dev: false
- /metro-transform-plugins@0.76.5:
- resolution: {integrity: sha512-7pJ24aRuvzdQYpX/eOyodr4fnwVJP5ArNLBE1d0DOU9sQxsGplOORDTGAqw2L01+UgaSJiiwEoFMw7Z91HAS+Q==}
+ /metro-transform-plugins@0.76.7:
+ resolution: {integrity: sha512-iSmnjVApbdivjuzb88Orb0JHvcEt5veVyFAzxiS5h0QB+zV79w6JCSqZlHCrbNOkOKBED//LqtKbFVakxllnNg==}
engines: {node: '>=16'}
dependencies:
'@babel/core': 7.20.2
@@ -8046,9 +10024,10 @@ packages:
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
+ dev: false
- /metro-transform-worker@0.76.5:
- resolution: {integrity: sha512-xN6Kb06o9u5A7M1bbl7oPfQFmt4Kmi3CMXp5j9OcK37AFc+u6YXH8x/6e9b3Cq50rlBYuCXDOOYAWI5/tYNt2w==}
+ /metro-transform-worker@0.76.7:
+ resolution: {integrity: sha512-cGvELqFMVk9XTC15CMVzrCzcO6sO1lURfcbgjuuPdzaWuD11eEyocvkTX0DPiRjsvgAmicz4XYxVzgYl3MykDw==}
engines: {node: '>=16'}
dependencies:
'@babel/core': 7.20.2
@@ -8056,21 +10035,22 @@ packages:
'@babel/parser': 7.22.7
'@babel/types': 7.22.5
babel-preset-fbjs: 3.4.0(@babel/core@7.20.2)
- metro: 0.76.5
- metro-babel-transformer: 0.76.5
- metro-cache: 0.76.5
- metro-cache-key: 0.76.5
- metro-source-map: 0.76.5
- metro-transform-plugins: 0.76.5
+ metro: 0.76.7
+ metro-babel-transformer: 0.76.7
+ metro-cache: 0.76.7
+ metro-cache-key: 0.76.7
+ metro-source-map: 0.76.7
+ metro-transform-plugins: 0.76.7
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
+ dev: false
- /metro@0.76.5:
- resolution: {integrity: sha512-aEQiqNFibfx4ajUXm7Xatsv43r/UQ0xE53T3XqgZBzsxhF235tf1cl8t0giawi0RbLtDS+Fu4kg2bVBKDYFy7A==}
+ /metro@0.76.7:
+ resolution: {integrity: sha512-67ZGwDeumEPnrHI+pEDSKH2cx+C81Gx8Mn5qOtmGUPm/Up9Y4I1H2dJZ5n17MWzejNo0XAvPh0QL0CrlJEODVQ==}
engines: {node: '>=16'}
hasBin: true
dependencies:
@@ -8090,28 +10070,28 @@ packages:
denodeify: 1.2.1
error-stack-parser: 2.1.4
graceful-fs: 4.2.10
- hermes-parser: 0.8.0
+ hermes-parser: 0.12.0
image-size: 1.0.2
invariant: 2.2.4
jest-worker: 27.5.1
jsc-safe-url: 0.2.4
lodash.throttle: 4.1.1
- metro-babel-transformer: 0.76.5
- metro-cache: 0.76.5
- metro-cache-key: 0.76.5
- metro-config: 0.76.5
- metro-core: 0.76.5
- metro-file-map: 0.76.5
- metro-inspector-proxy: 0.76.5
- metro-minify-terser: 0.76.5
- metro-minify-uglify: 0.76.5
- metro-react-native-babel-preset: 0.76.5(@babel/core@7.20.2)
- metro-resolver: 0.76.5
- metro-runtime: 0.76.5
- metro-source-map: 0.76.5
- metro-symbolicate: 0.76.5
- metro-transform-plugins: 0.76.5
- metro-transform-worker: 0.76.5
+ metro-babel-transformer: 0.76.7
+ metro-cache: 0.76.7
+ metro-cache-key: 0.76.7
+ metro-config: 0.76.7
+ metro-core: 0.76.7
+ metro-file-map: 0.76.7
+ metro-inspector-proxy: 0.76.7
+ metro-minify-terser: 0.76.7
+ metro-minify-uglify: 0.76.7
+ metro-react-native-babel-preset: 0.76.7(@babel/core@7.20.2)
+ metro-resolver: 0.76.7
+ metro-runtime: 0.76.7
+ metro-source-map: 0.76.7
+ metro-symbolicate: 0.76.7
+ metro-transform-plugins: 0.76.7
+ metro-transform-worker: 0.76.7
mime-types: 2.1.35
node-fetch: 2.6.7
nullthrows: 1.1.1
@@ -8127,6 +10107,7 @@ packages:
- encoding
- supports-color
- utf-8-validate
+ dev: false
/micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
@@ -8149,11 +10130,13 @@ packages:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
+ dev: false
/mime@2.6.0:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
+ dev: false
/mimic-fn@1.2.0:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
@@ -8175,8 +10158,8 @@ packages:
dependencies:
brace-expansion: 2.0.1
- /minimist@1.2.6:
- resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
+ /minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
/minipass-collect@1.0.2:
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
@@ -8218,7 +10201,8 @@ packages:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
- minimist: 1.2.6
+ minimist: 1.2.8
+ dev: false
/mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
@@ -8281,9 +10265,11 @@ packages:
/negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ dev: false
/neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+ dev: false
/nested-error-stacks@2.0.1:
resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==}
@@ -8343,15 +10329,18 @@ packages:
/nocache@3.0.4:
resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==}
engines: {node: '>=12.0.0'}
+ dev: false
/node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
+ dev: false
/node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
dependencies:
minimatch: 3.1.2
+ dev: false
/node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
@@ -8363,6 +10352,7 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
+ dev: false
/node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
@@ -8378,6 +10368,7 @@ packages:
/node-stream-zip@1.15.0:
resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
engines: {node: '>=0.12.0'}
+ dev: false
/normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
@@ -8407,14 +10398,16 @@ packages:
/nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
+ dev: false
/nwsapi@2.2.2:
resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==}
dev: true
- /ob1@0.76.5:
- resolution: {integrity: sha512-HoxZXMXNuY/eIXGoX7gx1C4O3eB4kJJMola6KoFaMm7PGGg39+AnhbgMASYVmSvP2lwU3545NyiR63g8J9PW3w==}
+ /ob1@0.76.7:
+ resolution: {integrity: sha512-BQdRtxxoUNfSoZxqeBGOyuT9nEYSn18xZHwGMb0mMVpn2NBcYbnyKY4BK2LIHRgw33CBGlUmE+KMaNvyTpLLtQ==}
engines: {node: '>=16'}
+ dev: false
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -8508,16 +10501,19 @@ packages:
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
+ dev: false
/on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
+ dev: false
/on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
+ dev: false
/once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -8542,6 +10538,7 @@ packages:
engines: {node: '>=8'}
dependencies:
is-wsl: 1.1.0
+ dev: false
/open@8.4.0:
resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
@@ -8599,6 +10596,7 @@ packages:
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
+ dev: false
/os-homedir@1.0.2:
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
@@ -8675,6 +10673,7 @@ packages:
dependencies:
error-ex: 1.3.2
json-parse-better-errors: 1.0.2
+ dev: false
/parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
@@ -8702,6 +10701,7 @@ packages:
/parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
+ dev: false
/password-prompt@1.1.2:
resolution: {integrity: sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==}
@@ -8752,6 +10752,7 @@ packages:
/pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
+ dev: false
/pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
@@ -8762,6 +10763,7 @@ packages:
engines: {node: '>=6'}
dependencies:
find-up: 3.0.0
+ dev: false
/pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
@@ -8881,6 +10883,7 @@ packages:
/process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ dev: false
/progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
@@ -8906,6 +10909,7 @@ packages:
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
dependencies:
asap: 2.0.6
+ dev: false
/prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
@@ -8932,6 +10936,10 @@ packages:
once: 1.4.0
dev: false
+ /punycode@1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+ dev: false
+
/punycode@2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
@@ -8948,6 +10956,16 @@ packages:
side-channel: 1.0.4
dev: false
+ /query-string@7.1.3:
+ resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
+ engines: {node: '>=6'}
+ dependencies:
+ decode-uri-component: 0.2.2
+ filter-obj: 1.1.0
+ split-on-first: 1.1.0
+ strict-uri-encode: 2.0.0
+ dev: false
+
/querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
@@ -8958,10 +10976,12 @@ packages:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
dependencies:
inherits: 2.0.4
+ dev: false
/range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
+ dev: false
/raw-body@2.5.2:
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
@@ -8979,7 +10999,7 @@ packages:
dependencies:
deep-extend: 0.6.0
ini: 1.3.8
- minimist: 1.2.6
+ minimist: 1.2.8
strip-json-comments: 2.0.1
dev: false
@@ -8991,6 +11011,7 @@ packages:
transitivePeerDependencies:
- bufferutil
- utf-8-validate
+ dev: false
/react-dom@18.2.0(react@18.2.0):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
@@ -9002,6 +11023,34 @@ packages:
scheduler: 0.23.0
dev: false
+ /react-fast-compare@3.2.2:
+ resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
+ dev: false
+
+ /react-freeze@1.0.3(react@18.2.0):
+ resolution: {integrity: sha512-ZnXwLQnGzrDpHBHiC56TXFXvmolPeMjTn1UOm610M4EXGzbEDR7oOIyS2ZiItgbs6eZc4oU/a0hpk8PrcKvv5g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: '>=17.0.0'
+ dependencies:
+ react: 18.2.0
+ dev: false
+
+ /react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
+ peerDependencies:
+ 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.21.0
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
+ dev: false
+
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -9011,6 +11060,43 @@ packages:
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ /react-native-gesture-handler@2.12.1(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-deqh36bw82CFUV9EC4tTo2PP1i9HfCOORGS3Zmv71UYhEZEHkzZv18IZNPB+2Awzj45vLIidZxGYGFxHlDSQ5A==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ '@egjs/hammerjs': 2.0.17
+ hoist-non-react-statics: 3.3.2
+ invariant: 2.2.4
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ dev: false
+
+ /react-native-safe-area-context@4.6.3(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-3CeZM9HFXkuqiU9HqhOQp1yxhXw6q99axPWrT+VJkITd67gnPSU03+U27Xk2/cr9XrLUnakM07kj7H0hdPnFiQ==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ react: 18.2.0
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ dev: false
+
+ /react-native-screens@3.22.1(react-native@0.72.3)(react@18.2.0):
+ resolution: {integrity: sha512-ffzwUdVKf+iLqhWSzN5DXBm0s2w5sN0P+TaHHPAx42LT7+DT0g8PkHT1QDvxpR5vCEPSS1i3EswyVK4HCuhTYg==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ react: 18.2.0
+ react-freeze: 1.0.3(react@18.2.0)
+ react-native: 0.72.3(@babel/core@7.20.2)(react@18.2.0)
+ warn-once: 0.1.1
+ dev: false
+
/react-native-web@0.19.6(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-lk0X4y4DhZxc2e7Wdc1NkvJVObZZOLAz9l7S5a5awLI5SsZoF5L0WZhiU/+qWu5cpV0wMkME9qx7CvegmO4snw==}
peerDependencies:
@@ -9031,23 +11117,23 @@ packages:
- encoding
dev: false
- /react-native@0.72.1(@babel/core@7.20.2)(react@18.2.0):
- resolution: {integrity: sha512-O9cIVD++kt2XQl0XLCUGUgwSKr8xp+yo0ho5QK6KYWJrCFnnvQLTKL0+HD0rZUcuqFfGknHQJh3h0moQO2EMDg==}
+ /react-native@0.72.3(@babel/core@7.20.2)(react@18.2.0):
+ resolution: {integrity: sha512-QqISi+JVmCssNP2FlQ4MWhlc4O/I00MRE1/GClvyZ8h/6kdsyk/sOirkYdZqX3+DrJfI3q+OnyMnsyaXIQ/5tQ==}
engines: {node: '>=16'}
hasBin: true
peerDependencies:
react: 18.2.0
dependencies:
'@jest/create-cache-key-function': 29.3.1
- '@react-native-community/cli': 11.3.3(@babel/core@7.20.2)
- '@react-native-community/cli-platform-android': 11.3.3
- '@react-native-community/cli-platform-ios': 11.3.3
+ '@react-native-community/cli': 11.3.5(@babel/core@7.20.2)
+ '@react-native-community/cli-platform-android': 11.3.5
+ '@react-native-community/cli-platform-ios': 11.3.5
'@react-native/assets-registry': 0.72.0
'@react-native/codegen': 0.72.6
'@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.6(react-native@0.72.1)
+ '@react-native/virtualized-lists': 0.72.6(react-native@0.72.3)
abort-controller: 3.0.0
anser: 1.4.10
base64-js: 1.5.1
@@ -9058,8 +11144,8 @@ packages:
jest-environment-node: 29.4.3
jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-runtime: 0.76.5
- metro-source-map: 0.76.5
+ metro-runtime: 0.76.7
+ metro-source-map: 0.76.7
mkdirp: 0.5.6
nullthrows: 1.1.1
pretty-format: 26.6.2
@@ -9082,11 +11168,21 @@ packages:
- encoding
- supports-color
- utf-8-validate
+ dev: false
/react-refresh@0.4.3:
resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==}
engines: {node: '>=0.10.0'}
+ /react-shallow-renderer@16.15.0:
+ resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ object-assign: 4.1.1
+ react-is: 18.2.0
+ dev: true
+
/react-shallow-renderer@16.15.0(react@18.2.0):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
@@ -9095,15 +11191,15 @@ packages:
object-assign: 4.1.1
react: 18.2.0
react-is: 18.2.0
+ dev: false
- /react-test-renderer@18.2.0(react@18.2.0):
+ /react-test-renderer@18.2.0:
resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
peerDependencies:
react: ^18.2.0
dependencies:
- react: 18.2.0
react-is: 18.2.0
- react-shallow-renderer: 16.15.0(react@18.2.0)
+ react-shallow-renderer: 16.15.0
scheduler: 0.23.0
dev: true
@@ -9112,6 +11208,7 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
+ dev: false
/readable-stream@2.3.7:
resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
@@ -9123,6 +11220,7 @@ packages:
safe-buffer: 5.1.2
string_decoder: 1.1.1
util-deprecate: 1.0.2
+ dev: false
/readable-stream@3.6.0:
resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
@@ -9131,6 +11229,7 @@ packages:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
+ dev: false
/readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
@@ -9141,6 +11240,7 @@ packages:
/readline@1.3.0:
resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
+ dev: false
/recast@0.21.5:
resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
@@ -9150,6 +11250,7 @@ packages:
esprima: 4.0.1
source-map: 0.6.1
tslib: 2.5.0
+ dev: false
/regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
@@ -9214,6 +11315,7 @@ packages:
/require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+ dev: false
/requireg@0.2.2:
resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==}
@@ -9240,6 +11342,7 @@ packages:
/resolve-from@3.0.0:
resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
+ dev: false
/resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
@@ -9290,6 +11393,7 @@ packages:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
+ dev: false
/reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
@@ -9308,6 +11412,7 @@ packages:
hasBin: true
dependencies:
glob: 7.2.3
+ dev: false
/rimraf@2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
@@ -9340,6 +11445,7 @@ packages:
/safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ dev: false
/safe-json-stringify@1.2.0:
resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==}
@@ -9377,10 +11483,22 @@ packages:
resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
dependencies:
loose-envify: 1.4.0
+ dev: false
+
+ /schema-utils@4.2.0:
+ resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
+ engines: {node: '>= 12.13.0'}
+ dependencies:
+ '@types/json-schema': 7.0.11
+ ajv: 8.12.0
+ ajv-formats: 2.1.1
+ ajv-keywords: 5.1.0(ajv@8.12.0)
+ dev: false
/semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
+ dev: false
/semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
@@ -9398,6 +11516,7 @@ packages:
hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: false
/semver@7.5.3:
resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==}
@@ -9432,10 +11551,12 @@ packages:
statuses: 2.0.1
transitivePeerDependencies:
- supports-color
+ dev: false
/serialize-error@2.1.0:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
+ dev: false
/serialize-error@6.0.0:
resolution: {integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==}
@@ -9454,9 +11575,11 @@ packages:
send: 0.18.0
transitivePeerDependencies:
- supports-color
+ dev: false
/set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ dev: false
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
@@ -9464,12 +11587,18 @@ packages:
/setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
+ dev: false
/shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
+ dev: false
+
+ /shallowequal@1.1.0:
+ resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
+ dev: false
/shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
@@ -9495,12 +11624,13 @@ packages:
/shell-quote@1.7.3:
resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==}
+ dev: false
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.1.3
+ get-intrinsic: 1.2.0
object-inspect: 1.12.2
/signal-exit@3.0.7:
@@ -9513,6 +11643,12 @@ packages:
bplist-parser: 0.3.1
plist: 3.0.6
+ /simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ dependencies:
+ is-arrayish: 0.3.2
+ dev: false
+
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -9537,6 +11673,7 @@ packages:
ansi-styles: 3.2.1
astral-regex: 1.0.0
is-fullwidth-code-point: 2.0.0
+ dev: false
/slugify@1.6.5:
resolution: {integrity: sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==}
@@ -9559,10 +11696,12 @@ packages:
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
+ dev: false
/source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
+ dev: false
/source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
@@ -9571,6 +11710,7 @@ packages:
/source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
+ dev: false
/source-map@0.8.0-beta.0:
resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
@@ -9579,6 +11719,11 @@ packages:
whatwg-url: 7.1.0
dev: true
+ /split-on-first@1.1.0:
+ resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
+ engines: {node: '>=6'}
+ dev: false
+
/split@1.0.1:
resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
dependencies:
@@ -9603,25 +11748,34 @@ packages:
/stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
+ dev: false
/stacktrace-parser@0.1.10:
resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
engines: {node: '>=6'}
dependencies:
type-fest: 0.7.1
+ dev: false
/statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
+ dev: false
/statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
+ dev: false
/stream-buffers@2.2.0:
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
engines: {node: '>= 0.10.0'}
+ /strict-uri-encode@2.0.0:
+ resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
+ engines: {node: '>=4'}
+ dev: false
+
/string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
@@ -9706,17 +11860,20 @@ packages:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
+ dev: false
/string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
+ dev: false
/strip-ansi@5.2.0:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
engines: {node: '>=6'}
dependencies:
ansi-regex: 4.1.1
+ dev: false
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
@@ -9760,6 +11917,7 @@ packages:
/strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+ dev: false
/structured-headers@0.4.1:
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
@@ -9808,6 +11966,7 @@ packages:
/sudo-prompt@9.2.1:
resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
+ dev: false
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
@@ -9883,6 +12042,7 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
rimraf: 2.6.3
+ dev: false
/tempy@0.3.0:
resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==}
@@ -9921,6 +12081,7 @@ packages:
acorn: 8.8.2
commander: 2.20.3
source-map-support: 0.5.21
+ dev: false
/test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
@@ -9947,12 +12108,14 @@ packages:
/throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
+ dev: false
/through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
readable-stream: 2.3.7
xtend: 4.0.2
+ dev: false
/through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
@@ -9988,6 +12151,7 @@ packages:
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
+ dev: false
/tough-cookie@4.1.2:
resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==}
@@ -10001,6 +12165,7 @@ packages:
/tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ dev: false
/tr46@1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
@@ -10032,7 +12197,7 @@ packages:
dependencies:
'@types/json5': 0.0.29
json5: 1.0.1
- minimist: 1.2.6
+ minimist: 1.2.8
strip-bom: 3.0.0
/tslib@1.14.1:
@@ -10045,7 +12210,7 @@ packages:
/tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
- /tsup@6.5.0(typescript@4.9.5):
+ /tsup@6.5.0:
resolution: {integrity: sha512-36u82r7rYqRHFkD15R20Cd4ercPkbYmuvRkz3Q1LCm5BsiFNUgpo36zbjVhCOgvjyxNBWNKHsaD5Rl8SykfzNA==}
engines: {node: '>=14'}
hasBin: true
@@ -10075,13 +12240,12 @@ packages:
source-map: 0.8.0-beta.0
sucrase: 3.27.0
tree-kill: 1.2.2
- typescript: 4.9.5
transitivePeerDependencies:
- supports-color
- ts-node
dev: true
- /tsutils@3.21.0(typescript@4.9.5):
+ /tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
@@ -10091,7 +12255,6 @@ packages:
optional: true
dependencies:
tslib: 1.14.1
- typescript: 4.9.5
/turbo-darwin-64@1.10.7:
resolution: {integrity: sha512-N2MNuhwrl6g7vGuz4y3fFG2aR1oCs0UZ5HKl8KSTn/VC2y2YIuLGedQ3OVbo0TfEvygAlF3QGAAKKtOCmGPNKA==}
@@ -10197,6 +12360,7 @@ packages:
/type-fest@0.7.1:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
+ dev: false
/type-fest@3.6.0:
resolution: {integrity: sha512-RqTRtKTzvPpNdDUp1dVkKQRunlPITk4mXeqFlAZoJsS+fLRn8AdPK0TcQDumGayhU7fjlBfiBjsq3pe3rIfXZQ==}
@@ -10219,10 +12383,11 @@ packages:
is-typed-array: 1.1.10
dev: false
- /typescript@4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
+ /typescript@5.1.6:
+ resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ engines: {node: '>=14.17'}
hasBin: true
+ dev: true
/ua-parser-js@0.7.31:
resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==}
@@ -10236,6 +12401,7 @@ packages:
dependencies:
commander: 2.13.0
source-map: 0.6.1
+ dev: false
/unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
@@ -10293,6 +12459,7 @@ packages:
/universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
+ dev: false
/universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
@@ -10312,6 +12479,7 @@ packages:
/unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
+ dev: false
/update-browserslist-db@1.0.9(browserslist@4.21.4):
resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==}
@@ -10338,19 +12506,37 @@ packages:
querystringify: 2.2.0
requires-port: 1.0.0
+ /url@0.11.1:
+ resolution: {integrity: sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==}
+ dependencies:
+ punycode: 1.4.1
+ qs: 6.11.0
+ dev: false
+
+ /use-latest-callback@0.1.6(react@18.2.0):
+ resolution: {integrity: sha512-VO/P91A/PmKH9bcN9a7O3duSuxe6M14ZoYXgA6a8dab8doWNdhiIHzEkX/jFeTTRBsX0Ubk6nG4q2NIjNsj+bg==}
+ peerDependencies:
+ react: '>=16.8'
+ dependencies:
+ react: 18.2.0
+ dev: false
+
/use-sync-external-store@1.2.0(react@18.2.0):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
react: 18.2.0
+ dev: false
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ dev: false
/utils-merge@1.0.1:
- resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
+ dev: false
/uuid@3.4.0:
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
@@ -10389,9 +12575,11 @@ packages:
/vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
+ dev: false
/vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
+ dev: false
/w3c-xmlserializer@4.0.0:
resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
@@ -10405,13 +12593,19 @@ packages:
dependencies:
makeerror: 1.0.12
+ /warn-once@0.1.1:
+ resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==}
+ dev: false
+
/wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.3
+ dev: false
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ dev: false
/webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
@@ -10431,6 +12625,7 @@ packages:
/whatwg-fetch@3.6.2:
resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
+ dev: false
/whatwg-mimetype@3.0.0:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
@@ -10450,6 +12645,7 @@ packages:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
+ dev: false
/whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
@@ -10470,6 +12666,7 @@ packages:
/which-module@2.0.0:
resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
+ dev: false
/which-typed-array@1.1.9:
resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
@@ -10512,6 +12709,7 @@ packages:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
+ dev: false
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -10551,6 +12749,7 @@ packages:
optional: true
dependencies:
async-limiter: 1.0.1
+ dev: false
/ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
@@ -10563,6 +12762,7 @@ packages:
optional: true
utf-8-validate:
optional: true
+ dev: false
/ws@8.12.1:
resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==}
@@ -10614,9 +12814,11 @@ packages:
/xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
+ dev: false
/y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ dev: false
/y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
@@ -10636,6 +12838,7 @@ packages:
/yaml@2.3.1:
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
+ dev: false
/yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
@@ -10643,6 +12846,7 @@ packages:
dependencies:
camelcase: 5.3.1
decamelize: 1.2.0
+ dev: false
/yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
@@ -10663,6 +12867,7 @@ packages:
which-module: 2.0.0
y18n: 4.0.3
yargs-parser: 18.1.3
+ dev: false
/yargs@17.7.1:
resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
diff --git a/turbo.json b/turbo.json
index 229e61d4..cace3cbe 100644
--- a/turbo.json
+++ b/turbo.json
@@ -19,6 +19,8 @@
"dev": {
"cache": false,
"persistent": true
- }
+ },
+ "clean:modules": {},
+ "clean:apps": {}
}
}