diff --git a/.eslintrc.js b/.eslintrc.js
index fc76cab..b9cc24e 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -17,7 +17,7 @@ module.exports = {
settings: {
'import/resolver': {
typescript: {
- project: './tsconfig.json',
+ project: ['./tsconfig.base.json', './apps/*/tsconfig.json'],
},
},
},
diff --git a/.prettierrc b/.prettierrc
index 3baced4..d55c115 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -1,4 +1,5 @@
{
"singleQuote": true,
- "endOfLine": "auto"
+ "endOfLine": "auto",
+ "plugins": ["prettier-plugin-tailwindcss"]
}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 08ad711..4290e96 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -7,5 +7,14 @@
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
- }
+ },
+ "typescript.tsdk": "node_modules\\typescript\\lib",
+ "tailwindCSS.experimental.classRegex": [
+ ["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
+ ["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
+ ],
+ "typescript.preferences.autoImportFileExcludePatterns": [
+ // Should import Text from UI components instead
+ "react-native/Libraries/Text/Text.d.ts"
+ ]
}
diff --git a/apps/mobile/app.d.ts b/apps/mobile/app.d.ts
new file mode 100644
index 0000000..a13e313
--- /dev/null
+++ b/apps/mobile/app.d.ts
@@ -0,0 +1 @@
+///
diff --git a/apps/mobile/app.json b/apps/mobile/app.json
index 74f4d26..7869822 100644
--- a/apps/mobile/app.json
+++ b/apps/mobile/app.json
@@ -4,20 +4,19 @@
"slug": "mw-mobile",
"version": "1.0.0",
"orientation": "portrait",
- "scheme":"dev.movieweb.app",
+ "scheme": "dev.movieweb.app",
+ "userInterfaceStyle": "automatic",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
- "jsEngine": "jsc",
+ "jsEngine": "jsc",
"updates": {
"fallbackToCacheTimeout": 0
},
- "assetBundlePatterns": [
- "**/*"
- ],
+ "assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "dev.movieweb.app"
@@ -34,20 +33,17 @@
"bundler": "metro"
},
"plugins": [
- "expo-router",
+ "expo-router",
[
"@config-plugins/detox",
{
"skipProguard": false,
- "subdomains": [
- "10.0.2.2",
- "localhost"
- ]
+ "subdomains": ["10.0.2.2", "localhost"]
}
]
],
- "experiments": {
- "typedRoutes": true
- }
+ "experiments": {
+ "typedRoutes": true
+ }
}
}
diff --git a/apps/mobile/app/(tabs)/_layout.tsx b/apps/mobile/app/(tabs)/_layout.tsx
index b37f63d..19dbec3 100644
--- a/apps/mobile/app/(tabs)/_layout.tsx
+++ b/apps/mobile/app/(tabs)/_layout.tsx
@@ -1,20 +1,19 @@
import { Tabs } from 'expo-router';
-import Colors from '../../constants/Colors';
-import TabBarIcon from '../../components/TabBarIcon';
-import { globalStyles } from '../../styles/global';
+import TabBarIcon from '@/components/TabBarIcon';
+import Colors from '@/constants/Colors';
export default function TabLayout() {
return (
@@ -55,26 +53,9 @@ export default function TabLayout() {
options={{
title: 'Search',
tabBarLabel: '',
- tabBarShowLabel: false,
- tabBarLabelStyle: {
- display: 'none',
- },
- tabBarIconStyle: {},
tabBarIcon: () => (
diff --git a/apps/mobile/app/(tabs)/about.tsx b/apps/mobile/app/(tabs)/about.tsx
index fc530b8..9075450 100644
--- a/apps/mobile/app/(tabs)/about.tsx
+++ b/apps/mobile/app/(tabs)/about.tsx
@@ -1,8 +1,5 @@
-import { StyleSheet } from 'react-native';
-
-import ScreenLayout from '../../components/layout/screenLayout';
-import { globalStyles } from '../../styles/global';
-import { RegularText } from '../../components/Styled';
+import ScreenLayout from '@/components/layout/ScreenLayout';
+import { Text } from '@/components/ui/Text';
export default function AboutScreen() {
return (
@@ -10,27 +7,10 @@ export default function AboutScreen() {
title="About"
subtitle="What is movie-web and how content is served?"
>
-
+
No content is served from movie-web directly and movie web does not host
anything.
-
+
);
}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- },
- title: {
- fontSize: 20,
- fontWeight: 'bold',
- },
- separator: {
- marginVertical: 30,
- height: 1,
- width: '80%',
- },
-});
diff --git a/apps/mobile/app/(tabs)/account.tsx b/apps/mobile/app/(tabs)/account.tsx
index e28c546..5216bc5 100644
--- a/apps/mobile/app/(tabs)/account.tsx
+++ b/apps/mobile/app/(tabs)/account.tsx
@@ -1,8 +1,5 @@
-import { StyleSheet, Text } from 'react-native';
-
-import { globalStyles } from '../../styles/global';
-import ScreenLayout from '../../components/layout/screenLayout';
-import { RegularText } from '../../components/Styled';
+import ScreenLayout from '@/components/layout/ScreenLayout';
+import { Text } from '@/components/ui/Text';
export default function AccountScreen() {
return (
@@ -10,9 +7,7 @@ export default function AccountScreen() {
title="Account"
subtitle="Manage your movie web account from here"
>
-
- Hey Bro! what are you up to?
-
+ Hey Bro! what are you up to?
);
}
diff --git a/apps/mobile/app/(tabs)/index.tsx b/apps/mobile/app/(tabs)/index.tsx
index 58d9f6b..6759149 100644
--- a/apps/mobile/app/(tabs)/index.tsx
+++ b/apps/mobile/app/(tabs)/index.tsx
@@ -1,13 +1,10 @@
-import { RegularText } from '../../components/Styled';
-import ScreenLayout from '../../components/layout/screenLayout';
-import { globalStyles } from '../../styles/global';
+import ScreenLayout from '@/components/layout/ScreenLayout';
+import { Text } from '@/components/ui/Text';
export default function HomeScreen() {
return (
-
- Movies will be listed here
-
+ Movies will be listed here
);
}
diff --git a/apps/mobile/app/(tabs)/search/Searchbar.tsx b/apps/mobile/app/(tabs)/search/Searchbar.tsx
index 73fd655..107ec03 100644
--- a/apps/mobile/app/(tabs)/search/Searchbar.tsx
+++ b/apps/mobile/app/(tabs)/search/Searchbar.tsx
@@ -1,10 +1,10 @@
import { FontAwesome5 } from '@expo/vector-icons';
+import { useFocusEffect } from 'expo-router';
import { useCallback, useRef, useState } from 'react';
import { View } from 'react-native';
import { TextInput } from 'react-native-gesture-handler';
-import { globalStyles } from '../../../styles/global';
-import Colors from '../../../constants/Colors';
-import { useFocusEffect } from 'expo-router';
+
+import Colors from '@/constants/Colors';
export default function Searchbar() {
const [keyword, setKeyword] = useState('');
@@ -24,41 +24,19 @@ export default function Searchbar() {
);
return (
-
-
-
+
+
+
setKeyword(text)}
ref={inputRef}
placeholder="What are you looking for?"
- placeholderTextColor={Colors.dark.shade200}
- style={[
- globalStyles.input,
- globalStyles.fOpenSansRegular,
- {
- width: '100%',
- },
- ]}
- >
+ placeholderTextColor={Colors.secondary[200]}
+ className="w-full rounded-3xl py-3 pr-5 text-white focus-visible:outline-none"
+ />
);
}
diff --git a/apps/mobile/app/(tabs)/search/_layout.tsx b/apps/mobile/app/(tabs)/search/_layout.tsx
index 5fc46d9..5cf0f9b 100644
--- a/apps/mobile/app/(tabs)/search/_layout.tsx
+++ b/apps/mobile/app/(tabs)/search/_layout.tsx
@@ -1,13 +1,9 @@
-import { Dimensions, ScrollView, View } from 'react-native';
+import { ScrollView, View } from 'react-native';
+
+import Item from '@/components/item/item';
+import ScreenLayout from '@/components/layout/ScreenLayout';
+import { Text } from '@/components/ui/Text';
-import { globalStyles } from '../../../styles/global';
-import ScreenLayout from '../../../components/layout/screenLayout';
-import { TextInput } from 'react-native-gesture-handler';
-import styles from './styles';
-import { useCallback, useEffect, useRef, useState } from 'react';
-import { useFocusEffect } from 'expo-router';
-import { BoldText } from '../../../components/Styled';
-import Item from '../../../components/item/item';
import Searchbar from './Searchbar';
export default function SearchScreen() {
@@ -15,23 +11,21 @@ export default function SearchScreen() {
- Search
+
+ Search
}
subtitle="Looking for something?"
>
-
-
+
+
-
+
-
+
diff --git a/apps/mobile/app/(tabs)/search/styles.tsx b/apps/mobile/app/(tabs)/search/styles.tsx
deleted file mode 100644
index d9ac5b0..0000000
--- a/apps/mobile/app/(tabs)/search/styles.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import { StyleSheet } from 'react-native';
-
-const styles = StyleSheet.create({
- items: {
- display: 'flex',
- flexWrap: 'wrap',
- justifyContent: 'flex-start',
- width: '100%',
- flexDirection: 'row',
- flex: 1,
- },
- itemOuter: {
- flexBasis: '50%',
- paddingHorizontal: 12,
- paddingBottom: 12,
- },
-});
-
-export default styles;
diff --git a/apps/mobile/app/(tabs)/settings.tsx b/apps/mobile/app/(tabs)/settings.tsx
index 5dd243d..b59c0bd 100644
--- a/apps/mobile/app/(tabs)/settings.tsx
+++ b/apps/mobile/app/(tabs)/settings.tsx
@@ -1,14 +1,10 @@
-import { RegularText } from '../../components/Styled';
-import ScreenLayout from '../../components/layout/screenLayout';
-import { globalStyles } from '../../styles/global';
-import { StyleSheet, Text } from 'react-native';
+import ScreenLayout from '@/components/layout/ScreenLayout';
+import { Text } from '@/components/ui/Text';
export default function SettingsScreen() {
return (
-
- Settings would be listed in here. Coming soon
-
+ Settings would be listed in here. Coming soon
);
}
diff --git a/apps/mobile/app/[...missing].tsx b/apps/mobile/app/[...missing].tsx
index 78408c6..c44b807 100644
--- a/apps/mobile/app/[...missing].tsx
+++ b/apps/mobile/app/[...missing].tsx
@@ -1,41 +1,21 @@
import { Link, Stack } from 'expo-router';
-import { StyleSheet, View } from 'react-native';
-import { BoldText, RegularText } from '../components/Styled';
+import { View } from 'react-native';
+
+import { Text } from '@/components/ui/Text';
export default function NotFoundScreen() {
return (
<>
-
-
+
+
This screen doesn't exist.
-
+
-
- Go to home screen!
+
+ Go to home screen!
>
);
}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- padding: 20,
- },
- title: {
- fontSize: 20,
- fontWeight: 'bold',
- },
- link: {
- marginTop: 15,
- paddingVertical: 15,
- },
- linkText: {
- fontSize: 14,
- color: '#2e78b7',
- },
-});
diff --git a/apps/mobile/app/_layout.tsx b/apps/mobile/app/_layout.tsx
index 7428383..f3c7669 100644
--- a/apps/mobile/app/_layout.tsx
+++ b/apps/mobile/app/_layout.tsx
@@ -1,3 +1,4 @@
+/* eslint-disable global-require */
import FontAwesome from '@expo/vector-icons/FontAwesome';
import {
DarkTheme,
@@ -9,7 +10,9 @@ import { SplashScreen, Stack } from 'expo-router';
import { useEffect } from 'react';
import { useColorScheme } from 'react-native';
-import Colors from '../constants/Colors';
+import Colors from '@/constants/Colors';
+
+import './styles/global.css';
export {
// Catch any errors thrown by the Layout component.
@@ -27,7 +30,6 @@ SplashScreen.preventAutoHideAsync();
export default function RootLayout() {
const [loaded, error] = useFonts({
- // eslint-disable-next-line global-require
OpenSansRegular: require('../assets/fonts/OpenSans-Regular.ttf'),
OpenSansLight: require('../assets/fonts/OpenSans-Light.ttf'),
OpenSansMedium: require('../assets/fonts/OpenSans-Medium.ttf'),
@@ -65,12 +67,11 @@ function RootLayoutNav() {
gestureEnabled: true,
headerShown: false,
contentStyle: {
- backgroundColor: Colors.dark.shade900,
+ backgroundColor: Colors.background,
},
}}
>
-
);
diff --git a/apps/mobile/components/ExternalLink.tsx b/apps/mobile/app/components/ExternalLink.tsx
similarity index 93%
rename from apps/mobile/components/ExternalLink.tsx
rename to apps/mobile/app/components/ExternalLink.tsx
index 66a00ac..1478149 100644
--- a/apps/mobile/components/ExternalLink.tsx
+++ b/apps/mobile/app/components/ExternalLink.tsx
@@ -13,7 +13,6 @@ export function ExternalLink(
target: '_blank',
}}
{...props}
- // @ts-expect-error: External URLs are not typed.
href={props.href}
onPress={(e) => {
if (Platform.OS !== 'web') {
diff --git a/apps/mobile/app/components/TabBarIcon.tsx b/apps/mobile/app/components/TabBarIcon.tsx
new file mode 100644
index 0000000..797a55e
--- /dev/null
+++ b/apps/mobile/app/components/TabBarIcon.tsx
@@ -0,0 +1,17 @@
+import { FontAwesome } from '@expo/vector-icons';
+
+import Colors from '@/constants/Colors';
+
+type Props = {
+ focused?: boolean;
+} & React.ComponentProps;
+
+export default function TabBarIcon({ focused, ...rest }: Props) {
+ return (
+
+ );
+}
diff --git a/apps/mobile/app/components/item/item.tsx b/apps/mobile/app/components/item/item.tsx
new file mode 100644
index 0000000..8f01f5b
--- /dev/null
+++ b/apps/mobile/app/components/item/item.tsx
@@ -0,0 +1,26 @@
+import { Image, View } from 'react-native';
+
+import { Text } from '@/components/ui/Text';
+import { TMDB_POSTER_PATH } from '@/constants/General';
+
+export default function Item() {
+ return (
+
+
+
+
+ Hamilton
+
+ Movie
+
+ 2023
+
+
+ );
+}
diff --git a/apps/mobile/app/components/layout/ScreenLayout.tsx b/apps/mobile/app/components/layout/ScreenLayout.tsx
new file mode 100644
index 0000000..53cf6fe
--- /dev/null
+++ b/apps/mobile/app/components/layout/ScreenLayout.tsx
@@ -0,0 +1,22 @@
+import { View } from 'react-native';
+
+import { Text } from '@/components/ui/Text';
+
+type Props = {
+ title?: React.ReactNode | string;
+ subtitle?: string;
+ children?: React.ReactNode;
+};
+
+export default function ScreenLayout({ title, subtitle, children }: Props) {
+ return (
+
+ {typeof title === 'string' && (
+ {title}
+ )}
+ {typeof title !== 'string' && title}
+ {subtitle}
+ {children}
+
+ );
+}
diff --git a/apps/mobile/app/components/ui/Text.tsx b/apps/mobile/app/components/ui/Text.tsx
new file mode 100644
index 0000000..2727577
--- /dev/null
+++ b/apps/mobile/app/components/ui/Text.tsx
@@ -0,0 +1,17 @@
+import { cva } from 'class-variance-authority';
+import { Text as RNText, TextProps } from 'react-native';
+
+import { cn } from '@/lib/utils';
+
+const textVariants = cva('text-white');
+
+export function Text({ className, ...props }: TextProps) {
+ return (
+
+ );
+}
diff --git a/apps/mobile/app/constants/Colors.ts b/apps/mobile/app/constants/Colors.ts
new file mode 100644
index 0000000..bf7c660
--- /dev/null
+++ b/apps/mobile/app/constants/Colors.ts
@@ -0,0 +1,14 @@
+export default {
+ primary: {
+ 100: '#C082FF',
+ 300: '#8D44D6',
+ 400: '#7831BF',
+ },
+ secondary: {
+ 50: '#676790',
+ 200: '#3F3F60',
+ 300: '#32324F',
+ 700: '#131322',
+ },
+ background: '#0a0a12',
+};
diff --git a/apps/mobile/constants/General.ts b/apps/mobile/app/constants/General.ts
similarity index 98%
rename from apps/mobile/constants/General.ts
rename to apps/mobile/app/constants/General.ts
index 7e981d6..e12b028 100644
--- a/apps/mobile/constants/General.ts
+++ b/apps/mobile/app/constants/General.ts
@@ -1 +1 @@
-export const TMDB_POSTER_PATH = `https://image.tmdb.org/t/p`;
+export const TMDB_POSTER_PATH = `https://image.tmdb.org/t/p`;
diff --git a/apps/mobile/app/lib/utils.ts b/apps/mobile/app/lib/utils.ts
new file mode 100644
index 0000000..e57f980
--- /dev/null
+++ b/apps/mobile/app/lib/utils.ts
@@ -0,0 +1,6 @@
+import { ClassValue, clsx } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
diff --git a/apps/mobile/app/modal.tsx b/apps/mobile/app/modal.tsx
deleted file mode 100644
index 2d22e9a..0000000
--- a/apps/mobile/app/modal.tsx
+++ /dev/null
@@ -1,33 +0,0 @@
-import { StatusBar } from 'expo-status-bar';
-import { Platform, StyleSheet, View } from 'react-native';
-import { BoldText, RegularText } from '../components/Styled';
-
-export default function ModalScreen() {
- return (
-
- Modal
-
- Modal?!
-
- {/* Use a light status bar on iOS to account for the black space above the modal */}
-
-
- );
-}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- },
- title: {
- fontSize: 20,
- fontWeight: 'bold',
- },
- separator: {
- marginVertical: 30,
- height: 1,
- width: '80%',
- },
-});
diff --git a/apps/mobile/app/styles/global.css b/apps/mobile/app/styles/global.css
new file mode 100644
index 0000000..b5c61c9
--- /dev/null
+++ b/apps/mobile/app/styles/global.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
diff --git a/apps/mobile/babel.config.js b/apps/mobile/babel.config.js
index 7b6d299..bc70ad0 100644
--- a/apps/mobile/babel.config.js
+++ b/apps/mobile/babel.config.js
@@ -1,10 +1,14 @@
module.exports = function (api) {
api.cache(true);
return {
- presets: ['babel-preset-expo'],
- plugins: [
- // Required for expo-router
- 'expo-router/babel',
- ],
+ presets: [
+ ['babel-preset-expo', { jsxImportSource: 'nativewind' }],
+ 'nativewind/babel',
+ ],
+ plugins: [
+ // Required for expo-router
+ 'expo-router/babel',
+ 'react-native-reanimated/plugin',
+ ],
};
};
diff --git a/apps/mobile/components/Styled.tsx b/apps/mobile/components/Styled.tsx
deleted file mode 100644
index 8662625..0000000
--- a/apps/mobile/components/Styled.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import { Text } from 'react-native';
-
-export const RegularText = ({ style, children, ...rest }: Text['props']) => {
- return (
-
- {children}
-
- );
-};
-export const BoldText = ({ style, children, ...rest }: Text['props']) => {
- return (
-
- {children}
-
- );
-};
-export const SemiBoldText = ({ style, children, ...rest }: Text['props']) => {
- return (
-
- {children}
-
- );
-};
-export const MediumText = ({ style, children, ...rest }: Text['props']) => {
- return (
-
- {children}
-
- );
-};
-export const ExtraBoldText = ({ style, children, ...rest }: Text['props']) => {
- return (
-
- {children}
-
- );
-};
-export const LightText = ({ style, children, ...rest }: Text['props']) => {
- return (
-
- {children}
-
- );
-};
diff --git a/apps/mobile/components/TabBarIcon.tsx b/apps/mobile/components/TabBarIcon.tsx
deleted file mode 100644
index b1ff95f..0000000
--- a/apps/mobile/components/TabBarIcon.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import { FontAwesome } from '@expo/vector-icons';
-import Colors from '../constants/Colors';
-
-type Props = {
- focused?: boolean;
- color?: string;
-} & React.ComponentProps;
-
-export default function TabBarIcon({
- color = Colors.dark.shade300,
- focused,
- ...rest
-}: Props) {
- return (
-
- );
-}
diff --git a/apps/mobile/components/item/item.tsx b/apps/mobile/components/item/item.tsx
deleted file mode 100644
index f413cac..0000000
--- a/apps/mobile/components/item/item.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { globalStyles } from '../../styles/global';
-import { Image, Text, View } from 'react-native';
-import styles from './styles';
-import { BoldText, RegularText } from '../Styled';
-import { TMDB_POSTER_PATH } from '../../constants/General';
-
-export default function Item() {
- return (
-
-
-
-
- Hamilton
-
-
- Movie
-
-
-
- 2023
-
-
-
- );
-}
diff --git a/apps/mobile/components/item/styles.tsx b/apps/mobile/components/item/styles.tsx
deleted file mode 100644
index 7ce5fc2..0000000
--- a/apps/mobile/components/item/styles.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import Colors from '../../constants/Colors';
-import { StyleSheet } from 'react-native';
-
-const styles = StyleSheet.create({
- wrapper: {
- width: '100%',
- },
- imageWrapper: {
- borderRadius: 16,
- aspectRatio: 9 / 14,
- width: '100%',
- overflow: 'hidden',
- position: 'relative',
- marginBottom: 6,
- },
- image: {
- width: '100%',
- height: '100%',
- resizeMode: 'cover',
- },
- meta: {
- flexDirection: 'row',
- gap: 6,
- alignItems: 'center',
- },
- smallText: {
- fontSize: 12,
- },
-});
-
-export default styles;
diff --git a/apps/mobile/components/layout/screenLayout.tsx b/apps/mobile/components/layout/screenLayout.tsx
deleted file mode 100644
index b752aa2..0000000
--- a/apps/mobile/components/layout/screenLayout.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { View } from 'react-native';
-import { globalStyles } from '../../styles/global';
-import { styles } from './styles';
-import { BoldText, RegularText } from '../Styled';
-
-type Props = {
- title?: React.ReactNode | string;
- subtitle?: string;
- children?: React.ReactNode;
-};
-
-export default function ScreenLayout({ title, subtitle, children }: Props) {
- return (
-
- {typeof title === 'string' && (
- {title}
- )}
- {typeof title !== 'string' && title}
-
- {subtitle}
-
- {children}
-
- );
-}
diff --git a/apps/mobile/components/layout/styles.tsx b/apps/mobile/components/layout/styles.tsx
deleted file mode 100644
index 3fa7d38..0000000
--- a/apps/mobile/components/layout/styles.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Dimensions, StyleSheet } from 'react-native';
-
-export const styles = StyleSheet.create({
- container: {
- minHeight: Dimensions.get('window').height,
- },
- children: {
- paddingVertical: 12,
- },
-});
diff --git a/apps/mobile/constants/Colors.ts b/apps/mobile/constants/Colors.ts
deleted file mode 100644
index 8e7bb23..0000000
--- a/apps/mobile/constants/Colors.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-const tintColorLight = '#2f95dc';
-const tintColorDark = '#fff';
-
-export default {
- light: {
- text: '#000',
- background: '#fff',
- tint: tintColorLight,
- tabIconDefault: '#ccc',
- tabIconSelected: tintColorLight,
- },
- dark: {
- text: '#fff',
- background: '#000',
- tint: tintColorDark,
- tabIconDefault: '#ccc',
- tabIconSelected: tintColorDark,
- purple100: '#C082FF',
- purple300: '#8D44D6',
- purple400: '#7831BF',
- shade50: '#676790',
- shade200: '#3F3F60',
- shade300: '#32324F',
- shade700: '#131322',
- shade900: '#0A0A12',
- },
-};
diff --git a/apps/mobile/metro.config.js b/apps/mobile/metro.config.js
index 58823e1..594ecb5 100644
--- a/apps/mobile/metro.config.js
+++ b/apps/mobile/metro.config.js
@@ -1,9 +1,12 @@
const { withNxMetro } = require('@nx/expo');
const { getDefaultConfig } = require('@expo/metro-config');
const { mergeConfig } = require('metro-config');
+const { withNativeWind } = require('nativewind/metro');
const exclusionList = require('metro-config/src/defaults/exclusionList');
-const defaultConfig = getDefaultConfig(__dirname);
+const defaultConfig = getDefaultConfig(__dirname, {
+ isCSSEnabled: true,
+});
const { assetExts, sourceExts } = defaultConfig.resolver;
/**
@@ -18,14 +21,22 @@ const customConfig = {
},
resolver: {
assetExts: assetExts.filter((ext) => ext !== 'svg'),
- sourceExts: [...sourceExts, 'svg'],
+ sourceExts: [...sourceExts, 'svg', 'mjs'],
blockList: exclusionList([/^(?!.*node_modules).*\/dist\/.*/]),
// unstable_enableSymlinks: true,
// unstable_enablePackageExports: true,
},
};
-module.exports = withNxMetro(mergeConfig(defaultConfig, customConfig), {
+const nativeWindConfig = withNativeWind(
+ mergeConfig(defaultConfig, customConfig),
+ {
+ input: './app/styles/global.css',
+ configPath: './tailwind.config.ts',
+ },
+);
+
+const nxConfig = withNxMetro(nativeWindConfig, {
// Change this to true to see debugging info.
// Useful if you have issues resolving modules
debug: false,
@@ -34,3 +45,4 @@ module.exports = withNxMetro(mergeConfig(defaultConfig, customConfig), {
// Specify folders to watch, in addition to Nx defaults (workspace libraries and node_modules)
watchFolders: [],
});
+module.exports = nxConfig;
diff --git a/apps/mobile/package.json b/apps/mobile/package.json
index 65982df..a3e1069 100644
--- a/apps/mobile/package.json
+++ b/apps/mobile/package.json
@@ -12,8 +12,15 @@
"@expo/vector-icons": "^13.0.0",
"@nx/expo": "*",
"@react-navigation/native": "^6.1.9",
+ "@rnx-kit/metro-config": "*",
+ "@rnx-kit/metro-resolver-symlinks": "*",
"@testing-library/jest-native": "*",
"@testing-library/react-native": "*",
+ "@types/react": "*",
+ "class-variance-authority": "^0.7.0",
+ "clsx": "^2.1.0",
+ "eslint-plugin-react": "*",
+ "eslint-plugin-react-hooks": "*",
"expo": "*",
"expo-font": "^11.4.0",
"expo-linking": "^5.0.2",
@@ -22,26 +29,27 @@
"expo-status-bar": "*",
"expo-system-ui": "^2.6.0",
"expo-web-browser": "^12.5.0",
+ "jest": "*",
+ "jest-expo": "*",
+ "metro": "*",
"metro-config": "*",
+ "nativewind": "^4.0.23",
"pod-install": "*",
"react": "*",
"react-dom": "18.2.0",
"react-native": "*",
"react-native-gesture-handler": "^2.14.1",
+ "react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "^4.8.2",
"react-native-screens": "^3.29.0",
"react-native-svg": "*",
"react-native-svg-transformer": "*",
"react-native-web": "^0.19.10",
- "@rnx-kit/metro-config": "*",
- "@rnx-kit/metro-resolver-symlinks": "*",
- "@types/react": "*",
- "eslint-plugin-react": "*",
- "eslint-plugin-react-hooks": "*",
- "jest": "*",
- "jest-expo": "*",
"react-test-renderer": "*",
- "typescript": "*"
+ "tailwind-merge": "^2.2.1",
+ "tailwindcss": "3.3.2",
+ "typescript": "*",
+ "prettier-plugin-tailwindcss": "*"
},
"scripts": {
"eas-build-pre-install": "cd ../../ && node tools/scripts/eas-build-pre-install.mjs . apps/mobile && cp pnpm-lock.yaml apps/mobile",
@@ -62,13 +70,8 @@
"jest": "^29.4.1",
"jest-expo": "~49.0.0",
"pod-install": "^0.1.39",
+ "prettier-plugin-tailwindcss": "^0.5.11",
"react-test-renderer": "18.2.0",
"typescript": "~5.2.2"
- },
- "overrides": {
- "react-refresh": "~0.14.0"
- },
- "resolutions": {
- "react-refresh": "~0.14.0"
}
}
diff --git a/apps/mobile/project.json b/apps/mobile/project.json
index 8a2c070..696e181 100644
--- a/apps/mobile/project.json
+++ b/apps/mobile/project.json
@@ -8,7 +8,8 @@
"executor": "@nx/expo:start",
"dependsOn": ["ensure-symlink", "sync-deps"],
"options": {
- "port": 8081
+ "port": 8081,
+ "clear": true
}
},
"serve": {
diff --git a/apps/mobile/styles/global.tsx b/apps/mobile/styles/global.tsx
deleted file mode 100644
index d044512..0000000
--- a/apps/mobile/styles/global.tsx
+++ /dev/null
@@ -1,75 +0,0 @@
-import { StyleSheet } from 'react-native';
-import Colors from '../constants/Colors';
-
-export const globalStyles = StyleSheet.create({
- pageContainer: {
- flex: 1,
- backgroundColor: Colors.dark.shade900,
- paddingVertical: 48,
- },
- container: {
- padding: 24,
- },
- sectionTitle: {
- color: '#FFF',
- letterSpacing: -1.5,
- fontWeight: 'bold',
- fontSize: 28,
- },
- sectionSubtitle: {
- color: Colors.dark.shade200,
- fontSize: 14,
- },
- textWhite: {
- color: '#FFF',
- },
- flexRow: {
- flexDirection: 'row',
- },
- itemsCenter: {
- alignItems: 'center',
- },
- justifyCenter: {
- justifyContent: 'center',
- },
- input: {
- borderRadius: 24,
- paddingRight: 18,
- paddingVertical: 12,
- color: '#FFF',
- },
- border: {
- borderWidth: 1,
- borderColor: 'rgba(255,255,255,.1)',
- },
- roundedFull: {
- borderRadius: 34,
- },
- fOpenSansLight: {
- fontFamily: 'OpenSansLight',
- },
- fOpenSansBold: {
- fontFamily: 'OpenSansBold',
- },
- fOpenSansSemiBold: {
- fontFamily: 'OpenSansSemiBold',
- },
- fOpenSansMedium: {
- fontFamily: 'OpenSansMedium',
- },
- fOpenSansExtraBold: {
- fontFamily: 'OpenSansExtraBold',
- },
- fOpenSansRegular: {
- fontFamily: 'OpenSansRegular',
- },
- textMuted: {
- color: '#5F5F7A',
- },
- dotSeperator: {
- width: 4,
- height: 4,
- backgroundColor: '#5F5F7A',
- borderRadius: 50,
- },
-});
diff --git a/apps/mobile/tailwind.config.ts b/apps/mobile/tailwind.config.ts
new file mode 100644
index 0000000..d75a07b
--- /dev/null
+++ b/apps/mobile/tailwind.config.ts
@@ -0,0 +1,27 @@
+// @ts-expect-error - no types
+import nativewind from 'nativewind/preset';
+import type { Config } from 'tailwindcss';
+import colors from './app/constants/Colors';
+
+export default {
+ content: ['./app/**/*.{js,jsx,ts,tsx}'],
+ presets: [
+ nativewind,
+ {
+ theme: {
+ extend: {
+ colors,
+ fontFamily: {
+ sans: ['OpenSansRegular'],
+ thin: ['OpenSansLight'],
+ normal: ['OpenSansRegular'],
+ medium: ['OpenSansMedium'],
+ semibold: ['OpenSansSemiBold'],
+ bold: ['OpenSansBold'],
+ extrabold: ['OpenSansExtra'],
+ },
+ },
+ },
+ },
+ ],
+} satisfies Config;
diff --git a/apps/mobile/tsconfig.app.json b/apps/mobile/tsconfig.app.json
index 393d226..37e06a2 100644
--- a/apps/mobile/tsconfig.app.json
+++ b/apps/mobile/tsconfig.app.json
@@ -1,8 +1,9 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
+ "composite": true,
"outDir": "../../dist/out-tsc",
- "types": ["node"]
+ "types": ["node"],
},
"files": ["../../node_modules/@nx/expo/typings/svg.d.ts"],
"exclude": [
@@ -11,5 +12,11 @@
"**/*.spec.tsx",
"test-setup.ts"
],
- "include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"]
+ "include": [
+ "**/*.ts",
+ "**/*.tsx",
+ "**/*.js",
+ "**/*.jsx",
+ "tailwind.config.ts"
+ ]
}
diff --git a/apps/mobile/tsconfig.json b/apps/mobile/tsconfig.json
index 0c82aa7..99e2d75 100644
--- a/apps/mobile/tsconfig.json
+++ b/apps/mobile/tsconfig.json
@@ -3,27 +3,28 @@
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
- "lib": [
- "dom",
- "esnext"
- ],
+ "lib": ["dom", "esnext"],
"moduleResolution": "node",
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
- "declaration": true
+ "declaration": true,
+ "allowJs": true,
+ "baseUrl": "./",
+ "paths": {
+ "@/*": [
+ "./app/*"
+ ],
+ }
},
"files": [],
- "include": [
- ".expo/types/**/*.ts",
- "expo-env.d.ts"
- ],
+ "include": [".expo/types/**/*.ts", "expo-env.d.ts"],
"references": [
{
- "path": "./tsconfig.app.json"
+ "path": "./tsconfig.app.json",
},
{
- "path": "./tsconfig.spec.json"
- }
- ]
+ "path": "./tsconfig.spec.json",
+ },
+ ],
}
diff --git a/apps/mobile/tsconfig.spec.json b/apps/mobile/tsconfig.spec.json
index 26ef046..0e85b1d 100644
--- a/apps/mobile/tsconfig.spec.json
+++ b/apps/mobile/tsconfig.spec.json
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
+ "composite": true,
"outDir": "../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
diff --git a/package.json b/package.json
index dfda3c8..6c98728 100644
--- a/package.json
+++ b/package.json
@@ -60,5 +60,16 @@
"react-native-svg-transformer": "1.3.0",
"react-native-web": "~0.19.9",
"tslib": "^2.3.0"
+ },
+ "pnpm": {
+ "patchedDependencies": {
+ "nativewind@4.0.23": "patches/nativewind@4.0.23.patch"
+ }
+ },
+ "overrides": {
+ "react-refresh": "~0.14.0"
+ },
+ "resolutions": {
+ "react-refresh": "~0.14.0"
}
}
diff --git a/patches/nativewind@4.0.23.patch b/patches/nativewind@4.0.23.patch
new file mode 100644
index 0000000..788eeb4
--- /dev/null
+++ b/patches/nativewind@4.0.23.patch
@@ -0,0 +1,13 @@
+diff --git a/dist/metro/transformer.js b/dist/metro/transformer.js
+index 1bda43b116d02834db01a42e64dd302e3d3fe785..8ff7f8a324cd9a8531df915a704d604828959e78 100644
+--- a/dist/metro/transformer.js
++++ b/dist/metro/transformer.js
+@@ -16,7 +16,7 @@ new globalThis.WebSocket(\`\${url}:${config.nativewind.fastRefreshPort}\`).addEv
+ StyleSheet.registerCompiled(JSON.parse('${config.nativewind.parsedOutput}'));`, "utf8"), options);
+ }
+ else if (options.platform === "web") {
+- return metro_transform_worker_1.default.transform(config, projectRoot, filename, Buffer.from(`require('${config.nativewind.outputPath}');`, "utf8"), options);
++ return metro_transform_worker_1.default.transform(config, projectRoot, filename, Buffer.from(`require('${config.nativewind.outputPath.replace(/\\/g, '\\\\')}');`, "utf8"), options);
+ }
+ else {
+ data = Buffer.from(config.nativewind.rawOutput, "utf8");
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f58bc65..63d3266 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,6 +4,14 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ react-refresh: ~0.14.0
+
+patchedDependencies:
+ nativewind@4.0.23:
+ hash: 42qwizvrnoqgalbele35lpnaqi
+ path: patches/nativewind@4.0.23.patch
+
importers:
.:
@@ -13,7 +21,7 @@ importers:
version: 0.10.7
expo:
specifier: 49.0.16
- version: 49.0.16(@babel/core@7.23.7)
+ version: 49.0.16(@babel/core@7.23.9)
expo-splash-screen:
specifier: ~0.20.5
version: 0.20.5(expo-modules-autolinking@1.10.2)(expo@49.0.16)
@@ -28,7 +36,7 @@ importers:
version: 18.2.0(react@18.2.0)
react-native:
specifier: 0.72.6
- version: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ version: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-native-svg:
specifier: 13.9.0
version: 13.9.0(react-native@0.72.6)(react@18.2.0)
@@ -50,25 +58,25 @@ importers:
version: 0.10.16(expo-modules-autolinking@1.10.2)
'@nx/detox':
specifier: 17.2.8
- version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
'@nx/expo':
specifier: 17.2.8
- version: 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ version: 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
'@nx/jest':
specifier: 17.2.8
- version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
+ version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
'@nx/js':
specifier: 17.2.8
- version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
'@nx/workspace':
specifier: 17.2.8
- version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
'@swc-node/register':
specifier: ~1.6.8
- version: 1.6.8(@swc/core@1.3.105)(typescript@5.2.2)
+ version: 1.6.8(@swc/core@1.3.107)(typescript@5.2.2)
'@swc/core':
specifier: ~1.3.102
- version: 1.3.105
+ version: 1.3.107
'@testing-library/jest-dom':
specifier: 5.16.5
version: 5.16.5
@@ -95,10 +103,10 @@ importers:
version: 6.19.1(eslint@8.56.0)(typescript@5.2.2)
babel-jest:
specifier: ^29.4.1
- version: 29.7.0(@babel/core@7.23.7)
+ version: 29.7.0(@babel/core@7.23.9)
babel-preset-expo:
specifier: ~9.5.2
- version: 9.5.2(@babel/core@7.23.7)
+ version: 9.5.2(@babel/core@7.23.9)
detox:
specifier: ^20.11.1
version: 20.17.0(jest-environment-jsdom@29.7.0)(jest@29.7.0)
@@ -143,7 +151,7 @@ importers:
version: 29.7.0
jest-expo:
specifier: ~49.0.0
- version: 49.0.0(@babel/core@7.23.7)(jest@29.7.0)(react@18.2.0)
+ version: 49.0.0(@babel/core@7.23.9)(jest@29.7.0)(react@18.2.0)
metro:
specifier: 0.76.8
version: 0.76.8
@@ -152,7 +160,7 @@ importers:
version: 0.76.8
nx:
specifier: 17.2.8
- version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ version: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
prettier:
specifier: ^3.0.3
version: 3.2.4
@@ -161,10 +169,10 @@ importers:
version: 18.2.0(react@18.2.0)
ts-jest:
specifier: ^29.1.0
- version: 29.1.2(@babel/core@7.23.7)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.2.2)
+ version: 29.1.2(@babel/core@7.23.9)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.2.2)
ts-node:
specifier: 10.9.1
- version: 10.9.1(@swc/core@1.3.105)(@types/node@18.16.9)(typescript@5.2.2)
+ version: 10.9.1(@swc/core@1.3.107)(@types/node@18.16.9)(typescript@5.2.2)
typescript:
specifier: ~5.2.2
version: 5.2.2
@@ -173,7 +181,7 @@ importers:
dependencies:
'@babel/core':
specifier: '*'
- version: 7.23.7
+ version: 7.23.9
'@expo/metro-config':
specifier: '*'
version: 0.10.7
@@ -182,7 +190,7 @@ importers:
version: 13.0.0
'@nx/expo':
specifier: '*'
- version: 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ version: 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
'@react-navigation/native':
specifier: ^6.1.9
version: 6.1.9(react-native@0.72.6)(react@18.2.0)
@@ -201,6 +209,12 @@ importers:
'@types/react':
specifier: '*'
version: 18.2.14
+ class-variance-authority:
+ specifier: ^0.7.0
+ version: 0.7.0
+ clsx:
+ specifier: ^2.1.0
+ version: 2.1.0
eslint-plugin-react:
specifier: '*'
version: 7.32.2(eslint@8.56.0)
@@ -209,7 +223,7 @@ importers:
version: 4.6.0(eslint@8.56.0)
expo:
specifier: '*'
- version: 49.0.16(@babel/core@7.23.7)
+ version: 49.0.16(@babel/core@7.23.9)
expo-font:
specifier: ^11.4.0
version: 11.10.2(expo@49.0.16)
@@ -218,7 +232,7 @@ importers:
version: 5.0.2(expo@49.0.16)
expo-router:
specifier: ^2.0.14
- version: 2.0.14(@testing-library/jest-native@5.4.3)(expo-constants@15.4.5)(expo-linking@5.0.2)(expo-modules-autolinking@1.10.2)(expo-status-bar@1.6.0)(expo@49.0.16)(metro@0.76.8)(react-dom@18.2.0)(react-native-gesture-handler@2.14.1)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.72.6)(react@18.2.0)
+ version: 2.0.14(@testing-library/jest-native@5.4.3)(expo-constants@15.4.5)(expo-linking@5.0.2)(expo-modules-autolinking@1.10.2)(expo-status-bar@1.6.0)(expo@49.0.16)(metro@0.76.8)(react-dom@18.2.0)(react-native-gesture-handler@2.14.1)(react-native-reanimated@3.3.0)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.72.6)(react@18.2.0)
expo-splash-screen:
specifier: ~0.20.5
version: 0.20.5(expo-modules-autolinking@1.10.2)(expo@49.0.16)
@@ -230,16 +244,22 @@ importers:
version: 2.9.3(expo@49.0.16)
expo-web-browser:
specifier: ^12.5.0
- version: 12.8.1(expo@49.0.16)
+ version: 12.8.2(expo@49.0.16)
jest:
specifier: '*'
version: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1)
jest-expo:
specifier: '*'
- version: 49.0.0(@babel/core@7.23.7)(jest@29.7.0)(react@18.2.0)
+ version: 49.0.0(@babel/core@7.23.9)(jest@29.7.0)(react@18.2.0)
+ metro:
+ specifier: '*'
+ version: 0.76.8
metro-config:
specifier: '*'
- version: 0.80.4
+ version: 0.80.5
+ nativewind:
+ specifier: ^4.0.23
+ version: 4.0.23(patch_hash=42qwizvrnoqgalbele35lpnaqi)(@babel/core@7.23.9)(react-native-reanimated@3.3.0)(react-native-safe-area-context@4.8.2)(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tailwindcss@3.3.2)
pod-install:
specifier: '*'
version: 0.2.0
@@ -251,10 +271,13 @@ importers:
version: 18.2.0(react@18.2.0)
react-native:
specifier: '*'
- version: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ version: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-native-gesture-handler:
specifier: ^2.14.1
version: 2.14.1(react-native@0.72.6)(react@18.2.0)
+ react-native-reanimated:
+ specifier: ~3.3.0
+ version: 3.3.0(@babel/core@7.23.9)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.23.3)(@babel/plugin-transform-shorthand-properties@7.23.3)(@babel/plugin-transform-template-literals@7.23.3)(react-native@0.72.6)(react@18.2.0)
react-native-safe-area-context:
specifier: ^4.8.2
version: 4.8.2(react-native@0.72.6)(react@18.2.0)
@@ -273,9 +296,19 @@ importers:
react-test-renderer:
specifier: '*'
version: 18.2.0(react@18.2.0)
+ tailwind-merge:
+ specifier: ^2.2.1
+ version: 2.2.1
+ tailwindcss:
+ specifier: 3.3.2
+ version: 3.3.2(ts-node@10.9.1)
typescript:
specifier: '*'
version: 5.2.2
+ devDependencies:
+ prettier-plugin-tailwindcss:
+ specifier: ^0.5.11
+ version: 0.5.11(prettier@3.2.4)
packages:
@@ -293,8 +326,13 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- /@adobe/css-tools@4.3.2:
- resolution: {integrity: sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==}
+ /@adobe/css-tools@4.3.3:
+ resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
+
+ /@alloc/quick-lru@5.2.0:
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
+ engines: {node: '>=10'}
+ dev: false
/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
@@ -325,20 +363,20 @@ packages:
resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
- /@babel/core@7.23.7:
- resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
+ /@babel/core@7.23.9:
+ resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.23.5
'@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
- '@babel/helpers': 7.23.8
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 2.0.0
debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -351,7 +389,7 @@ packages:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.22
jsesc: 2.5.2
@@ -360,13 +398,13 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-compilation-targets@7.23.6:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
@@ -374,58 +412,44 @@ packages:
dependencies:
'@babel/compat-data': 7.23.5
'@babel/helper-validator-option': 7.23.5
- browserslist: 4.22.2
+ browserslist: 4.22.3
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
+ /@babel/helper-create-class-features-plugin@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.9):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
- /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4(supports-color@8.1.1)
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.7):
+ /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.9):
resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
@@ -442,34 +466,34 @@ packages:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -480,30 +504,30 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -512,19 +536,19 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-string-parser@7.23.4:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
@@ -543,16 +567,16 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
- /@babel/helpers@7.23.8:
- resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==}
+ /@babel/helpers@7.23.9:
+ resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
@@ -564,122 +588,122 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser@7.23.6:
- resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
+ /@babel/parser@7.23.9:
+ resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.9):
resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.7):
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.9):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-proposal-decorators@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-b1s5JyeMvqj7d9m9KhJNHKc18gEJiSyVzVX3bwbiPalQBQpuvfPh6lA9F7Kk/dWH0TIiXRpB9yicwijY6buPng==}
+ /@babel/plugin-proposal-decorators@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.7):
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.9):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.7):
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.9):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
@@ -687,982 +711,992 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.7):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.9):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.9):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.9):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==}
+ /@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
- /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7):
+ /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.9):
resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
+ '@babel/template': 7.23.9
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7):
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.9):
resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
+ /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
- /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-object-assign@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
- /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9)
- /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
- '@babel/types': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
- /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-runtime@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==}
+ /@babel/plugin-transform-runtime@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
- babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.23.9)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7):
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.9):
resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- /@babel/preset-env@7.23.8(@babel/core@7.23.7):
- resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==}
+ /@babel/preset-env@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
- babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.9)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.9)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.23.9)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.9)
core-js-compat: 3.35.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /@babel/preset-flow@7.23.3(@babel/core@7.23.7):
+ /@babel/preset-flow@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.9)
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.9):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
esutils: 2.0.3
- /@babel/preset-react@7.23.3(@babel/core@7.23.7):
+ /@babel/preset-react@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.9)
- /@babel/preset-typescript@7.23.3(@babel/core@7.23.7):
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.9)
- /@babel/register@7.23.7(@babel/core@7.23.7):
+ /@babel/register@7.23.7(@babel/core@7.23.9):
resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -1672,22 +1706,22 @@ packages:
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime@7.23.8:
- resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==}
+ /@babel/runtime@7.23.9:
+ resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
- /@babel/template@7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ /@babel/template@7.23.9:
+ resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
- /@babel/traverse@7.23.7:
- resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
+ /@babel/traverse@7.23.9:
+ resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
@@ -1696,15 +1730,15 @@ packages:
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.23.6:
- resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
+ /@babel/types@7.23.9:
+ resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.23.4
@@ -1716,7 +1750,7 @@ packages:
peerDependencies:
react-native: '*'
dependencies:
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/@bcoe/v8-coverage@0.2.3:
@@ -1727,7 +1761,7 @@ packages:
peerDependencies:
expo: ^49
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
expo-build-properties: 0.8.3(expo@49.0.16)
dev: true
@@ -1794,7 +1828,7 @@ packages:
resolution: {integrity: sha512-IIZ9mYYHpNkK9XJAWLPtwTwZmasDq/NJsHLPjLtw5la4ANjWWwKYUcl3XKBECKovSDn9WHEQHGsBz6cyKS88Mg==}
hasBin: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@expo/code-signing-certificates': 0.0.5
'@expo/config': 8.1.2
'@expo/config-plugins': 7.2.5
@@ -1868,7 +1902,7 @@ packages:
resolution: {integrity: sha512-EwgnRN5AMElg0JJjFLJTPk5hYkVXxnNMLIvZBiTfGoCq+rDw6u7Mg5l2Bbm/geSHOoplaHyPZ/Wr23FAuZWehA==}
hasBin: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@expo/code-signing-certificates': 0.0.5
'@expo/config': 8.1.2
'@expo/config-plugins': 7.2.5
@@ -2206,7 +2240,7 @@ packages:
dependencies:
'@bacons/react-views': 1.1.3(react-native@0.72.6)
qs: 6.11.2
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/@expo/multipart-body-parser@1.1.0:
@@ -2668,7 +2702,7 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.22
babel-plugin-istanbul: 6.1.1
@@ -2773,7 +2807,7 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.16.0
+ fastq: 1.17.0
/@npmcli/fs@1.1.1:
resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
@@ -2789,10 +2823,10 @@ packages:
mkdirp: 1.0.4
rimraf: 3.0.2
- /@nrwl/detox@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0):
+ /@nrwl/detox@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-e7P/W1MIhIBjz8IyLunF6cfnhkSCpIVo5dWVwVN0Fy3xsVtveUIUHKVrZZYw5t9fwD1AGiJPfFWzxUAaXq5wtg==}
dependencies:
- '@nx/detox': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ '@nx/detox': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -2819,10 +2853,10 @@ packages:
transitivePeerDependencies:
- nx
- /@nrwl/expo@17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0):
+ /@nrwl/expo@17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-hXS4UVsW8Z+Y1druGUZxbmXcvR31lW7AcN+CaLe4Lko++4mGFC6KrJ1FjUiKHsGhdo5sNIuv29pAu9S++uRAjw==}
dependencies:
- '@nx/expo': 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ '@nx/expo': 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
transitivePeerDependencies:
- '@babel/traverse'
- '@expo/cli'
@@ -2860,10 +2894,10 @@ packages:
- webpack
- webpack-cli
- /@nrwl/jest@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2):
+ /@nrwl/jest@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2):
resolution: {integrity: sha512-suyAm+5dj03ZevZW0fEZJSn+au1k6+OGPo4LKQ9Y4u/QJW52d2k0nOzrKu79CwkdKP5PFhjnvPP4Oo93RbNNnA==}
dependencies:
- '@nx/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
+ '@nx/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -2879,10 +2913,10 @@ packages:
- typescript
- verdaccio
- /@nrwl/js@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
+ /@nrwl/js@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
resolution: {integrity: sha512-ZfTGNSmSBqvEfP8NOfOHcnqKwhXsfqBrN4IhthQR02sqTA9GkrjSfSUtcGXY01fUitsNUDOn6RZjgX6UysDCXg==}
dependencies:
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -2895,10 +2929,10 @@ packages:
- typescript
- verdaccio
- /@nrwl/react@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.89.0):
+ /@nrwl/react@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-fj5Qf3B3Nok8T8lF9DpYEeP7DWqP7KF/jBO6h4eniTifh5BRjEq5PaRIhMiVMdepqQiWMPd2tsZyf9nx1qzY6w==}
dependencies:
- '@nx/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.89.0)
+ '@nx/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.90.0)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -2914,21 +2948,21 @@ packages:
- verdaccio
- webpack
- /@nrwl/tao@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105):
+ /@nrwl/tao@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107):
resolution: {integrity: sha512-Qpk5YKeJ+LppPL/wtoDyNGbJs2MsTi6qyX/RdRrEc8lc4bk6Cw3Oul1qTXCI6jT0KzTz+dZtd0zYD/G7okkzvg==}
hasBin: true
dependencies:
- nx: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ nx: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
tslib: 2.6.2
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
- /@nrwl/web@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
+ /@nrwl/web@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
resolution: {integrity: sha512-oBiuSQ7Q6hOXHuZW5Gf8m0gcrLTV78jxhSjmhC5F6yzgvBvnfMpCdrJn7W1G+O+kEg3byko8v+Rz39tfc8YPjg==}
dependencies:
- '@nx/web': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/web': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -2941,10 +2975,10 @@ packages:
- typescript
- verdaccio
- /@nrwl/webpack@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
+ /@nrwl/webpack@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
resolution: {integrity: sha512-HcwdfjXVz1NrZZnx1Fv48vleOTlsDAgTRHnQL02xYWT6ElhuKRQsqJGvDduQIFAp4KrnEEhEKEx6oDAEZKUkDg==}
dependencies:
- '@nx/webpack': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/webpack': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
transitivePeerDependencies:
- '@babel/traverse'
- '@parcel/css'
@@ -2972,26 +3006,26 @@ packages:
- vue-template-compiler
- webpack-cli
- /@nrwl/workspace@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105):
+ /@nrwl/workspace@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107):
resolution: {integrity: sha512-RiTDTuzdueZ+++kNQAENHdHbYToOhzO56XWxKOGoMEUSpcmbKRAFReFBzNqD91Fnv562vkW1VNRIb6Ey7X1YHQ==}
dependencies:
- '@nx/workspace': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ '@nx/workspace': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
- /@nx/detox@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0):
+ /@nx/detox@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-u3WYGXpSohS0Ak6MxpOJOy9XSOsfK6g9oxNLCj0iLoi6JpaNYIkrNohanKaaj8ZqFQ10QJFN0ARcuKvb5S/yYQ==}
peerDependencies:
detox: ^20.9.0
dependencies:
- '@nrwl/detox': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ '@nrwl/detox': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
- '@nx/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
- '@nx/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.89.0)
+ '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
+ '@nx/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.90.0)
detox: 20.17.0(jest-environment-jsdom@29.7.0)(jest@29.7.0)
tslib: 2.6.2
transitivePeerDependencies:
@@ -3021,12 +3055,12 @@ packages:
ejs: 3.1.9
enquirer: 2.3.6
ignore: 5.3.0
- nx: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ nx: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
semver: 7.5.3
tmp: 0.2.1
tslib: 2.6.2
- /@nx/eslint@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8):
+ /@nx/eslint@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8):
resolution: {integrity: sha512-P6s85cIK7LYHixCJFZ+tLCPDxeOt9m2bQQOLxBCLEy5mqaGmjMHzWkLaoQBueCSntE6PSao0MMA+1TeeZjOoDw==}
peerDependencies:
eslint: ^8.0.0
@@ -3038,8 +3072,8 @@ packages:
optional: true
dependencies:
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
- '@nx/linter': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/linter': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
eslint: 8.56.0
tslib: 2.6.2
typescript: 5.2.2
@@ -3054,7 +3088,7 @@ packages:
- supports-color
- verdaccio
- /@nx/expo@17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0):
+ /@nx/expo@17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-DLEnt49O+ayhSFepek7EP/AHIA0LokwhWtUTbxVRJMEDgIEIpjfJRj1FAIsSwwL0NqJmcEF6Gr1qSO69aFCkJg==}
peerDependencies:
'@expo/cli': '>= 0.10.0'
@@ -3062,18 +3096,18 @@ packages:
expo: '>= 49.0.0'
dependencies:
'@expo/cli': 0.10.16(expo-modules-autolinking@1.10.2)
- '@nrwl/expo': 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
- '@nx/detox': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.89.0)
+ '@nrwl/expo': 17.2.8(@expo/cli@0.10.16)(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eas-cli@5.2.0)(eslint@8.56.0)(expo@49.0.16)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
+ '@nx/detox': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(detox@20.17.0)(eslint@8.56.0)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)(webpack@5.90.0)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
- '@nx/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
- '@nx/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.89.0)
- '@nx/webpack': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
+ '@nx/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.90.0)
+ '@nx/webpack': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
chalk: 4.1.2
eas-cli: 5.2.0(expo-modules-autolinking@1.10.2)
enhanced-resolve: 5.15.0
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
fs-extra: 11.2.0
metro-config: 0.76.8
metro-resolver: 0.76.8
@@ -3115,14 +3149,14 @@ packages:
- webpack
- webpack-cli
- /@nx/jest@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2):
+ /@nx/jest@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2):
resolution: {integrity: sha512-FnwwURXmG+uv5ELHjHd9uVbUioCPjefAOtENcasLJMs2WYeu3zePsru5B8GO9BBM5g2eTmw10Y5f0riAikZjcw==}
dependencies:
'@jest/reporters': 29.7.0
'@jest/test-result': 29.7.0
- '@nrwl/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
+ '@nrwl/jest': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(ts-node@10.9.1)(typescript@5.2.2)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2)
chalk: 4.1.2
identity-obj-proxy: 3.0.0
@@ -3146,7 +3180,7 @@ packages:
- typescript
- verdaccio
- /@nx/js@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
+ /@nx/js@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
resolution: {integrity: sha512-M91tw9tfSnkoC8pZaC9wNxrgaFU4MeQcgdT08ievaroo77kH4RheySsU1uNc0J58Jk4X4315wu/X7Bf/35m0Mw==}
peerDependencies:
verdaccio: ^5.0.4
@@ -3154,20 +3188,20 @@ packages:
verdaccio:
optional: true
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-proposal-decorators': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-runtime': 7.23.7(@babel/core@7.23.7)
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
- '@babel/runtime': 7.23.8
- '@nrwl/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@babel/core': 7.23.9
+ '@babel/plugin-proposal-decorators': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-runtime': 7.23.9(@babel/core@7.23.9)
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/runtime': 7.23.9
+ '@nrwl/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/workspace': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ '@nx/workspace': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2)
- babel-plugin-const-enum: 1.2.0(@babel/core@7.23.7)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.23.9)
babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.23.7)
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.23.9)
chalk: 4.1.2
columnify: 1.6.0
detect-port: 1.5.1
@@ -3181,7 +3215,7 @@ packages:
ora: 5.3.0
semver: 7.5.3
source-map-support: 0.5.19
- ts-node: 10.9.1(@swc/core@1.3.105)(@types/node@18.16.9)(typescript@5.2.2)
+ ts-node: 10.9.1(@swc/core@1.3.107)(@types/node@18.16.9)(typescript@5.2.2)
tsconfig-paths: 4.2.0
tslib: 2.6.2
transitivePeerDependencies:
@@ -3195,10 +3229,10 @@ packages:
- supports-color
- typescript
- /@nx/linter@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8):
+ /@nx/linter@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8):
resolution: {integrity: sha512-dwqE742TIw1+/djzlikKakIfComq8nFnhupWjvl7KrU9r8ytcKyQbxHw7KGMUT9HAEG4xSNuwiaELr/8w4MM2Q==}
dependencies:
- '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
+ '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -3292,18 +3326,18 @@ packages:
requiresBuild: true
optional: true
- /@nx/react@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.89.0):
+ /@nx/react@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-iJcpKi+Bzi9JZtgZmhQ2QWkt3PxOppYVah/EV9B6m9wOFhNI7IQYOp4NY8BruGZYRhkSsz59ZWZVu9iJSSrayg==}
dependencies:
- '@nrwl/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.89.0)
+ '@nrwl/react': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)(typescript@5.2.2)(webpack@5.90.0)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
- '@nx/web': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/eslint': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(eslint@8.56.0)(nx@17.2.8)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/web': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
'@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2)
'@svgr/webpack': 8.1.0(typescript@5.2.2)
chalk: 4.1.2
- file-loader: 6.2.0(webpack@5.89.0)
+ file-loader: 6.2.0(webpack@5.90.0)
minimatch: 3.0.5
tslib: 2.6.2
transitivePeerDependencies:
@@ -3321,12 +3355,12 @@ packages:
- verdaccio
- webpack
- /@nx/web@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
+ /@nx/web@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
resolution: {integrity: sha512-ovPvFVJOiB/ZmOxnCOOyT+ibbdgazXjpa4506hLJxRohDZQw/6jwbCWkTBy/ch6Y8NSN6uNUpB5XUdscfrp52A==}
dependencies:
- '@nrwl/web': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nrwl/web': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
chalk: 4.1.2
detect-port: 1.5.1
http-server: 14.1.1
@@ -3343,45 +3377,45 @@ packages:
- typescript
- verdaccio
- /@nx/webpack@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
+ /@nx/webpack@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2):
resolution: {integrity: sha512-Gud9Z+VO0dlLpVEJLfPxkEV5wG+ebZ1mv0S0cfTBdD24Fj4MAs0W8QWhRQBtLd2SayU9KMfJr+8gJjkNT6D3Kw==}
dependencies:
- '@babel/core': 7.23.7
- '@nrwl/webpack': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@babel/core': 7.23.9
+ '@nrwl/webpack': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
'@nx/devkit': 17.2.8(nx@17.2.8)
- '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
+ '@nx/js': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)(@types/node@18.16.9)(nx@17.2.8)(typescript@5.2.2)
autoprefixer: 10.4.17(postcss@8.4.33)
- babel-loader: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0)
- browserslist: 4.22.2
+ babel-loader: 9.1.3(@babel/core@7.23.9)(webpack@5.90.0)
+ browserslist: 4.22.3
chalk: 4.1.2
- copy-webpack-plugin: 10.2.4(webpack@5.89.0)
- css-loader: 6.9.1(webpack@5.89.0)
- css-minimizer-webpack-plugin: 5.0.1(webpack@5.89.0)
- fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.2.2)(webpack@5.89.0)
+ copy-webpack-plugin: 10.2.4(webpack@5.90.0)
+ css-loader: 6.9.1(webpack@5.90.0)
+ css-minimizer-webpack-plugin: 5.0.1(webpack@5.90.0)
+ fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.2.2)(webpack@5.90.0)
less: 4.1.3
- less-loader: 11.1.0(less@4.1.3)(webpack@5.89.0)
- license-webpack-plugin: 4.0.2(webpack@5.89.0)
+ less-loader: 11.1.0(less@4.1.3)(webpack@5.90.0)
+ license-webpack-plugin: 4.0.2(webpack@5.90.0)
loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7(webpack@5.89.0)
+ mini-css-extract-plugin: 2.4.7(webpack@5.90.0)
parse5: 4.0.0
postcss: 8.4.33
postcss-import: 14.1.0(postcss@8.4.33)
- postcss-loader: 6.2.1(postcss@8.4.33)(webpack@5.89.0)
+ postcss-loader: 6.2.1(postcss@8.4.33)(webpack@5.90.0)
rxjs: 7.8.1
sass: 1.70.0
- sass-loader: 12.6.0(sass@1.70.0)(webpack@5.89.0)
- source-map-loader: 3.0.2(webpack@5.89.0)
- style-loader: 3.3.4(webpack@5.89.0)
+ sass-loader: 12.6.0(sass@1.70.0)(webpack@5.90.0)
+ source-map-loader: 3.0.2(webpack@5.90.0)
+ style-loader: 3.3.4(webpack@5.90.0)
stylus: 0.59.0
- stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.89.0)
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.105)(webpack@5.89.0)
- ts-loader: 9.5.1(typescript@5.2.2)(webpack@5.89.0)
+ stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.90.0)
+ terser-webpack-plugin: 5.3.10(@swc/core@1.3.107)(webpack@5.90.0)
+ ts-loader: 9.5.1(typescript@5.2.2)(webpack@5.90.0)
tsconfig-paths-webpack-plugin: 4.0.0
tslib: 2.6.2
- webpack: 5.89.0(@swc/core@1.3.105)
- webpack-dev-server: 4.15.1(webpack@5.89.0)
+ webpack: 5.90.0(@swc/core@1.3.107)
+ webpack-dev-server: 4.15.1(webpack@5.90.0)
webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0(webpack@5.89.0)
+ webpack-subresource-integrity: 5.1.0(webpack@5.90.0)
transitivePeerDependencies:
- '@babel/traverse'
- '@parcel/css'
@@ -3409,14 +3443,14 @@ packages:
- vue-template-compiler
- webpack-cli
- /@nx/workspace@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105):
+ /@nx/workspace@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107):
resolution: {integrity: sha512-QCriI4CFCuG+0WTbpu3fHljVR1x6bjNSrbq8nqu8Z/3y+si2/O+7lVNSTkQNr1X2eBPqtIX74APS7ExG8c4vog==}
dependencies:
- '@nrwl/workspace': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ '@nrwl/workspace': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
'@nx/devkit': 17.2.8(nx@17.2.8)
chalk: 4.1.2
enquirer: 2.3.6
- nx: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
+ nx: 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
tslib: 2.6.2
yargs-parser: 21.1.1
transitivePeerDependencies:
@@ -3499,7 +3533,7 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
react: 18.2.0
dev: false
@@ -3508,7 +3542,7 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
react: 18.2.0
dev: false
@@ -3600,7 +3634,7 @@ packages:
transitivePeerDependencies:
- encoding
- /@react-native-community/cli-plugin-metro@11.3.7(@babel/core@7.23.7):
+ /@react-native-community/cli-plugin-metro@11.3.7(@babel/core@7.23.9):
resolution: {integrity: sha512-0WhgoBVGF1f9jXcuagQmtxpwpfP+2LbLZH4qMyo6OtYLWLG13n2uRep+8tdGzfNzl1bIuUTeE9yZSAdnf9LfYQ==}
dependencies:
'@react-native-community/cli-server-api': 11.3.7
@@ -3610,7 +3644,7 @@ packages:
metro: 0.76.8
metro-config: 0.76.8
metro-core: 0.76.8
- metro-react-native-babel-transformer: 0.76.8(@babel/core@7.23.7)
+ metro-react-native-babel-transformer: 0.76.8(@babel/core@7.23.9)
metro-resolver: 0.76.8
metro-runtime: 0.76.8
readline: 1.3.0
@@ -3659,7 +3693,7 @@ packages:
dependencies:
joi: 17.12.0
- /@react-native-community/cli@11.3.7(@babel/core@7.23.7):
+ /@react-native-community/cli@11.3.7(@babel/core@7.23.9):
resolution: {integrity: sha512-Ou8eDlF+yh2rzXeCTpMPYJ2fuqsusNOhmpYPYNQJQ2h6PvaF30kPomflgRILems+EBBuggRtcT+I+1YH4o/q6w==}
engines: {node: '>=16'}
hasBin: true
@@ -3669,7 +3703,7 @@ packages:
'@react-native-community/cli-debugger-ui': 11.3.7
'@react-native-community/cli-doctor': 11.3.7
'@react-native-community/cli-hermes': 11.3.7
- '@react-native-community/cli-plugin-metro': 11.3.7(@babel/core@7.23.7)
+ '@react-native-community/cli-plugin-metro': 11.3.7(@babel/core@7.23.9)
'@react-native-community/cli-server-api': 11.3.7
'@react-native-community/cli-tools': 11.3.7
'@react-native-community/cli-types': 11.3.7
@@ -3691,17 +3725,17 @@ packages:
/@react-native/assets-registry@0.72.0:
resolution: {integrity: sha512-Im93xRJuHHxb1wniGhBMsxLwcfzdYreSZVQGDoMJgkd6+Iky61LInGEHnQCTN0fKNYF1Dvcofb4uMmE1RQHXHQ==}
- /@react-native/codegen@0.72.8(@babel/preset-env@7.23.8):
+ /@react-native/codegen@0.72.8(@babel/preset-env@7.23.9):
resolution: {integrity: sha512-jQCcBlXV7B7ap5VlHhwIPieYz89yiRgwd2FPUBu+unz+kcJ6pAiB2U8RdLDmyIs8fiWd+Vq1xxaWs4TR329/ng==}
peerDependencies:
'@babel/preset-env': ^7.1.6
dependencies:
- '@babel/parser': 7.23.6
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
+ '@babel/parser': 7.23.9
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
flow-parser: 0.206.0
glob: 7.2.3
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.23.8)
+ jscodeshift: 0.14.0(@babel/preset-env@7.23.9)
mkdirp: 0.5.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -3726,7 +3760,7 @@ packages:
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
/@react-navigation/bottom-tabs@6.5.11(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.72.6)(react@18.2.0):
resolution: {integrity: sha512-CBN/NOdxnMvmjw+AJQI1kltOYaClTZmGec5pQ3ZNTPX86ytbIOylDIITKMfTgHZcIEFQDymx1SHeS++PIL3Szw==}
@@ -3741,7 +3775,7 @@ packages:
'@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0)
color: 4.2.3
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-native-safe-area-context: 4.8.2(react-native@0.72.6)(react@18.2.0)
react-native-screens: 3.29.0(react-native@0.72.6)(react@18.2.0)
warn-once: 0.1.1
@@ -3771,7 +3805,7 @@ packages:
dependencies:
'@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0)
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-native-safe-area-context: 4.8.2(react-native@0.72.6)(react@18.2.0)
dev: false
@@ -3787,7 +3821,7 @@ packages:
'@react-navigation/elements': 1.3.21(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.8.2)(react-native@0.72.6)(react@18.2.0)
'@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0)
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-native-safe-area-context: 4.8.2(react-native@0.72.6)(react@18.2.0)
react-native-screens: 3.29.0(react-native@0.72.6)(react@18.2.0)
warn-once: 0.1.1
@@ -3804,7 +3838,7 @@ packages:
fast-deep-equal: 3.1.3
nanoid: 3.3.7
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/@react-navigation/routers@6.1.9:
@@ -3834,7 +3868,7 @@ packages:
'@rnx-kit/tools-react-native': 1.3.5
'@rnx-kit/tools-workspaces': 0.1.5
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/@rnx-kit/metro-resolver-symlinks@0.1.34:
@@ -3866,8 +3900,8 @@ packages:
strip-json-comments: 3.1.1
dev: false
- /@segment/ajv-human-errors@2.11.3(ajv@8.11.0):
- resolution: {integrity: sha512-UeeDR6wmSoIlQ5GKx7Cs1FmQfqf+r+VxpAa6xuJkh4EP/+0UHY+OFUqf9G+2NiD7ZQdWZihgqHBgyc3tXfpZnw==}
+ /@segment/ajv-human-errors@2.12.0(ajv@8.11.0):
+ resolution: {integrity: sha512-wgQpYRaPMlgaJvxhd7gCRUQcLbrgYwwbtqXnCfpT6Vv+al5OP2pqPj27WAXNq/3OBzbwsn0NXm0m1U8ygHeybg==}
peerDependencies:
ajv: ^8.0.0
dependencies:
@@ -3903,92 +3937,92 @@ packages:
dependencies:
'@sinonjs/commons': 3.0.1
- /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.9):
resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /@svgr/babel-preset@8.1.0(@babel/core@7.23.7):
+ /@svgr/babel-preset@8.1.0(@babel/core@7.23.9):
resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.23.9)
/@svgr/core@8.1.0(typescript@5.2.2):
resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
engines: {node: '>=14'}
dependencies:
- '@babel/core': 7.23.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.23.9)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.2.2)
snake-case: 3.0.4
@@ -4000,7 +4034,7 @@ packages:
resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
engines: {node: '>=14'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
entities: 4.5.0
/@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
@@ -4009,8 +4043,8 @@ packages:
peerDependencies:
'@svgr/core': '*'
dependencies:
- '@babel/core': 7.23.7
- '@svgr/babel-preset': 8.1.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.23.9)
'@svgr/core': 8.1.0(typescript@5.2.2)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -4034,11 +4068,11 @@ packages:
resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==}
engines: {node: '>=14'}
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
- '@babel/preset-react': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/preset-react': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
'@svgr/core': 8.1.0(typescript@5.2.2)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0)
'@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.2.2)
@@ -4046,23 +4080,23 @@ packages:
- supports-color
- typescript
- /@swc-node/core@1.10.6(@swc/core@1.3.105):
+ /@swc-node/core@1.10.6(@swc/core@1.3.107):
resolution: {integrity: sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==}
engines: {node: '>= 10'}
peerDependencies:
'@swc/core': '>= 1.3'
dependencies:
- '@swc/core': 1.3.105
+ '@swc/core': 1.3.107
- /@swc-node/register@1.6.8(@swc/core@1.3.105)(typescript@5.2.2):
+ /@swc-node/register@1.6.8(@swc/core@1.3.107)(typescript@5.2.2):
resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==}
peerDependencies:
'@swc/core': '>= 1.3'
typescript: '>= 4.3'
dependencies:
- '@swc-node/core': 1.10.6(@swc/core@1.3.105)
+ '@swc-node/core': 1.10.6(@swc/core@1.3.107)
'@swc-node/sourcemap-support': 0.3.0
- '@swc/core': 1.3.105
+ '@swc/core': 1.3.107
colorette: 2.0.20
debug: 4.3.4(supports-color@8.1.1)
pirates: 4.0.6
@@ -4077,88 +4111,88 @@ packages:
source-map-support: 0.5.21
tslib: 2.6.2
- /@swc/core-darwin-arm64@1.3.105:
- resolution: {integrity: sha512-buWeweLVDXXmcnfIemH4PGnpjwsDTUGitnPchdftb0u1FU8zSSP/lw/pUCBDG/XvWAp7c/aFxgN4CyG0j7eayA==}
+ /@swc/core-darwin-arm64@1.3.107:
+ resolution: {integrity: sha512-47tD/5vSXWxPd0j/ZllyQUg4bqalbQTsmqSw0J4dDdS82MWqCAwUErUrAZPRjBkjNQ6Kmrf5rpCWaGTtPw+ngw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@swc/core-darwin-x64@1.3.105:
- resolution: {integrity: sha512-hFmXPApqjA/8sy/9NpljHVaKi1OvL9QkJ2MbbTCCbJERuHMpMUeMBUWipHRfepGHFhU+9B9zkEup/qJaJR4XIg==}
+ /@swc/core-darwin-x64@1.3.107:
+ resolution: {integrity: sha512-hwiLJ2ulNkBGAh1m1eTfeY1417OAYbRGcb/iGsJ+LuVLvKAhU/itzsl535CvcwAlt2LayeCFfcI8gdeOLeZa9A==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.105:
- resolution: {integrity: sha512-mwXyMC41oMKkKrPpL8uJpOxw7fyfQoVtIw3Y5p0Blabk+espNYqix0E8VymHdRKuLmM//z5wVmMsuHdGBHvZeg==}
+ /@swc/core-linux-arm-gnueabihf@1.3.107:
+ resolution: {integrity: sha512-I2wzcC0KXqh0OwymCmYwNRgZ9nxX7DWnOOStJXV3pS0uB83TXAkmqd7wvMBuIl9qu4Hfomi9aDM7IlEEn9tumQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.105:
- resolution: {integrity: sha512-H7yEIVydnUtqBSUxwmO6vpIQn7j+Rr0DF6ZOORPyd/SFzQJK9cJRtmJQ3ZMzlJ1Bb+1gr3MvjgLEnmyCYEm2Hg==}
+ /@swc/core-linux-arm64-gnu@1.3.107:
+ resolution: {integrity: sha512-HWgnn7JORYlOYnGsdunpSF8A+BCZKPLzLtEUA27/M/ZuANcMZabKL9Zurt7XQXq888uJFAt98Gy+59PU90aHKg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.105:
- resolution: {integrity: sha512-Jg7RTFT3pGFdGt5elPV6oDkinRy7q9cXpenjXnJnM2uvx3jOwnsAhexPyCDHom8SHL0j+9kaLLC66T3Gz1E4UA==}
+ /@swc/core-linux-arm64-musl@1.3.107:
+ resolution: {integrity: sha512-vfPF74cWfAm8hyhS8yvYI94ucMHIo8xIYU+oFOW9uvDlGQRgnUf/6DEVbLyt/3yfX5723Ln57U8uiMALbX5Pyw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.105:
- resolution: {integrity: sha512-DJghplpyusAmp1X5pW/y93MmS/u83Sx5GrpJxI6KLPa82+NItTgMcl8KBQmW5GYAJpVKZyaIvBanS5TdR8aN2w==}
+ /@swc/core-linux-x64-gnu@1.3.107:
+ resolution: {integrity: sha512-uBVNhIg0ip8rH9OnOsCARUFZ3Mq3tbPHxtmWk9uAa5u8jQwGWeBx5+nTHpDOVd3YxKb6+5xDEI/edeeLpha/9g==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-x64-musl@1.3.105:
- resolution: {integrity: sha512-wD5jL2dZH/5nPNssBo6jhOvkI0lmWnVR4vnOXWjuXgjq1S0AJpO5jdre/6pYLmf26hft3M42bteDnjR4AAZ38w==}
+ /@swc/core-linux-x64-musl@1.3.107:
+ resolution: {integrity: sha512-mvACkUvzSIB12q1H5JtabWATbk3AG+pQgXEN95AmEX2ZA5gbP9+B+mijsg7Sd/3tboHr7ZHLz/q3SHTvdFJrEw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-win32-arm64-msvc@1.3.105:
- resolution: {integrity: sha512-UqJtwILUHRw2+3UTPnRkZrzM/bGdQtbR4UFdp79mZQYfryeOUVNg7aJj/bWUTkKtLiZ3o+FBNrM/x2X1mJX5bA==}
+ /@swc/core-win32-arm64-msvc@1.3.107:
+ resolution: {integrity: sha512-J3P14Ngy/1qtapzbguEH41kY109t6DFxfbK4Ntz9dOWNuVY3o9/RTB841ctnJk0ZHEG+BjfCJjsD2n8H5HcaOA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core-win32-ia32-msvc@1.3.105:
- resolution: {integrity: sha512-Z95C6vZgBEJ1snidYyjVKnVWiy/ZpPiIFIXGWkDr4ZyBgL3eZX12M6LzZ+NApHKffrbO4enbFyFomueBQgS2oA==}
+ /@swc/core-win32-ia32-msvc@1.3.107:
+ resolution: {integrity: sha512-ZBUtgyjTHlz8TPJh7kfwwwFma+ktr6OccB1oXC8fMSopD0AxVnQasgun3l3099wIsAB9eEsJDQ/3lDkOLs1gBA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.105:
- resolution: {integrity: sha512-3J8fkyDPFsS3mszuYUY4Wfk7/B2oio9qXUwF3DzOs2MK+XgdyMLIptIxL7gdfitXJBH8k39uVjrIw1JGJDjyFA==}
+ /@swc/core-win32-x64-msvc@1.3.107:
+ resolution: {integrity: sha512-Eyzo2XRqWOxqhE1gk9h7LWmUf4Bp4Xn2Ttb0ayAXFp6YSTxQIThXcT9kipXZqcpxcmDwoq8iWbbf2P8XL743EA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core@1.3.105:
- resolution: {integrity: sha512-me2VZyr3OjqRpFrYQJJYy7x/zbFSl9nt+MAGnIcBtjDsN00iTVqEaKxBjPBFQV9BDAgPz2SRWes/DhhVm5SmMw==}
+ /@swc/core@1.3.107:
+ resolution: {integrity: sha512-zKhqDyFcTsyLIYK1iEmavljZnf4CCor5pF52UzLAz4B6Nu/4GLU+2LQVAf+oRHjusG39PTPjd2AlRT3f3QWfsQ==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -4170,16 +4204,16 @@ packages:
'@swc/counter': 0.1.2
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.105
- '@swc/core-darwin-x64': 1.3.105
- '@swc/core-linux-arm-gnueabihf': 1.3.105
- '@swc/core-linux-arm64-gnu': 1.3.105
- '@swc/core-linux-arm64-musl': 1.3.105
- '@swc/core-linux-x64-gnu': 1.3.105
- '@swc/core-linux-x64-musl': 1.3.105
- '@swc/core-win32-arm64-msvc': 1.3.105
- '@swc/core-win32-ia32-msvc': 1.3.105
- '@swc/core-win32-x64-msvc': 1.3.105
+ '@swc/core-darwin-arm64': 1.3.107
+ '@swc/core-darwin-x64': 1.3.107
+ '@swc/core-linux-arm-gnueabihf': 1.3.107
+ '@swc/core-linux-arm64-gnu': 1.3.107
+ '@swc/core-linux-arm64-musl': 1.3.107
+ '@swc/core-linux-x64-gnu': 1.3.107
+ '@swc/core-linux-x64-musl': 1.3.107
+ '@swc/core-win32-arm64-msvc': 1.3.107
+ '@swc/core-win32-ia32-msvc': 1.3.107
+ '@swc/core-win32-x64-msvc': 1.3.107
/@swc/counter@0.1.2:
resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==}
@@ -4191,8 +4225,8 @@ packages:
resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==}
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
- '@adobe/css-tools': 4.3.2
- '@babel/runtime': 7.23.8
+ '@adobe/css-tools': 4.3.3
+ '@babel/runtime': 7.23.9
'@types/testing-library__jest-dom': 5.14.9
aria-query: 5.3.0
chalk: 3.0.0
@@ -4214,7 +4248,7 @@ packages:
jest-matcher-utils: 29.7.0
pretty-format: 29.7.0
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-test-renderer: 18.2.0(react@18.2.0)
redent: 3.0.0
@@ -4233,7 +4267,7 @@ packages:
jest-matcher-utils: 29.7.0
pretty-format: 29.7.0
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-test-renderer: 18.2.0(react@18.2.0)
redent: 3.0.0
@@ -4260,8 +4294,8 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.5
@@ -4269,18 +4303,18 @@ packages:
/@types/babel__generator@7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
/@types/babel__traverse@7.20.5:
resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@types/body-parser@1.19.5:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
@@ -4301,7 +4335,7 @@ packages:
/@types/connect-history-api-fallback@1.5.4:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
- '@types/express-serve-static-core': 4.17.41
+ '@types/express-serve-static-core': 4.17.42
'@types/node': 18.16.9
/@types/connect@3.4.38:
@@ -4324,8 +4358,8 @@ packages:
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- /@types/express-serve-static-core@4.17.41:
- resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
+ /@types/express-serve-static-core@4.17.42:
+ resolution: {integrity: sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==}
dependencies:
'@types/node': 18.16.9
'@types/qs': 6.9.11
@@ -4336,7 +4370,7 @@ packages:
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.17.41
+ '@types/express-serve-static-core': 4.17.42
'@types/qs': 6.9.11
'@types/serve-static': 1.15.5
@@ -5135,8 +5169,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.2
- caniuse-lite: 1.0.30001579
+ browserslist: 4.22.3
+ caniuse-lite: 1.0.30001581
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -5152,8 +5186,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /axios@1.6.5:
- resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==}
+ /axios@1.6.7:
+ resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==}
dependencies:
follow-redirects: 1.15.5
form-data: 4.0.0
@@ -5167,51 +5201,51 @@ packages:
dequal: 2.0.3
dev: true
- /babel-core@7.0.0-bridge.0(@babel/core@7.23.7):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.23.9):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
- /babel-jest@29.7.0(@babel/core@7.23.7):
+ /babel-jest@29.7.0(@babel/core@7.23.9):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.23.7)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.9)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- /babel-loader@9.1.3(@babel/core@7.23.7)(webpack@5.89.0):
+ /babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.90.0):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
- /babel-plugin-const-enum@1.2.0(@babel/core@7.23.7):
+ /babel-plugin-const-enum@1.2.0(@babel/core@7.23.9):
resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
- '@babel/traverse': 7.23.7
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/traverse': 7.23.9
transitivePeerDependencies:
- supports-color
@@ -5231,15 +5265,15 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
/babel-plugin-macros@2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
cosmiconfig: 6.0.0
resolve: 1.22.8
@@ -5253,36 +5287,36 @@ packages:
reselect: 4.1.8
resolve: 1.22.8
- /babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.23.7):
+ /babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.23.9):
resolution: {integrity: sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
+ /babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.23.9):
+ resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
core-js-compat: 3.35.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.23.7):
+ /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.23.9):
resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
@@ -5292,14 +5326,30 @@ packages:
/babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
- /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.7):
+ /babel-plugin-tester@11.0.4(@babel/core@7.23.9):
+ resolution: {integrity: sha512-cqswtpSPo0e++rZB0l/54EG17LL25l9gLgh59yXfnmNxX+2lZTIOpx2zt4YI9QIClVXc8xf63J6yWwKkzy0jNg==}
+ engines: {node: ^14.20.0 || ^16.16.0 || >=18.5.0}
+ peerDependencies:
+ '@babel/core': '>=7.11.6'
+ dependencies:
+ '@babel/core': 7.23.9
+ core-js: 3.35.1
+ debug: 4.3.4(supports-color@8.1.1)
+ lodash.mergewith: 4.6.2
+ prettier: 2.8.8
+ strip-indent: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.9):
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
dependencies:
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9)
transitivePeerDependencies:
- '@babel/core'
- /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.7):
+ /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.9):
resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==}
peerDependencies:
'@babel/core': ^7
@@ -5308,86 +5358,86 @@ packages:
'@babel/traverse':
optional: true
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.9):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9)
- /babel-preset-expo@9.5.2(@babel/core@7.23.7):
+ /babel-preset-expo@9.5.2(@babel/core@7.23.9):
resolution: {integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==}
dependencies:
- '@babel/plugin-proposal-decorators': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.7)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
+ '@babel/plugin-proposal-decorators': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9)
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
babel-plugin-module-resolver: 5.0.0
babel-plugin-react-native-web: 0.18.12
- metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.7)
+ metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.9)
transitivePeerDependencies:
- '@babel/core'
- supports-color
- /babel-preset-fbjs@3.4.0(@babel/core@7.23.7):
+ /babel-preset-fbjs@3.4.0(@babel/core@7.23.9):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.9)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.9)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
- /babel-preset-jest@29.6.3(@babel/core@7.23.7):
+ /babel-preset-jest@29.6.3(@babel/core@7.23.9):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.9)
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -5518,15 +5568,15 @@ packages:
/browser-process-hrtime@1.0.0:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
- /browserslist@4.22.2:
- resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
+ /browserslist@4.22.3:
+ resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001579
- electron-to-chromium: 1.4.640
+ caniuse-lite: 1.0.30001581
+ electron-to-chromium: 1.4.648
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.22.2)
+ update-browserslist-db: 1.0.13(browserslist@4.22.3)
/bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
@@ -5690,6 +5740,11 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
+ /camelcase-css@2.0.1:
+ resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
+ engines: {node: '>= 6'}
+ dev: false
+
/camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -5701,13 +5756,13 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.22.2
- caniuse-lite: 1.0.30001579
+ browserslist: 4.22.3
+ caniuse-lite: 1.0.30001581
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite@1.0.30001579:
- resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==}
+ /caniuse-lite@1.0.30001581:
+ resolution: {integrity: sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==}
/cardinal@2.1.1:
resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
@@ -5788,6 +5843,12 @@ packages:
/cjs-module-lexer@1.2.3:
resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
+ /class-variance-authority@0.7.0:
+ resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
+ dependencies:
+ clsx: 2.0.0
+ dev: false
+
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -5855,6 +5916,16 @@ packages:
resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
engines: {node: '>=0.8'}
+ /clsx@2.0.0:
+ resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /clsx@2.1.0:
+ resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ engines: {node: '>=6'}
+ dev: false
+
/co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
@@ -6023,7 +6094,7 @@ packages:
dependencies:
is-what: 3.14.1
- /copy-webpack-plugin@10.2.4(webpack@5.89.0):
+ /copy-webpack-plugin@10.2.4(webpack@5.90.0):
resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==}
engines: {node: '>= 12.20.0'}
peerDependencies:
@@ -6035,12 +6106,17 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/core-js-compat@3.35.1:
resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
+
+ /core-js@3.35.1:
+ resolution: {integrity: sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==}
+ requiresBuild: true
+ dev: false
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -6170,7 +6246,7 @@ packages:
hyphenate-style-name: 1.0.4
dev: false
- /css-loader@6.9.1(webpack@5.89.0):
+ /css-loader@6.9.1(webpack@5.90.0):
resolution: {integrity: sha512-OzABOh0+26JKFdMzlK6PY1u5Zx8+Ck7CVRlcGNZoY9qwJjdfu2VWFuprTIpPW+Av5TZTVViYWcFQaEEQURLknQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -6184,9 +6260,9 @@ packages:
postcss-modules-values: 4.0.0(postcss@8.4.33)
postcss-value-parser: 4.2.0
semver: 7.5.4
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
- /css-minimizer-webpack-plugin@5.0.1(webpack@5.89.0):
+ /css-minimizer-webpack-plugin@5.0.1(webpack@5.90.0):
resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -6217,7 +6293,7 @@ packages:
postcss: 8.4.33
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
@@ -6592,6 +6668,10 @@ packages:
dependencies:
streamsearch: 1.1.0
+ /didyoumean@1.2.2:
+ resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
+ dev: false
+
/diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -6606,6 +6686,10 @@ packages:
dependencies:
path-type: 4.0.0
+ /dlv@1.1.3:
+ resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
+ dev: false
+
/dns-packet@5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
@@ -6723,7 +6807,7 @@ packages:
'@expo/timeago.js': 1.0.0
'@oclif/core': 1.23.2
'@oclif/plugin-autocomplete': 1.3.10
- '@segment/ajv-human-errors': 2.11.3(ajv@8.11.0)
+ '@segment/ajv-human-errors': 2.12.0(ajv@8.11.0)
'@urql/core': 4.0.11(graphql@16.6.0)
'@urql/exchange-retry': 1.2.0(graphql@16.6.0)
ajv: 8.11.0
@@ -6796,8 +6880,8 @@ packages:
dependencies:
jake: 10.8.7
- /electron-to-chromium@1.4.640:
- resolution: {integrity: sha512-z/6oZ/Muqk4BaE7P69bXhUhpJbUM9ZJeka43ZwxsDshKtePns4mhBlh8bU5+yrnOnz3fhG82XLzGUXazOmsWnA==}
+ /electron-to-chromium@1.4.648:
+ resolution: {integrity: sha512-EmFMarXeqJp9cUKu/QEciEApn0S/xRcpZWuAm32U7NgoZCimjsilKXHRO9saeEW55eHZagIDg6XTUOv32w9pjg==}
/emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -7137,7 +7221,7 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
aria-query: 5.3.0
array-includes: 3.1.7
array.prototype.flatmap: 1.3.2
@@ -7380,7 +7464,7 @@ packages:
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
/expo-asset@8.10.1(expo@49.0.16):
resolution: {integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==}
@@ -7402,7 +7486,7 @@ packages:
expo: '*'
dependencies:
ajv: 8.12.0
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
semver: 7.5.4
dev: true
@@ -7412,7 +7496,7 @@ packages:
expo: '*'
dependencies:
'@expo/config': 8.1.2
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
uuid: 3.4.0
transitivePeerDependencies:
- supports-color
@@ -7423,7 +7507,7 @@ packages:
expo: '*'
dependencies:
'@expo/config': 8.5.4
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: false
@@ -7433,7 +7517,7 @@ packages:
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
uuid: 3.4.0
/expo-font@11.10.2(expo@49.0.16):
@@ -7441,7 +7525,7 @@ packages:
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
fontfaceobserver: 2.3.0
dev: false
@@ -7450,7 +7534,7 @@ packages:
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
fontfaceobserver: 2.3.0
/expo-head@0.0.20(expo@49.0.16)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0):
@@ -7460,10 +7544,10 @@ packages:
react: '*'
react-native: '*'
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
react: 18.2.0
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
transitivePeerDependencies:
- react-dom
dev: false
@@ -7473,7 +7557,7 @@ packages:
peerDependencies:
expo: '*'
dependencies:
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
/expo-linking@5.0.2(expo@49.0.16):
resolution: {integrity: sha512-SPQus0+tYGx9c69Uw4wmdo3rkKX8vRT1vyJz/mvkpSlZN986s0NmP/V0M5vDv5Zv2qZzVdqJyuITFe0Pg5aI+A==}
@@ -7520,7 +7604,7 @@ packages:
compare-versions: 3.6.0
invariant: 2.2.4
- /expo-router@2.0.14(@testing-library/jest-native@5.4.3)(expo-constants@15.4.5)(expo-linking@5.0.2)(expo-modules-autolinking@1.10.2)(expo-status-bar@1.6.0)(expo@49.0.16)(metro@0.76.8)(react-dom@18.2.0)(react-native-gesture-handler@2.14.1)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.72.6)(react@18.2.0):
+ /expo-router@2.0.14(@testing-library/jest-native@5.4.3)(expo-constants@15.4.5)(expo-linking@5.0.2)(expo-modules-autolinking@1.10.2)(expo-status-bar@1.6.0)(expo@49.0.16)(metro@0.76.8)(react-dom@18.2.0)(react-native-gesture-handler@2.14.1)(react-native-reanimated@3.3.0)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.72.6)(react@18.2.0):
resolution: {integrity: sha512-F5dP4WMe+zQLzlGSbC+NT9/67FGgwmUCJuPGD4BkK0eRt0uga+y53vQ59m5MCOebqE0N9Ukr/Jz8Num16iGqZA==}
peerDependencies:
'@react-navigation/drawer': ^6.5.8
@@ -7549,7 +7633,7 @@ packages:
'@react-navigation/native': 6.1.9(react-native@0.72.6)(react@18.2.0)
'@react-navigation/native-stack': 6.9.17(@react-navigation/native@6.1.9)(react-native-safe-area-context@4.8.2)(react-native-screens@3.29.0)(react-native@0.72.6)(react@18.2.0)
'@testing-library/jest-native': 5.4.3(react-native@0.72.6)(react-test-renderer@18.2.0)(react@18.2.0)
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
expo-constants: 15.4.5(expo@49.0.16)
expo-head: 0.0.20(expo@49.0.16)(react-dom@18.2.0)(react-native@0.72.6)(react@18.2.0)
expo-linking: 5.0.2(expo@49.0.16)
@@ -7559,6 +7643,7 @@ packages:
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.14.1(react-native@0.72.6)(react@18.2.0)
+ react-native-reanimated: 3.3.0(@babel/core@7.23.9)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.23.3)(@babel/plugin-transform-shorthand-properties@7.23.3)(@babel/plugin-transform-template-literals@7.23.3)(react-native@0.72.6)(react@18.2.0)
react-native-safe-area-context: 4.8.2(react-native@0.72.6)(react@18.2.0)
react-native-screens: 3.29.0(react-native@0.72.6)(react@18.2.0)
schema-utils: 4.2.0
@@ -7578,7 +7663,7 @@ packages:
expo: '*'
dependencies:
'@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.10.2)
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -7596,31 +7681,31 @@ packages:
dependencies:
'@react-native/normalize-color': 2.1.0
debug: 4.3.4(supports-color@8.1.1)
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: false
- /expo-web-browser@12.8.1(expo@49.0.16):
- resolution: {integrity: sha512-1x47xcOor6MRo43P3L65WTaBgsj/346pPA5v+wMb1ePH9XYfuAivKGAnn318q29yGx7VhX8K7WehmJx1muA+8Q==}
+ /expo-web-browser@12.8.2(expo@49.0.16):
+ resolution: {integrity: sha512-Mw8WoFMSADecNjtC4PZVsVj1/lYdxIAH1jOVV+F8v8SEWYxORWofoShfXg7oUxRLu0iUG8JETfO5y4m8+fOgdg==}
peerDependencies:
expo: '*'
dependencies:
compare-urls: 2.0.0
- expo: 49.0.16(@babel/core@7.23.7)
+ expo: 49.0.16(@babel/core@7.23.9)
url: 0.11.3
dev: false
- /expo@49.0.16(@babel/core@7.23.7):
+ /expo@49.0.16(@babel/core@7.23.9):
resolution: {integrity: sha512-1TcpWUEpzCQ7FjtwO1j+l/UvNgrEDZWfQm4kOo9eVZVDNKavYo+KL4XXHeljSAOOGhI/plmpD3bvhfYoywOAFQ==}
hasBin: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@expo/cli': 0.10.14(expo-modules-autolinking@1.5.1)
'@expo/config': 8.1.2
'@expo/config-plugins': 7.2.5
'@expo/vector-icons': 13.0.0
- babel-preset-expo: 9.5.2(@babel/core@7.23.7)
+ babel-preset-expo: 9.5.2(@babel/core@7.23.9)
expo-application: 5.3.1(expo@49.0.16)
expo-asset: 8.10.1(expo@49.0.16)
expo-constants: 14.4.2(expo@49.0.16)
@@ -7734,8 +7819,8 @@ packages:
dependencies:
strnum: 1.0.5
- /fastq@1.16.0:
- resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
+ /fastq@1.17.0:
+ resolution: {integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==}
dependencies:
reusify: 1.0.4
@@ -7788,7 +7873,7 @@ packages:
dependencies:
flat-cache: 3.2.0
- /file-loader@6.2.0(webpack@5.89.0):
+ /file-loader@6.2.0(webpack@5.90.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -7796,7 +7881,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
@@ -7942,7 +8027,7 @@ packages:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.2.2)(webpack@5.89.0):
+ /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==}
engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
@@ -7966,7 +8051,7 @@ packages:
semver: 7.5.4
tapable: 2.2.1
typescript: 5.2.2
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
@@ -8385,7 +8470,7 @@ packages:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- lru-cache: 10.1.0
+ lru-cache: 10.2.0
/hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
@@ -8577,8 +8662,8 @@ packages:
dependencies:
queue: 6.0.2
- /immutable@4.3.4:
- resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
+ /immutable@4.3.5:
+ resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
/import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
@@ -8906,8 +8991,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.7
- '@babel/parser': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/parser': 7.23.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -8918,8 +9003,8 @@ packages:
resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.7
- '@babel/parser': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/parser': 7.23.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.5.4
@@ -9044,11 +9129,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
'@types/node': 18.16.9
- babel-jest: 29.7.0(@babel/core@7.23.7)
+ babel-jest: 29.7.0(@babel/core@7.23.9)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -9067,7 +9152,7 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1(@swc/core@1.3.105)(@types/node@18.16.9)(typescript@5.2.2)
+ ts-node: 10.9.1(@swc/core@1.3.107)(@types/node@18.16.9)(typescript@5.2.2)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -9164,13 +9249,13 @@ packages:
jest-mock: 29.7.0
jest-util: 29.7.0
- /jest-expo@49.0.0(@babel/core@7.23.7)(jest@29.7.0)(react@18.2.0):
+ /jest-expo@49.0.0(@babel/core@7.23.9)(jest@29.7.0)(react@18.2.0):
resolution: {integrity: sha512-nglYg6QPYSqCsrsOFiGosQi+m1rrqmYluPbFXNnXNEOrB2MvxMOgQJeWfMHDExHMX1ymLWX+7y8mYo6XVJpBJQ==}
hasBin: true
dependencies:
'@expo/config': 8.1.2
'@jest/create-cache-key-function': 29.7.0
- babel-jest: 29.7.0(@babel/core@7.23.7)
+ babel-jest: 29.7.0(@babel/core@7.23.9)
find-up: 5.0.0
jest-environment-jsdom: 29.7.0
jest-watch-select-projects: 2.0.0
@@ -9350,15 +9435,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
- '@babel/types': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.9)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -9481,6 +9566,11 @@ packages:
/jimp-compact@0.16.1:
resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
+ /jiti@1.21.0:
+ resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
+ hasBin: true
+ dev: false
+
/jks-js@1.1.0:
resolution: {integrity: sha512-irWi8S2V029Vic63w0/TYa8NIZwXu9oeMtHQsX51JDIVBo0lrEaOoyM8ALEEh5PVKD6TrA26FixQK6TzT7dHqA==}
dependencies:
@@ -9541,23 +9631,23 @@ packages:
/jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
- /jscodeshift@0.14.0(@babel/preset-env@7.23.8):
+ /jscodeshift@0.14.0(@babel/preset-env@7.23.9):
resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
dependencies:
- '@babel/core': 7.23.7
- '@babel/parser': 7.23.6
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
- '@babel/preset-flow': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
- '@babel/register': 7.23.7(@babel/core@7.23.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/preset-flow': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/register': 7.23.7(@babel/core@7.23.9)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.23.9)
chalk: 4.1.2
flow-parser: 0.206.0
graceful-fs: 4.2.11
@@ -9725,7 +9815,7 @@ packages:
picocolors: 1.0.0
shell-quote: 1.8.1
- /less-loader@11.1.0(less@4.1.3)(webpack@5.89.0):
+ /less-loader@11.1.0(less@4.1.3)(webpack@5.90.0):
resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -9734,7 +9824,7 @@ packages:
dependencies:
klona: 2.0.6
less: 4.1.3
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/less@4.1.3:
resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==}
@@ -9764,7 +9854,7 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
- /license-webpack-plugin@4.0.2(webpack@5.89.0):
+ /license-webpack-plugin@4.0.2(webpack@5.90.0):
resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==}
peerDependencies:
webpack: '*'
@@ -9774,7 +9864,7 @@ packages:
webpack-sources:
optional: true
dependencies:
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
webpack-sources: 3.2.3
/lightningcss-darwin-arm64@1.19.0:
@@ -9785,6 +9875,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-darwin-arm64@1.22.0:
+ resolution: {integrity: sha512-aH2be3nNny+It5YEVm8tBSSdRlBVWQV8m2oJ7dESiYRzyY/E/bQUe2xlw5caaMuhlM9aoTMtOH25yzMhir0qPg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-darwin-x64@1.19.0:
resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==}
engines: {node: '>= 12.0.0'}
@@ -9793,6 +9892,24 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-darwin-x64@1.22.0:
+ resolution: {integrity: sha512-9KHRFA0Y6mNxRHeoQMp0YaI0R0O2kOgUlYPRjuasU4d+pI8NRhVn9bt0yX9VPs5ibWX1RbDViSPtGJvYYrfVAQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /lightningcss-freebsd-x64@1.22.0:
+ resolution: {integrity: sha512-xaYL3xperGwD85rQioDb52ozF3NAJb+9wrge3jD9lxGffplu0Mn35rXMptB8Uc2N9Mw1i3Bvl7+z1evlqVl7ww==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-linux-arm-gnueabihf@1.19.0:
resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==}
engines: {node: '>= 12.0.0'}
@@ -9801,6 +9918,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-linux-arm-gnueabihf@1.22.0:
+ resolution: {integrity: sha512-epQGvXIjOuxrZpMpMnRjK54ZqzhiHhCPLtHvw2fb6NeK2kK9YtF0wqmeTBiQ1AkbWfnnXGTstYaFNiadNK+StQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-linux-arm64-gnu@1.19.0:
resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==}
engines: {node: '>= 12.0.0'}
@@ -9809,6 +9935,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-linux-arm64-gnu@1.22.0:
+ resolution: {integrity: sha512-AArGtKSY4DGTA8xP8SDyNyKtpsUl1Rzq6FW4JomeyUQ4nBrR71uPChksTpj3gmWuGhZeRKLeCUI1DBid/zhChg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-linux-arm64-musl@1.19.0:
resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==}
engines: {node: '>= 12.0.0'}
@@ -9817,6 +9952,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-linux-arm64-musl@1.22.0:
+ resolution: {integrity: sha512-RRraNgP8hnBPhInTTUdlFm+z16C/ghbxBG51Sw00hd7HUyKmEUKRozyc5od+/N6pOrX/bIh5vIbtMXIxsos0lg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-linux-x64-gnu@1.19.0:
resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==}
engines: {node: '>= 12.0.0'}
@@ -9825,6 +9969,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-linux-x64-gnu@1.22.0:
+ resolution: {integrity: sha512-grdrhYGRi2KrR+bsXJVI0myRADqyA7ekprGxiuK5QRNkv7kj3Yq1fERDNyzZvjisHwKUi29sYMClscbtl+/Zpw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-linux-x64-musl@1.19.0:
resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==}
engines: {node: '>= 12.0.0'}
@@ -9833,6 +9986,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-linux-x64-musl@1.22.0:
+ resolution: {integrity: sha512-t5f90X+iQUtIyR56oXIHMBUyQFX/zwmPt72E6Dane3P8KNGlkijTg2I75XVQS860gNoEFzV7Mm5ArRRA7u5CAQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss-win32-x64-msvc@1.19.0:
resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==}
engines: {node: '>= 12.0.0'}
@@ -9841,6 +10003,15 @@ packages:
requiresBuild: true
optional: true
+ /lightningcss-win32-x64-msvc@1.22.0:
+ resolution: {integrity: sha512-64HTDtOOZE9PUCZJiZZQpyqXBbdby1lnztBccnqh+NtbKxjnGzP92R2ngcgeuqMPecMNqNWxgoWgTGpC+yN5Sw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/lightningcss@1.19.0:
resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==}
engines: {node: '>= 12.0.0'}
@@ -9856,6 +10027,28 @@ packages:
lightningcss-linux-x64-musl: 1.19.0
lightningcss-win32-x64-msvc: 1.19.0
+ /lightningcss@1.22.0:
+ resolution: {integrity: sha512-+z0qvwRVzs4XGRXelnWRNwqsXUx8k3bSkbP8vD42kYKSk3z9OM2P3e/gagT7ei/gwh8DTS80LZOFZV6lm8Z8Fg==}
+ engines: {node: '>= 12.0.0'}
+ dependencies:
+ detect-libc: 1.0.3
+ optionalDependencies:
+ lightningcss-darwin-arm64: 1.22.0
+ lightningcss-darwin-x64: 1.22.0
+ lightningcss-freebsd-x64: 1.22.0
+ lightningcss-linux-arm-gnueabihf: 1.22.0
+ lightningcss-linux-arm64-gnu: 1.22.0
+ lightningcss-linux-arm64-musl: 1.22.0
+ lightningcss-linux-x64-gnu: 1.22.0
+ lightningcss-linux-x64-musl: 1.22.0
+ lightningcss-win32-x64-msvc: 1.22.0
+ dev: false
+
+ /lilconfig@2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
+ engines: {node: '>=10'}
+ dev: false
+
/lilconfig@3.0.0:
resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==}
engines: {node: '>=14'}
@@ -9919,6 +10112,10 @@ packages:
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ /lodash.mergewith@4.6.2:
+ resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
+ dev: false
+
/lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
@@ -9960,8 +10157,8 @@ packages:
dependencies:
tslib: 2.6.2
- /lru-cache@10.1.0:
- resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
+ /lru-cache@10.2.0:
+ resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
engines: {node: 14 || >=16.14}
/lru-cache@4.1.5:
@@ -10074,17 +10271,17 @@ packages:
resolution: {integrity: sha512-Hh6PW34Ug/nShlBGxkwQJSgPGAzSJ9FwQXhUImkzdsDgVu6zj5bx258J8cJVSandjNoQ8nbaHK6CaHlnbZKbyA==}
engines: {node: '>=16'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
hermes-parser: 0.12.0
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- /metro-babel-transformer@0.80.4:
- resolution: {integrity: sha512-QP1kjYLap4O3w9tA4bYO8iyuNpR65If5Z97Ku37O4CwQPAwQaTmg67g4OdABS4BVK10fsxdExKp+fC37XirPow==}
+ /metro-babel-transformer@0.80.5:
+ resolution: {integrity: sha512-sxH6hcWCorhTbk4kaShCWsadzu99WBL4Nvq4m/sDTbp32//iGuxtAnUK+ZV+6IEygr2u9Z0/4XoZ8Sbcl71MpA==}
engines: {node: '>=18'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
hermes-parser: 0.18.2
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -10095,8 +10292,8 @@ packages:
resolution: {integrity: sha512-buKQ5xentPig9G6T37Ww/R/bC+/V1MA5xU/D8zjnhlelsrPG6w6LtHUS61ID3zZcMZqYaELWk5UIadIdDsaaLw==}
engines: {node: '>=16'}
- /metro-cache-key@0.80.4:
- resolution: {integrity: sha512-okOOSRFou7Mxaaigoi+KxdFIU/ZJtvDCC6l8BYKsdMx86JDlVdvtIgFU4tFrY1yEkv0wnn7WH0X3xSz4mHKwoQ==}
+ /metro-cache-key@0.80.5:
+ resolution: {integrity: sha512-fr3QLZUarsB3tRbVcmr34kCBsTHk0Sh9JXGvBY/w3b2lbre+Lq5gtgLyFElHPecGF7o4z1eK9r3ubxtScHWcbA==}
engines: {node: '>=18'}
dev: false
@@ -10107,11 +10304,11 @@ packages:
metro-core: 0.76.8
rimraf: 3.0.2
- /metro-cache@0.80.4:
- resolution: {integrity: sha512-Dj+GoYt4PvsnnE4GdXhqV9PxEF7GPilY5NPeoTgptWZLlaDuTT2+cJQoDOOit1SfRjnF0zqABtVvB6GGBWdtaQ==}
+ /metro-cache@0.80.5:
+ resolution: {integrity: sha512-2u+dQ4PZwmC7eZo9uMBNhQQMig9f+w4QWBZwXCdVy/RYOHM0eObgGdMEOwODo73uxie82T9lWzxr3aZOZ+Nqtw==}
engines: {node: '>=18'}
dependencies:
- metro-core: 0.80.4
+ metro-core: 0.80.5
rimraf: 3.0.2
dev: false
@@ -10132,17 +10329,17 @@ packages:
- supports-color
- utf-8-validate
- /metro-config@0.80.4:
- resolution: {integrity: sha512-X3/3tleFYB4SdoxXg8uJ+qc8eITKiLnXs3Ev6pihM4jIM5JD89riwUsSLKVsovfZs8ETqKtjevzfe6jQ2O5NtQ==}
+ /metro-config@0.80.5:
+ resolution: {integrity: sha512-elqo/lwvF+VjZ1OPyvmW/9hSiGlmcqu+rQvDKw5F5WMX48ZC+ySTD1WcaD7e97pkgAlJHVYqZ98FCjRAYOAFRQ==}
engines: {node: '>=18'}
dependencies:
connect: 3.7.0
cosmiconfig: 5.2.1
jest-validate: 29.7.0
- metro: 0.80.4
- metro-cache: 0.80.4
- metro-core: 0.80.4
- metro-runtime: 0.80.4
+ metro: 0.80.5
+ metro-cache: 0.80.5
+ metro-core: 0.80.5
+ metro-runtime: 0.80.5
transitivePeerDependencies:
- bufferutil
- encoding
@@ -10157,12 +10354,12 @@ packages:
lodash.throttle: 4.1.1
metro-resolver: 0.76.8
- /metro-core@0.80.4:
- resolution: {integrity: sha512-HRb+zydAhI7QyLpK4D6ARZsKjaBwEn+kCrJEjnVFij8wjJxIIHVilgNCETgg9NWvKJFUoZZCG7ewHkxQ9Qpd8Q==}
+ /metro-core@0.80.5:
+ resolution: {integrity: sha512-vkLuaBhnZxTVpaZO8ZJVEHzjaqSXpOdpAiztSZ+NDaYM6jEFgle3/XIbLW91jTSf2+T8Pj5yB1G7KuOX+BcVwg==}
engines: {node: '>=18'}
dependencies:
lodash.throttle: 4.1.1
- metro-resolver: 0.80.4
+ metro-resolver: 0.80.5
dev: false
/metro-file-map@0.76.8:
@@ -10186,8 +10383,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /metro-file-map@0.80.4:
- resolution: {integrity: sha512-EvBC31JI5vsyebeQ8PWpGENuAWy2Ka7sLqEW7OInW+aLVWmBq02h0BNl33xRgAMz0gwvMf2nKie82hmefYF6ew==}
+ /metro-file-map@0.80.5:
+ resolution: {integrity: sha512-bKCvJ05drjq6QhQxnDUt3I8x7bTcHo3IIKVobEr14BK++nmxFGn/BmFLRzVBlghM6an3gqwpNEYxS5qNc+VKcg==}
engines: {node: '>=18'}
dependencies:
anymatch: 3.1.3
@@ -10228,8 +10425,8 @@ packages:
dependencies:
terser: 5.27.0
- /metro-minify-terser@0.80.4:
- resolution: {integrity: sha512-cuxfRZWDWGKjh+Z6t4KJkrvmV4JUKXfvQuAX7Pa7U0Mf1YJdLtoGQ5iVOu/6MkfYGXbppqGk2qmFECrRGRh0cA==}
+ /metro-minify-terser@0.80.5:
+ resolution: {integrity: sha512-S7oZLLcab6YXUT6jYFX/ZDMN7Fq6xBGGAG8liMFU1UljX6cTcEC2u+UIafYgCLrdVexp/+ClxrIetVPZ5LtL/g==}
engines: {node: '>=18'}
dependencies:
terser: 5.27.0
@@ -10241,64 +10438,64 @@ packages:
dependencies:
uglify-es: 3.3.9
- /metro-react-native-babel-preset@0.76.8(@babel/core@7.23.7):
+ /metro-react-native-babel-preset@0.76.8(@babel/core@7.23.9):
resolution: {integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==}
engines: {node: '>=16'}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.7)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.7)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-runtime': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/template': 7.22.15
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.7)
- react-refresh: 0.4.3
+ '@babel/core': 7.23.9
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.9)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.9)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.9)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-runtime': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/template': 7.23.9
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.9)
+ react-refresh: 0.14.0
transitivePeerDependencies:
- supports-color
- /metro-react-native-babel-transformer@0.76.8(@babel/core@7.23.7):
+ /metro-react-native-babel-transformer@0.76.8(@babel/core@7.23.9):
resolution: {integrity: sha512-3h+LfS1WG1PAzhq8QF0kfXjxuXetbY/lgz8vYMQhgrMMp17WM1DNJD0gjx8tOGYbpbBC1qesJ45KMS4o5TA73A==}
engines: {node: '>=16'}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.23.7
- babel-preset-fbjs: 3.4.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ babel-preset-fbjs: 3.4.0(@babel/core@7.23.9)
hermes-parser: 0.12.0
- metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.7)
+ metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.9)
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -10307,8 +10504,8 @@ packages:
resolution: {integrity: sha512-KccOqc10vrzS7ZhG2NSnL2dh3uVydarB7nOhjreQ7C4zyWuiW9XpLC4h47KtGQv3Rnv/NDLJYeDqaJ4/+140HQ==}
engines: {node: '>=16'}
- /metro-resolver@0.80.4:
- resolution: {integrity: sha512-PCiVWN+d3gtWlobf8jPypwKx9T1QrZmhLJAyqIWLoOsZbpSfj1dn5h0ajCr8rYi9LNzIHm58GGYJK8VFHNn8Cw==}
+ /metro-resolver@0.80.5:
+ resolution: {integrity: sha512-haJ/Hveio3zv/Fr4eXVdKzjUeHHDogYok7OpRqPSXGhTXisNXB+sLN7CpcUrCddFRUDLnVaqQOYwhYsFndgUwA==}
engines: {node: '>=18'}
dev: false
@@ -10316,22 +10513,22 @@ packages:
resolution: {integrity: sha512-XKahvB+iuYJSCr3QqCpROli4B4zASAYpkK+j3a0CJmokxCDNbgyI4Fp88uIL6rNaZfN0Mv35S0b99SdFXIfHjg==}
engines: {node: '>=16'}
dependencies:
- '@babel/runtime': 7.23.8
- react-refresh: 0.4.3
+ '@babel/runtime': 7.23.9
+ react-refresh: 0.14.0
- /metro-runtime@0.80.4:
- resolution: {integrity: sha512-CWIvf0zmL4jKHSj81zjUAbEwjTqFQmETI0NIQvN4JNwTSHiz50WPOuHnUUcmwM6Dye/ta6KNTELnERp0tKEYYg==}
+ /metro-runtime@0.80.5:
+ resolution: {integrity: sha512-L0syTWJUdWzfUmKgkScr6fSBVTh6QDr8eKEkRtn40OBd8LPagrJGySBboWSgbyn9eIb4ayW3Y347HxgXBSAjmg==}
engines: {node: '>=18'}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/metro-source-map@0.76.8:
resolution: {integrity: sha512-Hh0ncPsHPVf6wXQSqJqB3K9Zbudht4aUtNpNXYXSxH+pteWqGAXnjtPsRAnCsCWl38wL0jYF0rJDdMajUI3BDw==}
engines: {node: '>=16'}
dependencies:
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
invariant: 2.2.4
metro-symbolicate: 0.76.8
nullthrows: 1.1.1
@@ -10341,16 +10538,16 @@ packages:
transitivePeerDependencies:
- supports-color
- /metro-source-map@0.80.4:
- resolution: {integrity: sha512-x+0By55ml6IcGqY9x9HE0hyU0S+uDssrTQ0bPvuydG+iKCX85DzGnlT8k0Vs+EYgZl3KMWcvQ9TpGHW4LRL4GQ==}
+ /metro-source-map@0.80.5:
+ resolution: {integrity: sha512-DwSF4l03mKPNqCtyQ6K23I43qzU1BViAXnuH81eYWdHglP+sDlPpY+/7rUahXEo6qXEHXfAJgVoo1sirbXbmsQ==}
engines: {node: '>=18'}
dependencies:
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
invariant: 2.2.4
- metro-symbolicate: 0.80.4
+ metro-symbolicate: 0.80.5
nullthrows: 1.1.1
- ob1: 0.80.4
+ ob1: 0.80.5
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
@@ -10371,13 +10568,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /metro-symbolicate@0.80.4:
- resolution: {integrity: sha512-UmtH96G5TrcAgbIqdE4xA8MBS9fbZW9Pln+n7eJ0tQ0Fw0M/jzdpiZzhx3bIB2zzqbdm6Nv/kB1+aEo0WvXdyg==}
+ /metro-symbolicate@0.80.5:
+ resolution: {integrity: sha512-IsM4mTYvmo9JvIqwEkCZ5+YeDVPST78Q17ZgljfLdHLSpIivOHp9oVoiwQ/YGbLx0xRHRIS/tKiXueWBnj3UWA==}
engines: {node: '>=18'}
hasBin: true
dependencies:
invariant: 2.2.4
- metro-source-map: 0.80.4
+ metro-source-map: 0.80.5
nullthrows: 1.1.1
source-map: 0.5.7
through2: 2.0.5
@@ -10390,22 +10587,22 @@ packages:
resolution: {integrity: sha512-PlkGTQNqS51Bx4vuufSQCdSn2R2rt7korzngo+b5GCkeX5pjinPjnO2kNhQ8l+5bO0iUD/WZ9nsM2PGGKIkWFA==}
engines: {node: '>=16'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- /metro-transform-plugins@0.80.4:
- resolution: {integrity: sha512-cvmTLBA9ET64h+tgHt6prHlvOq98zBA1Glc9+wLZihPJo+Qmu9i3nQ1g4O+4aUnHivDlp+4C00BMNC+aC/buRQ==}
+ /metro-transform-plugins@0.80.5:
+ resolution: {integrity: sha512-7IdlTqK/k5+qE3RvIU5QdCJUPk4tHWEqgVuYZu8exeW+s6qOJ66hGIJjXY/P7ccucqF+D4nsbAAW5unkoUdS6g==}
engines: {node: '>=18'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -10415,11 +10612,11 @@ packages:
resolution: {integrity: sha512-mE1fxVAnJKmwwJyDtThildxxos9+DGs9+vTrx2ktSFMEVTtXS/bIv2W6hux1pqivqAfyJpTeACXHk5u2DgGvIQ==}
engines: {node: '>=16'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
- babel-preset-fbjs: 3.4.0(@babel/core@7.23.7)
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
+ babel-preset-fbjs: 3.4.0(@babel/core@7.23.9)
metro: 0.76.8
metro-babel-transformer: 0.76.8
metro-cache: 0.76.8
@@ -10433,20 +10630,21 @@ packages:
- supports-color
- utf-8-validate
- /metro-transform-worker@0.80.4:
- resolution: {integrity: sha512-hLCrlxXyyaV64XQNSiyY/0jMVvGXrgXMkpJ4KwH2t4clxbxyt6TBW+4TqmgAeU9WGclY0OuQ0HzfvIZiONcUOw==}
+ /metro-transform-worker@0.80.5:
+ resolution: {integrity: sha512-Q1oM7hfP+RBgAtzRFBDjPhArELUJF8iRCZ8OidqCpYzQJVGuJZ7InSnIf3hn1JyqiUQwv2f1LXBO78i2rAjzyA==}
engines: {node: '>=18'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
- metro: 0.80.4
- metro-babel-transformer: 0.80.4
- metro-cache: 0.80.4
- metro-cache-key: 0.80.4
- metro-source-map: 0.80.4
- metro-transform-plugins: 0.80.4
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
+ metro: 0.80.5
+ metro-babel-transformer: 0.80.5
+ metro-cache: 0.80.5
+ metro-cache-key: 0.80.5
+ metro-minify-terser: 0.80.5
+ metro-source-map: 0.80.5
+ metro-transform-plugins: 0.80.5
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
@@ -10461,12 +10659,12 @@ packages:
hasBin: true
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
accepts: 1.3.8
async: 3.2.5
chalk: 4.1.2
@@ -10491,7 +10689,7 @@ packages:
metro-inspector-proxy: 0.76.8
metro-minify-terser: 0.76.8
metro-minify-uglify: 0.76.8
- metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.7)
+ metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.9)
metro-resolver: 0.76.8
metro-runtime: 0.76.8
metro-source-map: 0.76.8
@@ -10514,18 +10712,18 @@ packages:
- supports-color
- utf-8-validate
- /metro@0.80.4:
- resolution: {integrity: sha512-fBhZKU1z44KdhS6sH6Sk97595A66EOniH+jI9OjKDu6piH1SIEqQgdWAuWfJJMzgBHcJceRRvJY1zzsOT/Zx0g==}
+ /metro@0.80.5:
+ resolution: {integrity: sha512-OE/CGbOgbi8BlTN1QqJgKOBaC27dS0JBQw473JcivrpgVnqIsluROA7AavEaTVUrB9wPUZvoNVDROn5uiM2jfw==}
engines: {node: '>=18'}
hasBin: true
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
accepts: 1.3.8
chalk: 4.1.2
ci-info: 2.0.0
@@ -10540,19 +10738,18 @@ packages:
jest-worker: 29.7.0
jsc-safe-url: 0.2.4
lodash.throttle: 4.1.1
- metro-babel-transformer: 0.80.4
- metro-cache: 0.80.4
- metro-cache-key: 0.80.4
- metro-config: 0.80.4
- metro-core: 0.80.4
- metro-file-map: 0.80.4
- metro-minify-terser: 0.80.4
- metro-resolver: 0.80.4
- metro-runtime: 0.80.4
- metro-source-map: 0.80.4
- metro-symbolicate: 0.80.4
- metro-transform-plugins: 0.80.4
- metro-transform-worker: 0.80.4
+ metro-babel-transformer: 0.80.5
+ metro-cache: 0.80.5
+ metro-cache-key: 0.80.5
+ metro-config: 0.80.5
+ metro-core: 0.80.5
+ metro-file-map: 0.80.5
+ metro-resolver: 0.80.5
+ metro-runtime: 0.80.5
+ metro-source-map: 0.80.5
+ metro-symbolicate: 0.80.5
+ metro-transform-plugins: 0.80.5
+ metro-transform-worker: 0.80.5
mime-types: 2.1.35
node-fetch: 2.7.0
nullthrows: 1.1.1
@@ -10614,14 +10811,14 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- /mini-css-extract-plugin@2.4.7(webpack@5.89.0):
+ /mini-css-extract-plugin@2.4.7(webpack@5.90.0):
resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
schema-utils: 4.2.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
@@ -10776,6 +10973,25 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ /nativewind@4.0.23(patch_hash=42qwizvrnoqgalbele35lpnaqi)(@babel/core@7.23.9)(react-native-reanimated@3.3.0)(react-native-safe-area-context@4.8.2)(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tailwindcss@3.3.2):
+ resolution: {integrity: sha512-7eKMjcdoZMqxmPwJhLwe5VbuwCNTdIXChxV9n4FwdzKTpZX3kNGj95J7fpqpefFPRT6yYp6SqK2n6TG/BSzA+w==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ tailwindcss: '>3.3.0'
+ dependencies:
+ react-native-css-interop: 0.0.22(@babel/core@7.23.9)(react-native-reanimated@3.3.0)(react-native-safe-area-context@4.8.2)(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tailwindcss@3.3.2)
+ tailwindcss: 3.3.2(ts-node@10.9.1)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - react
+ - react-native
+ - react-native-reanimated
+ - react-native-safe-area-context
+ - react-native-svg
+ - supports-color
+ dev: false
+ patched: true
+
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -10943,7 +11159,7 @@ packages:
/nwsapi@2.2.7:
resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
- /nx@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105):
+ /nx@17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107):
resolution: {integrity: sha512-rM5zXbuXLEuqQqcjVjClyvHwRJwt+NVImR2A6KFNG40Z60HP6X12wAxxeLHF5kXXTDRU0PFhf/yACibrpbPrAw==}
hasBin: true
requiresBuild: true
@@ -10956,13 +11172,13 @@ packages:
'@swc/core':
optional: true
dependencies:
- '@nrwl/tao': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.105)
- '@swc-node/register': 1.6.8(@swc/core@1.3.105)(typescript@5.2.2)
- '@swc/core': 1.3.105
+ '@nrwl/tao': 17.2.8(@swc-node/register@1.6.8)(@swc/core@1.3.107)
+ '@swc-node/register': 1.6.8(@swc/core@1.3.107)(typescript@5.2.2)
+ '@swc/core': 1.3.107
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.6
- axios: 1.6.5
+ axios: 1.6.7
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -11010,8 +11226,8 @@ packages:
resolution: {integrity: sha512-dlBkJJV5M/msj9KYA9upc+nUWVwuOFFTbu28X6kZeGwcuW+JxaHSBZ70SYQnk5M+j5JbNLR6yKHmgW4M5E7X5g==}
engines: {node: '>=16'}
- /ob1@0.80.4:
- resolution: {integrity: sha512-Lku8OBpq+fhF1ZdKUjbPnTNeqG+3OL0psGAEVJ8zcUiCB5/DPGR/rm3kLcjKDylzC9Rfv540/7I08+oImzfrhw==}
+ /ob1@0.80.5:
+ resolution: {integrity: sha512-zYDMnnNrFi/1Tqh0vo3PE4p97Tpl9/4MP2k2ECvkbLOZzQuAYZJLTUYVLZb7hJhbhjT+JJxAwBGS8iu5hCSd1w==}
engines: {node: '>=18'}
dev: false
@@ -11019,6 +11235,11 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
+ /object-hash@3.0.0:
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
+ engines: {node: '>= 6'}
+ dev: false
+
/object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
@@ -11359,7 +11580,7 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.1.0
+ lru-cache: 10.2.0
minipass: 7.0.4
/path-to-regexp@0.1.7:
@@ -11460,7 +11681,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.33
@@ -11472,7 +11693,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
postcss: 8.4.33
postcss-value-parser: 4.2.0
@@ -11519,7 +11740,47 @@ packages:
read-cache: 1.0.0
resolve: 1.22.8
- /postcss-loader@6.2.1(postcss@8.4.33)(webpack@5.89.0):
+ /postcss-import@15.1.0(postcss@8.4.33):
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+ dependencies:
+ postcss: 8.4.33
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.8
+ dev: false
+
+ /postcss-js@4.0.1(postcss@8.4.33):
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
+ engines: {node: ^12 || ^14 || >= 16}
+ peerDependencies:
+ postcss: ^8.4.21
+ dependencies:
+ camelcase-css: 2.0.1
+ postcss: 8.4.33
+ dev: false
+
+ /postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.1):
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
+ dependencies:
+ lilconfig: 3.0.0
+ postcss: 8.4.33
+ ts-node: 10.9.1(@swc/core@1.3.107)(@types/node@18.16.9)(typescript@5.2.2)
+ yaml: 2.3.4
+ dev: false
+
+ /postcss-loader@6.2.1(postcss@8.4.33)(webpack@5.90.0):
resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -11530,7 +11791,7 @@ packages:
klona: 2.0.6
postcss: 8.4.33
semver: 7.5.4
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/postcss-merge-longhand@6.0.2(postcss@8.4.33):
resolution: {integrity: sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==}
@@ -11548,7 +11809,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
caniuse-api: 3.0.0
cssnano-utils: 4.0.1(postcss@8.4.33)
postcss: 8.4.33
@@ -11580,7 +11841,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
cssnano-utils: 4.0.1(postcss@8.4.33)
postcss: 8.4.33
postcss-value-parser: 4.2.0
@@ -11631,6 +11892,16 @@ packages:
icss-utils: 5.1.0(postcss@8.4.33)
postcss: 8.4.33
+ /postcss-nested@6.0.1(postcss@8.4.33):
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.2.14
+ dependencies:
+ postcss: 8.4.33
+ postcss-selector-parser: 6.0.15
+ dev: false
+
/postcss-normalize-charset@6.0.1(postcss@8.4.33):
resolution: {integrity: sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==}
engines: {node: ^14 || ^16 || >=18.0}
@@ -11690,7 +11961,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
postcss: 8.4.33
postcss-value-parser: 4.2.0
@@ -11728,7 +11999,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
caniuse-api: 3.0.0
postcss: 8.4.33
@@ -11794,6 +12065,64 @@ packages:
fast-diff: 1.3.0
dev: true
+ /prettier-plugin-tailwindcss@0.5.11(prettier@3.2.4):
+ resolution: {integrity: sha512-AvI/DNyMctyyxGOjyePgi/gqj5hJYClZ1avtQvLlqMT3uDZkRbi4HhGUpok3DRzv9z7Lti85Kdj3s3/1CeNI0w==}
+ engines: {node: '>=14.21.3'}
+ peerDependencies:
+ '@ianvs/prettier-plugin-sort-imports': '*'
+ '@prettier/plugin-pug': '*'
+ '@shopify/prettier-plugin-liquid': '*'
+ '@trivago/prettier-plugin-sort-imports': '*'
+ prettier: ^3.0
+ prettier-plugin-astro: '*'
+ prettier-plugin-css-order: '*'
+ prettier-plugin-import-sort: '*'
+ prettier-plugin-jsdoc: '*'
+ prettier-plugin-marko: '*'
+ prettier-plugin-organize-attributes: '*'
+ prettier-plugin-organize-imports: '*'
+ prettier-plugin-style-order: '*'
+ prettier-plugin-svelte: '*'
+ prettier-plugin-twig-melody: '*'
+ peerDependenciesMeta:
+ '@ianvs/prettier-plugin-sort-imports':
+ optional: true
+ '@prettier/plugin-pug':
+ optional: true
+ '@shopify/prettier-plugin-liquid':
+ optional: true
+ '@trivago/prettier-plugin-sort-imports':
+ optional: true
+ prettier-plugin-astro:
+ optional: true
+ prettier-plugin-css-order:
+ optional: true
+ prettier-plugin-import-sort:
+ optional: true
+ prettier-plugin-jsdoc:
+ optional: true
+ prettier-plugin-marko:
+ optional: true
+ prettier-plugin-organize-attributes:
+ optional: true
+ prettier-plugin-organize-imports:
+ optional: true
+ prettier-plugin-style-order:
+ optional: true
+ prettier-plugin-svelte:
+ optional: true
+ prettier-plugin-twig-melody:
+ optional: true
+ dependencies:
+ prettier: 3.2.4
+ dev: true
+
+ /prettier@2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dev: false
+
/prettier@3.2.4:
resolution: {integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==}
engines: {node: '>=14'}
@@ -12046,7 +12375,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
@@ -12064,6 +12393,38 @@ packages:
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ /react-native-css-interop@0.0.22(@babel/core@7.23.9)(react-native-reanimated@3.3.0)(react-native-safe-area-context@4.8.2)(react-native-svg@13.9.0)(react-native@0.72.6)(react@18.2.0)(tailwindcss@3.3.2):
+ resolution: {integrity: sha512-JHLYHlLEqM13dy0XSxIPOWvqmQkPrqUt+KHPkbLV0sIiw/4aN6B5TPsNKZFX9bJJaZ//dAECn782R0MqDrTBWQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ react: '>=18'
+ react-native: '*'
+ react-native-reanimated: '>=3.3.0'
+ react-native-safe-area-context: '*'
+ react-native-svg: '*'
+ tailwindcss: ~3
+ peerDependenciesMeta:
+ react-native-safe-area-context:
+ optional: true
+ react-native-svg:
+ optional: true
+ dependencies:
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
+ babel-plugin-tester: 11.0.4(@babel/core@7.23.9)
+ lightningcss: 1.22.0
+ react: 18.2.0
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
+ react-native-reanimated: 3.3.0(@babel/core@7.23.9)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.23.3)(@babel/plugin-transform-shorthand-properties@7.23.3)(@babel/plugin-transform-template-literals@7.23.3)(react-native@0.72.6)(react@18.2.0)
+ react-native-safe-area-context: 4.8.2(react-native@0.72.6)(react@18.2.0)
+ react-native-svg: 13.9.0(react-native@0.72.6)(react@18.2.0)
+ tailwindcss: 3.3.2(ts-node@10.9.1)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: false
+
/react-native-gesture-handler@2.14.1(react-native@0.72.6)(react@18.2.0):
resolution: {integrity: sha512-YiM1BApV4aKeuwsM6O4C2ufwewYEKk6VMXOt0YqEZFMwABBFWhXLySFZYjBSNRU2USGppJbfHP1q1DfFQpKhdA==}
peerDependencies:
@@ -12076,7 +12437,33 @@ packages:
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
+ dev: false
+
+ /react-native-reanimated@3.3.0(@babel/core@7.23.9)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.23.3)(@babel/plugin-transform-shorthand-properties@7.23.3)(@babel/plugin-transform-template-literals@7.23.3)(react-native@0.72.6)(react@18.2.0):
+ resolution: {integrity: sha512-LzfpPZ1qXBGy5BcUHqw3pBC0qSd22qXS3t8hWSbozXNrBkzMhhOrcILE/nEg/PHpNNp1xvGOW8NwpAMF006roQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ '@babel/plugin-proposal-nullish-coalescing-operator': ^7.0.0-0
+ '@babel/plugin-proposal-optional-chaining': ^7.0.0-0
+ '@babel/plugin-transform-arrow-functions': ^7.0.0-0
+ '@babel/plugin-transform-shorthand-properties': ^7.0.0-0
+ '@babel/plugin-transform-template-literals': ^7.0.0-0
+ react: '*'
+ react-native: '*'
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-assign': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
+ convert-source-map: 2.0.0
+ invariant: 2.2.4
+ react: 18.2.0
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/react-native-safe-area-context@4.8.2(react-native@0.72.6)(react@18.2.0):
@@ -12086,7 +12473,7 @@ packages:
react-native: '*'
dependencies:
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/react-native-screens@3.29.0(react-native@0.72.6)(react@18.2.0):
@@ -12097,7 +12484,7 @@ packages:
dependencies:
react: 18.2.0
react-freeze: 1.0.3(react@18.2.0)
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
warn-once: 0.1.1
dev: false
@@ -12111,7 +12498,7 @@ packages:
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0)
'@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.2.2)
path-dirname: 1.0.2
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
react-native-svg: 13.9.0(react-native@0.72.6)(react@18.2.0)
transitivePeerDependencies:
- supports-color
@@ -12127,7 +12514,7 @@ packages:
css-select: 5.1.0
css-tree: 1.1.3
react: 18.2.0
- react-native: 0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0)
+ react-native: 0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0)
dev: false
/react-native-web@0.19.10(react-dom@18.2.0)(react@18.2.0):
@@ -12136,7 +12523,7 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@react-native/normalize-color': 2.1.0
fbjs: 3.0.5
inline-style-prefixer: 6.0.4
@@ -12150,7 +12537,7 @@ packages:
- encoding
dev: false
- /react-native@0.72.6(@babel/core@7.23.7)(@babel/preset-env@7.23.8)(react@18.2.0):
+ /react-native@0.72.6(@babel/core@7.23.9)(@babel/preset-env@7.23.9)(react@18.2.0):
resolution: {integrity: sha512-RafPY2gM7mcrFySS8TL8x+TIO3q7oAlHpzEmC7Im6pmXni6n1AuufGaVh0Narbr1daxstw7yW7T9BKW5dpVc2A==}
engines: {node: '>=16'}
hasBin: true
@@ -12158,11 +12545,11 @@ packages:
react: 18.2.0
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 11.3.7(@babel/core@7.23.7)
+ '@react-native-community/cli': 11.3.7(@babel/core@7.23.9)
'@react-native-community/cli-platform-android': 11.3.7
'@react-native-community/cli-platform-ios': 11.3.7
'@react-native/assets-registry': 0.72.0
- '@react-native/codegen': 0.72.8(@babel/preset-env@7.23.8)
+ '@react-native/codegen': 0.72.8(@babel/preset-env@7.23.9)
'@react-native/gradle-plugin': 0.72.11
'@react-native/js-polyfills': 0.72.1
'@react-native/normalize-colors': 0.72.0
@@ -12185,7 +12572,7 @@ packages:
promise: 8.3.0
react: 18.2.0
react-devtools-core: 4.28.5
- react-refresh: 0.4.3
+ react-refresh: 0.14.0
react-shallow-renderer: 16.15.0(react@18.2.0)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
@@ -12202,8 +12589,8 @@ packages:
- supports-color
- utf-8-validate
- /react-refresh@0.4.3:
- resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==}
+ /react-refresh@0.14.0:
+ resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
engines: {node: '>=0.10.0'}
/react-shallow-renderer@16.15.0(react@18.2.0):
@@ -12311,7 +12698,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
/regexp.prototype.flags@1.5.1:
resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
@@ -12515,7 +12902,7 @@ packages:
dependencies:
truncate-utf8-bytes: 1.0.2
- /sass-loader@12.6.0(sass@1.70.0)(webpack@5.89.0):
+ /sass-loader@12.6.0(sass@1.70.0)(webpack@5.90.0):
resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -12537,7 +12924,7 @@ packages:
klona: 2.0.6
neo-async: 2.6.2
sass: 1.70.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/sass@1.70.0:
resolution: {integrity: sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==}
@@ -12545,7 +12932,7 @@ packages:
hasBin: true
dependencies:
chokidar: 3.5.3
- immutable: 4.3.4
+ immutable: 4.3.5
source-map-js: 1.0.2
/sax@1.2.4:
@@ -12841,7 +13228,7 @@ packages:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-loader@3.0.2(webpack@5.89.0):
+ /source-map-loader@3.0.2(webpack@5.90.0):
resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -12850,7 +13237,7 @@ packages:
abab: 2.0.6
iconv-lite: 0.6.3
source-map-js: 1.0.2
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
@@ -13112,13 +13499,13 @@ packages:
/structured-headers@0.4.1:
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
- /style-loader@3.3.4(webpack@5.89.0):
+ /style-loader@3.3.4(webpack@5.90.0):
resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/stylehacks@6.0.2(postcss@8.4.33):
resolution: {integrity: sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==}
@@ -13126,7 +13513,7 @@ packages:
peerDependencies:
postcss: ^8.4.31
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
postcss: 8.4.33
postcss-selector-parser: 6.0.15
@@ -13134,7 +13521,7 @@ packages:
resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==}
dev: false
- /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.89.0):
+ /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.90.0):
resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -13144,13 +13531,13 @@ packages:
fast-glob: 3.3.2
normalize-path: 3.0.0
stylus: 0.59.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/stylus@0.59.0:
resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==}
hasBin: true
dependencies:
- '@adobe/css-tools': 4.3.2
+ '@adobe/css-tools': 4.3.3
debug: 4.3.4(supports-color@8.1.1)
glob: 7.2.3
sax: 1.2.4
@@ -13249,6 +13636,44 @@ packages:
tslib: 2.6.2
dev: true
+ /tailwind-merge@2.2.1:
+ resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==}
+ dependencies:
+ '@babel/runtime': 7.23.9
+ dev: false
+
+ /tailwindcss@3.3.2(ts-node@10.9.1):
+ resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ arg: 5.0.2
+ chokidar: 3.5.3
+ didyoumean: 1.2.2
+ dlv: 1.1.3
+ fast-glob: 3.3.2
+ glob-parent: 6.0.2
+ is-glob: 4.0.3
+ jiti: 1.21.0
+ lilconfig: 2.1.0
+ micromatch: 4.0.5
+ normalize-path: 3.0.0
+ object-hash: 3.0.0
+ picocolors: 1.0.0
+ postcss: 8.4.33
+ postcss-import: 15.1.0(postcss@8.4.33)
+ postcss-js: 4.0.1(postcss@8.4.33)
+ postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.1)
+ postcss-nested: 6.0.1(postcss@8.4.33)
+ postcss-selector-parser: 6.0.15
+ postcss-value-parser: 4.2.0
+ resolve: 1.22.8
+ sucrase: 3.35.0
+ transitivePeerDependencies:
+ - ts-node
+ dev: false
+
/tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
@@ -13336,7 +13761,7 @@ packages:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- /terser-webpack-plugin@5.3.10(@swc/core@1.3.105)(webpack@5.89.0):
+ /terser-webpack-plugin@5.3.10(@swc/core@1.3.107)(webpack@5.90.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -13353,12 +13778,12 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.22
- '@swc/core': 1.3.105
+ '@swc/core': 1.3.107
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.27.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
/terser@5.27.0:
resolution: {integrity: sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==}
@@ -13485,7 +13910,7 @@ packages:
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- /ts-jest@29.1.2(@babel/core@7.23.7)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.2.2):
+ /ts-jest@29.1.2(@babel/core@7.23.9)(babel-jest@29.7.0)(jest@29.7.0)(typescript@5.2.2):
resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==}
engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
hasBin: true
@@ -13506,8 +13931,8 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.23.7
- babel-jest: 29.7.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ babel-jest: 29.7.0(@babel/core@7.23.9)
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
jest: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1)
@@ -13520,7 +13945,7 @@ packages:
yargs-parser: 21.1.1
dev: true
- /ts-loader@9.5.1(typescript@5.2.2)(webpack@5.89.0):
+ /ts-loader@9.5.1(typescript@5.2.2)(webpack@5.90.0):
resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -13533,9 +13958,9 @@ packages:
semver: 7.5.4
source-map: 0.7.4
typescript: 5.2.2
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
- /ts-node@10.9.1(@swc/core@1.3.105)(@types/node@18.16.9)(typescript@5.2.2):
+ /ts-node@10.9.1(@swc/core@1.3.107)(@types/node@18.16.9)(typescript@5.2.2):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -13550,7 +13975,7 @@ packages:
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@swc/core': 1.3.105
+ '@swc/core': 1.3.107
'@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
@@ -13793,13 +14218,13 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- /update-browserslist-db@1.0.13(browserslist@4.22.2):
+ /update-browserslist-db@1.0.13(browserslist@4.22.3):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
escalade: 3.1.1
picocolors: 1.0.0
@@ -13940,7 +14365,7 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- /webpack-dev-middleware@5.3.3(webpack@5.89.0):
+ /webpack-dev-middleware@5.3.3(webpack@5.90.0):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -13951,9 +14376,9 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
- /webpack-dev-server@4.15.1(webpack@5.89.0):
+ /webpack-dev-server@4.15.1(webpack@5.90.0):
resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
engines: {node: '>= 12.13.0'}
hasBin: true
@@ -13994,8 +14419,8 @@ packages:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.89.0(@swc/core@1.3.105)
- webpack-dev-middleware: 5.3.3(webpack@5.89.0)
+ webpack: 5.90.0(@swc/core@1.3.107)
+ webpack-dev-middleware: 5.3.3(webpack@5.90.0)
ws: 8.16.0
transitivePeerDependencies:
- bufferutil
@@ -14011,7 +14436,7 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- /webpack-subresource-integrity@5.1.0(webpack@5.89.0):
+ /webpack-subresource-integrity@5.1.0(webpack@5.90.0):
resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==}
engines: {node: '>= 12'}
peerDependencies:
@@ -14022,10 +14447,10 @@ packages:
optional: true
dependencies:
typed-assert: 1.0.9
- webpack: 5.89.0(@swc/core@1.3.105)
+ webpack: 5.90.0(@swc/core@1.3.107)
- /webpack@5.89.0(@swc/core@1.3.105):
- resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
+ /webpack@5.90.0(@swc/core@1.3.107):
+ resolution: {integrity: sha512-bdmyXRCXeeNIePv6R6tGPyy20aUobw4Zy8r0LUS2EWO+U+Ke/gYDgsCh7bl5rB6jPpr4r0SZa6dPxBxLooDT3w==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -14041,7 +14466,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.6
acorn: 8.11.3
acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.22.2
+ browserslist: 4.22.3
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 1.4.1
@@ -14055,7 +14480,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.105)(webpack@5.89.0)
+ terser-webpack-plugin: 5.3.10(@swc/core@1.3.107)(webpack@5.90.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies: