diff --git a/package.json b/package.json
index fc12aff46..e726575ef 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "kwenta",
- "version": "7.9.8",
+ "version": "7.9.9",
"description": "Kwenta",
"main": "index.js",
"scripts": {
@@ -51,5 +51,16 @@
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"typescript": "5.1.6"
+ },
+ "pnpm": {
+ "overrides": {
+ "got@<11.8.5": ">=11.8.5",
+ "@adobe/css-tools@<4.3.1": ">=4.3.1",
+ "semver@<5.7.2": ">=5.7.2",
+ "semver@>=7.0.0 <7.5.2": ">=7.5.2",
+ "get-func-name@<2.0.1": ">=2.0.1",
+ "zod@<=3.22.2": ">=3.22.3",
+ "postcss@<8.4.31": ">=8.4.31"
+ }
}
}
diff --git a/packages/app/package.json b/packages/app/package.json
index 30851c9a0..b3b89348e 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -1,6 +1,6 @@
{
"name": "@kwenta/app",
- "version": "7.9.8",
+ "version": "7.9.9",
"scripts": {
"dev": "next",
"build": "next build",
diff --git a/packages/app/src/constants/links.ts b/packages/app/src/constants/links.ts
index c21e9de8d..19b7a1177 100644
--- a/packages/app/src/constants/links.ts
+++ b/packages/app/src/constants/links.ts
@@ -17,9 +17,6 @@ export const EXTERNAL_LINKS = {
OneInchLink: (from: CurrencyKey, to: CurrencyKey) => `https://1inch.exchange/#/${from}/${to}`,
OptimismTokenBridge: 'https://gateway.optimism.io',
},
- Options: {
- Trade: 'https://options.kwenta.eth.limo/#/trade',
- },
Synthetix: {
Home: 'https://www.synthetix.io',
Litepaper: 'https://docs.synthetix.io/litepaper/',
diff --git a/packages/app/src/constants/routes.ts b/packages/app/src/constants/routes.ts
index 924930898..bbd0b61dd 100644
--- a/packages/app/src/constants/routes.ts
+++ b/packages/app/src/constants/routes.ts
@@ -26,6 +26,7 @@ export const ROUTES = {
Stake: normalizeRoute('/dashboard', 'staking', 'tab'),
Rewards: normalizeRoute('/dashboard', 'rewards', 'tab'),
Migrate: normalizeRoute('/dashboard', 'migrate', 'tab'),
+ Redeem: normalizeRoute('/dashboard', 'redeem', 'tab'),
TradingRewards: formatUrl('/dashboard/staking', { tab: 'trading-rewards' }),
},
Exchange: {
diff --git a/packages/app/src/pages/dashboard/redeem.tsx b/packages/app/src/pages/dashboard/redeem.tsx
new file mode 100644
index 000000000..d4574e4a5
--- /dev/null
+++ b/packages/app/src/pages/dashboard/redeem.tsx
@@ -0,0 +1,25 @@
+import Head from 'next/head'
+import { FC, ReactNode } from 'react'
+import { useTranslation } from 'react-i18next'
+
+import DashboardLayout from 'sections/dashboard/DashboardLayout'
+import RedemptionTab from 'sections/dashboard/RedemptionTab'
+
+type RedemptionComponent = FC & { getLayout: (page: ReactNode) => JSX.Element }
+
+const RedeemPage: RedemptionComponent = () => {
+ const { t } = useTranslation()
+
+ return (
+ <>
+
+ {t('dashboard-redeem.page-title')}
+
+
+ >
+ )
+}
+
+RedeemPage.getLayout = (page) => {page}
+
+export default RedeemPage
diff --git a/packages/app/src/sections/dashboard/DashboardLayout.tsx b/packages/app/src/sections/dashboard/DashboardLayout.tsx
index 21340cf5c..55bfedffb 100644
--- a/packages/app/src/sections/dashboard/DashboardLayout.tsx
+++ b/packages/app/src/sections/dashboard/DashboardLayout.tsx
@@ -10,7 +10,7 @@ import { EXTERNAL_LINKS } from 'constants/links'
import ROUTES from 'constants/routes'
import AppLayout from 'sections/shared/Layout/AppLayout'
import { useAppSelector } from 'state/hooks'
-import { selectStakingMigrationRequired } from 'state/staking/selectors'
+import { selectRedemptionRequired, selectStakingMigrationRequired } from 'state/staking/selectors'
import { selectStartMigration } from 'state/stakingMigration/selectors'
import { LeftSideContent, PageContent } from 'styles/common'
@@ -23,6 +23,7 @@ enum Tab {
Governance = 'governance',
Stake = 'staking',
Migrate = 'migrate',
+ Redeem = 'redeem',
}
const Tabs = Object.values(Tab)
@@ -32,6 +33,7 @@ const DashboardLayout: FC<{ children?: ReactNode }> = ({ children }) => {
const router = useRouter()
const stakingMigrationRequired = useAppSelector(selectStakingMigrationRequired)
const startMigration = useAppSelector(selectStartMigration)
+ const redemptionRequired = useAppSelector(selectRedemptionRequired)
const tabQuery = useMemo(() => {
if (router.pathname) {
@@ -79,6 +81,13 @@ const DashboardLayout: FC<{ children?: ReactNode }> = ({ children }) => {
href: ROUTES.Dashboard.Migrate,
hidden: !stakingMigrationRequired && !startMigration,
},
+ {
+ name: Tab.Redeem,
+ label: t('dashboard.tabs.redeem'),
+ active: activeTab === Tab.Redeem,
+ href: ROUTES.Dashboard.Redeem,
+ hidden: !redemptionRequired,
+ },
{
name: Tab.Governance,
label: t('dashboard.tabs.governance'),
@@ -87,7 +96,7 @@ const DashboardLayout: FC<{ children?: ReactNode }> = ({ children }) => {
external: true,
},
],
- [t, activeTab, startMigration, stakingMigrationRequired]
+ [t, activeTab, startMigration, stakingMigrationRequired, redemptionRequired]
)
const visibleTabs = TABS.filter(({ hidden }) => !hidden)
diff --git a/packages/app/src/sections/dashboard/RedemptionTab.tsx b/packages/app/src/sections/dashboard/RedemptionTab.tsx
new file mode 100644
index 000000000..4ab4a1253
--- /dev/null
+++ b/packages/app/src/sections/dashboard/RedemptionTab.tsx
@@ -0,0 +1,49 @@
+import { useTranslation } from 'react-i18next'
+import styled from 'styled-components'
+
+import { FlexDivRowCentered } from 'components/layout/flex'
+import { SplitContainer } from 'components/layout/grid'
+import { Heading } from 'components/Text'
+import media from 'styles/media'
+
+import RedeemInputCard from './Stake/InputCards/RedeempInputCard'
+
+const RedemptionTab = () => {
+ const { t } = useTranslation()
+
+ return (
+
+
+ {t('dashboard.stake.tabs.redeem.title')}
+
+
+
+
+
+
+ )
+}
+
+const StyledHeading = styled(Heading)`
+ font-weight: 400;
+`
+
+const TitleContainer = styled(FlexDivRowCentered)`
+ margin: 30px 0px;
+ column-gap: 10%;
+`
+
+const Container = styled.div`
+ ${media.lessThan('lg')`
+ padding: 0px 15px;
+ `}
+ margin-top: 20px;
+`
+
+export default RedemptionTab
diff --git a/packages/app/src/sections/dashboard/Stake/InputCards/RedeempInputCard.tsx b/packages/app/src/sections/dashboard/Stake/InputCards/RedeempInputCard.tsx
new file mode 100644
index 000000000..24c4b8408
--- /dev/null
+++ b/packages/app/src/sections/dashboard/Stake/InputCards/RedeempInputCard.tsx
@@ -0,0 +1,130 @@
+import { truncateNumbers } from '@kwenta/sdk/utils'
+import { FC, useCallback, useMemo } from 'react'
+import { useTranslation } from 'react-i18next'
+import styled from 'styled-components'
+
+import Button from 'components/Button'
+import ErrorView from 'components/ErrorView'
+import { FlexDivRowCentered } from 'components/layout/flex'
+import { StakingCard } from 'sections/dashboard/Stake/card'
+import { useAppDispatch, useAppSelector } from 'state/hooks'
+import { approveKwentaToken, redeemToken } from 'state/staking/actions'
+import {
+ selectIsVeKwentaTokenApproved,
+ selectIsVKwentaTokenApproved,
+ selectVeKwentaBalance,
+ selectVKwentaBalance,
+} from 'state/staking/selectors'
+import { selectDisableRedeemEscrowKwenta } from 'state/stakingMigration/selectors'
+import { numericValueCSS } from 'styles/common'
+
+type RedeemInputCardProps = {
+ inputLabel: string
+ isVKwenta: boolean
+}
+
+const RedeemInputCard: FC = ({ inputLabel, isVKwenta }) => {
+ const { t } = useTranslation()
+ const dispatch = useAppDispatch()
+
+ const vKwentaBalance = useAppSelector(selectVKwentaBalance)
+ const veKwentaBalance = useAppSelector(selectVeKwentaBalance)
+ const isVKwentaApproved = useAppSelector(selectIsVKwentaTokenApproved)
+ const isVeKwentaApproved = useAppSelector(selectIsVeKwentaTokenApproved)
+ const VeKwentaDisableRedeem = useAppSelector(selectDisableRedeemEscrowKwenta)
+
+ const isApproved = useMemo(
+ () => (isVKwenta ? isVKwentaApproved : isVeKwentaApproved),
+ [isVKwenta, isVKwentaApproved, isVeKwentaApproved]
+ )
+
+ const balance = useMemo(
+ () => (isVKwenta ? vKwentaBalance : veKwentaBalance),
+ [isVKwenta, vKwentaBalance, veKwentaBalance]
+ )
+
+ const DisableRedeem = useMemo(
+ () => (isVKwenta ? false : VeKwentaDisableRedeem),
+ [isVKwenta, VeKwentaDisableRedeem]
+ )
+
+ const buttonLabel = useMemo(() => {
+ return isApproved
+ ? t('dashboard.stake.tabs.stake-table.redeem')
+ : t('dashboard.stake.tabs.stake-table.approve')
+ }, [isApproved, t])
+
+ const submitRedeem = useCallback(() => {
+ const token = isVKwenta ? 'vKwenta' : 'veKwenta'
+
+ if (!isApproved) {
+ dispatch(approveKwentaToken(token))
+ } else {
+ dispatch(redeemToken(token))
+ }
+ }, [dispatch, isApproved, isVKwenta])
+
+ return (
+ <>
+
+
+
+ {inputLabel}
+
+ {t('dashboard.stake.tabs.stake-table.balance')}
+ {truncateNumbers(balance, 4)}
+
+
+
+ {DisableRedeem ? (
+
+ ) : (
+
+ )}
+
+ >
+ )
+}
+
+const StyledFlexDivRowCentered = styled(FlexDivRowCentered)`
+ column-gap: 5px;
+`
+
+const StakingInputCardContainer = styled(StakingCard)`
+ min-height: 125px;
+ max-height: 250px;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+`
+
+const StakeInputHeader = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 10px;
+ color: ${(props) => props.theme.colors.selectedTheme.title};
+ font-size: 14px;
+ .max {
+ color: ${(props) => props.theme.colors.selectedTheme.button.text.primary};
+ ${numericValueCSS};
+ }
+`
+
+export default RedeemInputCard
diff --git a/packages/app/src/sections/futures/Trade/ShowPercentage.tsx b/packages/app/src/sections/futures/Trade/ShowPercentage.tsx
index 349acdd41..0e5265e3a 100644
--- a/packages/app/src/sections/futures/Trade/ShowPercentage.tsx
+++ b/packages/app/src/sections/futures/Trade/ShowPercentage.tsx
@@ -23,6 +23,15 @@ const ShowPercentage: React.FC = ({
leverageWei,
sizeWei,
}) => {
+ const isLoss = useMemo(() => {
+ if (!targetPrice || !price || !leverageSide) return false
+
+ const targetPriceWei = wei(targetPrice)
+ const positiveDiff = targetPriceWei.gt(price)
+
+ return leverageSide === 'short' ? positiveDiff : !positiveDiff
+ }, [price, targetPrice, leverageSide])
+
const [calculatePercentage, calculatePL] = useMemo(() => {
if (!targetPrice || !price || !leverageSide || !sizeWei) return ''
const priceWei = wei(targetPrice)
@@ -39,21 +48,24 @@ const ShowPercentage: React.FC = ({
const percentage = diff.div(price).mul(leverageWei)
const profitLoss = sizeWei.mul(percentage.div(leverageWei)).mul(isStopLoss ? -1 : 1)
- return [formatPercent(percentage), formatDollars(profitLoss, { sign: isStopLoss ? '' : '+' })]
+ return [
+ formatPercent(percentage),
+ formatDollars(profitLoss, { sign: profitLoss.lt(0) ? '' : '+' }),
+ ]
}, [price, isStopLoss, leverageSide, leverageWei, targetPrice, sizeWei])
return (
- {calculatePL}
+ {calculatePL}
{calculatePercentage}
)
}
-const ProfitLoss = styled.span<{ isStopLoss: boolean }>`
+const ProfitLoss = styled.span<{ isLoss: boolean }>`
margin-right: 0.7rem;
- color: ${({ theme, isStopLoss }) =>
- isStopLoss
+ color: ${({ theme, isLoss }) =>
+ isLoss
? theme.colors.selectedTheme.newTheme.text.negative
: theme.colors.selectedTheme.newTheme.text.positive};
`
diff --git a/packages/app/src/sections/shared/Layout/AppLayout/Header/constants.tsx b/packages/app/src/sections/shared/Layout/AppLayout/Header/constants.tsx
index f5cf85bfa..c2b9d7bdb 100644
--- a/packages/app/src/sections/shared/Layout/AppLayout/Header/constants.tsx
+++ b/packages/app/src/sections/shared/Layout/AppLayout/Header/constants.tsx
@@ -107,10 +107,6 @@ export const getMenuLinks = (isMobile: boolean): MenuLinks => [
i18nLabel: 'header.nav.referrals',
link: ROUTES.Referrals.Home,
},
- {
- i18nLabel: 'header.nav.options.title',
- link: EXTERNAL_LINKS.Options.Trade,
- },
]
export const DESKTOP_NAV_LINKS = getMenuLinks(false).filter((m) => !m.hidden)
diff --git a/packages/app/src/state/futures/smartMargin/actions.ts b/packages/app/src/state/futures/smartMargin/actions.ts
index 2f06c5cd7..0794612ac 100644
--- a/packages/app/src/state/futures/smartMargin/actions.ts
+++ b/packages/app/src/state/futures/smartMargin/actions.ts
@@ -583,8 +583,7 @@ export const editClosePositionPrice =
(marketKey: FuturesMarketKey, price: string): AppThunk =>
(dispatch, getState) => {
const { nativeSizeDelta, orderType } = selectCloseSMPositionOrderInputs(getState())
- const marketPrice = selectMarketIndexPrice(getState())
- const { position } = selectEditPositionModalInfo(getState())
+ const { position, marketPrice } = selectEditPositionModalInfo(getState())
const closeTradeSide =
position?.activePosition.side === PositionSide.SHORT ? PositionSide.LONG : PositionSide.SHORT
const invalidLabel = orderPriceInvalidLabel(
diff --git a/packages/app/src/state/staking/actions.ts b/packages/app/src/state/staking/actions.ts
index f1ccc2b88..1b7d04b73 100644
--- a/packages/app/src/state/staking/actions.ts
+++ b/packages/app/src/state/staking/actions.ts
@@ -57,8 +57,12 @@ export const fetchStakingData = createAsyncThunk state.staking.vKwentaBalance,
+ toWei
+)
+
+export const selectVeKwentaBalance = createSelector(
+ (state: RootState) => state.staking.veKwentaBalance,
+ toWei
+)
+
+export const selectRedemptionRequired = createSelector(
+ selectVKwentaBalance,
+ selectVeKwentaBalance,
+ (vKwentaBalance, veKwentaBalance) => vKwentaBalance.gt(0) || veKwentaBalance.gt(0)
+)
+
+export const selectIsVKwentaTokenApproved = createSelector(
+ selectVKwentaBalance,
+ (state: RootState) => state.staking.vKwentaAllowance,
+ (vKwentaBalance, vKwentaAllowance) => vKwentaBalance.lte(vKwentaAllowance)
+)
+
+export const selectIsVeKwentaTokenApproved = createSelector(
+ selectVeKwentaBalance,
+ (state: RootState) => state.staking.veKwentaAllowance,
+ (veKwentaBalance, veKwentaAllowance) => veKwentaBalance.lte(veKwentaAllowance)
+)
diff --git a/packages/app/src/state/staking/types.ts b/packages/app/src/state/staking/types.ts
index 2fd56adff..f7c77019b 100644
--- a/packages/app/src/state/staking/types.ts
+++ b/packages/app/src/state/staking/types.ts
@@ -12,9 +12,13 @@ type StakeBalance = {
type StakingMiscInfo = {
kwentaBalance: string
+ vKwentaBalance: string
+ veKwentaBalance: string
kwentaAllowance: string
epochPeriod: number
weekCounter: number
+ vKwentaAllowance: string
+ veKwentaAllowance: string
}
type StakingMiscInfoV2 = {
diff --git a/packages/app/src/state/stakingMigration/selectors.ts b/packages/app/src/state/stakingMigration/selectors.ts
index b399213f7..1f52873db 100644
--- a/packages/app/src/state/stakingMigration/selectors.ts
+++ b/packages/app/src/state/stakingMigration/selectors.ts
@@ -172,3 +172,9 @@ export const selectStartMigration = createSelector(
selectInMigrationPeriod,
(totalEscrowUnmigrated, inMigrationPeriod) => totalEscrowUnmigrated.gt(0) && inMigrationPeriod
)
+
+export const selectDisableRedeemEscrowKwenta = createSelector(
+ selectIsMigrationPeriodStarted,
+ selectInMigrationPeriod,
+ (isMigrationPeriodStarted, inMigrationPeriod) => isMigrationPeriodStarted && !inMigrationPeriod
+)
diff --git a/packages/app/src/translations/en.json b/packages/app/src/translations/en.json
index 28cce5720..80854ee7f 100644
--- a/packages/app/src/translations/en.json
+++ b/packages/app/src/translations/en.json
@@ -365,6 +365,7 @@
"staking": "Staking & Rewards",
"earn": "Earn",
"migrate": "Migrate to V2",
+ "redeem": "Redeem",
"v1-staking": "V1 Staking"
},
"overview": {
@@ -659,7 +660,8 @@
"reclaimable": "Reclaimable"
},
"redeem": {
- "title": "Redeem"
+ "title": "Redeem",
+ "warning": "You migration window is closed. Please use an unmigrated wallet to redeem your escrowed $KWENTA."
},
"stake-table": {
"stake": "Stake",
@@ -730,6 +732,9 @@
"dashboard-rewards": {
"page-title": "Rewards | Kwenta"
},
+ "dashboard-redeem": {
+ "page-title": "Redemption | Kwenta"
+ },
"futures": {
"page-title": "Kwenta Futures",
"cta-buttons": {
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index c5803cac3..fb3512917 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@kwenta/sdk",
- "version": "1.0.12",
+ "version": "1.0.13",
"description": "SDK for headless interaction with Kwenta",
"main": "dist/index.js",
"directories": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d6e106524..1cbca67c8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,6 +4,15 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ got@<11.8.5: '>=11.8.5'
+ '@adobe/css-tools@<4.3.1': '>=4.3.1'
+ semver@<5.7.2: '>=5.7.2'
+ semver@>=7.0.0 <7.5.2: '>=7.5.2'
+ get-func-name@<2.0.1: '>=2.0.1'
+ zod@<=3.22.2: '>=3.22.3'
+ postcss@<8.4.31: '>=8.4.31'
+
importers:
.:
@@ -22,13 +31,13 @@ importers:
version: 8.10.0(eslint@8.47.0)
eslint-config-react-app:
specifier: 7.0.1
- version: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.47.0)(typescript@5.1.6)
+ version: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.47.0)(typescript@5.1.6)
eslint-plugin-cypress:
specifier: 2.14.0
version: 2.14.0(eslint@8.47.0)
eslint-plugin-flowtype:
specifier: 8.0.3
- version: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.47.0)
+ version: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.47.0)
eslint-plugin-import:
specifier: 2.28.1
version: 2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.5.5)(eslint@8.47.0)
@@ -157,7 +166,7 @@ importers:
version: 2.0.0
next:
specifier: 13.4.13
- version: 13.4.13(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.4.13(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0)
next-compose-plugins:
specifier: 2.2.1
version: 2.2.1
@@ -214,10 +223,10 @@ importers:
version: 6.0.0(react@18.2.0)(redux@4.2.1)
slick-carousel:
specifier: 1.8.1
- version: 1.8.1(jquery@3.7.0)
+ version: 1.8.1(jquery@3.7.1)
styled-components:
specifier: 5.3.11
- version: 5.3.11(@babel/core@7.22.9)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
+ version: 5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
styled-media-query:
specifier: 2.1.2
version: 2.1.2(styled-components@5.3.11)
@@ -245,7 +254,7 @@ importers:
version: 7.0.27(react-dom@18.2.0)(react@18.2.0)
'@storybook/nextjs':
specifier: 7.0.27
- version: 7.0.27(@babel/core@7.22.9)(esbuild@0.17.19)(next@13.4.13)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(webpack@5.88.2)
+ version: 7.0.27(@babel/core@7.23.0)(esbuild@0.17.19)(next@13.4.13)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(webpack@5.88.2)
'@storybook/react':
specifier: 7.0.27
version: 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
@@ -266,7 +275,7 @@ importers:
version: 8.0.1(@types/react@18.2.22)(react-dom@18.2.0)(react-test-renderer@17.0.1)(react@18.2.0)
'@testing-library/user-event':
specifier: 14.4.3
- version: 14.4.3(@testing-library/dom@9.3.1)
+ version: 14.4.3(@testing-library/dom@9.3.3)
'@typechain/ethers-v5':
specifier: ^10.2.1
version: 10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2)(ethers@5.7.2)(typechain@8.1.1)(typescript@5.1.6)
@@ -323,7 +332,7 @@ importers:
version: 29.6.2
jest-preview:
specifier: ^0.3.1
- version: 0.3.1(postcss@8.4.30)
+ version: 0.3.1(postcss@8.4.31)
jest-transformer-svg:
specifier: ^2.0.1
version: 2.0.1(jest@29.6.2)(react@18.2.0)
@@ -334,8 +343,8 @@ importers:
specifier: 3.0.0
version: 3.0.0
postcss:
- specifier: 8.4.30
- version: 8.4.30
+ specifier: '>=8.4.31'
+ version: 8.4.31
prettier:
specifier: 2.8.8
version: 2.8.8
@@ -407,7 +416,7 @@ importers:
version: 5.7.2
graphql-request:
specifier: ^6.1.0
- version: 6.1.0(graphql@16.7.1)
+ version: 6.1.0(graphql@16.8.1)
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -446,8 +455,8 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- /@adobe/css-tools@4.2.0:
- resolution: {integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==}
+ /@adobe/css-tools@4.3.1:
+ resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==}
dev: true
/@ampproject/remapping@2.2.1:
@@ -464,12 +473,23 @@ packages:
default-browser-id: 3.0.0
dev: true
+ /@babel/code-frame@7.22.13:
+ resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.22.20
+ chalk: 2.4.2
+
/@babel/code-frame@7.22.5:
resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.22.5
+ /@babel/compat-data@7.22.20:
+ resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==}
+ engines: {node: '>=6.9.0'}
+
/@babel/compat-data@7.22.5:
resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==}
engines: {node: '>=6.9.0'}
@@ -478,6 +498,7 @@ packages:
/@babel/compat-data@7.22.9:
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
+ dev: true
/@babel/core@7.21.8:
resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==}
@@ -546,15 +567,38 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/core@7.23.0:
+ resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
+ '@babel/helpers': 7.23.1
+ '@babel/parser': 7.23.0
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.0
+ '@babel/types': 7.23.0
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@5.5.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- /@babel/eslint-parser@7.22.5(@babel/core@7.22.5)(eslint@8.47.0):
- resolution: {integrity: sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ==}
+ /@babel/eslint-parser@7.22.15(@babel/core@7.23.0)(eslint@8.47.0):
+ resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
- '@babel/core': '>=7.11.0'
+ '@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.23.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.47.0
eslint-visitor-keys: 2.1.0
@@ -588,6 +632,16 @@ packages:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.18
jsesc: 2.5.2
+ dev: true
+
+ /@babel/generator@7.23.0:
+ resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.0
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.19
+ jsesc: 2.5.2
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
@@ -602,6 +656,16 @@ packages:
'@babel/types': 7.22.5
dev: true
+ /@babel/helper-compilation-targets@7.22.15:
+ resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/compat-data': 7.22.20
+ '@babel/helper-validator-option': 7.22.15
+ browserslist: 4.22.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
/@babel/helper-compilation-targets@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==}
engines: {node: '>=6.9.0'}
@@ -630,14 +694,14 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-compilation-targets@7.22.5(@babel/core@7.22.9):
+ /@babel/helper-compilation-targets@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.22.5
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-validator-option': 7.22.5
browserslist: 4.21.9
lru-cache: 5.1.1
@@ -684,6 +748,39 @@ packages:
browserslist: 4.21.9
lru-cache: 5.1.1
semver: 6.3.1
+ dev: true
+
+ /@babel/helper-compilation-targets@7.22.9(@babel/core@7.23.0):
+ resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-validator-option': 7.22.5
+ browserslist: 4.21.9
+ lru-cache: 5.1.1
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
+ dev: true
/@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==}
@@ -745,6 +842,26 @@ packages:
- supports-color
dev: true
+ /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.5
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==}
engines: {node: '>=6.9.0'}
@@ -769,13 +886,13 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.22.9):
+ /@babel/helper-create-regexp-features-plugin@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -813,13 +930,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.9):
+ /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.0):
resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
@@ -828,6 +945,10 @@ packages:
- supports-color
dev: true
+ /@babel/helper-environment-visitor@7.22.20:
+ resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-environment-visitor@7.22.5:
resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
engines: {node: '>=6.9.0'}
@@ -839,6 +960,13 @@ packages:
'@babel/template': 7.22.5
'@babel/types': 7.22.5
+ /@babel/helper-function-name@7.23.0:
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
+
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
@@ -852,6 +980,19 @@ packages:
'@babel/types': 7.22.5
dev: true
+ /@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.0
+ dev: true
+
+ /@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.0
+
/@babel/helper-module-imports@7.22.5:
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
@@ -900,6 +1041,20 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.5
+ dev: true
+
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
@@ -912,6 +1067,18 @@ packages:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.0):
+ resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-wrap-function': 7.22.20
+ dev: true
+
/@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==}
engines: {node: '>=6.9.0'}
@@ -942,13 +1109,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.22.9):
+ /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.22.5
@@ -957,6 +1124,18 @@ packages:
- supports-color
dev: true
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.0):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
+
/@babel/helper-replace-supers@7.22.5:
resolution: {integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==}
engines: {node: '>=6.9.0'}
@@ -1000,13 +1179,31 @@ packages:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-validator-identifier@7.22.20:
+ resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-validator-identifier@7.22.5:
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-validator-option@7.22.15:
+ resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-validator-option@7.22.5:
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-wrap-function@7.22.20:
+ resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.23.0
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
+ dev: true
/@babel/helper-wrap-function@7.22.5:
resolution: {integrity: sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==}
@@ -1040,6 +1237,25 @@ packages:
'@babel/types': 7.22.5
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/helpers@7.23.1:
+ resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.0
+ '@babel/types': 7.23.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/highlight@7.22.20:
+ resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
/@babel/highlight@7.22.5:
resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
@@ -1070,6 +1286,24 @@ packages:
hasBin: true
dependencies:
'@babel/types': 7.22.5
+ dev: true
+
+ /@babel/parser@7.23.0:
+ resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.0
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
@@ -1091,14 +1325,26 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0)
dev: true
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.21.8):
@@ -1125,16 +1371,16 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.22.5)
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-transform-optional-chaining': 7.22.5(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.8):
@@ -1165,27 +1411,27 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.5):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5)
+ '@babel/core': 7.22.9
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9)
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
@@ -1205,20 +1451,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators@7.22.5(@babel/core@7.22.5):
- resolution: {integrity: sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==}
+ /@babel/plugin-proposal-decorators@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-kYsT+f5ARWF6AdFmqoEEp+hpqxEB8vGmRWfw2aj78M2vTwS2uHW91EF58iFm1Z9U8Y/RrLu2XKJn46P9ca1b0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.5
- '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.22.5)
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0)
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.8):
@@ -1243,15 +1487,15 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.8)
dev: true
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.9):
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.0):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.8):
@@ -1287,26 +1531,26 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.5):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.9):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.22.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.8):
@@ -1320,26 +1564,15 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
dev: true
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.5):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5)
- dev: true
-
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.8):
@@ -1356,18 +1589,18 @@ packages:
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.8)
dev: true
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.9):
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.0):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.8):
@@ -1393,28 +1626,28 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.5):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.9):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.22.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.22.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.9):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.0):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@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.22.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.8):
@@ -1430,14 +1663,14 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.5):
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
@@ -1452,13 +1685,13 @@ packages:
'@babel/core': 7.22.5
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
dev: true
/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.21.8):
@@ -1476,17 +1709,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.5):
+ /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.0):
resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.5)
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -1513,14 +1746,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1551,6 +1784,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.9):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
@@ -1560,6 +1802,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.8):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -1587,6 +1838,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.8):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -1607,23 +1867,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.0):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.22.5):
- resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==}
+ /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.0):
+ resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1645,12 +1905,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1672,32 +1932,32 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.5):
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.22.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1721,13 +1981,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1741,13 +2001,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1778,6 +2038,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.8):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -1805,6 +2074,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
@@ -1823,6 +2101,16 @@ packages:
dependencies:
'@babel/core': 7.22.9
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.8):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
@@ -1851,6 +2139,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.8):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -1878,6 +2175,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.8):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -1905,6 +2211,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.8):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -1932,6 +2247,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.8):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -1959,6 +2283,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.8):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -1986,6 +2319,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.8):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -2006,13 +2348,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.0):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2046,6 +2388,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
@@ -2066,6 +2418,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.5):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
@@ -2077,14 +2439,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.0):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2108,16 +2470,29 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-async-generator-functions@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg==}
engines: {node: '>=6.9.0'}
@@ -2133,17 +2508,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.9):
+ /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.23.0):
resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -2176,16 +2551,16 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.22.9)
+ '@babel/helper-remap-async-to-generator': 7.22.5(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -2210,13 +2585,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2240,13 +2615,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2263,19 +2648,31 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
engines: {node: '>=6.9.0'}
@@ -2290,20 +2687,38 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0)
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
+ dev: true
+
/@babel/plugin-transform-classes@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ==}
engines: {node: '>=6.9.0'}
@@ -2344,15 +2759,15 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9):
+ /@babel/plugin-transform-classes@7.22.6(@babel/core@7.23.0):
resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
'@babel/helper-optimise-call-expression': 7.22.5
@@ -2386,13 +2801,13 @@ packages:
'@babel/template': 7.22.5
dev: true
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.22.5
dev: true
@@ -2417,13 +2832,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2449,14 +2874,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2480,16 +2905,27 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
engines: {node: '>=6.9.0'}
@@ -2501,15 +2937,15 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.21.8):
@@ -2534,17 +2970,28 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
engines: {node: '>=6.9.0'}
@@ -2556,37 +3003,47 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.5):
+ /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
+ '@babel/core': 7.22.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.5)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0)
+ dev: true
+
+ /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9)
dev: true
/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.21.8):
@@ -2609,13 +3066,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2643,18 +3100,29 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.23.0)
'@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
engines: {node: '>=6.9.0'}
@@ -2666,15 +3134,15 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-literals@7.22.5(@babel/core@7.21.8):
@@ -2697,16 +3165,27 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
engines: {node: '>=6.9.0'}
@@ -2718,15 +3197,15 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.21.8):
@@ -2749,13 +3228,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2785,19 +3264,30 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-module-transforms': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
engines: {node: '>=6.9.0'}
@@ -2840,6 +3330,32 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-module-transforms': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ dev: true
+
/@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
engines: {node: '>=6.9.0'}
@@ -2870,13 +3386,13 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-module-transforms': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
@@ -2885,6 +3401,19 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
@@ -2911,13 +3440,13 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-module-transforms': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
@@ -2946,14 +3475,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2977,14 +3506,25 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.5):
@@ -2998,15 +3538,26 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
+ /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.5):
@@ -3020,15 +3571,29 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
+ dev: true
+
+ /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.20
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.5):
@@ -3045,18 +3610,18 @@ packages:
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.5
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.21.8):
@@ -3085,19 +3650,30 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
engines: {node: '>=6.9.0'}
@@ -3109,15 +3685,15 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.21.8):
@@ -3144,28 +3720,50 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-optional-chaining@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@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.22.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
dev: true
- /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.9):
+ /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.23.0):
resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@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.22.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
+ /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
+ dev: true
+
+ /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.21.8):
@@ -3188,13 +3786,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3211,19 +3809,32 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
+ /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.0):
+ resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0)
+ dev: true
+
/@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
engines: {node: '>=6.9.0'}
@@ -3239,17 +3850,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -3274,13 +3885,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3304,13 +3915,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3324,14 +3935,28 @@ packages:
'@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5)
dev: true
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.0)
+ dev: true
+
+ /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
+ '@babel/types': 7.23.0
dev: true
/@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.5):
@@ -3354,11 +3979,25 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.22.9
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
+ '@babel/types': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
'@babel/types': 7.22.5
dev: true
@@ -3373,17 +4012,28 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.0):
+ resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ regenerator-transform: 0.15.2
+ dev: true
+
/@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
engines: {node: '>=6.9.0'}
@@ -3406,13 +4056,13 @@ packages:
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.1
dev: true
@@ -3437,45 +4087,45 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-runtime@7.22.5(@babel/core@7.22.5):
- resolution: {integrity: sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw==}
+ /@babel/plugin-transform-runtime@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.5
- '@babel/helper-module-imports': 7.22.5
+ '@babel/core': 7.23.0
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.3(@babel/core@7.22.5)
- babel-plugin-polyfill-corejs3: 0.8.1(@babel/core@7.22.5)
- babel-plugin-polyfill-regenerator: 0.5.0(@babel/core@7.22.5)
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0)
+ babel-plugin-polyfill-corejs3: 0.8.4(@babel/core@7.23.0)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-runtime@7.22.9(@babel/core@7.22.9):
+ /@babel/plugin-transform-runtime@7.22.9(@babel/core@7.23.0):
resolution: {integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.9)
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.0)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -3501,13 +4151,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3533,13 +4183,13 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
@@ -3564,13 +4214,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3594,13 +4244,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3624,14 +4274,27 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
dev: true
/@babel/plugin-transform-typescript@7.22.5(@babel/core@7.22.5):
@@ -3664,6 +4327,31 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.0):
+ resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.21.8):
resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
engines: {node: '>=6.9.0'}
@@ -3684,13 +4372,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3705,14 +4393,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3738,14 +4426,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3760,14 +4448,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-create-regexp-features-plugin': 7.22.5(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3858,6 +4546,97 @@ packages:
- supports-color
dev: true
+ /@babel/preset-env@7.22.20(@babel/core@7.23.0):
+ resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.22.20
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.0)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.0)
+ '@babel/types': 7.23.0
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0)
+ babel-plugin-polyfill-corejs3: 0.8.4(@babel/core@7.23.0)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0)
+ core-js-compat: 3.33.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/preset-env@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A==}
engines: {node: '>=6.9.0'}
@@ -3949,91 +4728,91 @@ packages:
- supports-color
dev: true
- /@babel/preset-env@7.22.9(@babel/core@7.22.9):
+ /@babel/preset-env@7.22.9(@babel/core@7.23.0):
resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.9)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-modules': 0.1.5(@babel/core@7.22.9)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.23.0)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.0)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.23.0)
'@babel/types': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.9)
+ babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0)
+ babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.0)
+ babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0)
core-js-compat: 3.31.0
semver: 6.3.1
transitivePeerDependencies:
@@ -4052,6 +4831,18 @@ packages:
'@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.9)
dev: true
+ /@babel/preset-flow@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.5
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0)
+ dev: true
+
/@babel/preset-modules@0.1.5(@babel/core@7.21.8):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
@@ -4078,19 +4869,45 @@ packages:
esutils: 2.0.3
dev: true
- /@babel/preset-modules@0.1.5(@babel/core@7.22.9):
+ /@babel/preset-modules@0.1.5(@babel/core@7.23.0):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.0)
'@babel/types': 7.22.5
esutils: 2.0.3
dev: true
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.0):
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.23.0
+ esutils: 2.0.3
+ dev: true
+
+ /@babel/preset-react@7.22.15(@babel/core@7.23.0):
+ resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.0)
+ dev: true
+
/@babel/preset-react@7.22.5(@babel/core@7.22.5):
resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==}
engines: {node: '>=6.9.0'}
@@ -4106,19 +4923,19 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.5)
dev: true
- /@babel/preset-react@7.22.5(@babel/core@7.22.9):
+ /@babel/preset-react@7.22.5(@babel/core@7.23.0):
resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.0)
dev: true
/@babel/preset-typescript@7.22.5(@babel/core@7.22.5):
@@ -4153,6 +4970,36 @@ packages:
- supports-color
dev: true
+ /@babel/preset-typescript@7.22.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.23.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/preset-typescript@7.23.0(@babel/core@7.23.0):
+ resolution: {integrity: sha512-6P6VVa/NM/VlAYj5s2Aq/gdVg8FSENCg3wlZ6Qau9AcPaoF5LbN1nyGlR9DTRIw9PpxI94e+ReydsJHcjwAweg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0)
+ dev: true
+
/@babel/register@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==}
engines: {node: '>=6.9.0'}
@@ -4183,6 +5030,20 @@ packages:
dependencies:
regenerator-runtime: 0.13.11
+ /@babel/runtime@7.23.1:
+ resolution: {integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.0
+
+ /@babel/template@7.22.15:
+ resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
+
/@babel/template@7.22.5:
resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
engines: {node: '>=6.9.0'}
@@ -4242,6 +5103,24 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/traverse@7.23.0:
+ resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@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.0
+ '@babel/types': 7.23.0
+ debug: 4.3.4(supports-color@5.5.0)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
/@babel/types@7.21.5:
resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==}
@@ -4260,6 +5139,14 @@ packages:
'@babel/helper-validator-identifier': 7.22.5
to-fast-properties: 2.0.0
+ /@babel/types@7.23.0:
+ resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+
/@base2/pretty-print-object@1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
dev: true
@@ -4621,8 +5508,8 @@ packages:
eslint: 8.47.0
eslint-visitor-keys: 3.4.3
- /@eslint-community/regexpp@4.6.2:
- resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==}
+ /@eslint-community/regexpp@4.9.1:
+ resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
/@eslint/eslintrc@2.1.2:
@@ -4632,7 +5519,7 @@ packages:
ajv: 6.12.6
debug: 4.3.4(supports-color@5.5.0)
espree: 9.6.1
- globals: 13.20.0
+ globals: 13.23.0
ignore: 5.2.4
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -4641,8 +5528,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@eslint/js@8.47.0:
- resolution: {integrity: sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==}
+ /@eslint/js@8.51.0:
+ resolution: {integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@eth-optimism/contracts@0.5.37(ethers@5.7.2):
@@ -5052,16 +5939,16 @@ packages:
resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==}
dev: false
- /@graphql-typed-document-node/core@3.2.0(graphql@16.7.1):
+ /@graphql-typed-document-node/core@3.2.0(graphql@16.8.1):
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- graphql: 16.7.1
+ graphql: 16.8.1
dev: false
- /@humanwhocodes/config-array@0.11.10:
- resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
+ /@humanwhocodes/config-array@0.11.11:
+ resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -5354,6 +6241,10 @@ packages:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
+ /@jridgewell/resolve-uri@3.1.1:
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ engines: {node: '>=6.0.0'}
+
/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
@@ -5377,6 +6268,12 @@ packages:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
+ /@jridgewell/trace-mapping@0.3.19:
+ resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+
/@juggle/resize-observer@3.4.0:
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: true
@@ -5977,6 +6874,11 @@ packages:
/@rushstack/eslint-patch@1.3.2:
resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==}
+ dev: false
+
+ /@rushstack/eslint-patch@1.5.1:
+ resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==}
+ dev: true
/@safe-global/safe-apps-provider@0.15.2:
resolution: {integrity: sha512-BaoGAuY7h6jLBL7P+M6b7hd+1QfTv8uMyNF3udhiNUwA0XwfzH2ePQB13IEV3Mn7wdcIMEEUDS5kHbtAsj60qQ==}
@@ -6083,9 +6985,9 @@ packages:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
dev: true
- /@sindresorhus/is@0.14.0:
- resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
- engines: {node: '>=6'}
+ /@sindresorhus/is@5.6.0:
+ resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
+ engines: {node: '>=14.16'}
dev: true
/@sinonjs/commons@3.0.0:
@@ -6750,7 +7652,7 @@ packages:
hasBin: true
dependencies:
'@babel/core': 7.22.9
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
+ '@babel/preset-env': 7.22.9(@babel/core@7.23.0)
'@ndelangen/get-tarball': 3.0.9
'@storybook/codemod': 7.0.27
'@storybook/core-common': 7.0.27
@@ -7036,7 +7938,7 @@ packages:
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
dev: true
- /@storybook/nextjs@7.0.27(@babel/core@7.22.9)(esbuild@0.17.19)(next@13.4.13)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(webpack@5.88.2):
+ /@storybook/nextjs@7.0.27(@babel/core@7.23.0)(esbuild@0.17.19)(next@13.4.13)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)(webpack@5.88.2):
resolution: {integrity: sha512-WsoIPU+ThCIYxjf5p4vyJ/iVIcua0nOR4GI1AD3r+KclgVdBS+Byx69n86GFMXVAeJqn7dfvdIE2Na9FlAPY/A==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -7059,24 +7961,24 @@ packages:
webpack:
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.9)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-runtime': 7.22.9(@babel/core@7.22.9)
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
- '@babel/preset-react': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.0)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-runtime': 7.22.9(@babel/core@7.23.0)
+ '@babel/preset-env': 7.22.9(@babel/core@7.23.0)
+ '@babel/preset-react': 7.22.5(@babel/core@7.23.0)
+ '@babel/preset-typescript': 7.22.5(@babel/core@7.23.0)
'@babel/runtime': 7.22.6
'@storybook/addon-actions': 7.0.27(react-dom@18.2.0)(react@18.2.0)
'@storybook/builder-webpack5': 7.0.27(esbuild@0.17.19)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@storybook/core-common': 7.0.27
'@storybook/node-logger': 7.0.27
- '@storybook/preset-react-webpack': 7.0.27(@babel/core@7.22.9)(esbuild@0.17.19)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
+ '@storybook/preset-react-webpack': 7.0.27(@babel/core@7.23.0)(esbuild@0.17.19)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@storybook/preview-api': 7.0.27
'@storybook/react': 7.0.27(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6)
'@types/node': 16.18.38
@@ -7085,18 +7987,18 @@ packages:
fs-extra: 11.1.1
image-size: 1.0.2
loader-utils: 3.2.1
- next: 13.4.13(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)
+ next: 13.4.13(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0)
node-polyfill-webpack-plugin: 2.0.1(webpack@5.88.2)
pnp-webpack-plugin: 1.7.0(typescript@5.1.6)
- postcss: 8.4.30
- postcss-loader: 7.3.3(postcss@8.4.30)(webpack@5.88.2)
+ postcss: 8.4.31
+ postcss-loader: 7.3.3(postcss@8.4.31)(webpack@5.88.2)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
resolve-url-loader: 5.0.0
sass-loader: 12.6.0(webpack@5.88.2)
semver: 7.5.4
style-loader: 3.3.3(webpack@5.88.2)
- styled-jsx: 5.1.1(@babel/core@7.22.9)(react@18.2.0)
+ styled-jsx: 5.1.1(@babel/core@7.23.0)(react@18.2.0)
ts-dedent: 2.2.0
tsconfig-paths: 4.2.0
tsconfig-paths-webpack-plugin: 3.5.2
@@ -7136,7 +8038,7 @@ packages:
resolution: {integrity: sha512-VehWuUQxTlqSfTEl3rnufA9+aBbFIv802c8HMJ6SsnwRSb93vlc2ZDGxx3hzryQhbBuI8oNDQx0VdFVwn+MkEg==}
dev: true
- /@storybook/preset-react-webpack@7.0.27(@babel/core@7.22.9)(esbuild@0.17.19)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
+ /@storybook/preset-react-webpack@7.0.27(@babel/core@7.23.0)(esbuild@0.17.19)(react-dom@18.2.0)(react@18.2.0)(typescript@5.1.6):
resolution: {integrity: sha512-6sqTbaqm3eKTk8RWhlGFQJl+3mwCZpue/4XXHAuuYKFt+0orIsqJtq7ulTk7G1Ism8YT/taU8pUknjGnJIeqiA==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -7150,9 +8052,9 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.9
- '@babel/preset-flow': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-react': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/preset-flow': 7.22.5(@babel/core@7.23.0)
+ '@babel/preset-react': 7.22.5(@babel/core@7.23.0)
'@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.88.1)
'@storybook/core-webpack': 7.0.27
'@storybook/docs-tools': 7.0.27
@@ -7596,11 +8498,11 @@ packages:
big.js: 6.2.1
dev: false
- /@szmarczak/http-timer@1.1.2:
- resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
- engines: {node: '>=6'}
+ /@szmarczak/http-timer@5.0.1:
+ resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
+ engines: {node: '>=14.16'}
dependencies:
- defer-to-connect: 1.1.3
+ defer-to-connect: 2.0.1
dev: true
/@tanstack/query-core@4.29.19:
@@ -7677,11 +8579,25 @@ packages:
pretty-format: 27.5.1
dev: true
+ /@testing-library/dom@9.3.3:
+ resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==}
+ engines: {node: '>=14'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/runtime': 7.23.1
+ '@types/aria-query': 5.0.2
+ aria-query: 5.1.3
+ chalk: 4.1.2
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 27.5.1
+ dev: true
+
/@testing-library/jest-dom@5.16.5:
resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==}
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
- '@adobe/css-tools': 4.2.0
+ '@adobe/css-tools': 4.3.1
'@babel/runtime': 7.22.5
'@types/testing-library__jest-dom': 5.14.9
aria-query: 5.3.0
@@ -7730,13 +8646,13 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@testing-library/user-event@14.4.3(@testing-library/dom@9.3.1):
+ /@testing-library/user-event@14.4.3(@testing-library/dom@9.3.3):
resolution: {integrity: sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
'@testing-library/dom': '>=7.21.4'
dependencies:
- '@testing-library/dom': 9.3.1
+ '@testing-library/dom': 9.3.3
dev: true
/@tootallnate/once@2.0.0:
@@ -7788,6 +8704,10 @@ packages:
resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
dev: true
+ /@types/aria-query@5.0.2:
+ resolution: {integrity: sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ==}
+ dev: true
+
/@types/babel__core@7.20.1:
resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==}
dependencies:
@@ -7924,6 +8844,13 @@ packages:
'@types/estree': 1.0.1
dev: true
+ /@types/eslint-scope@3.7.5:
+ resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==}
+ dependencies:
+ '@types/eslint': 8.44.3
+ '@types/estree': 1.0.2
+ dev: true
+
/@types/eslint@8.40.2:
resolution: {integrity: sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==}
dependencies:
@@ -7931,6 +8858,13 @@ packages:
'@types/json-schema': 7.0.12
dev: true
+ /@types/eslint@8.44.3:
+ resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==}
+ dependencies:
+ '@types/estree': 1.0.2
+ '@types/json-schema': 7.0.13
+ dev: true
+
/@types/estree@0.0.51:
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
dev: true
@@ -7939,6 +8873,10 @@ packages:
resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
dev: true
+ /@types/estree@1.0.2:
+ resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==}
+ dev: true
+
/@types/express-serve-static-core@4.17.35:
resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==}
dependencies:
@@ -7998,6 +8936,10 @@ packages:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
dev: true
+ /@types/http-cache-semantics@4.0.2:
+ resolution: {integrity: sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==}
+ dev: true
+
/@types/http-errors@2.0.1:
resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==}
dev: true
@@ -8037,15 +8979,13 @@ packages:
resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
dev: true
+ /@types/json-schema@7.0.13:
+ resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==}
+ dev: true
+
/@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- /@types/keyv@3.1.4:
- resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
- dependencies:
- '@types/node': 14.0.13
- dev: true
-
/@types/lodash@4.14.195:
resolution: {integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==}
dev: true
@@ -8178,12 +9118,6 @@ packages:
redux: 4.2.1
dev: true
- /@types/responselike@1.0.0:
- resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
- dependencies:
- '@types/node': 14.0.13
- dev: true
-
/@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
@@ -8197,6 +9131,10 @@ packages:
resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
dev: true
+ /@types/semver@7.5.3:
+ resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==}
+ dev: true
+
/@types/send@0.17.1:
resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
dependencies:
@@ -8268,8 +9206,8 @@ packages:
'@types/yargs-parser': 21.0.0
dev: true
- /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==}
+ /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -8279,11 +9217,11 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.6.2
- '@typescript-eslint/parser': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/scope-manager': 5.61.0
- '@typescript-eslint/type-utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@eslint-community/regexpp': 4.9.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.47.0
graphemer: 1.4.0
@@ -8307,7 +9245,7 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.6.2
+ '@eslint-community/regexpp': 4.9.1
'@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
'@typescript-eslint/scope-manager': 6.4.1
'@typescript-eslint/type-utils': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
@@ -8319,27 +9257,27 @@ packages:
ignore: 5.2.4
natural-compare: 1.4.0
semver: 7.5.4
- ts-api-utils: 1.0.1(typescript@5.1.6)
+ ts-api-utils: 1.0.3(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils@5.61.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-r4RTnwTcaRRVUyKb7JO4DiOGmcMCat+uNs6HqJBfX7K2nlq5TagYZShhbhAw7hFT3bHaYgxMw6pKP0fhu05VMA==}
+ /@typescript-eslint/experimental-utils@5.62.0(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/parser@5.61.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==}
+ /@typescript-eslint/parser@5.62.0(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -8348,9 +9286,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.61.0
- '@typescript-eslint/types': 5.61.0
- '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.47.0
typescript: 5.1.6
@@ -8378,12 +9316,12 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/scope-manager@5.61.0:
- resolution: {integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==}
+ /@typescript-eslint/scope-manager@5.62.0:
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.61.0
- '@typescript-eslint/visitor-keys': 5.61.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
dev: true
/@typescript-eslint/scope-manager@6.4.1:
@@ -8393,8 +9331,8 @@ packages:
'@typescript-eslint/types': 6.4.1
'@typescript-eslint/visitor-keys': 6.4.1
- /@typescript-eslint/type-utils@5.61.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==}
+ /@typescript-eslint/type-utils@5.62.0(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -8403,8 +9341,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
- '@typescript-eslint/utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.47.0
tsutils: 3.21.0(typescript@5.1.6)
@@ -8427,14 +9365,14 @@ packages:
'@typescript-eslint/utils': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
debug: 4.3.4(supports-color@5.5.0)
eslint: 8.47.0
- ts-api-utils: 1.0.1(typescript@5.1.6)
+ ts-api-utils: 1.0.3(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types@5.61.0:
- resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==}
+ /@typescript-eslint/types@5.62.0:
+ resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -8442,8 +9380,8 @@ packages:
resolution: {integrity: sha512-zAAopbNuYu++ijY1GV2ylCsQsi3B8QvfPHVqhGdDcbx/NK5lkqMnCGU53amAjccSpk+LfeONxwzUhDzArSfZJg==}
engines: {node: ^16.0.0 || >=18.0.0}
- /@typescript-eslint/typescript-estree@5.61.0(typescript@5.1.6):
- resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==}
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@5.1.6):
+ resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -8451,8 +9389,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.61.0
- '@typescript-eslint/visitor-keys': 5.61.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
@@ -8478,23 +9416,23 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.1(typescript@5.1.6)
+ ts-api-utils: 1.0.3(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/utils@5.61.0(eslint@8.47.0)(typescript@5.1.6):
- resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==}
+ /@typescript-eslint/utils@5.62.0(eslint@8.47.0)(typescript@5.1.6):
+ resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 5.61.0
- '@typescript-eslint/types': 5.61.0
- '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.1.6)
+ '@types/json-schema': 7.0.13
+ '@types/semver': 7.5.3
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
eslint: 8.47.0
eslint-scope: 5.1.1
semver: 7.5.4
@@ -8510,8 +9448,8 @@ packages:
eslint: ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
+ '@types/json-schema': 7.0.13
+ '@types/semver': 7.5.3
'@typescript-eslint/scope-manager': 6.4.1
'@typescript-eslint/types': 6.4.1
'@typescript-eslint/typescript-estree': 6.4.1(typescript@5.1.6)
@@ -8522,12 +9460,12 @@ packages:
- typescript
dev: true
- /@typescript-eslint/visitor-keys@5.61.0:
- resolution: {integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==}
+ /@typescript-eslint/visitor-keys@5.62.0:
+ resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.61.0
- eslint-visitor-keys: 3.4.2
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
dev: true
/@typescript-eslint/visitor-keys@6.4.1:
@@ -8535,7 +9473,7 @@ packages:
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
'@typescript-eslint/types': 6.4.1
- eslint-visitor-keys: 3.4.2
+ eslint-visitor-keys: 3.4.3
/@uniswap/permit2-sdk@1.2.0:
resolution: {integrity: sha512-Ietv3FxN7+RCXcPSED/i/8b0a2GUZrMdyX05k3FsSztvYKyPFAMS/hBXojF0NZqYB1bHecqYc7Ej+7tV/rdYXg==}
@@ -9184,7 +10122,7 @@ packages:
engines: {pnpm: '>=7'}
peerDependencies:
typescript: '>=4.9.4'
- zod: '>=3.19.1'
+ zod: '>=3.22.3'
peerDependenciesMeta:
zod:
optional: true
@@ -9482,13 +10420,13 @@ packages:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: true
- /array-includes@3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
+ /array-includes@3.1.7:
+ resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
is-string: 1.0.7
@@ -9496,40 +10434,40 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- /array.prototype.findlastindex@1.2.2:
- resolution: {integrity: sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==}
+ /array.prototype.findlastindex@1.2.3:
+ resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-shim-unscopables: 1.0.0
get-intrinsic: 1.2.1
- /array.prototype.flat@1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
+ /array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-shim-unscopables: 1.0.0
- /array.prototype.flatmap@1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
+ /array.prototype.flatmap@1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-shim-unscopables: 1.0.0
- /array.prototype.tosorted@1.1.1:
- resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
+ /array.prototype.tosorted@1.1.2:
+ resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-shim-unscopables: 1.0.0
get-intrinsic: 1.2.1
@@ -9544,6 +10482,18 @@ packages:
is-array-buffer: 3.0.2
is-shared-array-buffer: 1.0.2
+ /arraybuffer.prototype.slice@1.0.2:
+ resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+ get-intrinsic: 1.2.1
+ is-array-buffer: 3.0.2
+ is-shared-array-buffer: 1.0.2
+
/asn1.js@5.4.1:
resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
dependencies:
@@ -9625,8 +10575,8 @@ packages:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- /axe-core@4.7.2:
- resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==}
+ /axe-core@4.8.2:
+ resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==}
engines: {node: '>=4'}
/axios-retry@3.3.1:
@@ -9772,14 +10722,14 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.9):
+ /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.0):
resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -9809,18 +10759,30 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.9):
+ /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.23.0):
resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0)
core-js-compat: 3.31.0
transitivePeerDependencies:
- supports-color
dev: true
+ /babel-plugin-polyfill-corejs3@0.8.4(@babel/core@7.23.0):
+ resolution: {integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0)
+ core-js-compat: 3.33.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.8):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
@@ -9843,13 +10805,13 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.9):
+ /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.0):
resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.9)
+ '@babel/core': 7.23.0
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0)
transitivePeerDependencies:
- supports-color
dev: true
@@ -9864,17 +10826,17 @@ packages:
- supports-color
dev: true
- /babel-plugin-styled-components@2.1.4(@babel/core@7.22.9)(styled-components@5.3.11):
+ /babel-plugin-styled-components@2.1.4(@babel/core@7.23.0)(styled-components@5.3.11):
resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
peerDependencies:
styled-components: '>= 2'
dependencies:
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.22.9)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
+ styled-components: 5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
transitivePeerDependencies:
- '@babel/core'
dev: false
@@ -9917,21 +10879,21 @@ packages:
/babel-preset-react-app@10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.22.5
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.5)
- '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.5)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.5)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.5)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.5)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.5)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.22.5)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.5)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.5)
- '@babel/plugin-transform-runtime': 7.22.5(@babel/core@7.22.5)
- '@babel/preset-env': 7.22.5(@babel/core@7.22.5)
- '@babel/preset-react': 7.22.5(@babel/core@7.22.5)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.22.5)
- '@babel/runtime': 7.22.5
+ '@babel/core': 7.23.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-decorators': 7.23.0(@babel/core@7.23.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.0)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-runtime': 7.22.15(@babel/core@7.23.0)
+ '@babel/preset-env': 7.22.20(@babel/core@7.23.0)
+ '@babel/preset-react': 7.22.15(@babel/core@7.23.0)
+ '@babel/preset-typescript': 7.23.0(@babel/core@7.23.0)
+ '@babel/runtime': 7.23.1
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -10163,17 +11125,6 @@ packages:
pako: 1.0.11
dev: true
- /browserslist@4.21.10:
- resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001518
- electron-to-chromium: 1.4.477
- node-releases: 2.0.13
- update-browserslist-db: 1.0.11(browserslist@4.21.10)
- dev: true
-
/browserslist@4.21.9:
resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -10183,6 +11134,17 @@ packages:
electron-to-chromium: 1.4.449
node-releases: 2.0.12
update-browserslist-db: 1.0.11(browserslist@4.21.9)
+ dev: true
+
+ /browserslist@4.22.1:
+ resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001547
+ electron-to-chromium: 1.4.548
+ node-releases: 2.0.13
+ update-browserslist-db: 1.0.13(browserslist@4.22.1)
/bs58@4.0.1:
resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==}
@@ -10285,17 +11247,22 @@ packages:
yargs-parser: 20.2.9
dev: true
- /cacheable-request@6.1.0:
- resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
- engines: {node: '>=8'}
+ /cacheable-lookup@7.0.0:
+ resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
+ engines: {node: '>=14.16'}
+ dev: true
+
+ /cacheable-request@10.2.14:
+ resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
+ engines: {node: '>=14.16'}
dependencies:
- clone-response: 1.0.3
- get-stream: 5.2.0
+ '@types/http-cache-semantics': 4.0.2
+ get-stream: 6.0.1
http-cache-semantics: 4.1.1
- keyv: 3.1.0
- lowercase-keys: 2.0.0
- normalize-url: 4.5.1
- responselike: 1.0.2
+ keyv: 4.5.4
+ mimic-response: 4.0.0
+ normalize-url: 8.0.0
+ responselike: 3.0.0
dev: true
/call-bind@1.0.2:
@@ -10331,6 +11298,9 @@ packages:
/caniuse-lite@1.0.30001518:
resolution: {integrity: sha512-rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA==}
+ /caniuse-lite@1.0.30001547:
+ resolution: {integrity: sha512-W7CrtIModMAxobGhz8iXmDfuJiiKg1WADMO/9x7/CLNin5cpSbuBjooyoIUVB5eyCc36QuTVlkVa1iB2S5+/eA==}
+
/case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
@@ -10343,7 +11313,7 @@ packages:
assertion-error: 1.1.0
check-error: 1.0.2
deep-eql: 4.1.3
- get-func-name: 2.0.0
+ get-func-name: 3.0.0
loupe: 2.3.6
pathval: 1.1.1
type-detect: 4.0.8
@@ -10398,7 +11368,7 @@ packages:
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/chownr@1.1.4:
@@ -10529,12 +11499,6 @@ packages:
shallow-clone: 3.0.1
dev: true
- /clone-response@1.0.3:
- resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
- dependencies:
- mimic-response: 1.0.1
- dev: true
-
/clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -10753,7 +11717,6 @@ packages:
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- dev: true
/cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
@@ -10773,7 +11736,13 @@ packages:
/core-js-compat@3.31.0:
resolution: {integrity: sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw==}
dependencies:
- browserslist: 4.21.9
+ browserslist: 4.21.9
+ dev: true
+
+ /core-js-compat@3.33.0:
+ resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==}
+ dependencies:
+ browserslist: 4.22.1
dev: true
/core-js-pure@3.31.0:
@@ -10892,12 +11861,12 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.30)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.30)
- postcss-modules-scope: 3.0.0(postcss@8.4.30)
- postcss-modules-values: 4.0.0(postcss@8.4.30)
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
+ postcss-modules-scope: 3.0.0(postcss@8.4.31)
+ postcss-modules-values: 4.0.0(postcss@8.4.31)
postcss-value-parser: 4.2.0
semver: 7.5.3
webpack: 5.88.1(esbuild@0.17.19)
@@ -10909,12 +11878,12 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.30)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.30)
- postcss-modules-scope: 3.0.0(postcss@8.4.30)
- postcss-modules-values: 4.0.0(postcss@8.4.30)
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
+ postcss-modules-scope: 3.0.0(postcss@8.4.31)
+ postcss-modules-values: 4.0.0(postcss@8.4.31)
postcss-value-parser: 4.2.0
semver: 7.5.3
webpack: 5.88.2(esbuild@0.17.19)
@@ -11173,11 +12142,11 @@ packages:
engines: {node: '>=0.10'}
dev: false
- /decompress-response@3.3.0:
- resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
- engines: {node: '>=4'}
+ /decompress-response@6.0.0:
+ resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
+ engines: {node: '>=10'}
dependencies:
- mimic-response: 1.0.1
+ mimic-response: 3.1.0
dev: true
/dedent@0.7.0:
@@ -11265,10 +12234,19 @@ packages:
clone: 1.0.4
dev: true
- /defer-to-connect@1.1.3:
- resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==}
+ /defer-to-connect@2.0.1:
+ resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
+ engines: {node: '>=10'}
dev: true
+ /define-data-property@1.1.0:
+ resolution: {integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.1
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.0
+
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
@@ -11285,6 +12263,14 @@ packages:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
+ /define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.0
+ has-property-descriptors: 1.0.0
+ object-keys: 1.1.1
+
/defu@6.1.2:
resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
dev: true
@@ -11512,10 +12498,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /duplexer3@0.1.5:
- resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
- dev: true
-
/duplexify@3.7.1:
resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
dependencies:
@@ -11559,11 +12541,11 @@ packages:
/electron-to-chromium@1.4.449:
resolution: {integrity: sha512-TxLRpRUj/107ATefeP8VIUWNOv90xJxZZbCW/eIbSZQiuiFANCx2b7u+GbVc9X4gU+xnbvypNMYVM/WArE1DNQ==}
-
- /electron-to-chromium@1.4.477:
- resolution: {integrity: sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==}
dev: true
+ /electron-to-chromium@1.4.548:
+ resolution: {integrity: sha512-R77KD6mXv37DOyKLN/eW1rGS61N6yHOfapNSX9w+y9DdPG83l9Gkuv7qkCFZ4Ta4JPhrjgQfYbv4Y3TnM1Hi2Q==}
+
/elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
dependencies:
@@ -11649,11 +12631,12 @@ packages:
stackframe: 1.3.4
dev: true
- /es-abstract@1.21.2:
- resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
+ /es-abstract@1.22.1:
+ resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==}
engines: {node: '>= 0.4'}
dependencies:
array-buffer-byte-length: 1.0.0
+ arraybuffer.prototype.slice: 1.0.1
available-typed-arrays: 1.0.5
call-bind: 1.0.2
es-set-tostringtag: 2.0.1
@@ -11680,30 +12663,34 @@ packages:
object-keys: 1.1.1
object.assign: 4.1.4
regexp.prototype.flags: 1.5.0
+ safe-array-concat: 1.0.0
safe-regex-test: 1.0.0
string.prototype.trim: 1.2.7
string.prototype.trimend: 1.0.6
string.prototype.trimstart: 1.0.6
+ typed-array-buffer: 1.0.0
+ typed-array-byte-length: 1.0.0
+ typed-array-byte-offset: 1.0.0
typed-array-length: 1.0.4
unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
+ which-typed-array: 1.1.11
- /es-abstract@1.22.1:
- resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==}
+ /es-abstract@1.22.2:
+ resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==}
engines: {node: '>= 0.4'}
dependencies:
array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.1
+ arraybuffer.prototype.slice: 1.0.2
available-typed-arrays: 1.0.5
call-bind: 1.0.2
es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
- function.prototype.name: 1.1.5
+ function.prototype.name: 1.1.6
get-intrinsic: 1.2.1
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
- has: 1.0.3
+ has: 1.0.4
has-property-descriptors: 1.0.0
has-proto: 1.0.1
has-symbols: 1.0.3
@@ -11714,17 +12701,17 @@ packages:
is-regex: 1.1.4
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
- is-typed-array: 1.1.10
+ is-typed-array: 1.1.12
is-weakref: 1.0.2
object-inspect: 1.12.3
object-keys: 1.1.1
object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- safe-array-concat: 1.0.0
+ regexp.prototype.flags: 1.5.1
+ safe-array-concat: 1.0.1
safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.7
- string.prototype.trimend: 1.0.6
- string.prototype.trimstart: 1.0.6
+ string.prototype.trim: 1.2.8
+ string.prototype.trimend: 1.0.7
+ string.prototype.trimstart: 1.0.7
typed-array-buffer: 1.0.0
typed-array-byte-length: 1.0.0
typed-array-byte-offset: 1.0.0
@@ -11746,13 +12733,13 @@ packages:
stop-iteration-iterator: 1.0.0
dev: true
- /es-iterator-helpers@1.0.13:
- resolution: {integrity: sha512-LK3VGwzvaPWobO8xzXXGRUOGw8Dcjyfk62CsY/wfHN75CwsJPbuypOYJxK6g5RyEL8YDjIWcl6jgd8foO6mmrA==}
+ /es-iterator-helpers@1.0.15:
+ resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
dependencies:
asynciterator.prototype: 1.0.0
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-set-tostringtag: 2.0.1
function-bind: 1.1.1
get-intrinsic: 1.2.1
@@ -11761,13 +12748,17 @@ packages:
has-proto: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.5
- iterator.prototype: 1.1.0
- safe-array-concat: 1.0.0
+ iterator.prototype: 1.1.2
+ safe-array-concat: 1.0.1
/es-module-lexer@1.3.0:
resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
dev: true
+ /es-module-lexer@1.3.1:
+ resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==}
+ dev: true
+
/es-set-tostringtag@2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
@@ -11919,7 +12910,7 @@ packages:
eslint: 8.47.0
dev: true
- /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.47.0)(typescript@5.1.6):
+ /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -11929,17 +12920,17 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.5
- '@babel/eslint-parser': 7.22.5(@babel/core@7.22.5)(eslint@8.47.0)
- '@rushstack/eslint-patch': 1.3.2
- '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/parser': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@babel/core': 7.23.0
+ '@babel/eslint-parser': 7.22.15(@babel/core@7.23.0)(eslint@8.47.0)
+ '@rushstack/eslint-patch': 1.5.1
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.47.0
- eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.47.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.61.0)(eslint@8.47.0)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.47.0)(typescript@5.1.6)
+ eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.47.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.47.0)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.47.0)(typescript@5.1.6)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.47.0)
eslint-plugin-react: 7.33.2(eslint@8.47.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.47.0)
@@ -11972,6 +12963,15 @@ packages:
transitivePeerDependencies:
- supports-color
+ /eslint-import-resolver-node@0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.13.0
+ resolve: 1.22.6
+ transitivePeerDependencies:
+ - supports-color
+
/eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.28.1)(eslint@8.47.0):
resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -11995,7 +12995,7 @@ packages:
- eslint-import-resolver-webpack
- supports-color
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.47.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.47.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -12016,10 +13016,10 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
debug: 3.2.7
eslint: 8.47.0
- eslint-import-resolver-node: 0.3.7
+ eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
dev: true
@@ -12053,16 +13053,45 @@ packages:
transitivePeerDependencies:
- supports-color
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.47.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
+ debug: 3.2.7
+ eslint: 8.47.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.28.1)(eslint@8.47.0)
+ transitivePeerDependencies:
+ - supports-color
+
/eslint-plugin-cypress@2.14.0(eslint@8.47.0):
resolution: {integrity: sha512-eW6tv7iIg7xujleAJX4Ujm649Bf5jweqa4ObPEIuueYRyLZt7qXGWhCY/n4bfeFW/j6nQZwbIBHKZt6EKcL/cg==}
peerDependencies:
eslint: '>= 3.2.1'
dependencies:
eslint: 8.47.0
- globals: 13.20.0
+ globals: 13.23.0
dev: true
- /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.5)(eslint@8.47.0):
+ /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.47.0):
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -12070,14 +13099,14 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.5)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.5)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0)
eslint: 8.47.0
lodash: 4.17.21
string-natural-compare: 3.0.1
dev: true
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.61.0)(eslint@8.47.0):
+ /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.47.0):
resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
engines: {node: '>=4'}
peerDependencies:
@@ -12087,23 +13116,23 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
- array-includes: 3.1.6
- array.prototype.findlastindex: 1.2.2
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.47.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.47.0)
- has: 1.0.3
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.47.0)
+ has: 1.0.4
is-core-module: 2.13.0
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.6
- object.groupby: 1.0.0
- object.values: 1.1.6
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
semver: 6.3.1
tsconfig-paths: 3.14.2
transitivePeerDependencies:
@@ -12123,22 +13152,22 @@ packages:
optional: true
dependencies:
'@typescript-eslint/parser': 6.4.1(eslint@8.47.0)(typescript@5.1.6)
- array-includes: 3.1.6
- array.prototype.findlastindex: 1.2.2
- array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.47.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.47.0)
- has: 1.0.3
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.5)(eslint@8.47.0)
+ has: 1.0.4
is-core-module: 2.13.0
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.6
- object.groupby: 1.0.0
- object.values: 1.1.6
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
semver: 6.3.1
tsconfig-paths: 3.14.2
transitivePeerDependencies:
@@ -12146,7 +13175,7 @@ packages:
- eslint-import-resolver-webpack
- supports-color
- /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint@8.47.0)(typescript@5.1.6):
+ /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -12159,8 +13188,8 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.47.0)(typescript@5.1.6)
- '@typescript-eslint/experimental-utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
transitivePeerDependencies:
- supports-color
@@ -12173,22 +13202,22 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.23.1
aria-query: 5.3.0
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.7
- axe-core: 4.7.2
+ axe-core: 4.8.2
axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
eslint: 8.47.0
- has: 1.0.3
- jsx-ast-utils: 3.3.4
+ has: 1.0.4
+ jsx-ast-utils: 3.3.5
language-tags: 1.0.5
minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
semver: 6.3.1
/eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0)(eslint@8.47.0)(prettier@2.8.8):
@@ -12232,23 +13261,23 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
- array.prototype.tosorted: 1.1.1
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
+ array.prototype.tosorted: 1.1.2
doctrine: 2.1.0
- es-iterator-helpers: 1.0.13
+ es-iterator-helpers: 1.0.15
eslint: 8.47.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.4
+ jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ object.hasown: 1.1.3
+ object.values: 1.1.7
prop-types: 15.8.1
resolve: 2.0.0-next.4
semver: 6.3.1
- string.prototype.matchall: 4.0.8
+ string.prototype.matchall: 4.0.10
/eslint-plugin-testing-library@5.11.1(eslint@8.47.0)(typescript@5.1.6):
resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==}
@@ -12256,7 +13285,7 @@ packages:
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
transitivePeerDependencies:
- supports-color
@@ -12278,7 +13307,7 @@ packages:
peerDependencies:
eslint: '>= 7'
dependencies:
- '@typescript-eslint/experimental-utils': 5.61.0(eslint@8.47.0)(typescript@5.1.6)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.47.0)(typescript@5.1.6)
eslint: 8.47.0
transitivePeerDependencies:
- supports-color
@@ -12305,10 +13334,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /eslint-visitor-keys@3.4.2:
- resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
/eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -12319,10 +13344,10 @@ packages:
hasBin: true
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.47.0)
- '@eslint-community/regexpp': 4.6.2
+ '@eslint-community/regexpp': 4.9.1
'@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.47.0
- '@humanwhocodes/config-array': 0.11.10
+ '@eslint/js': 8.51.0
+ '@humanwhocodes/config-array': 0.11.11
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
@@ -12340,7 +13365,7 @@ packages:
file-entry-cache: 6.0.1
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.20.0
+ globals: 13.23.0
graphemer: 1.4.0
ignore: 5.2.4
imurmurhash: 0.1.4
@@ -12597,6 +13622,21 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 3.0.0
+ /execa@7.2.0:
+ resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.1.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
+ dev: true
+
/exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
@@ -12775,7 +13815,7 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flat-cache: 3.0.4
+ flat-cache: 3.1.1
/file-system-cache@2.3.0:
resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==}
@@ -12913,9 +13953,22 @@ packages:
dependencies:
flatted: 3.2.7
rimraf: 3.0.2
+ dev: true
+
+ /flat-cache@3.1.1:
+ resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ flatted: 3.2.9
+ keyv: 4.5.4
+ rimraf: 3.0.2
/flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
+ dev: true
+
+ /flatted@3.2.9:
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
/flow-parser@0.210.2:
resolution: {integrity: sha512-kQiVau1WnXMCxJziuOF9wk4EoE/sPTU5H7dWOJN+7lsh+tmUh6LXz1dcLE44D+ouVIg8RRnfRZQymZqzKfh5fA==}
@@ -12987,6 +14040,11 @@ packages:
webpack: 5.88.1(esbuild@0.17.19)
dev: true
+ /form-data-encoder@2.1.4:
+ resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
+ engines: {node: '>= 14.17'}
+ dev: true
+
/form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
@@ -13058,8 +14116,8 @@ packages:
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents@2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ /fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
@@ -13078,6 +14136,15 @@ packages:
es-abstract: 1.22.1
functions-have-names: 1.2.3
+ /function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+ functions-have-names: 1.2.3
+
/functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
@@ -13104,8 +14171,9 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- /get-func-name@2.0.0:
- resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
+ /get-func-name@3.0.0:
+ resolution: {integrity: sha512-6lB4zp64YzgT5KVoAuY0vBXQXNObRmelzfVCpx2dHkGVskX8WwjxTVd/kGUsVzxuOpSEF9BcD54ChSKMVjSsfQ==}
+ engines: {node: '>= 12'}
dev: false
/get-intrinsic@1.2.1:
@@ -13136,20 +14204,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /get-stream@4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
- dependencies:
- pump: 3.0.0
- dev: true
-
- /get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
- dependencies:
- pump: 3.0.0
- dev: true
-
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -13284,8 +14338,8 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals@13.20.0:
- resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
+ /globals@13.23.0:
+ resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -13322,23 +14376,21 @@ packages:
dependencies:
get-intrinsic: 1.2.1
- /got@9.6.0:
- resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
- engines: {node: '>=8.6'}
+ /got@13.0.0:
+ resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==}
+ engines: {node: '>=16'}
dependencies:
- '@sindresorhus/is': 0.14.0
- '@szmarczak/http-timer': 1.1.2
- '@types/keyv': 3.1.4
- '@types/responselike': 1.0.0
- cacheable-request: 6.1.0
- decompress-response: 3.3.0
- duplexer3: 0.1.5
- get-stream: 4.1.0
- lowercase-keys: 1.0.1
- mimic-response: 1.0.1
- p-cancelable: 1.1.0
- to-readable-stream: 1.0.0
- url-parse-lax: 3.0.0
+ '@sindresorhus/is': 5.6.0
+ '@szmarczak/http-timer': 5.0.1
+ cacheable-lookup: 7.0.0
+ cacheable-request: 10.2.14
+ decompress-response: 6.0.0
+ form-data-encoder: 2.1.4
+ get-stream: 6.0.1
+ http2-wrapper: 2.2.0
+ lowercase-keys: 3.0.0
+ p-cancelable: 3.0.0
+ responselike: 3.0.0
dev: true
/graceful-fs@4.2.11:
@@ -13373,14 +14425,14 @@ packages:
- encoding
dev: false
- /graphql-request@6.1.0(graphql@16.7.1):
+ /graphql-request@6.1.0(graphql@16.8.1):
resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==}
peerDependencies:
graphql: 14 - 16
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.7.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
cross-fetch: 3.1.6
- graphql: 16.7.1
+ graphql: 16.8.1
transitivePeerDependencies:
- encoding
dev: false
@@ -13390,8 +14442,8 @@ packages:
engines: {node: '>= 10.x'}
dev: false
- /graphql@16.7.1:
- resolution: {integrity: sha512-DRYR9tf+UGU0KOsMcKAlXeFfX89UiiIZ0dRU3mR0yJfu6OjZqUcp68NnFLnqQU5RexygFoDy1EW+ccOYcPfmHg==}
+ /graphql@16.8.1:
+ resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
dev: false
@@ -13465,6 +14517,10 @@ packages:
dependencies:
function-bind: 1.1.1
+ /has@1.0.4:
+ resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
+ engines: {node: '>= 0.4.0'}
+
/hash-base@3.1.0:
resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
engines: {node: '>=4'}
@@ -13602,6 +14658,14 @@ packages:
transitivePeerDependencies:
- supports-color
+ /http2-wrapper@2.2.0:
+ resolution: {integrity: sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==}
+ engines: {node: '>=10.19.0'}
+ dependencies:
+ quick-lru: 5.1.1
+ resolve-alpn: 1.2.1
+ dev: true
+
/https-browserify@1.0.0:
resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
dev: true
@@ -13668,13 +14732,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@5.1.0(postcss@8.4.30):
+ /icss-utils@5.1.0(postcss@8.4.31):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
- postcss: ^8.1.0
+ postcss: '>=8.4.31'
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
dev: true
/ieee754@1.2.1:
@@ -14038,6 +15102,12 @@ packages:
gopd: 1.0.1
has-tostringtag: 1.0.0
+ /is-typed-array@1.1.12:
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ which-typed-array: 1.1.11
+
/is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
@@ -14173,14 +15243,14 @@ packages:
istanbul-lib-report: 3.0.0
dev: true
- /iterator.prototype@1.1.0:
- resolution: {integrity: sha512-rjuhAk1AJ1fssphHD0IFV6TWL40CwRZ53FrztKx43yk2v6rguBYsY4Bj1VU4HmoMmKwZUlx7mfnhDf9cOp4YTw==}
+ /iterator.prototype@1.1.2:
+ resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
dependencies:
- define-properties: 1.2.0
+ define-properties: 1.2.1
get-intrinsic: 1.2.1
has-symbols: 1.0.3
- has-tostringtag: 1.0.0
- reflect.getprototypeof: 1.0.3
+ reflect.getprototypeof: 1.0.4
+ set-function-name: 2.0.1
/jackspeak@2.2.2:
resolution: {integrity: sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==}
@@ -14414,7 +15484,7 @@ packages:
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/jest-leak-detector@29.6.2:
@@ -14471,7 +15541,7 @@ packages:
jest-resolve: 29.6.2
dev: true
- /jest-preview@0.3.1(postcss@8.4.30):
+ /jest-preview@0.3.1(postcss@8.4.31):
resolution: {integrity: sha512-gRR4shnXFSh8tdNaIncJC98d1zXD7w7LA52HQC0bu0DsPb+FXVEg+NQh9GTbO+n6/SCgcZNQAVt4MeCfsIkBPA==}
hasBin: true
requiresBuild: true
@@ -14484,8 +15554,8 @@ packages:
connect: 3.7.0
find-node-modules: 2.1.3
open: 8.4.2
- postcss-import: 14.1.0(postcss@8.4.30)
- postcss-load-config: 4.0.1(postcss@8.4.30)
+ postcss-import: 14.1.0(postcss@8.4.31)
+ postcss-load-config: 4.0.1(postcss@8.4.31)
sirv: 2.0.3
slash: 3.0.0
string-hash: 1.1.3
@@ -14709,8 +15779,8 @@ packages:
hasBin: true
dev: true
- /jquery@3.7.0:
- resolution: {integrity: sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ==}
+ /jquery@3.7.1:
+ resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==}
dev: false
/js-sha3@0.8.0:
@@ -14775,7 +15845,7 @@ packages:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9)
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9)
'@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
+ '@babel/preset-env': 7.22.9(@babel/core@7.23.0)
'@babel/preset-flow': 7.22.5(@babel/core@7.22.9)
'@babel/preset-typescript': 7.22.5(@babel/core@7.22.9)
'@babel/register': 7.22.5(@babel/core@7.22.9)
@@ -14885,9 +15955,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- /json-buffer@3.0.0:
- resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
- dev: true
+ /json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
@@ -15027,14 +16096,14 @@ packages:
tiny-warning: 1.0.3
dev: false
- /jsx-ast-utils@3.3.4:
- resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==}
+ /jsx-ast-utils@3.3.5:
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
+ array-includes: 3.1.7
+ array.prototype.flat: 1.3.2
object.assign: 4.1.4
- object.values: 1.1.6
+ object.values: 1.1.7
/keccak@3.0.3:
resolution: {integrity: sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==}
@@ -15046,11 +16115,10 @@ packages:
readable-stream: 3.6.2
dev: false
- /keyv@3.1.0:
- resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==}
+ /keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
dependencies:
- json-buffer: 3.0.0
- dev: true
+ json-buffer: 3.0.1
/keyvaluestorage-interface@1.0.0:
resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==}
@@ -15130,7 +16198,7 @@ packages:
cli-truncate: 3.1.0
commander: 10.0.1
debug: 4.3.4(supports-color@5.5.0)
- execa: 7.1.1
+ execa: 7.2.0
lilconfig: 2.1.0
listr2: 5.0.8
micromatch: 4.0.5
@@ -15138,7 +16206,7 @@ packages:
object-inspect: 1.12.3
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.3.1
+ yaml: 2.3.2
transitivePeerDependencies:
- enquirer
- supports-color
@@ -15268,7 +16336,7 @@ packages:
/loupe@2.3.6:
resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
dependencies:
- get-func-name: 2.0.0
+ get-func-name: 3.0.0
dev: false
/lower-case@2.0.2:
@@ -15277,14 +16345,9 @@ packages:
tslib: 2.6.0
dev: true
- /lowercase-keys@1.0.1:
- resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /lowercase-keys@2.0.0:
- resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
- engines: {node: '>=8'}
+ /lowercase-keys@3.0.0:
+ resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
/lru-cache@10.0.0:
@@ -15317,7 +16380,7 @@ packages:
engines: {node: '>=6'}
dependencies:
pify: 4.0.1
- semver: 5.7.1
+ semver: 7.5.4
dev: true
/make-dir@3.1.0:
@@ -15482,9 +16545,14 @@ packages:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- /mimic-response@1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
+ /mimic-response@3.1.0:
+ resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /mimic-response@4.0.0:
+ resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
/min-indent@1.0.1:
@@ -15650,7 +16718,7 @@ packages:
next: '>=10.0.0'
react: '>=17.0.0'
dependencies:
- next: 13.4.13(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0)
+ next: 13.4.13(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
dev: true
@@ -15660,7 +16728,7 @@ packages:
enhanced-resolve: 5.15.0
dev: false
- /next@13.4.13(@babel/core@7.22.9)(react-dom@18.2.0)(react@18.2.0):
+ /next@13.4.13(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-A3YVbVDNeXLhWsZ8Nf6IkxmNlmTNz0yVg186NJ97tGZqPDdPzTrHotJ+A1cuJm2XfuWPrKOUZILl5iBQkIf8Jw==}
engines: {node: '>=16.8.0'}
hasBin: true
@@ -15679,12 +16747,12 @@ packages:
'@swc/helpers': 0.5.1
busboy: 1.6.0
caniuse-lite: 1.0.30001518
- postcss: 8.4.14
+ postcss: 8.4.31
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.22.9)(react@18.2.0)
+ styled-jsx: 5.1.1(@babel/core@7.23.0)(react@18.2.0)
watchpack: 2.4.0
- zod: 3.21.4
+ zod: 3.22.4
optionalDependencies:
'@next/swc-darwin-arm64': 13.4.13
'@next/swc-darwin-x64': 13.4.13
@@ -15792,17 +16860,17 @@ packages:
/node-releases@2.0.12:
resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
+ dev: true
/node-releases@2.0.13:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
- dev: true
/normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
resolve: 1.22.4
- semver: 5.7.1
+ semver: 7.5.4
validate-npm-package-license: 3.0.4
dev: true
@@ -15811,9 +16879,9 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /normalize-url@4.5.1:
- resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
- engines: {node: '>=8'}
+ /normalize-url@8.0.0:
+ resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==}
+ engines: {node: '>=14.16'}
dev: true
/npm-run-path@4.0.1:
@@ -15882,43 +16950,43 @@ packages:
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries@1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
+ /object.entries@1.1.7:
+ resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
- /object.fromentries@2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
+ /object.fromentries@2.0.7:
+ resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
- /object.groupby@1.0.0:
- resolution: {integrity: sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==}
+ /object.groupby@1.0.1:
+ resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
- /object.hasown@1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
+ /object.hasown@1.1.3:
+ resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
- /object.values@1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
+ /object.values@1.1.7:
+ resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
/objectorarray@1.0.5:
resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==}
@@ -16028,9 +17096,9 @@ packages:
resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
dev: false
- /p-cancelable@1.1.0:
- resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
- engines: {node: '>=6'}
+ /p-cancelable@3.0.0:
+ resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
+ engines: {node: '>=12.20'}
dev: true
/p-limit@2.3.0:
@@ -16079,7 +17147,7 @@ packages:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
dependencies:
- got: 9.6.0
+ got: 13.0.0
registry-auth-token: 4.2.2
registry-url: 5.1.0
semver: 6.3.1
@@ -16338,23 +17406,23 @@ packages:
resolution: {integrity: sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==}
dev: false
- /postcss-import@14.1.0(postcss@8.4.30):
+ /postcss-import@14.1.0(postcss@8.4.31):
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
- postcss: ^8.0.0
+ postcss: '>=8.4.31'
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.2
dev: true
- /postcss-load-config@4.0.1(postcss@8.4.30):
+ /postcss-load-config@4.0.1(postcss@8.4.31):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
- postcss: '>=8.0.9'
+ postcss: '>=8.4.31'
ts-node: '>=9.0.0'
peerDependenciesMeta:
postcss:
@@ -16363,63 +17431,63 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.30
+ postcss: 8.4.31
yaml: 2.3.1
dev: true
- /postcss-loader@7.3.3(postcss@8.4.30)(webpack@5.88.2):
+ /postcss-loader@7.3.3(postcss@8.4.31)(webpack@5.88.2):
resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
- postcss: ^7.0.0 || ^8.0.1
+ postcss: '>=8.4.31'
webpack: ^5.0.0
dependencies:
cosmiconfig: 8.2.0
jiti: 1.18.2
- postcss: 8.4.30
+ postcss: 8.4.31
semver: 7.5.4
webpack: 5.88.2(esbuild@0.17.19)
dev: true
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.30):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
- postcss: ^8.1.0
+ postcss: '>=8.4.31'
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
dev: true
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.30):
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
- postcss: ^8.1.0
+ postcss: '>=8.4.31'
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.0.0(postcss@8.4.30):
+ /postcss-modules-scope@3.0.0(postcss@8.4.31):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
- postcss: ^8.1.0
+ postcss: '>=8.4.31'
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
dev: true
- /postcss-modules-values@4.0.0(postcss@8.4.30):
+ /postcss-modules-values@4.0.0(postcss@8.4.31):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
- postcss: ^8.1.0
+ postcss: '>=8.4.31'
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
dev: true
/postcss-selector-parser@6.0.13:
@@ -16437,22 +17505,13 @@ packages:
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss@8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
-
- /postcss@8.4.30:
- resolution: {integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==}
+ /postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
- dev: true
/preact@10.15.1:
resolution: {integrity: sha512-qs2ansoQEwzNiV5eAcRT1p1EC/dmEzaATVDJNiB3g2sRDWdA7b7MurXdJjB2+/WQktGWZwxvDrnuRFbWuIr64g==}
@@ -16462,11 +17521,6 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- /prepend-http@2.0.0:
- resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
- engines: {node: '>=4'}
- dev: true
-
/prettier-linter-helpers@1.0.0:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
@@ -16706,6 +17760,11 @@ packages:
resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
dev: false
+ /quick-lru@5.1.1:
+ resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
+ engines: {node: '>=10'}
+ dev: true
+
/ramda@0.29.0:
resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==}
dev: true
@@ -17391,13 +18450,13 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
- /reflect.getprototypeof@1.0.3:
- resolution: {integrity: sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==}
+ /reflect.getprototypeof@1.0.4:
+ resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
globalthis: 1.0.3
which-builtin-type: 1.1.3
@@ -17416,12 +18475,21 @@ packages:
/regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ /regenerator-runtime@0.14.0:
+ resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+
/regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
'@babel/runtime': 7.22.6
dev: true
+ /regenerator-transform@0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+ dependencies:
+ '@babel/runtime': 7.23.1
+ dev: true
+
/regex-parser@2.2.11:
resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==}
dev: true
@@ -17434,6 +18502,14 @@ packages:
define-properties: 1.2.0
functions-have-names: 1.2.3
+ /regexp.prototype.flags@1.5.1:
+ resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ set-function-name: 2.0.1
+
/regexparam@1.3.0:
resolution: {integrity: sha512-6IQpFBv6e5vz1QAqI+V4k8P2e/3gRrqfCJ9FI+O1FLQTO+Uz6RXZEZOPmTJ6hlGj7gkERzY5BRCv09whKP96/g==}
engines: {node: '>=6'}
@@ -17533,6 +18609,10 @@ packages:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
dev: false
+ /resolve-alpn@1.2.1:
+ resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
+ dev: true
+
/resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
@@ -17567,7 +18647,7 @@ packages:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.30
+ postcss: 8.4.31
source-map: 0.6.1
dev: true
@@ -17593,6 +18673,14 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ /resolve@1.22.6:
+ resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==}
+ hasBin: true
+ dependencies:
+ is-core-module: 2.13.0
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
/resolve@2.0.0-next.4:
resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
hasBin: true
@@ -17601,10 +18689,11 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /responselike@1.0.2:
- resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
+ /responselike@3.0.0:
+ resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
+ engines: {node: '>=14.16'}
dependencies:
- lowercase-keys: 1.0.1
+ lowercase-keys: 3.0.0
dev: true
/restore-cursor@3.1.0:
@@ -17701,7 +18790,7 @@ packages:
/rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
- tslib: 2.6.0
+ tslib: 2.6.2
dev: true
/safe-array-concat@1.0.0:
@@ -17713,6 +18802,15 @@ packages:
has-symbols: 1.0.3
isarray: 2.0.5
+ /safe-array-concat@1.0.1:
+ resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+
/safe-buffer@5.1.1:
resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==}
dev: true
@@ -17823,20 +18921,10 @@ packages:
semver: 6.3.1
dev: true
- /semver@5.7.1:
- resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
- hasBin: true
- dev: true
-
/semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- /semver@7.0.0:
- resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
- hasBin: true
- dev: true
-
/semver@7.5.3:
resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==}
engines: {node: '>=10'}
@@ -17905,6 +18993,14 @@ packages:
/set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ /set-function-name@2.0.1:
+ resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.0
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.0
+
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
@@ -17982,7 +19078,7 @@ packages:
resolution: {integrity: sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==}
engines: {node: '>=8.10.0'}
dependencies:
- semver: 7.0.0
+ semver: 7.5.4
dev: true
/sirv@2.0.3:
@@ -18032,12 +19128,12 @@ packages:
is-fullwidth-code-point: 4.0.0
dev: true
- /slick-carousel@1.8.1(jquery@3.7.0):
+ /slick-carousel@1.8.1(jquery@3.7.1):
resolution: {integrity: sha512-XB9Ftrf2EEKfzoQXt3Nitrt/IPbT+f1fgqBdoxO3W/+JYvtEOW6EgxnWfr9GH6nmULv7Y2tPmEX3koxThVmebA==}
peerDependencies:
jquery: '>=1.8.0'
dependencies:
- jquery: 3.7.0
+ jquery: 3.7.1
dev: false
/sonic-boom@2.8.0:
@@ -18240,16 +19336,17 @@ packages:
strip-ansi: 7.1.0
dev: true
- /string.prototype.matchall@4.0.8:
- resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
+ /string.prototype.matchall@4.0.10:
+ resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
has-symbols: 1.0.3
internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.0
+ regexp.prototype.flags: 1.5.1
+ set-function-name: 2.0.1
side-channel: 1.0.4
/string.prototype.trim@1.2.7:
@@ -18260,6 +19357,14 @@ packages:
define-properties: 1.2.0
es-abstract: 1.22.1
+ /string.prototype.trim@1.2.8:
+ resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+
/string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
@@ -18267,6 +19372,13 @@ packages:
define-properties: 1.2.0
es-abstract: 1.22.1
+ /string.prototype.trimend@1.0.7:
+ resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+
/string.prototype.trimstart@1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
@@ -18274,6 +19386,13 @@ packages:
define-properties: 1.2.0
es-abstract: 1.22.1
+ /string.prototype.trimstart@1.0.7:
+ resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+
/string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
@@ -18355,7 +19474,7 @@ packages:
webpack: 5.88.2(esbuild@0.17.19)
dev: true
- /styled-components@5.3.11(@babel/core@7.22.9)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
+ /styled-components@5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
engines: {node: '>=10'}
peerDependencies:
@@ -18368,7 +19487,7 @@ packages:
'@emotion/is-prop-valid': 1.2.1
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.22.9)(styled-components@5.3.11)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.23.0)(styled-components@5.3.11)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 18.2.0
@@ -18380,7 +19499,7 @@ packages:
- '@babel/core'
dev: false
- /styled-jsx@5.1.1(@babel/core@7.22.9)(react@18.2.0):
+ /styled-jsx@5.1.1(@babel/core@7.23.0)(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -18393,7 +19512,7 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.0
client-only: 0.0.1
react: 18.2.0
@@ -18402,7 +19521,7 @@ packages:
peerDependencies:
styled-components: '>= 1'
dependencies:
- styled-components: 5.3.11(@babel/core@7.22.9)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
+ styled-components: 5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
dev: false
/stylis@4.2.0:
@@ -18685,11 +19804,6 @@ packages:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-readable-stream@1.0.0:
- resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==}
- engines: {node: '>=6'}
- dev: true
-
/to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -18743,8 +19857,8 @@ packages:
regexparam: 1.3.0
dev: false
- /ts-api-utils@1.0.1(typescript@5.1.6):
- resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==}
+ /ts-api-utils@1.0.3(typescript@5.1.6):
+ resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
@@ -18837,6 +19951,10 @@ packages:
/tslib@2.6.0:
resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
+ /tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ dev: true
+
/tsutils@3.21.0(typescript@5.1.6):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
@@ -19145,24 +20263,24 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- /update-browserslist-db@1.0.11(browserslist@4.21.10):
+ /update-browserslist-db@1.0.11(browserslist@4.21.9):
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.21.9
escalade: 3.1.1
picocolors: 1.0.0
dev: true
- /update-browserslist-db@1.0.11(browserslist@4.21.9):
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ /update-browserslist-db@1.0.13(browserslist@4.22.1):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.9
+ browserslist: 4.22.1
escalade: 3.1.1
picocolors: 1.0.0
@@ -19191,13 +20309,6 @@ packages:
dependencies:
punycode: 2.3.0
- /url-parse-lax@3.0.0:
- resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
- engines: {node: '>=4'}
- dependencies:
- prepend-http: 2.0.0
- dev: true
-
/url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
@@ -19554,17 +20665,17 @@ packages:
webpack-cli:
optional: true
dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 1.0.1
+ '@types/eslint-scope': 3.7.5
+ '@types/estree': 1.0.2
'@webassemblyjs/ast': 1.11.6
'@webassemblyjs/wasm-edit': 1.11.6
'@webassemblyjs/wasm-parser': 1.11.6
acorn: 8.10.0
acorn-import-assertions: 1.9.0(acorn@8.10.0)
- browserslist: 4.21.10
+ browserslist: 4.22.1
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
- es-module-lexer: 1.3.0
+ es-module-lexer: 1.3.1
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -19862,6 +20973,11 @@ packages:
engines: {node: '>= 14'}
dev: true
+ /yaml@2.3.2:
+ resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
+ engines: {node: '>= 14'}
+ dev: true
+
/yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
engines: {node: '>=6'}
@@ -19934,8 +21050,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- /zod@3.21.4:
- resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
+ /zod@3.22.4:
+ resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
/zrender@5.4.4:
resolution: {integrity: sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==}