From 623dcbe2952bae604576fb3c2bcaa438abb809fd Mon Sep 17 00:00:00 2001
From: mamos-mysten <122397493+mamos-mysten@users.noreply.github.com>
Date: Thu, 2 Mar 2023 13:38:13 -0800
Subject: [PATCH] [explorer] - checkpoint details page (#8631)
## Description
Adds detail page for viewing details for a specific checkpoint.
- adds route `/checkpoint/:digest`
- includes feature flag `explorer-epochs-checkpoints`. added this before
we paused mainnet release, but left it in since most of the other
epochs/checkpoints pages contain mocks
- another callout is right now we're doing a batch request to display
transactions within a checkpoint, ideally we could query for
transactions by a specific checkpoint
- adds ability to search by checkpoint digest
- created [APPS-543](https://mysten.atlassian.net/browse/APPS-543) as a
follow-up to clean-up / enable re-use of the transactions table / logic
## Test Plan
manual testing
---
If your changes are not user-facing and not a breaking change, you can
skip the following section. Otherwise, please indicate what changed, and
then add to the Release Notes section as highlighted during the release
process.
---
apps/explorer/package.json | 4 +-
.../explorer/src/components/search/Search.tsx | 9 +-
.../transaction-card/RecentTxCard.tsx | 4 +-
.../transaction-card/TxCardUtils.tsx | 5 +-
.../components/transaction-card/TxForID.tsx | 3 +-
apps/explorer/src/hooks/useSearch.ts | 45 +-
.../pages/checkpoints/CheckpointDetail.tsx | 163 ++
.../src/pages/checkpoints/Transactions.tsx | 37 +
apps/explorer/src/pages/index.tsx | 2 +
apps/explorer/src/ui/PageHeader.tsx | 4 +-
apps/explorer/src/ui/Search.tsx | 36 +-
.../src/ui/stories/Search.stories.tsx | 1 +
apps/explorer/src/utils/growthbook.ts | 1 +
pnpm-lock.yaml | 2403 ++++-------------
14 files changed, 751 insertions(+), 1966 deletions(-)
create mode 100644 apps/explorer/src/pages/checkpoints/CheckpointDetail.tsx
create mode 100644 apps/explorer/src/pages/checkpoints/Transactions.tsx
diff --git a/apps/explorer/package.json b/apps/explorer/package.json
index 6879974325719..ce11b4ee795ff 100644
--- a/apps/explorer/package.json
+++ b/apps/explorer/package.json
@@ -23,8 +23,8 @@
"@floating-ui/react": "^0.18.0",
"@fontsource/inter": "^4.5.14",
"@fontsource/red-hat-mono": "^4.5.11",
- "@growthbook/growthbook": "^0.20.1",
- "@growthbook/growthbook-react": "^0.10.1",
+ "@growthbook/growthbook": "^0.21.2",
+ "@growthbook/growthbook-react": "^0.11.2",
"@headlessui/react": "^1.7.7",
"@hookform/resolvers": "^2.9.10",
"@mysten/core": "workspace:*",
diff --git a/apps/explorer/src/components/search/Search.tsx b/apps/explorer/src/components/search/Search.tsx
index 7716af7c8a8b7..c8b57655a2b5b 100644
--- a/apps/explorer/src/components/search/Search.tsx
+++ b/apps/explorer/src/components/search/Search.tsx
@@ -19,8 +19,13 @@ function Search() {
const navigate = useNavigateWithQuery();
const handleSelectResult = useCallback(
(result: SearchResult) => {
- navigate(`/${result.type}/${encodeURIComponent(result.id)}`, {});
- setQuery('');
+ if (result) {
+ navigate(
+ `/${result?.type}/${encodeURIComponent(result?.id)}`,
+ {}
+ );
+ setQuery('');
+ }
},
[navigate]
);
diff --git a/apps/explorer/src/components/transaction-card/RecentTxCard.tsx b/apps/explorer/src/components/transaction-card/RecentTxCard.tsx
index f70c91fe63323..d5b28616a3cc7 100644
--- a/apps/explorer/src/components/transaction-card/RecentTxCard.tsx
+++ b/apps/explorer/src/components/transaction-card/RecentTxCard.tsx
@@ -160,9 +160,9 @@ export function LatestTxCard({
const recentTx = useMemo(
() =>
transactionQuery.data
- ? genTableDataFromTxData(transactionQuery.data, truncateLength)
+ ? genTableDataFromTxData(transactionQuery.data)
: null,
- [transactionQuery.data, truncateLength]
+ [transactionQuery.data]
);
const stats = {
diff --git a/apps/explorer/src/components/transaction-card/TxCardUtils.tsx b/apps/explorer/src/components/transaction-card/TxCardUtils.tsx
index 69d122d6af874..60a3f028b29d6 100644
--- a/apps/explorer/src/components/transaction-card/TxCardUtils.tsx
+++ b/apps/explorer/src/components/transaction-card/TxCardUtils.tsx
@@ -93,10 +93,7 @@ export function TxAddresses({ content }: { content: LinkObj[] }) {
}
// Generate table data from the transaction data
-export const genTableDataFromTxData = (
- results: TxnData[],
- truncateLength: number
-) => ({
+export const genTableDataFromTxData = (results: TxnData[]) => ({
data: results.map((txn) => ({
date: ,
transactionId: (
diff --git a/apps/explorer/src/components/transaction-card/TxForID.tsx b/apps/explorer/src/components/transaction-card/TxForID.tsx
index 9aee71e0a1a78..964e966a8da33 100644
--- a/apps/explorer/src/components/transaction-card/TxForID.tsx
+++ b/apps/explorer/src/components/transaction-card/TxForID.tsx
@@ -17,7 +17,6 @@ import { useRpc } from '~/hooks/useRpc';
import { Banner } from '~/ui/Banner';
import { TableCard } from '~/ui/TableCard';
-const TRUNCATE_LENGTH = 14;
const ITEMS_PER_PAGE = 20;
const DATATYPE_DEFAULT = {
@@ -40,7 +39,7 @@ const viewFn = (results: any) => ;
function TxForIDView({ showData }: { showData: TxnData[] | undefined }) {
if (!showData || showData.length === 0) return null;
- const tableData = genTableDataFromTxData(showData, TRUNCATE_LENGTH);
+ const tableData = genTableDataFromTxData(showData);
return (
diff --git a/apps/explorer/src/hooks/useSearch.ts b/apps/explorer/src/hooks/useSearch.ts
index e68bcea3223c1..11dd87fd63b8c 100644
--- a/apps/explorer/src/hooks/useSearch.ts
+++ b/apps/explorer/src/hooks/useSearch.ts
@@ -1,6 +1,7 @@
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
+import { useFeature } from '@growthbook/growthbook-react';
import {
isValidTransactionDigest,
isValidSuiAddress,
@@ -15,6 +16,7 @@ import { useQuery } from '@tanstack/react-query';
import { useRpc } from '~/hooks/useRpc';
import { isGenesisLibAddress } from '~/utils/api/searchUtil';
+import { GROWTHBOOK_FEATURES } from '~/utils/growthbook';
type Result = {
label: string;
@@ -57,6 +59,25 @@ const getResultsForObject = async (rpc: JsonRpcProvider, query: string) => {
],
};
}
+
+ return null;
+};
+
+const getResultsForCheckpoint = async (rpc: JsonRpcProvider, query: string) => {
+ const { digest } = await rpc.getCheckpoint(query);
+ if (digest) {
+ return {
+ label: 'checkpoint',
+ results: [
+ {
+ id: digest,
+ label: digest,
+ type: 'checkpoint',
+ },
+ ],
+ };
+ }
+
return null;
};
@@ -69,6 +90,7 @@ const getResultsForAddress = async (rpc: JsonRpcProvider, query: string) => {
rpc.getTransactions({ FromAddress: normalized }, null, 1),
rpc.getTransactions({ ToAddress: normalized }, null, 1),
]);
+
if (from.data?.length || to.data?.length) {
return {
label: 'address',
@@ -81,22 +103,33 @@ const getResultsForAddress = async (rpc: JsonRpcProvider, query: string) => {
],
};
}
+
return null;
};
export function useSearch(query: string) {
const rpc = useRpc();
+ const checkpointsEnabled = useFeature(
+ GROWTHBOOK_FEATURES.EPOCHS_CHECKPOINTS
+ ).on;
return useQuery(
['search', query],
async () => {
- const results = await Promise.all([
- getResultsForTransaction(rpc, query),
- getResultsForAddress(rpc, query),
- getResultsForObject(rpc, query),
- ]);
+ const results = (
+ await Promise.allSettled([
+ getResultsForTransaction(rpc, query),
+ ...(checkpointsEnabled
+ ? [getResultsForCheckpoint(rpc, query)]
+ : []),
+ getResultsForAddress(rpc, query),
+ getResultsForObject(rpc, query),
+ ])
+ ).filter(
+ (r) => r.status === 'fulfilled' && r.value
+ ) as PromiseFulfilledResult
[];
- return results.filter(Boolean) as Result[];
+ return results.map(({ value }) => value);
},
{
enabled: !!query,
diff --git a/apps/explorer/src/pages/checkpoints/CheckpointDetail.tsx b/apps/explorer/src/pages/checkpoints/CheckpointDetail.tsx
new file mode 100644
index 0000000000000..db7b5740d3b08
--- /dev/null
+++ b/apps/explorer/src/pages/checkpoints/CheckpointDetail.tsx
@@ -0,0 +1,163 @@
+// Copyright (c) Mysten Labs, Inc.
+// SPDX-License-Identifier: Apache-2.0
+
+import { useFeature, useGrowthBook } from '@growthbook/growthbook-react';
+import { useQuery } from '@tanstack/react-query';
+import { Navigate, useParams } from 'react-router-dom';
+
+import { CheckpointTransactions } from './Transactions';
+
+import { useRpc } from '~/hooks/useRpc';
+import { Banner } from '~/ui/Banner';
+import { DescriptionList, DescriptionItem } from '~/ui/DescriptionList';
+import { LoadingSpinner } from '~/ui/LoadingSpinner';
+import { PageHeader } from '~/ui/PageHeader';
+import { Tab, TabGroup, TabList, TabPanel, TabPanels } from '~/ui/Tabs';
+import { Text } from '~/ui/Text';
+import { GROWTHBOOK_FEATURES } from '~/utils/growthbook';
+import { convertNumberToDate } from '~/utils/timeUtils';
+
+function CheckpointDetail() {
+ const { digest } = useParams<{ digest: string }>();
+ const rpc = useRpc();
+
+ const checkpointQuery = useQuery(['checkpoints', digest], () =>
+ rpc.getCheckpoint(digest!)
+ );
+
+ // todo: add user_signatures to combined `getCheckpoint` endpoint
+ const contentsQuery = useQuery(
+ ['checkpoints', digest, 'contents'],
+ () => rpc.getCheckpointContents(checkpoint.sequenceNumber),
+ { enabled: !!checkpointQuery.data }
+ );
+
+ if (checkpointQuery.isError)
+ return (
+
+ There was an issue retrieving data for checkpoint: {digest}
+
+ );
+
+ if (checkpointQuery.isLoading) return ;
+
+ const {
+ data: { epochRollingGasCostSummary, ...checkpoint },
+ } = checkpointQuery;
+
+ return (
+
+
+
+
+
+ Details
+ Signatures
+
+
+
+
+
+
+ {checkpoint.sequenceNumber}
+
+
+
+
+ {checkpoint.epoch}
+
+
+
+
+ {checkpoint.timestampMs
+ ? convertNumberToDate(
+ checkpoint.timestampMs
+ )
+ : '--'}
+
+
+
+
+
+
+ {contentsQuery.data?.user_signatures.map(
+ ([signature]) => (
+
+
+ {signature}
+
+
+ )
+ )}
+
+
+
+
+
+
+ Gas & Storage Fee
+
+
+
+
+
+ {
+ epochRollingGasCostSummary.computation_cost
+ }
+
+
+
+
+ {epochRollingGasCostSummary.storage_cost}
+
+
+
+
+ {epochRollingGasCostSummary.storage_rebate}
+
+
+
+
+
+
+
+
+ Checkpoint Transactions
+
+
+
+
+
+
+
+
+
+ );
+}
+
+export default function CheckpointDetailFeatureFlagged() {
+ const gb = useGrowthBook();
+ const enabled = useFeature(GROWTHBOOK_FEATURES.EPOCHS_CHECKPOINTS).on;
+ if (gb?.ready) {
+ return enabled ? : ;
+ }
+ return ;
+}
diff --git a/apps/explorer/src/pages/checkpoints/Transactions.tsx b/apps/explorer/src/pages/checkpoints/Transactions.tsx
new file mode 100644
index 0000000000000..2b97f4372349d
--- /dev/null
+++ b/apps/explorer/src/pages/checkpoints/Transactions.tsx
@@ -0,0 +1,37 @@
+// Copyright (c) Mysten Labs, Inc.
+// SPDX-License-Identifier: Apache-2.0
+
+import { useQuery } from '@tanstack/react-query';
+
+import {
+ genTableDataFromTxData,
+ getDataOnTxDigests,
+ type TxnData,
+} from '~/components/transaction-card/TxCardUtils';
+import { useRpc } from '~/hooks/useRpc';
+import { TableCard } from '~/ui/TableCard';
+
+export function CheckpointTransactions({
+ digest,
+ transactions,
+}: {
+ digest: string;
+ transactions: string[];
+}) {
+ const rpc = useRpc();
+ const { data: txData, isLoading } = useQuery(
+ ['checkpoint-transactions', digest],
+ async () => {
+ // todo: replace this with `sui_getTransactions` call when we are
+ // able to query by checkpoint digest
+ const txData = await getDataOnTxDigests(rpc, transactions!);
+ return genTableDataFromTxData(txData as TxnData[]);
+ },
+ { enabled: !!transactions.length }
+ );
+ if (isLoading) return null;
+
+ return txData ? (
+
+ ) : null;
+}
diff --git a/apps/explorer/src/pages/index.tsx b/apps/explorer/src/pages/index.tsx
index 657af0b077a57..10ec7868e5d8f 100644
--- a/apps/explorer/src/pages/index.tsx
+++ b/apps/explorer/src/pages/index.tsx
@@ -10,6 +10,7 @@ import {
} from 'react-router-dom';
import AddressResult from './address-result/AddressResult';
+import CheckpointDetail from './checkpoints/CheckpointDetail';
import Home from './home/Home';
import { ObjectResult } from './object-result/ObjectResult';
import SearchError from './searcherror/SearchError';
@@ -36,6 +37,7 @@ export const router = sentryCreateBrowserRouter([
{ path: '/', element: },
{ path: 'transactions', element: },
{ path: 'object/:id', element: },
+ { path: 'checkpoint/:digest', element: },
{ path: 'transaction/:id', element: },
{ path: 'address/:id', element: },
{ path: 'validators', element: },
diff --git a/apps/explorer/src/ui/PageHeader.tsx b/apps/explorer/src/ui/PageHeader.tsx
index 49a663e04670d..40d6fc00565f2 100644
--- a/apps/explorer/src/ui/PageHeader.tsx
+++ b/apps/explorer/src/ui/PageHeader.tsx
@@ -1,7 +1,7 @@
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
-import { CopyNew24 } from '@mysten/icons';
+import { CopyNew24, Flag16 } from '@mysten/icons';
import { type TransactionKindName } from '@mysten/sui.js';
import toast from 'react-hot-toast';
@@ -19,6 +19,7 @@ import { ReactComponent as TransferSuiIcon } from './icons/transactions/transfer
export type PageHeaderType =
| TransactionKindName
| 'Address'
+ | 'Checkpoint'
| 'Object'
| 'Package';
@@ -32,6 +33,7 @@ export interface PageHeaderProps {
const TYPE_TO_ICON: Record = {
Call: CallIcon,
ChangeEpoch: ChangeEpochIcon,
+ Checkpoint: Flag16,
Pay: PayIcon,
// TODO: replace with SUI specific icon if needed
PaySui: PayIcon,
diff --git a/apps/explorer/src/ui/Search.tsx b/apps/explorer/src/ui/Search.tsx
index bdfeab2f7f937..20a14eb5615df 100644
--- a/apps/explorer/src/ui/Search.tsx
+++ b/apps/explorer/src/ui/Search.tsx
@@ -63,24 +63,26 @@ export function Search({
as="div"
className="relative w-full"
>
- value?.label}
- className="w-full rounded-md border border-transparent bg-search-fill/60 pl-2 text-body leading-9 text-white/20 outline-none placeholder:text-xs placeholder:text-white/40 hover:bg-search-fill hover:placeholder:text-white/60 focus:border-sui focus:bg-search-fill focus:text-white focus:placeholder:text-white/60"
- onChange={onChange}
- placeholder={placeholder}
- autoComplete="off"
- onKeyDown={(e: KeyboardEvent) => {
- if (e.code === 'Enter' && !hasOptions) {
- e.stopPropagation();
- e.preventDefault();
- }
- }}
- value={queryValue}
- />
+
+
value?.label}
+ className="w-full rounded-md border border-transparent bg-search-fill/60 pl-2 text-body leading-9 text-white/20 outline-none placeholder:text-xs placeholder:text-white/40 hover:bg-search-fill hover:placeholder:text-white/60 focus:border-sui focus:bg-search-fill focus:text-white focus:placeholder:text-white/60"
+ onChange={onChange}
+ placeholder={placeholder}
+ autoComplete="off"
+ onKeyDown={(e: KeyboardEvent) => {
+ if (e.code === 'Enter' && !hasOptions) {
+ e.stopPropagation();
+ e.preventDefault();
+ }
+ }}
+ value={queryValue}
+ />
-
{queryValue && (
diff --git a/apps/explorer/src/ui/stories/Search.stories.tsx b/apps/explorer/src/ui/stories/Search.stories.tsx
index 7a56ecc3f2c24..b6a27b3d61e6c 100644
--- a/apps/explorer/src/ui/stories/Search.stories.tsx
+++ b/apps/explorer/src/ui/stories/Search.stories.tsx
@@ -64,6 +64,7 @@ export const Default: StoryObj = {
queryValue={query}
isLoading={false}
onChange={(e) => setQuery(e.currentTarget.value)}
+ onSelectResult={(result) => setQuery(result.label)}
placeholder="Search Addresses / Objects / Transactions / Epochs"
options={filteredOptions}
/>
diff --git a/apps/explorer/src/utils/growthbook.ts b/apps/explorer/src/utils/growthbook.ts
index f4a56e3acd959..cd7cf241c24ef 100644
--- a/apps/explorer/src/utils/growthbook.ts
+++ b/apps/explorer/src/utils/growthbook.ts
@@ -38,4 +38,5 @@ export enum GROWTHBOOK_FEATURES {
EXPLORER_METRICS = 'explorer-metrics',
USE_TEST_NET_ENDPOINT = 'testnet-selection',
VALIDATOR_PAGE_STAKING = 'validator-page-staking',
+ EPOCHS_CHECKPOINTS = 'explorer-epochs-checkpoints',
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0d60f25d8d497..ef8ef6630e324 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -60,8 +60,8 @@ importers:
'@floating-ui/react': ^0.18.0
'@fontsource/inter': ^4.5.14
'@fontsource/red-hat-mono': ^4.5.11
- '@growthbook/growthbook': ^0.20.1
- '@growthbook/growthbook-react': ^0.10.1
+ '@growthbook/growthbook': ^0.21.2
+ '@growthbook/growthbook-react': ^0.11.2
'@headlessui/react': ^1.7.7
'@hookform/resolvers': ^2.9.10
'@mysten/core': workspace:*
@@ -132,8 +132,8 @@ importers:
'@floating-ui/react': 0.18.0_ib3m5ricvtkl2cll7qpr2f6lvq
'@fontsource/inter': 4.5.14
'@fontsource/red-hat-mono': 4.5.11
- '@growthbook/growthbook': 0.20.1
- '@growthbook/growthbook-react': 0.10.1_react@18.2.0
+ '@growthbook/growthbook': 0.21.2
+ '@growthbook/growthbook-react': 0.11.2_react@18.2.0
'@headlessui/react': 1.7.7_biqbaboplfbrettd7655fr4n2y
'@hookform/resolvers': 2.9.10_react-hook-form@7.42.1
'@mysten/core': link:../core
@@ -714,11 +714,6 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/compat-data/7.21.0:
- resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/core/7.20.12:
resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
engines: {node: '>=6.9.0'}
@@ -742,30 +737,7 @@ packages:
- supports-color
dev: true
- /@babel/core/7.21.0:
- resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.21.1
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helpers': 7.21.0
- '@babel/parser': 7.21.2
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
- '@babel/types': 7.21.2
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/eslint-parser/7.18.9_ucmnolur3r335ullwiyt3zl3pi:
+ /@babel/eslint-parser/7.18.9_i5phe4fce75ynmgbxjisko3rue:
resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
@@ -773,22 +745,22 @@ packages:
eslint: ^7.5.0 || ^8.0.0
dependencies:
'@babel/core': 7.20.12
- eslint: 8.31.0
+ eslint: 8.35.0
eslint-scope: 5.1.1
eslint-visitor-keys: 2.1.0
semver: 6.3.0
dev: true
- /@babel/eslint-parser/7.19.1_zt6cfucldurvbyn2isj445jria:
- resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==}
+ /@babel/eslint-parser/7.18.9_ucmnolur3r335ullwiyt3zl3pi:
+ resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': '>=7.11.0'
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.21.0
- '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 8.35.0
+ '@babel/core': 7.20.12
+ eslint: 8.31.0
+ eslint-scope: 5.1.1
eslint-visitor-keys: 2.1.0
semver: 6.3.0
dev: true
@@ -802,21 +774,11 @@ packages:
jsesc: 2.5.2
dev: true
- /@babel/generator/7.21.1:
- resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.2
- '@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.17
- jsesc: 2.5.2
- dev: true
-
/@babel/helper-annotate-as-pure/7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -824,7 +786,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-compilation-targets/7.20.7:
@@ -854,20 +816,6 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.21.0
- '@babel/helper-validator-option': 7.21.0
- browserslist: 4.21.5
- lru-cache: 5.1.1
- semver: 6.3.0
- dev: true
-
/@babel/helper-create-class-features-plugin/7.18.9:
resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
engines: {node: '>=6.9.0'}
@@ -903,25 +851,6 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-create-regexp-features-plugin/7.20.5:
resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
@@ -943,17 +872,6 @@ packages:
regexpu-core: 5.2.2
dev: true
- /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.3.1
- dev: true
-
/@babel/helper-define-polyfill-provider/0.3.3:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
@@ -985,22 +903,6 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
@@ -1010,7 +912,7 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-function-name/7.19.0:
@@ -1021,19 +923,11 @@ packages:
'@babel/types': 7.20.7
dev: true
- /@babel/helper-function-name/7.21.0:
- resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.20.7
- '@babel/types': 7.21.2
- dev: true
-
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-member-expression-to-functions/7.18.9:
@@ -1043,18 +937,11 @@ packages:
'@babel/types': 7.20.7
dev: true
- /@babel/helper-member-expression-to-functions/7.21.0:
- resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.2
- dev: true
-
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-module-transforms/7.20.11:
@@ -1073,27 +960,11 @@ packages:
- supports-color
dev: true
- /@babel/helper-module-transforms/7.21.2:
- resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-simple-access': 7.20.2
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
- '@babel/types': 7.21.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-optimise-call-expression/7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-plugin-utils/7.20.2:
@@ -1130,21 +1001,6 @@ packages:
- supports-color
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.0:
- resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.21.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-replace-supers/7.19.1:
resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
engines: {node: '>=6.9.0'}
@@ -1158,25 +1014,11 @@ packages:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.20.7:
- resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
- '@babel/types': 7.21.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-simple-access/7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-skip-transparent-expression-wrappers/7.18.9:
@@ -1186,18 +1028,11 @@ packages:
'@babel/types': 7.20.7
dev: true
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
- resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.2
- dev: true
-
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.21.2
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-string-parser/7.19.4:
@@ -1214,11 +1049,6 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-validator-option/7.21.0:
- resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-wrap-function/7.18.11:
resolution: {integrity: sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==}
engines: {node: '>=6.9.0'}
@@ -1231,18 +1061,6 @@ packages:
- supports-color
dev: true
- /@babel/helper-wrap-function/7.20.5:
- resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.21.0
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
- '@babel/types': 7.21.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helpers/7.20.7:
resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==}
engines: {node: '>=6.9.0'}
@@ -1254,17 +1072,6 @@ packages:
- supports-color
dev: true
- /@babel/helpers/7.21.0:
- resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
- '@babel/types': 7.21.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/highlight/7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
@@ -1281,14 +1088,6 @@ packages:
'@babel/types': 7.20.7
dev: true
- /@babel/parser/7.21.2:
- resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.21.2
- dev: true
-
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
@@ -1308,16 +1107,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9:
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
@@ -1341,18 +1130,6 @@ packages:
'@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.12
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-async-generator-functions/7.20.1:
resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==}
engines: {node: '>=6.9.0'}
@@ -1382,21 +1159,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-class-properties/7.18.6:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -1422,19 +1184,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.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.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-class-static-block/7.18.6:
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
@@ -1462,32 +1211,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
+ /@babel/plugin-proposal-decorators/7.18.10_@babel+core@7.20.12:
+ resolution: {integrity: sha512-wdGTwWF5QtpTY/gbBtQLAiCnoxfD4qMbN87NYZle1dOZ9Os8Y6zXcKrIaOU8W+TIvFUWVGG9tUgNww3CjXRVVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-replace-supers': 7.19.1
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
@@ -1513,17 +1248,6 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-export-namespace-from/7.18.9:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
@@ -1545,17 +1269,6 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.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.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-json-strings/7.18.6:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
@@ -1577,17 +1290,6 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-logical-assignment-operators/7.18.9:
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
@@ -1609,17 +1311,6 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-nullish-coalescing-operator/7.18.6:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -1641,17 +1332,6 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.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.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-numeric-separator/7.18.6:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
@@ -1673,17 +1353,6 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-object-rest-spread/7.20.2:
resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==}
engines: {node: '>=6.9.0'}
@@ -1711,20 +1380,6 @@ packages:
'@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-optional-catch-binding/7.18.6:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
@@ -1746,17 +1401,6 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-optional-chaining/7.18.9:
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
@@ -1780,18 +1424,6 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-proposal-private-methods/7.18.6:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
@@ -1817,19 +1449,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-private-property-in-object/7.18.6:
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
@@ -1859,21 +1478,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-unicode-property-regex/7.18.6:
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
@@ -1895,17 +1499,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-async-generators/7.8.4:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -1923,15 +1516,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.0:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-class-properties/7.12.13:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -1949,15 +1533,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.0:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-class-static-block/7.14.5:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -1977,23 +1552,13 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.0:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
+ /@babel/plugin-syntax-decorators/7.18.6_@babel+core@7.20.12:
+ resolution: {integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: true
@@ -2014,15 +1579,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-export-namespace-from/7.8.3:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
@@ -2040,15 +1596,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-flow/7.18.6:
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
engines: {node: '>=6.9.0'}
@@ -2068,16 +1615,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-import-assertions/7.20.0:
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
@@ -2097,16 +1634,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-json-strings/7.8.3:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -2124,15 +1651,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-jsx/7.18.6:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
@@ -2152,16 +1670,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-logical-assignment-operators/7.10.4:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -2179,15 +1687,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.0:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -2205,15 +1704,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-numeric-separator/7.10.4:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -2231,15 +1721,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.0:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-object-rest-spread/7.8.3:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -2257,15 +1738,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-optional-catch-binding/7.8.3:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -2283,15 +1755,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-optional-chaining/7.8.3:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -2309,15 +1772,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-private-property-in-object/7.14.5:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -2337,16 +1791,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.0:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-top-level-await/7.14.5:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -2366,16 +1810,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.0:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-syntax-typescript/7.18.6:
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
@@ -2395,16 +1829,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-arrow-functions/7.18.6:
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
@@ -2424,16 +1848,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-async-to-generator/7.18.6:
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
@@ -2461,20 +1875,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-block-scoped-functions/7.18.6:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
@@ -2494,16 +1894,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-block-scoping/7.20.5:
resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==}
engines: {node: '>=6.9.0'}
@@ -2523,16 +1913,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-classes/7.20.2:
resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==}
engines: {node: '>=6.9.0'}
@@ -2572,26 +1952,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-computed-properties/7.18.9:
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
@@ -2611,17 +1971,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/template': 7.20.7
- dev: true
-
/@babel/plugin-transform-destructuring/7.20.2:
resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==}
engines: {node: '>=6.9.0'}
@@ -2641,16 +1990,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-dotall-regex/7.18.6:
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
@@ -2672,17 +2011,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-duplicate-keys/7.18.9:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
@@ -2702,16 +2030,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.0:
- resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-exponentiation-operator/7.18.6:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
@@ -2733,17 +2051,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-flow-strip-types/7.18.9:
resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==}
engines: {node: '>=6.9.0'}
@@ -2765,17 +2072,6 @@ packages:
'@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12
dev: true
- /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-transform-for-of/7.18.8:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
@@ -2795,16 +2091,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-function-name/7.18.9:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
@@ -2828,18 +2114,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.0:
- resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-literals/7.18.9:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
@@ -2859,16 +2133,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.0:
- resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-member-expression-literals/7.18.6:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
@@ -2888,16 +2152,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-modules-amd/7.19.6:
resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==}
engines: {node: '>=6.9.0'}
@@ -2923,19 +2177,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0:
- resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-commonjs/7.19.6:
resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==}
engines: {node: '>=6.9.0'}
@@ -2963,20 +2204,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.0:
- resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-simple-access': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-systemjs/7.19.6:
resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==}
engines: {node: '>=6.9.0'}
@@ -3006,21 +2233,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.0:
- resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-identifier': 7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-umd/7.18.6:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
@@ -3046,19 +2258,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-named-capturing-groups-regex/7.20.5:
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
@@ -3080,17 +2279,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0:
- resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-new-target/7.18.6:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
@@ -3110,16 +2298,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-object-super/7.18.6:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
@@ -3145,19 +2323,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-parameters/7.20.5:
resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==}
engines: {node: '>=6.9.0'}
@@ -3177,16 +2342,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-property-literals/7.18.6:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
@@ -3206,16 +2361,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-react-display-name/7.18.6:
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
@@ -3225,13 +2370,13 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: true
@@ -3254,16 +2399,6 @@ packages:
'@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.12
dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
- dev: true
-
/@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
@@ -3311,20 +2446,6 @@ packages:
'@babel/types': 7.20.7
dev: true
- /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0
- '@babel/types': 7.21.2
- dev: true
-
/@babel/plugin-transform-react-pure-annotations/7.18.6:
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
@@ -3335,13 +2456,13 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
dev: true
@@ -3367,17 +2488,6 @@ packages:
regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.0:
- resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- regenerator-transform: 0.15.1
- dev: true
-
/@babel/plugin-transform-reserved-words/7.18.6:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
@@ -3397,59 +2507,39 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.20.12:
+ resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.20.12
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
+ babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.20.12
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-shorthand-properties/7.18.6:
- resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-shorthand-properties/7.18.6:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: true
@@ -3474,17 +2564,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
dev: true
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0:
- resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- dev: true
-
/@babel/plugin-transform-sticky-regex/7.18.6:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
@@ -3504,16 +2583,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-template-literals/7.18.9:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
@@ -3533,16 +2602,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.0:
- resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-typeof-symbol/7.18.9:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
@@ -3562,16 +2621,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0:
- resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-typescript/7.18.12:
resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==}
engines: {node: '>=6.9.0'}
@@ -3599,20 +2648,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-typescript/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-unicode-escapes/7.18.10:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
@@ -3632,16 +2667,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.0:
- resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-unicode-regex/7.18.6:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
@@ -3663,17 +2688,6 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.0:
- resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/preset-env/7.20.2:
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
@@ -3845,92 +2859,6 @@ packages:
- supports-color
dev: true
- /@babel/preset-env/7.20.2_@babel+core@7.21.0:
- resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0
- '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0
- '@babel/preset-modules': 0.1.5_@babel+core@7.21.0
- '@babel/types': 7.21.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
- core-js-compat: 3.29.0
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/preset-flow/7.18.6:
resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==}
engines: {node: '>=6.9.0'}
@@ -3979,19 +2907,6 @@ packages:
esutils: 2.0.3
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.21.0:
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
- '@babel/types': 7.21.2
- esutils: 2.0.3
- dev: true
-
/@babel/preset-react/7.18.6:
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
@@ -4006,19 +2921,19 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.18.6
dev: true
- /@babel/preset-react/7.18.6_@babel+core@7.21.0:
+ /@babel/preset-react/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.12
dev: true
/@babel/preset-typescript/7.18.6:
@@ -4048,20 +2963,6 @@ packages:
- supports-color
dev: true
- /@babel/preset-typescript/7.21.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.0_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/register/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
engines: {node: '>=6.9.0'}
@@ -4076,10 +2977,6 @@ packages:
source-map-support: 0.5.21
dev: true
- /@babel/regjsgen/0.8.0:
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- dev: true
-
/@babel/runtime-corejs3/7.18.9:
resolution: {integrity: sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==}
engines: {node: '>=6.9.0'}
@@ -4112,8 +3009,8 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.21.2
- '@babel/types': 7.21.2
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
dev: true
/@babel/traverse/7.20.12:
@@ -4134,24 +3031,6 @@ packages:
- supports-color
dev: true
- /@babel/traverse/7.21.2:
- resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.21.1
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.21.2
- '@babel/types': 7.21.2
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/types/7.20.7:
resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
engines: {node: '>=6.9.0'}
@@ -4161,15 +3040,6 @@ packages:
to-fast-properties: 2.0.0
dev: true
- /@babel/types/7.21.2:
- resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.19.4
- '@babel/helper-validator-identifier': 7.19.1
- to-fast-properties: 2.0.0
- dev: true
-
/@base2/pretty-print-object/1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
dev: true
@@ -5234,7 +4104,7 @@ packages:
ajv: 6.12.6
debug: 4.3.4
espree: 9.4.1
- globals: 13.20.0
+ globals: 13.19.0
ignore: 5.2.4
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -5301,13 +4171,13 @@ packages:
resolution: {integrity: sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==}
dependencies:
'@formatjs/intl-localematcher': 0.2.32
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/fast-memoize/1.2.7:
resolution: {integrity: sha512-hPeM5LXUUjtCKPybWOUAWpv8lpja8Xz+uKprFPJcg5F2Rd+/bf1E0UUsLRpaAgOReAf5HMRtoIgv/UcyPICrTQ==}
dependencies:
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/icu-messageformat-parser/2.1.14:
@@ -5315,14 +4185,14 @@ packages:
dependencies:
'@formatjs/ecma402-abstract': 1.14.3
'@formatjs/icu-skeleton-parser': 1.3.18
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/icu-skeleton-parser/1.3.18:
resolution: {integrity: sha512-ND1ZkZfmLPcHjAH1sVpkpQxA+QYfOX3py3SjKWMUVGDow18gZ0WPqz3F+pJLYQMpS2LnnQ5zYR2jPVYTbRwMpg==}
dependencies:
'@formatjs/ecma402-abstract': 1.14.3
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/intl-displaynames/6.2.3:
@@ -5330,7 +4200,7 @@ packages:
dependencies:
'@formatjs/ecma402-abstract': 1.14.3
'@formatjs/intl-localematcher': 0.2.32
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/intl-listformat/7.1.7:
@@ -5338,13 +4208,13 @@ packages:
dependencies:
'@formatjs/ecma402-abstract': 1.14.3
'@formatjs/intl-localematcher': 0.2.32
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/intl-localematcher/0.2.32:
resolution: {integrity: sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==}
dependencies:
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@formatjs/intl/2.6.3_typescript@4.9.4:
@@ -5361,7 +4231,7 @@ packages:
'@formatjs/intl-displaynames': 6.2.3
'@formatjs/intl-listformat': 7.1.7
intl-messageformat: 10.2.5
- tslib: 2.4.1
+ tslib: 2.5.0
typescript: 4.9.4
dev: false
@@ -5401,11 +4271,26 @@ packages:
react: 18.2.0
dev: false
+ /@growthbook/growthbook-react/0.11.2_react@18.2.0:
+ resolution: {integrity: sha512-C2O4F3Sf28vFDM8Bv3xj9wYAeCVm5r2ykGzWjtezrhd2MVc38gFVOz3tIMg79xJiffM50NF7G+qIm4Y664rV8Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: ^16.8.0-0 || ^17.0.0-0 || ^18.0.0-0
+ dependencies:
+ '@growthbook/growthbook': 0.21.2
+ react: 18.2.0
+ dev: false
+
/@growthbook/growthbook/0.20.1:
resolution: {integrity: sha512-frNwdN99jr6NUNWJC5YKA+cmbPaTJsGac3rYRbvihx3xLgM3IbphhNQe+791f0xr/RpRcGCp2vUsyCcM+TduMw==}
engines: {node: '>=10'}
dev: false
+ /@growthbook/growthbook/0.21.2:
+ resolution: {integrity: sha512-kAu6LH02krkS+IxfQbe5mGYfPCGrmw+Cm9N3BChc151anhhVvMd8KS1m+vev6yEPnY606BouxE6a3SuDmmCF4g==}
+ engines: {node: '>=10'}
+ dev: false
+
/@hapi/hoek/9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
dev: true
@@ -5445,11 +4330,11 @@ packages:
react-hook-form: 7.42.1_react@18.2.0
dev: false
- /@httptoolkit/httpolyglot/2.1.0:
- resolution: {integrity: sha512-IkTpczmtH8XM/vAL5SL2/aLJYVD1m9KOMZEfl5AaI+xve7EBrj7NRPztk4YKC364tes3cnzCFg5JMjVpVqzWUw==}
+ /@httptoolkit/httpolyglot/2.0.1:
+ resolution: {integrity: sha512-xhz5ilhpQfEeLTKJMQmlUbvuS7yeFrF5u0M5zUDNpBWu/QMHrnBRxIfqRSV8phJThOpo1DBXuBld6qF07UFk4g==}
engines: {node: '>=12.0.0'}
dependencies:
- '@types/node': 16.18.13
+ '@types/node': 16.18.11
dev: true
/@httptoolkit/proxy-agent/5.0.1-socks-lookup-fix.0:
@@ -5474,7 +4359,7 @@ packages:
dependencies:
agent-base: 6.0.2
debug: 4.3.4
- socks: 2.7.1
+ socks: 2.7.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -5501,10 +4386,10 @@ packages:
'@types/ws': 8.5.4
duplexify: 3.7.1
inherits: 2.0.4
- isomorphic-ws: 4.0.1_ws@7.5.9
- readable-stream: 2.3.8
+ isomorphic-ws: 4.0.1_ws@8.11.0
+ readable-stream: 2.3.7
safe-buffer: 5.2.1
- ws: 7.5.9
+ ws: 8.11.0
xtend: 4.0.2
transitivePeerDependencies:
- bufferutil
@@ -5635,6 +4520,21 @@ packages:
vite: 4.0.4_@types+node@18.11.18
dev: true
+ /@joshwooding/vite-plugin-react-docgen-typescript/0.0.5_nn2ozi4dcvfwonwipcrl2rt65e:
+ resolution: {integrity: sha512-HwAEj/vAP1+hzBfIv9DTCyg+1O0/LG48Up7j1RmJ+pFwjb/wRxzUBco4LqKFKe7SZ0M6IyASNh1oKP3yHnJElA==}
+ peerDependencies:
+ typescript: '>= 4.3.x'
+ vite: '>2.0.0-0'
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ glob: 7.2.3
+ glob-promise: 4.2.2_glob@7.2.3
+ magic-string: 0.26.7
+ react-docgen-typescript: 2.2.2_typescript@4.9.4
+ typescript: 4.9.4
+ vite: 4.1.4_@types+node@18.11.18
+ dev: true
+
/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
@@ -5733,7 +4633,7 @@ packages:
'@motionone/easing': 10.15.1
'@motionone/types': 10.15.1
'@motionone/utils': 10.15.1
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@motionone/dom/10.15.3:
@@ -5744,14 +4644,14 @@ packages:
'@motionone/types': 10.15.1
'@motionone/utils': 10.15.1
hey-listen: 1.0.8
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@motionone/easing/10.15.1:
resolution: {integrity: sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==}
dependencies:
'@motionone/utils': 10.15.1
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@motionone/generators/10.15.1:
@@ -5759,7 +4659,7 @@ packages:
dependencies:
'@motionone/types': 10.15.1
'@motionone/utils': 10.15.1
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/@motionone/types/10.15.1:
@@ -5771,15 +4671,9 @@ packages:
dependencies:
'@motionone/types': 10.15.1
hey-listen: 1.0.8
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
- /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1:
- resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
- dependencies:
- eslint-scope: 5.1.1
- dev: true
-
/@noble/hashes/1.1.5:
resolution: {integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==}
dev: false
@@ -5944,7 +4838,7 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/pluginutils/5.0.2_rollup@3.9.1:
+ /@rollup/pluginutils/5.0.2_rollup@3.18.0:
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -5956,17 +4850,13 @@ packages:
'@types/estree': 1.0.0
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.9.1
+ rollup: 3.18.0
dev: true
/@rushstack/eslint-patch/1.1.4:
resolution: {integrity: sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==}
dev: true
- /@rushstack/eslint-patch/1.2.0:
- resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
- dev: true
-
/@scure/base/1.1.1:
resolution: {integrity: sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==}
dev: false
@@ -6618,7 +5508,7 @@ packages:
vite-plugin-glimmerx:
optional: true
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.0.5_gl4qsmwzp7wy5uclz4tx77gbli
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.0.5_nn2ozi4dcvfwonwipcrl2rt65e
'@storybook/client-logger': 7.0.0-beta.3
'@storybook/core-common': 7.0.0-beta.3_typescript@4.9.4
'@storybook/csf-plugin': 7.0.0-beta.3
@@ -6627,7 +5517,7 @@ packages:
'@storybook/preview': 7.0.0-beta.3
'@storybook/preview-api': 7.0.0-beta.3
'@storybook/types': 7.0.0-beta.3
- '@vitejs/plugin-react': 2.2.0_vite@4.0.4
+ '@vitejs/plugin-react': 2.2.0_vite@4.1.4
browser-assert: 1.2.1
es-module-lexer: 0.9.3
express: 4.18.1
@@ -6635,10 +5525,10 @@ packages:
glob: 7.2.3
glob-promise: 4.2.2_glob@7.2.3
magic-string: 0.26.7
- rollup: 3.9.1
- rollup-plugin-external-globals: 0.7.1_rollup@3.9.1
+ rollup: 3.18.0
+ rollup-plugin-external-globals: 0.7.1_rollup@3.18.0
slash: 3.0.0
- vite: 4.0.4_@types+node@18.11.18
+ vite: 4.1.4_@types+node@18.11.18
transitivePeerDependencies:
- '@types/node'
- less
@@ -6815,7 +5705,7 @@ packages:
globby: 11.1.0
jscodeshift: 0.13.1_@babel+preset-env@7.20.2
lodash: 4.17.21
- prettier: 2.8.1
+ prettier: 2.8.4
recast: 0.19.1
util: 0.12.4
transitivePeerDependencies:
@@ -7489,7 +6379,7 @@ packages:
dependencies:
'@svgr/core': 6.5.1
deepmerge: 4.2.2
- prettier: 2.8.1
+ prettier: 2.8.4
dev: true
/@svgr/plugin-svgo/6.5.1_@svgr+core@6.5.1:
@@ -7738,12 +6628,10 @@ packages:
/@types/connect/3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
- '@types/node': 12.20.55
+ '@types/node': 18.11.18
- /@types/cors/2.8.13:
- resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==}
- dependencies:
- '@types/node': 18.14.2
+ /@types/cors/2.8.12:
+ resolution: {integrity: sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==}
dev: true
/@types/d3-geo/1.12.4:
@@ -7919,17 +6807,9 @@ packages:
resolution: {integrity: sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==}
dev: true
- /@types/node/16.18.13:
- resolution: {integrity: sha512-l0/3XZ153UTlNOnZK8xSNoJlQda9/WnYgiTdcKKPJSZjdjI9MU+A9oMXOesAWLSnqAaaJhj3qfQsU07Dr8OUwg==}
- dev: true
-
/@types/node/18.11.18:
resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
- /@types/node/18.14.2:
- resolution: {integrity: sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA==}
- dev: true
-
/@types/normalize-package-data/2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
@@ -8078,13 +6958,13 @@ packages:
/@types/ws/7.4.7:
resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==}
dependencies:
- '@types/node': 12.20.55
+ '@types/node': 18.11.18
dev: false
/@types/ws/8.5.4:
resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
dependencies:
- '@types/node': 18.14.2
+ '@types/node': 18.11.18
dev: true
/@types/yargs-parser/21.0.0:
@@ -8112,7 +6992,7 @@ packages:
resolution: {integrity: sha512-3NoqvZC2W5gAC5DZbTpCeJ251vGQmgcWIHQJGq2J240HY6ErQ9aWKkwfoKJlHLx+A83WPNTZ9+3cd2ILxbvr1w==}
dev: true
- /@typescript-eslint/eslint-plugin/5.48.0_k73wpmdolxikpyqun3p36akaaq:
+ /@typescript-eslint/eslint-plugin/5.48.0_k56qtvu5cr72d426lmpugttyca:
resolution: {integrity: sha512-SVLafp0NXpoJY7ut6VFVUU9I+YeFsDzeQwtK0WZ+xbRN3mtxJ08je+6Oi2N89qDn087COdO0u3blKZNv9VetRQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8123,24 +7003,24 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe
+ '@typescript-eslint/parser': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
'@typescript-eslint/scope-manager': 5.48.0
- '@typescript-eslint/type-utils': 5.48.0_iukboom6ndih5an6iafl45j2fe
- '@typescript-eslint/utils': 5.48.0_iukboom6ndih5an6iafl45j2fe
+ '@typescript-eslint/type-utils': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@typescript-eslint/utils': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
debug: 4.3.4
- eslint: 8.31.0
+ eslint: 8.35.0
ignore: 5.2.4
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.4
- typescript: 4.9.4
+ tsutils: 3.21.0_typescript@4.9.5
+ typescript: 4.9.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin/5.54.0_6mj2wypvdnknez7kws2nfdgupi:
- resolution: {integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==}
+ /@typescript-eslint/eslint-plugin/5.48.0_k73wpmdolxikpyqun3p36akaaq:
+ resolution: {integrity: sha512-SVLafp0NXpoJY7ut6VFVUU9I+YeFsDzeQwtK0WZ+xbRN3mtxJ08je+6Oi2N89qDn087COdO0u3blKZNv9VetRQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -8150,19 +7030,18 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
- '@typescript-eslint/scope-manager': 5.54.0
- '@typescript-eslint/type-utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
- '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe
+ '@typescript-eslint/scope-manager': 5.48.0
+ '@typescript-eslint/type-utils': 5.48.0_iukboom6ndih5an6iafl45j2fe
+ '@typescript-eslint/utils': 5.48.0_iukboom6ndih5an6iafl45j2fe
debug: 4.3.4
- eslint: 8.35.0
- grapheme-splitter: 1.0.4
+ eslint: 8.31.0
ignore: 5.2.4
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
+ tsutils: 3.21.0_typescript@4.9.4
+ typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -8180,13 +7059,13 @@ packages:
- typescript
dev: true
- /@typescript-eslint/experimental-utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
- resolution: {integrity: sha512-rRYECOTh5V3iWsrOzXi7h1jp3Bi9OkJHrb3wECi3DVqMGTilo9wAYmCbT+6cGdrzUY3MWcAa2mESM6FMik6tVw==}
+ /@typescript-eslint/experimental-utils/5.33.1_ycpbpc6yetojsgtrx3mwntkhsu:
+ resolution: {integrity: sha512-wk2o+4wojvKz/x3UCbsgjgXl0lyLPYQsfKP0MdRzj4jtsQr4bVtgWUWck6+N3GzThUTbUFyyKLduWPwePhh0xQ==}
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.54.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@typescript-eslint/utils': 5.33.1_ycpbpc6yetojsgtrx3mwntkhsu
eslint: 8.35.0
transitivePeerDependencies:
- supports-color
@@ -8213,8 +7092,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
- resolution: {integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==}
+ /@typescript-eslint/parser/5.48.0_ycpbpc6yetojsgtrx3mwntkhsu:
+ resolution: {integrity: sha512-1mxNA8qfgxX8kBvRDIHEzrRGrKHQfQlbW6iHyfHYS0Q4X1af+S6mkLNtgCOsGVl8+/LUPrqdHMssAemkrQ01qg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -8223,9 +7102,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.54.0
- '@typescript-eslint/types': 5.54.0
- '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
+ '@typescript-eslint/scope-manager': 5.48.0
+ '@typescript-eslint/types': 5.48.0
+ '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5
debug: 4.3.4
eslint: 8.35.0
typescript: 4.9.5
@@ -8249,14 +7128,6 @@ packages:
'@typescript-eslint/visitor-keys': 5.48.0
dev: true
- /@typescript-eslint/scope-manager/5.54.0:
- resolution: {integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.54.0
- '@typescript-eslint/visitor-keys': 5.54.0
- dev: true
-
/@typescript-eslint/type-utils/5.48.0_iukboom6ndih5an6iafl45j2fe:
resolution: {integrity: sha512-vbtPO5sJyFjtHkGlGK4Sthmta0Bbls4Onv0bEqOGm7hP9h8UpRsHJwsrCiWtCUndTRNQO/qe6Ijz9rnT/DB+7g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8277,8 +7148,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/type-utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
- resolution: {integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==}
+ /@typescript-eslint/type-utils/5.48.0_ycpbpc6yetojsgtrx3mwntkhsu:
+ resolution: {integrity: sha512-vbtPO5sJyFjtHkGlGK4Sthmta0Bbls4Onv0bEqOGm7hP9h8UpRsHJwsrCiWtCUndTRNQO/qe6Ijz9rnT/DB+7g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -8287,8 +7158,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
- '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5
+ '@typescript-eslint/utils': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
debug: 4.3.4
eslint: 8.35.0
tsutils: 3.21.0_typescript@4.9.5
@@ -8307,11 +7178,6 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.54.0:
- resolution: {integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
/@typescript-eslint/typescript-estree/5.33.1_typescript@4.9.4:
resolution: {integrity: sha512-JOAzJ4pJ+tHzA2pgsWQi4804XisPHOtbvwUyqsuuq8+y5B5GMZs7lI1xDWs6V2d7gE/Ez5bTGojSK12+IIPtXA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8333,6 +7199,27 @@ packages:
- supports-color
dev: true
+ /@typescript-eslint/typescript-estree/5.33.1_typescript@4.9.5:
+ resolution: {integrity: sha512-JOAzJ4pJ+tHzA2pgsWQi4804XisPHOtbvwUyqsuuq8+y5B5GMZs7lI1xDWs6V2d7gE/Ez5bTGojSK12+IIPtXA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 5.33.1
+ '@typescript-eslint/visitor-keys': 5.33.1
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.3.8
+ tsutils: 3.21.0_typescript@4.9.5
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@typescript-eslint/typescript-estree/5.48.0_typescript@4.9.4:
resolution: {integrity: sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8354,8 +7241,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.54.0_typescript@4.9.5:
- resolution: {integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==}
+ /@typescript-eslint/typescript-estree/5.48.0_typescript@4.9.5:
+ resolution: {integrity: sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -8363,8 +7250,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.54.0
- '@typescript-eslint/visitor-keys': 5.54.0
+ '@typescript-eslint/types': 5.48.0
+ '@typescript-eslint/visitor-keys': 5.48.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -8393,6 +7280,24 @@ packages:
- typescript
dev: true
+ /@typescript-eslint/utils/5.33.1_ycpbpc6yetojsgtrx3mwntkhsu:
+ resolution: {integrity: sha512-uphZjkMaZ4fE8CR4dU7BquOV6u0doeQAr8n6cQenl/poMaIyJtBu8eys5uk6u5HiDH01Mj5lzbJ5SfeDz7oqMQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@types/json-schema': 7.0.11
+ '@typescript-eslint/scope-manager': 5.33.1
+ '@typescript-eslint/types': 5.33.1
+ '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.9.5
+ eslint: 8.35.0
+ eslint-scope: 5.1.1
+ eslint-utils: 3.0.0_eslint@8.35.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
/@typescript-eslint/utils/5.48.0_iukboom6ndih5an6iafl45j2fe:
resolution: {integrity: sha512-x2jrMcPaMfsHRRIkL+x96++xdzvrdBCnYRd5QiW5Wgo1OB4kDYPbC1XjWP/TNqlfK93K/lUL92erq5zPLgFScQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8413,17 +7318,17 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
- resolution: {integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==}
+ /@typescript-eslint/utils/5.48.0_ycpbpc6yetojsgtrx3mwntkhsu:
+ resolution: {integrity: sha512-x2jrMcPaMfsHRRIkL+x96++xdzvrdBCnYRd5QiW5Wgo1OB4kDYPbC1XjWP/TNqlfK93K/lUL92erq5zPLgFScQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.54.0
- '@typescript-eslint/types': 5.54.0
- '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
+ '@typescript-eslint/scope-manager': 5.48.0
+ '@typescript-eslint/types': 5.48.0
+ '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5
eslint: 8.35.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.35.0
@@ -8449,14 +7354,6 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@typescript-eslint/visitor-keys/5.54.0:
- resolution: {integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.54.0
- eslint-visitor-keys: 3.3.0
- dev: true
-
/@visx/bounds/2.17.0_biqbaboplfbrettd7655fr4n2y:
resolution: {integrity: sha512-XsoyTAyCm+DZbrPgP3IZFZAcNqBmXFBLSep04TqnrEA3hf16GxIzcpaGe+hAVhPg5yzBdjc7tLk6s0h5F44niA==}
peerDependencies:
@@ -8542,6 +7439,24 @@ packages:
- supports-color
dev: true
+ /@vitejs/plugin-react/2.2.0_vite@4.1.4:
+ resolution: {integrity: sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^3.0.0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12
+ magic-string: 0.26.7
+ react-refresh: 0.14.0
+ vite: 4.1.4_@types+node@18.11.18
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@vitejs/plugin-react/3.0.1_vite@4.0.4:
resolution: {integrity: sha512-mx+QvYwIbbpOIJw+hypjnW1lAbKDHtWK5ibkF/V1/oMBu8HU/chb+SnqJDAsLq1+7rGqjktCEomMTM5KShzUKQ==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -8805,12 +7720,12 @@ packages:
acorn: 7.4.1
dev: true
- /acorn-jsx/5.3.2_acorn@8.8.2:
+ /acorn-jsx/5.3.2_acorn@8.8.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.8.2
+ acorn: 8.8.1
/acorn-node/1.8.2:
resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
@@ -8837,11 +7752,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- /acorn/8.8.2:
- resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
/addons-linter/5.23.0_node-fetch@3.3.0:
resolution: {integrity: sha512-Vo6+5YlM2Ge3yYMY+gNg9Smcfcl1J0ZMfGVXnGJjUwDVHuszHVIvurunQuJURnO4FR1gi4Vy1sWye8ArRL5LOw==}
engines: {node: '>=12.21.0'}
@@ -9157,14 +8067,14 @@ packages:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.21.0
'@babel/runtime-corejs3': 7.18.9
dev: true
/aria-query/5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
dependencies:
- deep-equal: 2.2.0
+ deep-equal: 2.1.0
/arr-diff/4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
@@ -9195,9 +8105,9 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- get-intrinsic: 1.2.0
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
+ get-intrinsic: 1.1.3
is-string: 1.0.7
/array-union/2.1.0:
@@ -9220,8 +8130,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
es-shim-unscopables: 1.0.0
dev: true
@@ -9230,18 +8140,18 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
es-shim-unscopables: 1.0.0
/array.prototype.tosorted/1.1.1:
resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
/arrify/1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
@@ -9288,7 +8198,7 @@ packages:
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.4.1
+ tslib: 2.5.0
dev: true
/astral-regex/2.0.0:
@@ -9357,11 +8267,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /axe-core/4.6.3:
- resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==}
- engines: {node: '>=4'}
- dev: true
-
/axios/0.25.0_debug@4.3.4:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
dependencies:
@@ -9373,7 +8278,7 @@ packages:
/axios/0.27.2:
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
dependencies:
- follow-redirects: 1.15.2
+ follow-redirects: 1.15.1
form-data: 4.0.0
transitivePeerDependencies:
- debug
@@ -9383,12 +8288,6 @@ packages:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /axobject-query/3.1.1:
- resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
- dependencies:
- deep-equal: 2.2.0
- dev: true
-
/babel-core/7.0.0-bridge.0_@babel+core@7.20.12:
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
@@ -9467,15 +8366,14 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0:
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.20.12:
+ resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
- semver: 6.3.0
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ core-js-compat: 3.26.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -9503,18 +8401,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0:
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
- core-js-compat: 3.29.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/babel-plugin-polyfill-regenerator/0.4.1:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
@@ -9536,17 +8422,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0:
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/babel-plugin-react-docgen/4.2.1:
resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==}
dependencies:
@@ -9564,20 +8439,20 @@ packages:
/babel-preset-react-app/10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0
- '@babel/preset-env': 7.20.2_@babel+core@7.21.0
- '@babel/preset-react': 7.18.6_@babel+core@7.21.0
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0
+ '@babel/core': 7.20.12
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-decorators': 7.18.10_@babel+core@7.20.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-flow-strip-types': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.12
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
'@babel/runtime': 7.21.0
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
@@ -9692,46 +8567,6 @@ packages:
- supports-color
dev: true
- /body-parser/1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.1
- type-is: 1.6.18
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /body-parser/1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.2
- type-is: 1.6.18
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/boolbase/1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: true
@@ -9817,8 +8652,8 @@ packages:
wcwidth: 1.0.1
dev: true
- /brotli-wasm/1.3.1:
- resolution: {integrity: sha512-Vp+v3QXddvy39Ycbmvd3/Y1kUvKhwtnprzeABcKWN4jmyg6W3W5MhGPCfXBMHeSQnizgpV59iWmkSRp7ykOnDQ==}
+ /brotli-wasm/1.3.0:
+ resolution: {integrity: sha512-UnkbbzX4/eYPzxUUAnIb3MVU477fY/ZXAwRBLQXjnikNFILSoIYtCPjC9CJKdndSpjFKhsYNYS6xRWyuarkyRQ==}
dev: true
/browser-assert/1.2.1:
@@ -9836,17 +8671,6 @@ packages:
update-browserslist-db: 1.0.10_browserslist@4.21.4
dev: true
- /browserslist/4.21.5:
- resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001458
- electron-to-chromium: 1.4.314
- node-releases: 2.0.10
- update-browserslist-db: 1.0.10_browserslist@4.21.5
- dev: true
-
/bs58/5.0.0:
resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==}
dependencies:
@@ -9889,7 +8713,7 @@ packages:
engines: {node: '>=6.14.2'}
requiresBuild: true
dependencies:
- node-gyp-build: 4.6.0
+ node-gyp-build: 4.5.0
dev: false
/bundle-require/3.1.2_esbuild@0.15.18:
@@ -10029,7 +8853,7 @@ packages:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
/callsites/3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -10074,10 +8898,6 @@ packages:
resolution: {integrity: sha512-239m03Pqy0hwxYPYR5JwOIxRJfLTWtle9FV8zosfV5pHg+/51uD4nxcUlM8+mWWGfwKtt8lJNHnD3cWw9VZ6ow==}
dev: true
- /caniuse-lite/1.0.30001458:
- resolution: {integrity: sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w==}
- dev: true
-
/case-sensitive-paths-webpack-plugin/2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
@@ -10201,14 +9021,9 @@ packages:
engines: {node: '>=6.0'}
dev: true
- /ci-info/3.7.1:
- resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==}
- engines: {node: '>=8'}
-
/ci-info/3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
- dev: true
/ci-job-number/1.2.2:
resolution: {integrity: sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==}
@@ -10534,11 +9349,6 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /content-type/1.0.5:
- resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
- engines: {node: '>= 0.6'}
- dev: true
-
/convert-source-map/1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
dev: true
@@ -10605,12 +9415,6 @@ packages:
browserslist: 4.21.4
dev: true
- /core-js-compat/3.29.0:
- resolution: {integrity: sha512-ScMn3uZNAFhK2DGoEfErguoiAHhV2Ju+oJo/jK08p7B3f3UhocUrCCkTvnZaiS+edl5nlIoiBXKcwMc6elv4KQ==}
- dependencies:
- browserslist: 4.21.5
- dev: true
-
/core-js-pure/3.24.1:
resolution: {integrity: sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==}
requiresBuild: true
@@ -10952,17 +9756,15 @@ packages:
type-detect: 4.0.8
dev: true
- /deep-equal/2.2.0:
- resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
+ /deep-equal/2.1.0:
+ resolution: {integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==}
dependencies:
call-bind: 1.0.2
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.0
+ es-get-iterator: 1.1.2
+ get-intrinsic: 1.1.3
is-arguments: 1.1.1
- is-array-buffer: 3.0.1
is-date-object: 1.0.5
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
isarray: 2.0.5
object-is: 1.1.5
object-keys: 1.1.1
@@ -11021,8 +9823,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /define-properties/1.2.0:
- resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
+ /define-properties/1.1.4:
+ resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
engines: {node: '>= 0.4'}
dependencies:
has-property-descriptors: 1.0.0
@@ -11064,7 +9866,7 @@ packages:
ast-types: 0.13.4
escodegen: 1.14.3
esprima: 4.0.1
- vm2: 3.9.14
+ vm2: 3.9.10
dev: true
/del/6.1.1:
@@ -11299,7 +10101,7 @@ packages:
dependencies:
end-of-stream: 1.4.4
inherits: 2.0.4
- readable-stream: 2.3.8
+ readable-stream: 2.3.7
stream-shift: 1.0.1
dev: true
@@ -11336,10 +10138,6 @@ packages:
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
dev: true
- /electron-to-chromium/1.4.314:
- resolution: {integrity: sha512-+3RmNVx9hZLlc0gW//4yep0K5SYKmIvB5DXg1Yg6varsuAHlHwTeqeygfS8DWwLCsNOWrgj+p9qgM5WYjw1lXQ==}
- dev: true
-
/element-resize-detector/1.2.4:
resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==}
dependencies:
@@ -11437,69 +10235,52 @@ packages:
stackframe: 1.3.4
dev: true
- /es-abstract/1.21.1:
- resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==}
+ /es-abstract/1.20.5:
+ resolution: {integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==}
engines: {node: '>= 0.4'}
dependencies:
- available-typed-arrays: 1.0.5
call-bind: 1.0.2
- es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
function-bind: 1.1.1
function.prototype.name: 1.1.5
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
get-symbol-description: 1.0.0
- globalthis: 1.0.3
gopd: 1.0.1
has: 1.0.3
has-property-descriptors: 1.0.0
- has-proto: 1.0.1
has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.1
+ internal-slot: 1.0.4
is-callable: 1.2.7
is-negative-zero: 2.0.2
is-regex: 1.1.4
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
- is-typed-array: 1.1.10
is-weakref: 1.0.2
- object-inspect: 1.12.3
+ object-inspect: 1.12.2
object-keys: 1.1.1
object.assign: 4.1.4
regexp.prototype.flags: 1.4.3
safe-regex-test: 1.0.0
string.prototype.trimend: 1.0.6
string.prototype.trimstart: 1.0.6
- typed-array-length: 1.0.4
unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
- /es-get-iterator/1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
+ /es-get-iterator/1.1.2:
+ resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
has-symbols: 1.0.3
is-arguments: 1.1.1
is-map: 2.0.2
is-set: 2.0.2
is-string: 1.0.7
isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
/es-module-lexer/0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
dev: true
- /es-set-tostringtag/2.0.1:
- resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.0
- has: 1.0.3
- has-tostringtag: 1.0.0
-
/es-shim-unscopables/1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
@@ -12168,21 +10949,21 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.21.0
- '@babel/eslint-parser': 7.19.1_zt6cfucldurvbyn2isj445jria
- '@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/eslint-plugin': 5.54.0_6mj2wypvdnknez7kws2nfdgupi
- '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@babel/core': 7.20.12
+ '@babel/eslint-parser': 7.18.9_i5phe4fce75ynmgbxjisko3rue
+ '@rushstack/eslint-patch': 1.1.4
+ '@typescript-eslint/eslint-plugin': 5.48.0_k56qtvu5cr72d426lmpugttyca
+ '@typescript-eslint/parser': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.35.0
eslint-plugin-flowtype: 8.0.3_eslint@8.35.0
- eslint-plugin-import: 2.27.5_ajyizmi44oc3hrc35l6ndh7p4e
- eslint-plugin-jest: 25.7.0_aere4n7c7ynvp62ae3ihfxuwhu
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.35.0
- eslint-plugin-react: 7.32.2_eslint@8.35.0
+ eslint-plugin-import: 2.26.0_eqgurr2v32mxrrfd42g7n3o3qy
+ eslint-plugin-jest: 25.7.0_lalecz2brg6sme5setnmrpnsj4
+ eslint-plugin-jsx-a11y: 6.6.1_eslint@8.35.0
+ eslint-plugin-react: 7.31.11_eslint@8.35.0
eslint-plugin-react-hooks: 4.6.0_eslint@8.35.0
- eslint-plugin-testing-library: 5.10.2_ycpbpc6yetojsgtrx3mwntkhsu
+ eslint-plugin-testing-library: 5.6.0_ycpbpc6yetojsgtrx3mwntkhsu
typescript: 4.9.5
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
@@ -12202,16 +10983,6 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-node/0.3.7:
- resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
- dependencies:
- debug: 3.2.7
- is-core-module: 2.11.0
- resolve: 1.22.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/eslint-module-utils/2.7.4_gauu7rrsoohvlnqdwirscmegn4:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
@@ -12241,7 +11012,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_qynxowrxvm2kj5rbowcxf5maga:
+ /eslint-module-utils/2.7.4_hpu4rn2jpjdc5uurqldh224nf4:
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -12262,10 +11033,10 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@typescript-eslint/parser': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
debug: 3.2.7
eslint: 8.35.0
- eslint-import-resolver-node: 0.3.7
+ eslint-import-resolver-node: 0.3.6
transitivePeerDependencies:
- supports-color
dev: true
@@ -12304,7 +11075,7 @@ packages:
eslint: 8.31.0
dev: true
- /eslint-plugin-import/2.26.0_m2kn7xiag5lymyarkgri27ztxm:
+ /eslint-plugin-import/2.26.0_eqgurr2v32mxrrfd42g7n3o3qy:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -12314,14 +11085,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe
+ '@typescript-eslint/parser': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.31.0
+ eslint: 8.35.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_gauu7rrsoohvlnqdwirscmegn4
+ eslint-module-utils: 2.7.4_hpu4rn2jpjdc5uurqldh224nf4
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -12335,8 +11106,8 @@ packages:
- supports-color
dev: true
- /eslint-plugin-import/2.27.5_ajyizmi44oc3hrc35l6ndh7p4e:
- resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
+ /eslint-plugin-import/2.26.0_m2kn7xiag5lymyarkgri27ztxm:
+ resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -12345,30 +11116,28 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
+ '@typescript-eslint/parser': 5.48.0_iukboom6ndih5an6iafl45j2fe
array-includes: 3.1.6
array.prototype.flat: 1.3.1
- array.prototype.flatmap: 1.3.1
- debug: 3.2.7
+ debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.35.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4_qynxowrxvm2kj5rbowcxf5maga
+ eslint: 8.31.0
+ eslint-import-resolver-node: 0.3.6
+ eslint-module-utils: 2.7.4_gauu7rrsoohvlnqdwirscmegn4
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.6
resolve: 1.22.1
- semver: 6.3.0
- tsconfig-paths: 3.14.2
+ tsconfig-paths: 3.14.1
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-jest/25.7.0_aere4n7c7ynvp62ae3ihfxuwhu:
+ /eslint-plugin-jest/25.7.0_eicrjziaffed7zesw4t3fwf6ea:
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -12381,15 +11150,15 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.54.0_6mj2wypvdnknez7kws2nfdgupi
- '@typescript-eslint/experimental-utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
- eslint: 8.35.0
+ '@typescript-eslint/eslint-plugin': 5.48.0_k73wpmdolxikpyqun3p36akaaq
+ '@typescript-eslint/experimental-utils': 5.33.1_iukboom6ndih5an6iafl45j2fe
+ eslint: 8.31.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jest/25.7.0_eicrjziaffed7zesw4t3fwf6ea:
+ /eslint-plugin-jest/25.7.0_lalecz2brg6sme5setnmrpnsj4:
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -12402,9 +11171,9 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.48.0_k73wpmdolxikpyqun3p36akaaq
- '@typescript-eslint/experimental-utils': 5.33.1_iukboom6ndih5an6iafl45j2fe
- eslint: 8.31.0
+ '@typescript-eslint/eslint-plugin': 5.48.0_k56qtvu5cr72d426lmpugttyca
+ '@typescript-eslint/experimental-utils': 5.33.1_ycpbpc6yetojsgtrx3mwntkhsu
+ eslint: 8.35.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -12416,7 +11185,7 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.21.0
aria-query: 4.2.2
array-includes: 3.1.6
ast-types-flow: 0.0.7
@@ -12432,19 +11201,18 @@ packages:
semver: 6.3.0
dev: true
- /eslint-plugin-jsx-a11y/6.7.1_eslint@8.35.0:
- resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
+ /eslint-plugin-jsx-a11y/6.6.1_eslint@8.35.0:
+ resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
'@babel/runtime': 7.21.0
- aria-query: 5.1.3
+ aria-query: 4.2.2
array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
ast-types-flow: 0.0.7
- axe-core: 4.6.3
- axobject-query: 3.1.1
+ axe-core: 4.4.3
+ axobject-query: 2.2.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
eslint: 8.35.0
@@ -12452,8 +11220,6 @@ packages:
jsx-ast-utils: 3.3.3
language-tags: 1.0.5
minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
semver: 6.3.0
dev: true
@@ -12523,8 +11289,8 @@ packages:
semver: 6.3.0
string.prototype.matchall: 4.0.8
- /eslint-plugin-react/7.32.2_eslint@8.35.0:
- resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
+ /eslint-plugin-react/7.31.11_eslint@8.35.0:
+ resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
@@ -12547,27 +11313,27 @@ packages:
string.prototype.matchall: 4.0.8
dev: true
- /eslint-plugin-testing-library/5.10.2_ycpbpc6yetojsgtrx3mwntkhsu:
- resolution: {integrity: sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==}
+ /eslint-plugin-testing-library/5.6.0_iukboom6ndih5an6iafl45j2fe:
+ resolution: {integrity: sha512-y63TRzPhGCMNsnUwMGJU1MFWc/3GvYw+nzobp9QiyNTTKsgAt5RKAOT1I34+XqVBpX1lC8bScoOjCkP7iRv0Mw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
- eslint: 8.35.0
+ '@typescript-eslint/utils': 5.48.0_iukboom6ndih5an6iafl45j2fe
+ eslint: 8.31.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-testing-library/5.6.0_iukboom6ndih5an6iafl45j2fe:
+ /eslint-plugin-testing-library/5.6.0_ycpbpc6yetojsgtrx3mwntkhsu:
resolution: {integrity: sha512-y63TRzPhGCMNsnUwMGJU1MFWc/3GvYw+nzobp9QiyNTTKsgAt5RKAOT1I34+XqVBpX1lC8bScoOjCkP7iRv0Mw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.48.0_iukboom6ndih5an6iafl45j2fe
- eslint: 8.31.0
+ '@typescript-eslint/utils': 5.48.0_ycpbpc6yetojsgtrx3mwntkhsu
+ eslint: 8.35.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -12660,7 +11426,7 @@ packages:
eslint-utils: 3.0.0_eslint@8.28.0
eslint-visitor-keys: 3.3.0
espree: 9.4.1
- esquery: 1.4.0
+ esquery: 1.4.2
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
@@ -12762,14 +11528,14 @@ packages:
file-entry-cache: 6.0.1
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.20.0
+ globals: 13.19.0
grapheme-splitter: 1.0.4
ignore: 5.2.4
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-sdsl: 4.3.0
+ js-sdsl: 4.2.0
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
@@ -12789,8 +11555,8 @@ packages:
resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn: 8.8.1
+ acorn-jsx: 5.3.2_acorn@8.8.1
eslint-visitor-keys: 3.3.0
/esprima/4.0.1:
@@ -12941,66 +11707,27 @@ packages:
jest-util: 28.1.3
/express-graphql/0.11.0_graphql@15.8.0:
- resolution: {integrity: sha512-IMYmF2aIBKKfo8c+EENBNR8FAy91QHboxfaHe1omCyb49GJXsToUgcjjIF/PfWJdzn0Ofp6JJvcsODQJrqpz2g==}
- engines: {node: '>= 10.x'}
- peerDependencies:
- graphql: ^14.7.0 || ^15.3.0
- dependencies:
- accepts: 1.3.8
- content-type: 1.0.5
- graphql: 15.8.0
- http-errors: 1.8.0
- raw-body: 2.5.2
- dev: true
-
- /express/4.18.1:
- resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.20.0
- content-disposition: 0.5.4
- content-type: 1.0.4
- cookie: 0.5.0
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 2.0.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.2.0
- fresh: 0.5.2
- http-errors: 2.0.0
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.4.1
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.10.3
- range-parser: 1.2.1
- safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
- setprototypeof: 1.2.0
- statuses: 2.0.1
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
+ resolution: {integrity: sha512-IMYmF2aIBKKfo8c+EENBNR8FAy91QHboxfaHe1omCyb49GJXsToUgcjjIF/PfWJdzn0Ofp6JJvcsODQJrqpz2g==}
+ engines: {node: '>= 10.x'}
+ peerDependencies:
+ graphql: ^14.7.0 || ^15.3.0
+ dependencies:
+ accepts: 1.3.8
+ content-type: 1.0.4
+ graphql: 15.8.0
+ http-errors: 1.8.0
+ raw-body: 2.5.1
dev: true
- /express/4.18.2:
- resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ /express/4.18.1:
+ resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==}
engines: {node: '>= 0.10.0'}
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.1
+ body-parser: 1.20.0
content-disposition: 0.5.4
- content-type: 1.0.5
+ content-type: 1.0.4
cookie: 0.5.0
cookie-signature: 1.0.6
debug: 2.6.9
@@ -13017,7 +11744,7 @@ packages:
parseurl: 1.3.3
path-to-regexp: 0.1.7
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.10.3
range-parser: 1.2.1
safe-buffer: 5.2.1
send: 0.18.0
@@ -13177,7 +11904,7 @@ packages:
/fetch-ponyfill/7.1.0:
resolution: {integrity: sha512-FhbbL55dj/qdVO3YNK7ZEkshvj3eQ7EuIGV2I6ic/2YiocvyWv+7jg2s4AyS0wdRU75s3tA8ZxI/xPigb0v5Aw==}
dependencies:
- node-fetch: 2.6.9
+ node-fetch: 2.6.7
transitivePeerDependencies:
- encoding
dev: true
@@ -13353,16 +12080,6 @@ packages:
optional: true
dev: true
- /follow-redirects/1.15.2:
- resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: true
-
/for-each/0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
@@ -13590,8 +12307,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
functions-have-names: 1.2.3
/functions-have-names/1.2.3:
@@ -13665,8 +12382,8 @@ packages:
resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
dev: true
- /get-intrinsic/1.2.0:
- resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
+ /get-intrinsic/1.1.3:
+ resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
@@ -13699,7 +12416,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
/get-uri/3.0.2:
resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==}
@@ -13863,19 +12580,6 @@ packages:
dependencies:
type-fest: 0.20.2
- /globals/13.20.0:
- resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
- engines: {node: '>=8'}
- dependencies:
- type-fest: 0.20.2
- dev: true
-
- /globalthis/1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-properties: 1.2.0
-
/globby/11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -13916,7 +12620,7 @@ packages:
/gopd/1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
/got/12.5.3:
resolution: {integrity: sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w==}
@@ -14036,11 +12740,7 @@ packages:
/has-property-descriptors/1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
- get-intrinsic: 1.2.0
-
- /has-proto/1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
+ get-intrinsic: 1.1.3
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
@@ -14189,7 +12889,7 @@ packages:
/http-encoding/1.5.1:
resolution: {integrity: sha512-2m4JnG1Z5RX5pRMdccyp6rX1jVo4LO+ussQzWdwR4AmrWhtX0KP1NyslVAFAspQwMxt2P00CCWXIBKj7ILZLpQ==}
dependencies:
- brotli-wasm: 1.3.1
+ brotli-wasm: 1.3.0
pify: 5.0.0
zstd-codec: 0.1.4
dev: true
@@ -14414,11 +13114,11 @@ packages:
engines: {node: '>=10'}
dev: true
- /internal-slot/1.0.5:
- resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
+ /internal-slot/1.0.4:
+ resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==}
engines: {node: '>= 0.4'}
dependencies:
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
has: 1.0.3
side-channel: 1.0.4
@@ -14438,7 +13138,7 @@ packages:
'@formatjs/ecma402-abstract': 1.14.3
'@formatjs/fast-memoize': 1.2.7
'@formatjs/icu-messageformat-parser': 2.1.14
- tslib: 2.4.1
+ tslib: 2.5.0
dev: false
/invariant/2.2.4:
@@ -14498,13 +13198,6 @@ packages:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-array-buffer/3.0.1:
- resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.0
- is-typed-array: 1.1.10
-
/is-arrayish/0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
@@ -14788,7 +13481,7 @@ packages:
resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
/is-what/4.1.8:
resolution: {integrity: sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==}
@@ -14857,6 +13550,15 @@ packages:
ws: '*'
dependencies:
ws: 7.5.9
+ dev: false
+
+ /isomorphic-ws/4.0.1_ws@8.11.0:
+ resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==}
+ peerDependencies:
+ ws: '*'
+ dependencies:
+ ws: 8.11.0
+ dev: true
/isstream/0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
@@ -15013,7 +13715,7 @@ packages:
'@jest/types': 28.1.3
'@types/node': 18.11.18
chalk: 4.1.2
- ci-info: 3.7.1
+ ci-info: 3.8.0
graceful-fs: 4.2.10
picomatch: 2.3.1
@@ -15024,7 +13726,7 @@ packages:
'@jest/types': 29.3.1
'@types/node': 18.11.18
chalk: 4.1.2
- ci-info: 3.7.1
+ ci-info: 3.8.0
graceful-fs: 4.2.10
picomatch: 2.3.1
dev: true
@@ -15067,16 +13769,6 @@ packages:
'@sideway/pinpoint': 2.0.0
dev: true
- /joi/17.8.3:
- resolution: {integrity: sha512-q5Fn6Tj/jR8PfrLrx4fpGH4v9qM6o+vDUfD4/3vxxyg34OmKcNqYZ1qn2mpLza96S8tL0p0rIw2gOZX+/cTg9w==}
- dependencies:
- '@hapi/hoek': 9.3.0
- '@hapi/topo': 5.1.0
- '@sideway/address': 4.1.4
- '@sideway/formula': 3.0.1
- '@sideway/pinpoint': 2.0.0
- dev: true
-
/jose/4.11.1:
resolution: {integrity: sha512-YRv4Tk/Wlug8qicwqFNFVEZSdbROCHRAC6qu/i0dyNKr5JQdoa2pIGoS04lLO/jXQX7Z9omoNewYIVIxqZBd9Q==}
dev: true
@@ -15089,10 +13781,6 @@ packages:
/js-sdsl/4.2.0:
resolution: {integrity: sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==}
- /js-sdsl/4.3.0:
- resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==}
- dev: true
-
/js-sha3/0.8.0:
resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==}
dev: false
@@ -15194,7 +13882,7 @@ packages:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
- minimist: 1.2.8
+ minimist: 1.2.7
dev: true
/json5/2.2.3:
@@ -15358,7 +14046,7 @@ packages:
resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==}
engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.21.0
app-root-dir: 1.0.2
core-js: 3.27.1
dotenv: 8.6.0
@@ -15454,11 +14142,6 @@ packages:
engines: {node: '>=14'}
dev: true
- /local-pkg/0.4.3:
- resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
- engines: {node: '>=14'}
- dev: true
-
/locate-path/3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -15921,8 +14604,8 @@ packages:
brace-expansion: 2.0.1
dev: true
- /minimatch/7.4.1:
- resolution: {integrity: sha512-Oz1iPEP+MGl7KS3SciLsLLcuZ7VsBfb7Qrz/jYt/s/sYAv272P26HSLz2f77Y6hzTKXiBi6g765fqpEDNc5fJw==}
+ /minimatch/7.4.2:
+ resolution: {integrity: sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
@@ -15940,10 +14623,6 @@ packages:
/minimist/1.2.7:
resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
- /minimist/1.2.8:
- resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- dev: true
-
/minipass-collect/1.0.2:
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
engines: {node: '>= 8'}
@@ -16026,7 +14705,7 @@ packages:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
- minimist: 1.2.8
+ minimist: 1.2.7
dev: true
/mkdirp/1.0.4:
@@ -16044,35 +14723,26 @@ packages:
ufo: 1.0.1
dev: true
- /mlly/1.1.1:
- resolution: {integrity: sha512-Jnlh4W/aI4GySPo6+DyTN17Q75KKbLTyFK8BrGhjNP4rxuUjbRWhE6gHg3bs33URWAF44FRm7gdQA348i3XxRw==}
- dependencies:
- acorn: 8.8.2
- pathe: 1.1.0
- pkg-types: 1.0.2
- ufo: 1.1.1
- dev: true
-
/mockttp/2.7.0:
resolution: {integrity: sha512-/XI9gzCInq6RlC2ch3s8u+NazqUytdt0fy77LxQH/0ww2rDIBrSW+Og1h7r6a4v2jKoflb5kRVIha07FVfRn0w==}
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
'@graphql-tools/schema': 7.1.5_graphql@15.8.0
- '@httptoolkit/httpolyglot': 2.1.0
+ '@httptoolkit/httpolyglot': 2.0.1
'@httptoolkit/proxy-agent': 5.0.1-socks-lookup-fix.0
'@httptoolkit/subscriptions-transport-ws': 0.9.19_graphql@15.8.0
'@httptoolkit/websocket-stream': 6.0.1
- '@types/cors': 2.8.13
- '@types/node': 18.14.2
+ '@types/cors': 2.8.12
+ '@types/node': 18.11.18
base64-arraybuffer: 0.1.5
- body-parser: 1.20.2
+ body-parser: 1.20.0
cacheable-lookup: 6.1.0
common-tags: 1.8.2
connect: 3.7.0
cors: 2.8.5
cors-gate: 1.1.3
- express: 4.18.2
+ express: 4.18.1
express-graphql: 0.11.0_graphql@15.8.0
fetch-ponyfill: 7.1.0
graphql: 15.8.0
@@ -16269,18 +14939,6 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-fetch/2.6.9:
- resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
- dev: true
-
/node-fetch/3.3.0:
resolution: {integrity: sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -16295,8 +14953,8 @@ packages:
engines: {node: '>= 6.13.0'}
dev: true
- /node-gyp-build/4.6.0:
- resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==}
+ /node-gyp-build/4.5.0:
+ resolution: {integrity: sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==}
hasBin: true
dev: false
@@ -16335,10 +14993,6 @@ packages:
which: 2.0.2
dev: true
- /node-releases/2.0.10:
- resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
- dev: true
-
/node-releases/2.0.8:
resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==}
dev: true
@@ -16455,15 +15109,15 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- /object-inspect/1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ /object-inspect/1.12.2:
+ resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
/object-is/1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
+ define-properties: 1.1.4
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
@@ -16481,7 +15135,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
+ define-properties: 1.1.4
has-symbols: 1.0.3
object-keys: 1.1.1
@@ -16490,22 +15144,22 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
/object.fromentries/2.0.6:
resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
/object.hasown/1.1.2:
resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
/object.pick/1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
@@ -16519,8 +15173,8 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
/objectorarray/1.0.5:
resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==}
@@ -16720,7 +15374,7 @@ packages:
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
pac-resolver: 5.0.1
- raw-body: 2.5.2
+ raw-body: 2.5.1
socks-proxy-agent: 5.0.1
transitivePeerDependencies:
- supports-color
@@ -16853,10 +15507,6 @@ packages:
resolution: {integrity: sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==}
dev: true
- /pathe/1.1.0:
- resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==}
- dev: true
-
/pathval/1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
dev: true
@@ -16958,14 +15608,6 @@ packages:
pathe: 1.0.0
dev: true
- /pkg-types/1.0.2:
- resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==}
- dependencies:
- jsonc-parser: 3.2.0
- mlly: 1.1.1
- pathe: 1.1.0
- dev: true
-
/plausible-tracker/0.3.8:
resolution: {integrity: sha512-lmOWYQ7s9KOUJ1R+YTOR3HrjdbxIS2Z4de0P/Jx2dQPteznJl2eX3tXxKClpvbfyGP59B5bbhW8ftN59HbbFSg==}
engines: {node: '>=10'}
@@ -16989,7 +15631,7 @@ packages:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.21.0
dev: true
/portfinder/1.0.32:
@@ -17747,11 +16389,6 @@ packages:
/punycode/2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
- dev: true
-
- /punycode/2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
- engines: {node: '>=6'}
/pupa/3.1.0:
resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==}
@@ -17787,13 +16424,6 @@ packages:
side-channel: 1.0.4
dev: true
- /qs/6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
- dependencies:
- side-channel: 1.0.4
- dev: true
-
/qs/6.5.3:
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
engines: {node: '>=0.6'}
@@ -17846,16 +16476,6 @@ packages:
unpipe: 1.0.0
dev: true
- /raw-body/2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- unpipe: 1.0.0
- dev: true
-
/rc/1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
@@ -17891,7 +16511,7 @@ packages:
dependencies:
'@babel/core': 7.20.12
'@babel/generator': 7.20.7
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.21.0
ast-types: 0.14.2
commander: 2.20.3
doctrine: 3.0.0
@@ -18197,18 +16817,6 @@ packages:
util-deprecate: 1.0.2
dev: true
- /readable-stream/2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
- dev: true
-
/readable-stream/3.6.0:
resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
engines: {node: '>= 6'}
@@ -18301,7 +16909,7 @@ packages:
/redux/4.2.0:
resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==}
dependencies:
- '@babel/runtime': 7.20.7
+ '@babel/runtime': 7.21.0
dev: false
/regenerate-unicode-properties/10.1.0:
@@ -18320,12 +16928,6 @@ packages:
/regenerator-transform/0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
- dependencies:
- '@babel/runtime': 7.20.7
- dev: true
-
- /regenerator-transform/0.15.1:
- resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
'@babel/runtime': 7.21.0
dev: true
@@ -18343,7 +16945,7 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
+ define-properties: 1.1.4
functions-have-names: 1.2.3
/regexpp/3.2.0:
@@ -18362,18 +16964,6 @@ packages:
unicode-match-property-value-ecmascript: 2.1.0
dev: true
- /regexpu-core/5.3.1:
- resolution: {integrity: sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==}
- engines: {node: '>=4'}
- dependencies:
- '@babel/regjsgen': 0.8.0
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
- regjsparser: 0.9.1
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
- dev: true
-
/registry-auth-token/5.0.1:
resolution: {integrity: sha512-UfxVOj8seK1yaIOiieV4FIP01vfBDLsY0H9sQzi9EbbUdJiuuBjJgLa1DpImXMNPnVkBD4eVxTEXcrZA6kfpJA==}
engines: {node: '>=14'}
@@ -18590,20 +17180,20 @@ packages:
dependencies:
glob: 7.2.3
- /rollup-plugin-external-globals/0.7.1_rollup@3.9.1:
+ /rollup-plugin-external-globals/0.7.1_rollup@3.18.0:
resolution: {integrity: sha512-3U2OBhCa/D57P2SA9fx1CGS1xi9h7x7L3+nnAJ0563nIucQysHQdebfKYoI+2WZVkRdVuZKh4M+rgoF0B5W9Ag==}
peerDependencies:
rollup: ^2.25.0 || ^3.3.0
dependencies:
- '@rollup/pluginutils': 5.0.2_rollup@3.9.1
+ '@rollup/pluginutils': 5.0.2_rollup@3.18.0
estree-walker: 3.0.1
is-reference: 3.0.0
magic-string: 0.26.7
- rollup: 3.9.1
+ rollup: 3.18.0
dev: true
- /rollup/3.17.3:
- resolution: {integrity: sha512-p5LaCXiiOL/wrOkj8djsIDFmyU9ysUxcyW+EKRLHb6TKldJzXpImjcRSR+vgo09DBdofGcOoLOsRyxxG2n5/qQ==}
+ /rollup/3.18.0:
+ resolution: {integrity: sha512-J8C6VfEBjkvYPESMQYxKHxNOh4A5a3FlP+0BETGo34HEcE4eTlgCrO2+eWzlu2a/sHs2QUkZco+wscH7jhhgWg==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
@@ -18624,7 +17214,7 @@ packages:
'@babel/runtime': 7.21.0
eventemitter3: 4.0.7
uuid: 8.3.2
- ws: 8.12.1_3cxu5zja4e2r5wmvge7mdcljwq
+ ws: 8.11.0_3cxu5zja4e2r5wmvge7mdcljwq
optionalDependencies:
bufferutil: 4.0.7
utf-8-validate: 5.0.10
@@ -18638,7 +17228,7 @@ packages:
/rxjs/7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.4.1
/safe-buffer/5.1.1:
resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==}
@@ -18661,7 +17251,7 @@ packages:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
+ get-intrinsic: 1.1.3
is-regex: 1.1.4
/safe-regex/1.1.0:
@@ -18930,8 +17520,8 @@ packages:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
- get-intrinsic: 1.2.0
- object-inspect: 1.12.3
+ get-intrinsic: 1.1.3
+ object-inspect: 1.12.2
/sign-addon/5.1.0:
resolution: {integrity: sha512-fag/csbsw25WpW+G+uWE6rRImSjlfwQNjuP28fFhvXpfW+kXccxl/o1QEW+hXtTidwpysksb7Y0B8UCeMkYkSA==}
@@ -19067,7 +17657,7 @@ packages:
dependencies:
agent-base: 6.0.2
debug: 4.3.4
- socks: 2.7.1
+ socks: 2.7.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -19091,14 +17681,6 @@ packages:
smart-buffer: 4.2.0
dev: true
- /socks/2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
- dependencies:
- ip: 2.0.0
- smart-buffer: 4.2.0
- dev: true
-
/sonic-boom/3.2.1:
resolution: {integrity: sha512-iITeTHxy3B9FGu8aVdiDXUVAcHMF9Ss0cCsAOo2HfCrmVGT3/DT5oYaeu0M/YKZDlKTvChEyPq0zI9Hf33EX6A==}
dependencies:
@@ -19312,12 +17894,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /stop-iteration-iterator/1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- internal-slot: 1.0.5
-
/store2/2.14.2:
resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
dev: true
@@ -19411,11 +17987,11 @@ packages:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
- get-intrinsic: 1.2.0
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
+ get-intrinsic: 1.1.3
has-symbols: 1.0.3
- internal-slot: 1.0.5
+ internal-slot: 1.0.4
regexp.prototype.flags: 1.4.3
side-channel: 1.0.4
@@ -19423,15 +17999,15 @@ packages:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
/string.prototype.trimstart/1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.21.1
+ define-properties: 1.1.4
+ es-abstract: 1.20.5
/string_decoder/0.10.31:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
@@ -19524,12 +18100,6 @@ packages:
acorn: 8.8.1
dev: true
- /strip-literal/1.0.1:
- resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==}
- dependencies:
- acorn: 8.8.2
- dev: true
-
/style-loader/3.3.1_webpack@5.74.0:
resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
engines: {node: '>= 12.13.0'}
@@ -20052,21 +18622,11 @@ packages:
engines: {node: '>=14.0.0'}
dev: true
- /tinypool/0.3.1:
- resolution: {integrity: sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==}
- engines: {node: '>=14.0.0'}
- dev: true
-
/tinyspy/1.0.2:
resolution: {integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==}
engines: {node: '>=14.0.0'}
dev: true
- /tinyspy/1.1.1:
- resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==}
- engines: {node: '>=14.0.0'}
- dev: true
-
/tmp/0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
@@ -20166,7 +18726,7 @@ packages:
/tr46/1.0.1:
resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
dependencies:
- punycode: 2.3.0
+ punycode: 2.1.1
dev: true
/tree-kill/1.2.2:
@@ -20252,7 +18812,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.3
- acorn: 8.8.2
+ acorn: 8.8.1
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
@@ -20290,15 +18850,6 @@ packages:
strip-bom: 3.0.0
dev: true
- /tsconfig-paths/3.14.2:
- resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
- dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
- dev: true
-
/tsconfig-paths/4.1.2:
resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==}
engines: {node: '>=6'}
@@ -20387,7 +18938,7 @@ packages:
joycon: 3.1.1
postcss-load-config: 3.1.4_ts-node@10.9.1
resolve-from: 5.0.0
- rollup: 3.17.3
+ rollup: 3.9.1
source-map: 0.8.0-beta.0
sucrase: 3.29.0
tree-kill: 1.2.2
@@ -20596,13 +19147,6 @@ packages:
mime-types: 2.1.35
dev: true
- /typed-array-length/1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- dependencies:
- call-bind: 1.0.2
- for-each: 0.3.3
- is-typed-array: 1.1.10
-
/typed-error/3.2.1:
resolution: {integrity: sha512-XlUv4JMrT2dpN0c4Vm3lOm88ga21Z6pNJUmjejRz/mkh6sdBtkMwyRf4fF+yhRGZgfgWam31Lkxu11GINKiBTQ==}
engines: {node: '>=6.0.0', npm: '>=3.0.0'}
@@ -20627,7 +19171,7 @@ packages:
dependencies:
lunr: 2.3.9
marked: 4.2.12
- minimatch: 7.4.1
+ minimatch: 7.4.2
shiki: 0.14.1
typescript: 4.9.5
dev: true
@@ -20647,10 +19191,6 @@ packages:
resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==}
dev: true
- /ufo/1.1.1:
- resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==}
- dev: true
-
/uglify-js/3.17.4:
resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
engines: {node: '>=0.8.0'}
@@ -20681,7 +19221,7 @@ packages:
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
- unicode-property-aliases-ecmascript: 2.1.0
+ unicode-property-aliases-ecmascript: 2.0.0
dev: true
/unicode-match-property-value-ecmascript/2.1.0:
@@ -20689,8 +19229,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /unicode-property-aliases-ecmascript/2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ /unicode-property-aliases-ecmascript/2.0.0:
+ resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==}
engines: {node: '>=4'}
dev: true
@@ -20800,17 +19340,6 @@ packages:
picocolors: 1.0.0
dev: true
- /update-browserslist-db/1.0.10_browserslist@4.21.5:
- resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.5
- escalade: 3.1.1
- picocolors: 1.0.0
- dev: true
-
/update-notifier/6.0.2:
resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==}
engines: {node: '>=14.16'}
@@ -20834,7 +19363,7 @@ packages:
/uri-js/4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- punycode: 2.3.0
+ punycode: 2.1.1
/urix/0.1.0:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
@@ -20894,7 +19423,7 @@ packages:
engines: {node: '>=6.14.2'}
requiresBuild: true
dependencies:
- node-gyp-build: 4.6.0
+ node-gyp-build: 4.5.0
dev: false
/util-deprecate/1.0.2:
@@ -20986,7 +19515,7 @@ packages:
pathe: 0.2.0
source-map: 0.6.1
source-map-support: 0.5.21
- vite: 4.0.4_3c6ud2xtewcqbnmrhimtoerdcy
+ vite: 4.1.4_3c6ud2xtewcqbnmrhimtoerdcy
transitivePeerDependencies:
- '@types/node'
- less
@@ -21007,28 +19536,7 @@ packages:
pathe: 0.2.0
source-map: 0.6.1
source-map-support: 0.5.21
- vite: 4.0.4_@types+node@18.11.18
- transitivePeerDependencies:
- - '@types/node'
- - less
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
- /vite-node/0.26.3_@types+node@18.14.2:
- resolution: {integrity: sha512-Te2bq0Bfvq6XiO718I+1EinMjpNYKws6SNHKOmVbILAQimKoZKDd+IZLlkaYcBXPpK3HFe2U80k8Zw+m3w/a2w==}
- engines: {node: '>=v14.16.0'}
- hasBin: true
- dependencies:
- debug: 4.3.4
- mlly: 1.1.1
- pathe: 0.2.0
- source-map: 0.6.1
- source-map-support: 0.5.21
- vite: 4.1.4_@types+node@18.14.2
+ vite: 4.1.4_@types+node@18.11.18
transitivePeerDependencies:
- '@types/node'
- less
@@ -21196,12 +19704,47 @@ packages:
esbuild: 0.16.17
postcss: 8.4.21
resolve: 1.22.1
- rollup: 3.17.3
+ rollup: 3.18.0
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /vite/4.1.4_3c6ud2xtewcqbnmrhimtoerdcy:
+ resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 18.11.18
+ esbuild: 0.16.17
+ postcss: 8.4.21
+ resolve: 1.22.1
+ rollup: 3.18.0
+ sass: 1.54.5
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vite/4.1.4_@types+node@18.14.2:
+ /vite/4.1.4_@types+node@18.11.18:
resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -21226,11 +19769,11 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.14.2
+ '@types/node': 18.11.18
esbuild: 0.16.17
postcss: 8.4.21
resolve: 1.22.1
- rollup: 3.17.3
+ rollup: 3.18.0
optionalDependencies:
fsevents: 2.3.2
dev: true
@@ -21259,19 +19802,19 @@ packages:
dependencies:
'@types/chai': 4.3.4
'@types/chai-subset': 1.3.3
- '@types/node': 18.14.2
- acorn: 8.8.2
+ '@types/node': 18.11.18
+ acorn: 8.8.1
acorn-walk: 8.2.0
chai: 4.3.7
debug: 4.3.4
- local-pkg: 0.4.3
+ local-pkg: 0.4.2
source-map: 0.6.1
- strip-literal: 1.0.1
+ strip-literal: 1.0.0
tinybench: 2.3.1
- tinypool: 0.3.1
- tinyspy: 1.1.1
- vite: 4.1.4_@types+node@18.14.2
- vite-node: 0.26.3_@types+node@18.14.2
+ tinypool: 0.3.0
+ tinyspy: 1.0.2
+ vite: 4.0.4_@types+node@18.11.18
+ vite-node: 0.26.3_@types+node@18.11.18
transitivePeerDependencies:
- less
- sass
@@ -21375,12 +19918,12 @@ packages:
- terser
dev: true
- /vm2/3.9.14:
- resolution: {integrity: sha512-HgvPHYHeQy8+QhzlFryvSteA4uQLBCOub02mgqdR+0bN/akRZ48TGB1v0aCv7ksyc0HXx16AZtMHKS38alc6TA==}
+ /vm2/3.9.10:
+ resolution: {integrity: sha512-AuECTSvwu2OHLAZYhG716YzwodKCIJxB6u1zG7PgSQwIgAlEaoXH52bxdcvT8GkGjnYK7r7yWDW0m0sOsPuBjQ==}
engines: {node: '>=6.0'}
hasBin: true
dependencies:
- acorn: 8.8.2
+ acorn: 8.8.1
acorn-walk: 8.2.0
dev: true
@@ -21412,9 +19955,9 @@ packages:
hasBin: true
dependencies:
axios: 0.27.2
- joi: 17.8.3
+ joi: 17.7.0
lodash: 4.17.21
- minimist: 1.2.8
+ minimist: 1.2.7
rxjs: 7.8.0
transitivePeerDependencies:
- debug
@@ -21848,12 +20391,12 @@ packages:
optional: true
dev: true
- /ws/8.12.1_3cxu5zja4e2r5wmvge7mdcljwq:
- resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==}
+ /ws/8.11.0_3cxu5zja4e2r5wmvge7mdcljwq:
+ resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
+ utf-8-validate: ^5.0.2
peerDependenciesMeta:
bufferutil:
optional: true