From eb622bc5e3200c3821929ff621dfe8889ae27910 Mon Sep 17 00:00:00 2001 From: elbywan Date: Thu, 2 Feb 2023 18:00:19 +0100 Subject: [PATCH] chore: upgrade vitejs and esbuild to latest major Interesting breaking change: https://github.com/evanw/esbuild/issues/1843 --- apps/ledger-live-desktop/package.json | 5 +- .../renderer/components/Carousel/Slide.jsx | 2 +- .../Carousel/banners/Swap/index.jsx | 2 +- .../components/DeviceIllustration.tsx | 8 +- .../src/renderer/components/Illustration.tsx | 2 +- .../components/LinkWithExternalIcon.jsx | 2 +- .../renderer/components/Nft/Placeholder.jsx | 2 +- .../Onboarding/OnboardingNavHeader.tsx | 4 +- .../Onboarding/Screens/Tutorial/shared.tsx | 2 +- .../modals/FullNode/steps/StepDisconnect.jsx | 2 +- .../modals/FullNode/steps/StepLanding.jsx | 2 +- .../modals/RecoverySeedWarning/index.jsx | 2 +- .../USBTroubleshooting/solutions/Intro.jsx | 2 +- .../USBTroubleshooting/solutions/shared.jsx | 2 +- .../screens/learn/assets/NoConnection.tsx | 2 +- .../renderer/screens/manager/Disconnected.jsx | 2 +- apps/ledger-live-desktop/tools/main.js | 49 +- apps/ledger-live-desktop/tools/utils/index.js | 4 +- libs/ledger-live-common/package.json | 6 - .../packages/cryptoassets/package.json | 6 - package.json | 6 +- pnpm-lock.yaml | 3886 ++++++++++------- tools/esbuild-utils/package.json | 2 +- tools/esbuild-utils/plugins/alias.js | 4 +- 24 files changed, 2396 insertions(+), 1610 deletions(-) diff --git a/apps/ledger-live-desktop/package.json b/apps/ledger-live-desktop/package.json index 901a1c5fc63c..e64e38d733dc 100644 --- a/apps/ledger-live-desktop/package.json +++ b/apps/ledger-live-desktop/package.json @@ -186,7 +186,7 @@ "@types/styled-components": "^5.1.25", "@typescript-eslint/eslint-plugin": "^5.28.0", "@typescript-eslint/parser": "5.28.0", - "@vitejs/plugin-react": "^2.0.0", + "@vitejs/plugin-react": "^3.1.0", "allure-playwright": "^2.0.0-beta.20", "babel-cli": "^6.26.0", "babel-eslint": "^10.1.0", @@ -200,7 +200,6 @@ "electron-builder": "^23.6.0", "electron-devtools-installer": "^3.2.0", "electron-notarize": "^1.2.2", - "esbuild-loader": "^2.19.0", "esbuild-utils": "workspace:*", "eslint": "^7.32.0", "eslint-config-prettier": "^7.2.0", @@ -239,7 +238,7 @@ "typescript": "^4.8.3", "url-loader": "^4.1.1", "v8-to-istanbul": "^8.1.0", - "vite": "^3.2.3", + "vite": "4", "vite-plugin-electron": "0.4.8", "yargs": "^15.3.1" } diff --git a/apps/ledger-live-desktop/src/renderer/components/Carousel/Slide.jsx b/apps/ledger-live-desktop/src/renderer/components/Carousel/Slide.jsx index 1bf486eab65b..53177c2aa52f 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Carousel/Slide.jsx +++ b/apps/ledger-live-desktop/src/renderer/components/Carousel/Slide.jsx @@ -10,7 +10,7 @@ import { Wrapper, Label, IllustrationWrapper } from "~/renderer/components/Carou import { useHistory } from "react-router-dom"; const Layer = styled(animated.div)` - background-image: url(${p => p.image}); + background-image: url('${p => p.image}'); background-size: contain; background-position: center center; background-repeat: no-repeat; diff --git a/apps/ledger-live-desktop/src/renderer/components/Carousel/banners/Swap/index.jsx b/apps/ledger-live-desktop/src/renderer/components/Carousel/banners/Swap/index.jsx index 307b3d0ec5a4..b7e9c6c1b3fc 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Carousel/banners/Swap/index.jsx +++ b/apps/ledger-live-desktop/src/renderer/components/Carousel/banners/Swap/index.jsx @@ -20,7 +20,7 @@ import loop from "./images/loop.png"; import bg from "./images/bg.png"; const Layer = styled(animated.div)` - background-image: url(${p => p.image}); + background-image: url('${p => p.image}'); background-size: contain; background-position: center center; background-repeat: no-repeat; diff --git a/apps/ledger-live-desktop/src/renderer/components/DeviceIllustration.tsx b/apps/ledger-live-desktop/src/renderer/components/DeviceIllustration.tsx index 8569b4c3b4b2..f668b315cfce 100644 --- a/apps/ledger-live-desktop/src/renderer/components/DeviceIllustration.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/DeviceIllustration.tsx @@ -19,20 +19,20 @@ const makeAssetSelector = (lightAsset: any, darkAsset: any) => (p: ThemeProps makeAssetSelector(nanoS, nanoSDark)(p)}) no-repeat center; + background: url('${p => makeAssetSelector(nanoS, nanoSDark)(p)}') no-repeat center; `; const NanoSP = styled.div` // TODO: rendering issue in the SVG in the "hole" - background: url(${p => makeAssetSelector(nanoS2, nanoS2Dark)(p)}) no-repeat center; + background: url('${p => makeAssetSelector(nanoS2, nanoS2Dark)(p)}') no-repeat center; `; const NanoX = styled.div` - background: url(${p => makeAssetSelector(nanoX, nanoXDark)(p)}) no-repeat center; + background: url('${p => makeAssetSelector(nanoX, nanoXDark)(p)}') no-repeat center; `; const Stax = styled.div` - background: url(${p => makeAssetSelector(stax, staxDark)(p)}) no-repeat center; + background: url('${p => makeAssetSelector(stax, staxDark)(p)}') no-repeat center; `; type Illustration = { diff --git a/apps/ledger-live-desktop/src/renderer/components/Illustration.tsx b/apps/ledger-live-desktop/src/renderer/components/Illustration.tsx index 3729e89bc71c..d2dd539924e0 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Illustration.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/Illustration.tsx @@ -17,7 +17,7 @@ const Illustration: ThemedComponent = styled(Box).attrs((p: Props) => ({ width: `${p.size}px`, height: p.height ? `${p.height}px` : `${p.size}px`, }))` - background: url(${(p: Props) => defineStyleFromTheme(p.lightSource, p.darkSource)(p)}); + background: url('${(p: Props) => defineStyleFromTheme(p.lightSource, p.darkSource)(p)}'); background-size: cover; background-repeat: no-repeat; background-position: center center; diff --git a/apps/ledger-live-desktop/src/renderer/components/LinkWithExternalIcon.jsx b/apps/ledger-live-desktop/src/renderer/components/LinkWithExternalIcon.jsx index 958e0f7cf083..c011231c0cdd 100644 --- a/apps/ledger-live-desktop/src/renderer/components/LinkWithExternalIcon.jsx +++ b/apps/ledger-live-desktop/src/renderer/components/LinkWithExternalIcon.jsx @@ -25,7 +25,7 @@ const Wrapper: ThemedComponent<{}> = styled(Label).attrs(props => ({ } &:after { - -webkit-mask: url(${externalLink}); + -webkit-mask: url('${externalLink}'); -webkit-mask-size: cover; width: 12px; height: 12px; diff --git a/apps/ledger-live-desktop/src/renderer/components/Nft/Placeholder.jsx b/apps/ledger-live-desktop/src/renderer/components/Nft/Placeholder.jsx index 09ec6a102630..4361e5e63069 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Nft/Placeholder.jsx +++ b/apps/ledger-live-desktop/src/renderer/components/Nft/Placeholder.jsx @@ -14,7 +14,7 @@ type Props = { // TODO Figure out if we really need this once we know who creates/processes the media. const StyledPlaceholder: ThemedComponent = styled.div` --hue: ${p => (p?.tokenId || "abcdefg").substr(-8) % 360}; - background-image: url(${Fallback}); + background-image: url('${Fallback}'); background-size: contain; border-radius: 4px; width: 100%; diff --git a/apps/ledger-live-desktop/src/renderer/components/Onboarding/OnboardingNavHeader.tsx b/apps/ledger-live-desktop/src/renderer/components/Onboarding/OnboardingNavHeader.tsx index a71b5387819c..08b6edf94385 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Onboarding/OnboardingNavHeader.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/Onboarding/OnboardingNavHeader.tsx @@ -22,8 +22,8 @@ const Logo = styled(Box).attrs({ height: "25px", width: "75px", })` - -webkit-mask-image: url(${ledgerLogo}); - mask-image: url(${ledgerLogo}); + -webkit-mask-image: url('${ledgerLogo}'); + mask-image: url('${ledgerLogo}'); `; interface Props { diff --git a/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Tutorial/shared.tsx b/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Tutorial/shared.tsx index 0a0f60bde566..492d0e8c9d14 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Tutorial/shared.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Tutorial/shared.tsx @@ -24,7 +24,7 @@ export const AnimationContainer = styled(Flex)` `; export const IllustrationContainer = styled(Flex)<{ src: string }>` - background: url(${({ src }) => src}) no-repeat center; + background: url('${({ src }) => src}') no-repeat center; background-size: contain; `; diff --git a/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepDisconnect.jsx b/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepDisconnect.jsx index da875e0fc95f..35c80cbfb7ab 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepDisconnect.jsx +++ b/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepDisconnect.jsx @@ -14,7 +14,7 @@ const Illustration = styled.div` margin-bottom: 24px; width: 236px; height: 64px; - background: url(${fullnodeIllustration}); + background: url('${fullnodeIllustration}'); background-size: contain; align-self: center; `; diff --git a/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepLanding.jsx b/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepLanding.jsx index 741f9a5a7af5..ff5fc802a2a0 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepLanding.jsx +++ b/apps/ledger-live-desktop/src/renderer/modals/FullNode/steps/StepLanding.jsx @@ -15,7 +15,7 @@ const Illustration = styled.div` margin-bottom: 24px; width: 193px; height: 130px; - background: url(${fullnodeIllustration}); + background: url('${fullnodeIllustration}'); background-size: contain; align-self: center; `; diff --git a/apps/ledger-live-desktop/src/renderer/modals/RecoverySeedWarning/index.jsx b/apps/ledger-live-desktop/src/renderer/modals/RecoverySeedWarning/index.jsx index 3c5cce3ceb8d..025fee35d675 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/RecoverySeedWarning/index.jsx +++ b/apps/ledger-live-desktop/src/renderer/modals/RecoverySeedWarning/index.jsx @@ -20,7 +20,7 @@ type Props = { }; const Illustration = styled.div` - background-image: url(${p => p.image}); + background-image: url('${p => p.image}'); background-size: contain; background-position: center center; background-repeat: no-repeat; diff --git a/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/Intro.jsx b/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/Intro.jsx index 442c0311127e..c711a2cf7de0 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/Intro.jsx +++ b/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/Intro.jsx @@ -9,7 +9,7 @@ import type { ThemedComponent } from "~/renderer/styles/StyleProvider"; import illustration from "~/renderer/images/USBTroubleshooting/device.png"; export const Illustration: ThemedComponent<{}> = styled.div` - background-image: url(${p => p.image}); + background-image: url('${p => p.image}'); background-size: contain; background-position: center center; background-repeat: no-repeat; diff --git a/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/shared.jsx b/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/shared.jsx index 8c00206220a6..78874015840c 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/shared.jsx +++ b/apps/ledger-live-desktop/src/renderer/screens/USBTroubleshooting/solutions/shared.jsx @@ -53,7 +53,7 @@ export const Content: ThemedComponent<{}> = styled(Box).attrs({ `; export const Illustration: ThemedComponent<{}> = styled.div` - background-image: url(${p => p.image}); + background-image: url('${p => p.image}'); background-size: contain; background-position: center center; background-repeat: no-repeat; diff --git a/apps/ledger-live-desktop/src/renderer/screens/learn/assets/NoConnection.tsx b/apps/ledger-live-desktop/src/renderer/screens/learn/assets/NoConnection.tsx index 4fea4a84e30d..70e77a192109 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/learn/assets/NoConnection.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/learn/assets/NoConnection.tsx @@ -6,7 +6,7 @@ const NoConnectionIllustration = styled(Flex).attrs({ height: "200px", width: "200px", })` - background-image: url(${noConnection}); + background-image: url('${noConnection}'); background-size: contain; ${p => p.theme.colors.type === "light" && "filter: invert(100%);"} `; diff --git a/apps/ledger-live-desktop/src/renderer/screens/manager/Disconnected.jsx b/apps/ledger-live-desktop/src/renderer/screens/manager/Disconnected.jsx index 5dd15d58ae99..131505756660 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/manager/Disconnected.jsx +++ b/apps/ledger-live-desktop/src/renderer/screens/manager/Disconnected.jsx @@ -56,7 +56,7 @@ const illustrations = { }; const Illustration: ThemedComponent<{ modelId: string }> = styled.div` - background: url(${p => illustrations[p.modelId][p.theme.colors.palette.type || "light"]}) + background: url('${p => illustrations[p.modelId][p.theme.colors.palette.type || "light"]}') no-repeat top right; width: ${p => illustrations[p.modelId].width}px; height: 50px; diff --git a/apps/ledger-live-desktop/tools/main.js b/apps/ledger-live-desktop/tools/main.js index edffbd74069d..3c9095851171 100644 --- a/apps/ledger-live-desktop/tools/main.js +++ b/apps/ledger-live-desktop/tools/main.js @@ -17,39 +17,50 @@ const { buildMainEnv, buildRendererEnv, buildViteConfig, lldRoot } = require("./ const startDev = async argv => { const electron = new Electron("./.webpack/main.bundle.js"); - const devConfig = { - minify: false, - watch: { - onRebuild(error, result) { - if (error) { - console.error("Watch build failed:", error); + const OnRebuildPlugin = { + name: "onRebuild", + setup(build) { + build.onEnd(result => { + if (result.errors.length > 0) { + console.log(`Build ended with ${result.errors.length} errors.`); + console.log(result.errors.map(error => error.message).join("\n")); } else { electron.reload(); } - }, + }); }, }; const mainConfig = { ...require("./config/main.esbuild"), define: buildMainEnv("development", argv), - plugins: [...(require("./config/main.esbuild").plugins || []), NodeExternalsPlugin], - ...devConfig, + plugins: [ + ...(require("./config/main.esbuild").plugins || []), + NodeExternalsPlugin, + OnRebuildPlugin, + ], + minify: false, }; const preloaderConfig = { ...require("./config/preloader.esbuild"), define: buildMainEnv("development", argv), - ...devConfig, + plugins: [...(require("./config/preloader.esbuild").plugins || []), OnRebuildPlugin], + minify: false, }; const webviewPreloaderConfig = { ...require("./config/webviewPreloader.esbuild"), define: buildMainEnv("development", argv), - ...devConfig, + plugins: [...(require("./config/webviewPreloader.esbuild").plugins || []), OnRebuildPlugin], + minify: false, }; const swapConnectWebviewPreloaderConfig = { ...require("./config/swapConnectWebviewPreloader.esbuild"), define: buildMainEnv("development", argv), - ...devConfig, + plugins: [ + ...(require("./config/swapConnectWebviewPreloader.esbuild").plugins || []), + OnRebuildPlugin, + ], + minify: false, }; try { @@ -60,14 +71,16 @@ const startDev = async argv => { const rendererServer = await createServer(buildViteConfig(argv)); - await Promise.all([ - esbuild.build(mainConfig), - esbuild.build(preloaderConfig), - esbuild.build(webviewPreloaderConfig), - esbuild.build(swapConnectWebviewPreloaderConfig), - rendererServer.listen(), + const contexts = await Promise.all([ + esbuild.context(mainConfig), + esbuild.context(preloaderConfig), + esbuild.context(webviewPreloaderConfig), + esbuild.context(swapConnectWebviewPreloaderConfig), ]); + await rendererServer.listen(); + await Promise.all(contexts.map(context => context.watch())); + rendererServer.printUrls(); electron.start(); }; diff --git a/apps/ledger-live-desktop/tools/utils/index.js b/apps/ledger-live-desktop/tools/utils/index.js index 56c8bf589162..12b7de548301 100644 --- a/apps/ledger-live-desktop/tools/utils/index.js +++ b/apps/ledger-live-desktop/tools/utils/index.js @@ -22,7 +22,7 @@ if (!GIT_REVISION) { const parsed = prerelease(pkg.version); let PRERELEASE = false; -let CHANNEL; +let CHANNEL = null; if (parsed) { PRERELEASE = !!(parsed && parsed.length); CHANNEL = parsed[0]; @@ -45,7 +45,7 @@ const buildMainEnv = (mode, argv) => { __GIT_REVISION__: JSON.stringify(GIT_REVISION), __SENTRY_URL__: JSON.stringify(SENTRY_URL || null), // See: https://github.com/node-formidable/formidable/issues/337 - "global.GENTLY": false, + "global.GENTLY": JSON.stringify(false), __PRERELEASE__: JSON.stringify(PRERELEASE), __CHANNEL__: JSON.stringify(CHANNEL), }; diff --git a/libs/ledger-live-common/package.json b/libs/ledger-live-common/package.json index 98ac853cee57..8ff6d69c43d1 100644 --- a/libs/ledger-live-common/package.json +++ b/libs/ledger-live-common/package.json @@ -42,16 +42,10 @@ } }, "exports": { - "./lib/*/": "./lib/*/index.js", "./lib/*": "./lib/*.js", "./lib/*.js": "./lib/*.js", - "./lib-es/*/": "./lib-es/*/index.js", "./lib-es/*": "./lib-es/*.js", "./lib-es/*.js": "./lib-es/*.js", - "./*/": { - "require": "./lib/*/index.js", - "default": "./lib-es/*/index.js" - }, "./*": { "require": "./lib/*.js", "default": "./lib-es/*.js" diff --git a/libs/ledgerjs/packages/cryptoassets/package.json b/libs/ledgerjs/packages/cryptoassets/package.json index 28c023354b83..e0a866f7f7f4 100644 --- a/libs/ledgerjs/packages/cryptoassets/package.json +++ b/libs/ledgerjs/packages/cryptoassets/package.json @@ -45,16 +45,10 @@ } }, "exports": { - "./lib/*/": "./lib/*/index.js", "./lib/*": "./lib/*.js", "./lib/*.js": "./lib/*.js", - "./lib-es/*/": "./lib-es/*/index.js", "./lib-es/*": "./lib-es/*.js", "./lib-es/*.js": "./lib-es/*.js", - "./*/": { - "require": "./lib/*/index.js", - "default": "./lib-es/*/index.js" - }, "./*": { "require": "./lib/*.js", "default": "./lib-es/*.js" diff --git a/package.json b/package.json index 665a91f02d57..5dcfdc24b445 100644 --- a/package.json +++ b/package.json @@ -93,8 +93,8 @@ "actions": "pnpm --filter @actions/*" }, "devDependencies": { - "@changesets/changelog-github": "^0.4.6", - "@changesets/cli": "^2.24.3", + "@changesets/changelog-github": "^0.4.8", + "@changesets/cli": "^2.26.0", "@commitlint/cli": "^17.4.2", "@commitlint/config-conventional": "^17.4.2", "@commitlint/prompt-cli": "^17.4.2", @@ -103,7 +103,7 @@ "pnpm-utils": "workspace:*", "rimraf": "^4.1.2", "turbo": "^1.7.2", - "zx": "^7.0.7" + "zx": "^7.1.1" }, "pnpm": { "overrides": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index efa008403b75..95a62c4ff69f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -36,8 +36,8 @@ importers: .: specifiers: - '@changesets/changelog-github': ^0.4.6 - '@changesets/cli': ^2.24.3 + '@changesets/changelog-github': ^0.4.8 + '@changesets/cli': ^2.26.0 '@commitlint/cli': ^17.4.2 '@commitlint/config-conventional': ^17.4.2 '@commitlint/prompt-cli': ^17.4.2 @@ -46,10 +46,10 @@ importers: pnpm-utils: workspace:* rimraf: ^4.1.2 turbo: ^1.7.2 - zx: ^7.0.7 + zx: ^7.1.1 devDependencies: - '@changesets/changelog-github': 0.4.6 - '@changesets/cli': 2.24.3 + '@changesets/changelog-github': 0.4.8 + '@changesets/cli': 2.26.0 '@commitlint/cli': 17.4.2 '@commitlint/config-conventional': 17.4.2 '@commitlint/prompt-cli': 17.4.2 @@ -58,7 +58,7 @@ importers: pnpm-utils: link:tools/pnpm-utils rimraf: 4.1.2 turbo: 1.7.2 - zx: 7.0.7 + zx: 7.1.1 apps/cli: specifiers: @@ -203,7 +203,7 @@ importers: '@types/styled-components': ^5.1.25 '@typescript-eslint/eslint-plugin': ^5.28.0 '@typescript-eslint/parser': 5.28.0 - '@vitejs/plugin-react': ^2.0.0 + '@vitejs/plugin-react': ^3.1.0 '@xstate/inspect': ^0.4.1 '@xstate/react': ^1.6.3 allure-playwright: ^2.0.0-beta.20 @@ -229,7 +229,6 @@ importers: electron-context-menu: ^3.6.0 electron-devtools-installer: ^3.2.0 electron-notarize: ^1.2.2 - esbuild-loader: ^2.19.0 esbuild-utils: workspace:* eslint: ^7.32.0 eslint-config-prettier: ^7.2.0 @@ -329,7 +328,7 @@ importers: url-loader: ^4.1.1 uuid: ^8.3.2 v8-to-istanbul: ^8.1.0 - vite: ^3.2.3 + vite: '4' vite-plugin-electron: 0.4.8 winston: ^3.2.1 winston-transport: ^4.3.0 @@ -476,7 +475,7 @@ importers: '@types/styled-components': 5.1.25_@types+react@17.0.45 '@typescript-eslint/eslint-plugin': 5.30.7_7kwo7kcwqz5tke4h4eelhfm75i '@typescript-eslint/parser': 5.28.0_77fvizpdb3y4icyeo2mf4eo7em - '@vitejs/plugin-react': 2.0.1_vite@3.2.4 + '@vitejs/plugin-react': 3.1.0_vite@4.1.1 allure-playwright: 2.0.0-beta.20 babel-cli: 6.26.0 babel-eslint: 10.1.0_eslint@7.32.0 @@ -490,7 +489,6 @@ importers: electron-builder: 23.6.0_lodash@4.17.21 electron-devtools-installer: 3.2.0 electron-notarize: 1.2.2 - esbuild-loader: 2.19.0 esbuild-utils: link:../../tools/esbuild-utils eslint: 7.32.0 eslint-config-prettier: 7.2.0_eslint@7.32.0 @@ -529,7 +527,7 @@ importers: typescript: 4.9.3 url-loader: 4.1.1_file-loader@6.2.0 v8-to-istanbul: 8.1.1 - vite: 3.2.4 + vite: 4.1.1 vite-plugin-electron: 0.4.8 yargs: 15.4.1 @@ -3171,13 +3169,13 @@ importers: specifiers: '@craftamap/esbuild-plugin-html': ^0.4.0 dotenv: ^8.2.0 - esbuild: ^0.14.42 + esbuild: ^0.17.5 esbuild-plugin-import-glob: ^0.1.1 flow-remove-types: ^2.180.0 devDependencies: - '@craftamap/esbuild-plugin-html': 0.4.0_esbuild@0.14.49 + '@craftamap/esbuild-plugin-html': 0.4.0_esbuild@0.17.5 dotenv: 8.6.0 - esbuild: 0.14.49 + esbuild: 0.17.5 esbuild-plugin-import-glob: 0.1.1 flow-remove-types: 2.180.0 @@ -3368,7 +3366,7 @@ packages: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@azure/core-asynciterator-polyfill/1.0.2: @@ -3381,7 +3379,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@azure/core-http/2.2.6: @@ -3398,7 +3396,7 @@ packages: node-fetch: 2.6.7 process: 0.11.10 tough-cookie: 4.0.0 - tslib: 2.5.0 + tslib: 2.4.0 tunnel: 0.0.6 uuid: 8.3.2 xml2js: 0.4.23 @@ -3412,14 +3410,14 @@ packages: dependencies: '@azure/abort-controller': 1.1.0 '@azure/logger': 1.0.3 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@azure/core-paging/1.3.0: resolution: {integrity: sha512-H6Tg9eBm0brHqLy0OSAGzxIh1t4UL8eZVrSUMJ60Ra9cwq2pOskFqVpz2pYoHDsBY1jZ4V/P8LRGb5D5pmC6rg==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@azure/core-tracing/1.0.0-preview.13: @@ -3427,14 +3425,14 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@opentelemetry/api': 1.1.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@azure/logger/1.0.3: resolution: {integrity: sha512-aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@azure/ms-rest-js/2.6.2: @@ -3464,7 +3462,7 @@ packages: '@azure/core-tracing': 1.0.0-preview.13 '@azure/logger': 1.0.3 events: 3.3.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - encoding dev: true @@ -3500,8 +3498,8 @@ packages: resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} engines: {node: '>=6.9.0'} - /@babel/compat-data/7.18.8: - resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} + /@babel/compat-data/7.20.14: + resolution: {integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==} engines: {node: '>=6.9.0'} /@babel/core/7.12.3: @@ -3509,17 +3507,17 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.11 - '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/generator': 7.20.14 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 lodash: 4.17.21 resolve: 1.22.1 semver: 5.7.1 @@ -3533,17 +3531,17 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.11 - '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/generator': 7.20.14 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 lodash: 4.17.21 resolve: 1.22.1 semver: 5.7.1 @@ -3596,22 +3594,44 @@ packages: transitivePeerDependencies: - supports-color + /@babel/core/7.20.12: + resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.14 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /@babel/core/7.9.0: resolution: {integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.12 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.11 - '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/generator': 7.20.14 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.13 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 lodash: 4.17.21 resolve: 1.22.1 semver: 5.7.1 @@ -3619,14 +3639,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.18.9_qduvoe7pjsglgq7qckbm7gljwi: + /@babel/eslint-parser/7.18.9_plrnlghpmvninluqjefgduuqei: 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.18.10 + '@babel/core': 7.20.12 eslint: 8.15.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 @@ -3636,7 +3656,7 @@ packages: /@babel/generator/7.12.1: resolution: {integrity: sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.20.7 jsesc: 2.5.2 source-map: 0.5.7 dev: true @@ -3657,6 +3677,14 @@ packages: '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 + /@babel/generator/7.20.14: + resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.7 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + /@babel/helper-annotate-as-pure/7.16.7: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} @@ -3667,14 +3695,14 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.16.7 - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-compilation-targets/7.17.10_@babel+core@7.17.10: resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} @@ -3688,61 +3716,61 @@ packages: browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.10: + /@babel/helper-compilation-targets/7.17.10_@babel+core@7.20.12: resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-validator-option': 7.16.7 browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.17.10_@babel+core@7.9.0: - resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} + /@babel/helper-compilation-targets/7.18.9: + resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.9.0 - '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.3 + '@babel/compat-data': 7.20.14 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.18.9: + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.17.10: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 + '@babel/compat-data': 7.20.14 + '@babel/core': 7.17.10 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.17.10: + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.17.10 + '@babel/compat-data': 7.20.14 + '@babel/core': 7.18.10 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.3 semver: 6.3.0 - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.18.10 + '@babel/compat-data': 7.20.14 + '@babel/core': 7.20.12 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.3 semver: 6.3.0 @@ -3753,10 +3781,74 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.8 + '@babel/compat-data': 7.20.14 + '@babel/core': 7.9.0 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + semver: 6.3.0 + + /@babel/helper-compilation-targets/7.20.7: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + lru-cache: 5.1.1 + semver: 6.3.0 + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.17.10: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 + '@babel/core': 7.17.10 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + lru-cache: 5.1.1 + semver: 6.3.0 + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.18.10: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 + '@babel/core': 7.18.10 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + lru-cache: 5.1.1 + semver: 6.3.0 + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 + '@babel/core': 7.20.12 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + lru-cache: 5.1.1 + semver: 6.3.0 + + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.9.0: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.14 '@babel/core': 7.9.0 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.3 + lru-cache: 5.1.1 semver: 6.3.0 /@babel/helper-create-class-features-plugin/7.17.9: @@ -3809,6 +3901,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.20.12: + resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.17.7 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.9.0: resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==} engines: {node: '>=6.9.0'} @@ -3855,6 +3964,16 @@ packages: '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 5.0.1 + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.20.12: + resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.16.7 + regexpu-core: 5.0.1 + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.9.0: resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} engines: {node: '>=6.9.0'} @@ -3865,16 +3984,16 @@ packages: '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 5.0.1 - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.18.10: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.12: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/traverse': 7.18.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.20.13 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -3888,10 +4007,10 @@ packages: peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/helper-compilation-targets': 7.18.9 + '@babel/helper-compilation-targets': 7.20.7 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/traverse': 7.18.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.20.13 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -3905,10 +4024,10 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.17.10 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.10 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/traverse': 7.18.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.20.13 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -3922,10 +4041,27 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.10 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 - '@babel/traverse': 7.18.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.20.13 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.20.12: + resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.20.13 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -3937,7 +4073,7 @@ packages: resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-environment-visitor/7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} @@ -3947,39 +4083,46 @@ packages: resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-function-name/7.17.9: resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.18.10 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 /@babel/helper-function-name/7.18.9: resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.18.10 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 + + /@babel/helper-function-name/7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-member-expression-to-functions/7.17.7: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} @@ -3991,7 +4134,7 @@ packages: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-module-transforms/7.17.7: resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==} @@ -4014,12 +4157,27 @@ packages: dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 - '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + + /@babel/helper-module-transforms/7.20.11: + resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} + 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.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -4027,7 +4185,7 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} @@ -4041,13 +4199,17 @@ packages: resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} engines: {node: '>=6.9.0'} + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + engines: {node: '>=6.9.0'} + /@babel/helper-remap-async-to-generator/7.16.8: resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-wrap-function': 7.16.8 - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -4058,8 +4220,8 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -4067,36 +4229,40 @@ packages: resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@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.18.10 + '@babel/types': 7.20.7 /@babel/helper-string-parser/7.18.10: resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} engines: {node: '>=6.9.0'} + /@babel/helper-string-parser/7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier/7.16.7: resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} engines: {node: '>=6.9.0'} @@ -4105,6 +4271,10 @@ packages: resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier/7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-option/7.16.7: resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} engines: {node: '>=6.9.0'} @@ -4117,10 +4287,10 @@ packages: resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.18.9 - '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/helper-function-name': 7.19.0 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -4138,9 +4308,19 @@ packages: resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 + transitivePeerDependencies: + - supports-color + + /@babel/helpers/7.20.13: + resolution: {integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -4148,7 +4328,7 @@ packages: resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 @@ -4156,7 +4336,7 @@ packages: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 @@ -4165,7 +4345,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.20.7 dev: true /@babel/parser/7.17.10: @@ -4182,6 +4362,13 @@ packages: dependencies: '@babel/types': 7.18.10 + /@babel/parser/7.20.13: + resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.7 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} engines: {node: '>=6.9.0'} @@ -4191,13 +4378,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.18.10: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.10: @@ -4211,16 +4398,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.18.10: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.10: resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} @@ -4235,16 +4422,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.18.10: + /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.20.12: resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-remap-async-to-generator': 7.16.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 transitivePeerDependencies: - supports-color @@ -4296,6 +4483,18 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.16.7 + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-class-properties/7.8.3_@babel+core@7.9.0: resolution: {integrity: sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==} peerDependencies: @@ -4303,7 +4502,7 @@ packages: dependencies: '@babel/core': 7.9.0 '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -4320,16 +4519,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.18.10: + /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.20.12: resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 transitivePeerDependencies: - supports-color @@ -4341,7 +4540,7 @@ packages: dependencies: '@babel/core': 7.17.10 '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.16.7 '@babel/helper-split-export-declaration': 7.18.6 '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.17.10 @@ -4349,18 +4548,18 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-decorators/7.17.9_@babel+core@7.18.10: + /@babel/plugin-proposal-decorators/7.17.9_@babel+core@7.20.12: resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.16.7 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.18.10 + '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.20.12 charcodes: 0.2.0 transitivePeerDependencies: - supports-color @@ -4372,7 +4571,7 @@ packages: dependencies: '@babel/core': 7.9.0 '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.9.0 transitivePeerDependencies: - supports-color @@ -4387,15 +4586,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} @@ -4436,6 +4635,17 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.10 + /@babel/plugin-proposal-export-default-from/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.16.7 + '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} engines: {node: '>=6.9.0'} @@ -4446,15 +4656,15 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.10 - /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.17.10: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} @@ -4477,15 +4687,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 - /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} @@ -4507,15 +4717,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 - /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} @@ -4546,6 +4756,16 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} engines: {node: '>=6.9.0'} @@ -4562,7 +4782,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.10: @@ -4575,15 +4795,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} @@ -4601,7 +4821,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.9.0 /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -4610,7 +4830,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9 dev: true @@ -4653,6 +4873,19 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 + /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.20.12: + resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.17.10 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.9.0: resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} engines: {node: '>=6.9.0'} @@ -4695,6 +4928,16 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} engines: {node: '>=6.9.0'} @@ -4737,6 +4980,17 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} engines: {node: '>=6.9.0'} @@ -4754,7 +5008,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0 /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.10: @@ -4769,14 +5023,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.18.10: + /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.20.12: resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 transitivePeerDependencies: - supports-color @@ -4795,17 +5049,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.18.10 + '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 transitivePeerDependencies: - supports-color @@ -4819,14 +5073,14 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.18.10: + /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.9.0: @@ -4847,12 +5101,12 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.0: @@ -4869,15 +5123,15 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-properties/7.12.13: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} @@ -4902,6 +5156,14 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.10: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -4911,13 +5173,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.17.10: @@ -4927,16 +5189,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.18.10: + /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.20.12: resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.9.0: resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==} @@ -4945,7 +5207,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-dynamic-import/7.8.3: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -4970,6 +5232,14 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.16.7 + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.16.7 + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.0: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -5004,6 +5274,16 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.10: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -5012,12 +5292,12 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-flow/7.16.7: @@ -5046,6 +5326,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} engines: {node: '>=6.9.0'} @@ -5071,12 +5360,12 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.16.7 - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.10: @@ -5087,12 +5376,12 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.0: @@ -5109,7 +5398,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-syntax-jsx/7.16.7: @@ -5118,7 +5407,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 dev: false /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.10: @@ -5128,7 +5417,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 dev: false /@babel/plugin-syntax-jsx/7.18.6: @@ -5137,7 +5426,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.17.10: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -5146,7 +5435,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -5155,7 +5444,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + 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 /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.9.0: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -5164,7 +5462,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.10: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -5174,12 +5472,12 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3: @@ -5205,6 +5503,14 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -5221,12 +5527,12 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.9.0: @@ -5269,6 +5575,14 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.0: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -5300,6 +5614,14 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.0: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -5331,6 +5653,14 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.0: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -5348,13 +5678,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.10: @@ -5366,13 +5696,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.9.0: @@ -5390,7 +5720,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.17.10: resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} @@ -5399,7 +5729,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.18.10: resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} @@ -5408,7 +5738,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + + /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.20.12: + resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} + 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 /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.9.0: resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} @@ -5417,7 +5756,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-arrow-functions/7.16.7: resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} @@ -5445,6 +5784,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} engines: {node: '>=6.9.0'} @@ -5492,6 +5840,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.20.12: + resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.16.8 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.9.0: resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} engines: {node: '>=6.9.0'} @@ -5531,6 +5892,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} @@ -5566,6 +5936,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} engines: {node: '>=6.9.0'} @@ -5628,6 +6007,24 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-classes/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-classes/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} engines: {node: '>=6.9.0'} @@ -5672,6 +6069,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} engines: {node: '>=6.9.0'} @@ -5707,6 +6113,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.20.12: + resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.9.0: resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} engines: {node: '>=6.9.0'} @@ -5726,14 +6141,14 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.9.0: @@ -5755,13 +6170,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.9.0: @@ -5802,6 +6217,16 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} engines: {node: '>=6.9.0'} @@ -5841,13 +6266,23 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.18.10 + /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.20.12 + /@babel/plugin-transform-flow-strip-types/7.9.0_@babel+core@7.9.0: resolution: {integrity: sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.9.0 /@babel/plugin-transform-for-of/7.16.7: @@ -5876,6 +6311,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} engines: {node: '>=6.9.0'} @@ -5917,6 +6361,17 @@ packages: '@babel/helper-function-name': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.12 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} @@ -5954,6 +6409,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-literals/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-literals/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} engines: {node: '>=6.9.0'} @@ -5989,6 +6453,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} @@ -6011,13 +6484,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 babel-plugin-dynamic-import-node: 2.3.3 @@ -6078,6 +6551,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.20.12: + resolution: {integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-simple-access': 7.17.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.9.0: resolution: {integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==} engines: {node: '>=6.9.0'} @@ -6107,13 +6594,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.18.10: + /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.20.12: resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 @@ -6149,13 +6636,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-module-transforms': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: @@ -6182,14 +6669,14 @@ packages: '@babel/core': 7.17.10 '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 - /@babel/plugin-transform-named-capturing-groups-regex/7.17.10_@babel+core@7.18.10: + /@babel/plugin-transform-named-capturing-groups-regex/7.17.10_@babel+core@7.20.12: resolution: {integrity: sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.12 /@babel/plugin-transform-named-capturing-groups-regex/7.17.10_@babel+core@7.9.0: resolution: {integrity: sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==} @@ -6209,13 +6696,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.9.0: @@ -6288,6 +6775,18 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.16.7 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} @@ -6336,6 +6835,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} engines: {node: '>=6.9.0'} @@ -6371,6 +6879,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} @@ -6380,14 +6897,14 @@ packages: '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.18.10: + /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.20.12: resolution: {integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-react-display-name/7.16.7: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} @@ -6415,6 +6932,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} @@ -6430,7 +6956,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} @@ -6442,14 +6968,14 @@ packages: '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.17.10 dev: true - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.20.12 /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} @@ -6460,16 +6986,6 @@ packages: '@babel/core': 7.9.0 '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.9.0 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.10: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 - dev: true - /@babel/plugin-transform-react-jsx-self/7.16.7: resolution: {integrity: sha512-oe5VuWs7J9ilH3BCCApGoYjHoSO48vkjX2CbA5bFVhIuO2HKxA3vyF7rleA4o6/4rTDbk6r8hBW7Ul8E+UZrpA==} engines: {node: '>=6.9.0'} @@ -6496,25 +7012,35 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-react-jsx-self/7.16.7_@babel+core@7.9.0: - resolution: {integrity: sha512-oe5VuWs7J9ilH3BCCApGoYjHoSO48vkjX2CbA5bFVhIuO2HKxA3vyF7rleA4o6/4rTDbk6r8hBW7Ul8E+UZrpA==} + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.17.10: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 + dev: false - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.18.10: + /@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'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 dev: true + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.9.0: + resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.9.0 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-react-jsx-source/7.16.7: resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==} engines: {node: '>=6.9.0'} @@ -6541,25 +7067,35 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.9.0: - resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==} + /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.17.10: + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.17.10 + '@babel/helper-plugin-utils': 7.20.2 + dev: false - /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.18.10: - resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==} + /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.12: + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.9.0: + resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.9.0 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-react-jsx/7.17.3: resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} engines: {node: '>=6.9.0'} @@ -6598,6 +7134,19 @@ packages: '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10 '@babel/types': 7.18.10 + /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.20.12: + resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 + '@babel/types': 7.18.10 + /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.9.0: resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} engines: {node: '>=6.9.0'} @@ -6619,9 +7168,9 @@ packages: dependencies: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6 - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.17.10: resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} @@ -6632,9 +7181,9 @@ packages: '@babel/core': 7.17.10 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.17.10 - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.10: resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} @@ -6645,9 +7194,22 @@ packages: '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10 - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 + + /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.20.12: + resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@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.20.12 + '@babel/types': 7.20.7 /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.9.0: resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} @@ -6658,9 +7220,9 @@ packages: '@babel/core': 7.9.0 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.9.0 - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==} @@ -6673,13 +7235,13 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.18.9 @@ -6709,6 +7271,15 @@ packages: '@babel/core': 7.18.10 regenerator-transform: 0.15.0 + /@babel/plugin-transform-regenerator/7.17.9_@babel+core@7.20.12: + resolution: {integrity: sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + regenerator-transform: 0.15.0 + /@babel/plugin-transform-regenerator/7.17.9_@babel+core@7.9.0: resolution: {integrity: sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==} engines: {node: '>=6.9.0'} @@ -6727,13 +7298,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.9.0: @@ -6792,14 +7363,31 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-runtime/7.17.10_@babel+core@7.20.12: + resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.12 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-runtime/7.9.0_@babel+core@7.9.0: resolution: {integrity: sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 resolve: 1.22.1 semver: 5.7.1 @@ -6829,6 +7417,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} @@ -6867,6 +7464,16 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + /@babel/plugin-transform-spread/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 + /@babel/plugin-transform-spread/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} engines: {node: '>=6.9.0'} @@ -6903,6 +7510,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} engines: {node: '>=6.9.0'} @@ -6938,6 +7554,15 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} engines: {node: '>=6.9.0'} @@ -6956,13 +7581,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.9.0: @@ -7012,6 +7637,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.20.12: + resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.9.0: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} @@ -7034,13 +7672,13 @@ packages: '@babel/core': 7.17.10 '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.10: + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-transform-unicode-regex/7.16.7: @@ -7072,6 +7710,16 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.20.12: + resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.9.0: resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} engines: {node: '>=6.9.0'} @@ -7174,85 +7822,85 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-env/7.17.10_@babel+core@7.18.10: + /@babel/preset-env/7.17.10_@babel+core@7.20.12: resolution: {integrity: sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.18.10 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.18.10 - '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-named-capturing-groups-regex': 7.17.10_@babel+core@7.18.10 - '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-regenerator': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.10 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.10 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.20.12 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.20.12 + '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-named-capturing-groups-regex': 7.17.10_@babel+core@7.20.12 + '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-regenerator': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.20.12 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 '@babel/types': 7.17.10 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.10 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.10 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.10 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.12 core-js-compat: 3.22.5 semver: 6.3.0 transitivePeerDependencies: @@ -7263,11 +7911,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 + '@babel/compat-data': 7.20.14 '@babel/core': 7.9.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.9.0 - '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.9.0 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.9.0 '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.9.0 '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.9.0 @@ -7318,8 +7966,8 @@ packages: '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.9.0 '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.9.0 '@babel/preset-modules': 0.1.5_@babel+core@7.9.0 - '@babel/types': 7.18.10 - browserslist: 4.20.3 + '@babel/types': 7.20.7 + browserslist: 4.21.3 core-js-compat: 3.22.5 invariant: 2.2.4 levenary: 1.1.1 @@ -7339,16 +7987,16 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.10 dev: true - /@babel/preset-flow/7.16.7_@babel+core@7.18.10: + /@babel/preset-flow/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.18.10 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.20.12 /@babel/preset-modules/0.1.5_@babel+core@7.17.10: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -7362,15 +8010,15 @@ packages: '@babel/types': 7.18.10 esutils: 2.0.3 - /@babel/preset-modules/0.1.5_@babel+core@7.18.10: + /@babel/preset-modules/0.1.5_@babel+core@7.20.12: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.18.9 - '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.10 + '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.20.12 '@babel/types': 7.18.10 esutils: 2.0.3 @@ -7401,19 +8049,19 @@ packages: '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.10 dev: true - /@babel/preset-react/7.16.7_@babel+core@7.18.10: + /@babel/preset-react/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.18.10 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.20.12 /@babel/preset-react/7.9.1_@babel+core@7.9.0: resolution: {integrity: sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==} @@ -7421,12 +8069,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.9.0 '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.9.0 '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.9.0 - '@babel/plugin-transform-react-jsx-self': 7.16.7_@babel+core@7.9.0 - '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.9.0 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.9.0 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.9.0 /@babel/preset-typescript/7.16.7_@babel+core@7.17.10: resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} @@ -7441,16 +8089,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-typescript/7.16.7_@babel+core@7.18.10: + /@babel/preset-typescript/7.16.7_@babel+core@7.20.12: resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.18.10 + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.20.12 transitivePeerDependencies: - supports-color @@ -7460,18 +8108,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.9.0 transitivePeerDependencies: - supports-color - /@babel/register/7.17.7_@babel+core@7.18.10: + /@babel/register/7.17.7_@babel+core@7.20.12: resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -7524,6 +8172,14 @@ packages: '@babel/parser': 7.18.11 '@babel/types': 7.18.10 + /@babel/template/7.20.7: + resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.20.13 + '@babel/types': 7.20.7 + /@babel/traverse/7.17.10: resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} engines: {node: '>=6.9.0'} @@ -7575,6 +8231,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.20.13: + resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.14 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.20.13 + '@babel/types': 7.20.7 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types/7.17.10: resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==} engines: {node: '>=6.9.0'} @@ -7590,6 +8263,14 @@ packages: '@babel/helper-validator-identifier': 7.18.6 to-fast-properties: 2.0.0 + /@babel/types/7.20.7: + resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} + 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 + /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -7789,69 +8470,69 @@ packages: - web3 dev: false - /@changesets/apply-release-plan/6.0.4: - resolution: {integrity: sha512-PutV/ymf8cZMqvaLe/Lh5cP3kBQ9FZl6oGQ3qRDxWD1ML+/uH3jrCE7S7Zw7IVSXkD0lnMD+1dAX7fsOJ6ZvgA==} + /@changesets/apply-release-plan/6.1.3: + resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==} dependencies: '@babel/runtime': 7.20.1 - '@changesets/config': 2.1.1 + '@changesets/config': 2.3.0 '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 1.4.1 - '@changesets/types': 5.1.0 + '@changesets/git': 2.0.0 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 outdent: 0.5.0 - prettier: 1.19.1 + prettier: 2.7.1 resolve-from: 5.0.0 semver: 5.7.1 dev: true - /@changesets/assemble-release-plan/5.2.1: - resolution: {integrity: sha512-d6ckasOWlKF9Mzs82jhl6TKSCgVvfLoUK1ERySrTg2TQJdrVUteZue6uEIYUTA7SgMu67UOSwol6R9yj1nTdjw==} + /@changesets/assemble-release-plan/5.2.3: + resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==} dependencies: '@babel/runtime': 7.20.1 '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.3 - '@changesets/types': 5.1.0 + '@changesets/get-dependents-graph': 1.3.5 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 semver: 5.7.1 dev: true - /@changesets/changelog-git/0.1.12: - resolution: {integrity: sha512-Xv2CPjTBmwjl8l4ZyQ3xrsXZMq8WafPUpEonDpTmcb24XY8keVzt7ZSCJuDz035EiqrjmDKDhODoQ6XiHudlig==} + /@changesets/changelog-git/0.1.14: + resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==} dependencies: - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 dev: true - /@changesets/changelog-github/0.4.6: - resolution: {integrity: sha512-ahR/+o3OPodzfG9kucEMU/tEtBgwy6QoJiWi1sDBPme8n3WjT6pBlbhqNYpWAJKilomwfjBGY0MTUTs6r9d1RQ==} + /@changesets/changelog-github/0.4.8: + resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} dependencies: - '@changesets/get-github-info': 0.5.1 - '@changesets/types': 5.1.0 + '@changesets/get-github-info': 0.5.2 + '@changesets/types': 5.2.1 dotenv: 8.6.0 transitivePeerDependencies: - encoding dev: true - /@changesets/cli/2.24.3: - resolution: {integrity: sha512-okhRV+0WCQJa2Kmil/WvN5TK1o3+1JYSjrsGHqhjv+PYcDgDDgQ6I9J9OMBO9lfmNIpN7xSO80/BzxgvReO4Wg==} + /@changesets/cli/2.26.0: + resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} hasBin: true dependencies: - '@babel/runtime': 7.18.9 - '@changesets/apply-release-plan': 6.0.4 - '@changesets/assemble-release-plan': 5.2.1 - '@changesets/changelog-git': 0.1.12 - '@changesets/config': 2.1.1 + '@babel/runtime': 7.20.1 + '@changesets/apply-release-plan': 6.1.3 + '@changesets/assemble-release-plan': 5.2.3 + '@changesets/changelog-git': 0.1.14 + '@changesets/config': 2.3.0 '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.3 - '@changesets/get-release-plan': 3.0.14 - '@changesets/git': 1.4.1 + '@changesets/get-dependents-graph': 1.3.5 + '@changesets/get-release-plan': 3.0.16 + '@changesets/git': 2.0.0 '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.12 - '@changesets/read': 0.5.7 - '@changesets/types': 5.1.0 - '@changesets/write': 0.1.9 + '@changesets/pre': 1.0.14 + '@changesets/read': 0.5.9 + '@changesets/types': 5.2.1 + '@changesets/write': 0.2.3 '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.0 '@types/semver': 6.2.3 @@ -7873,13 +8554,13 @@ packages: tty-table: 4.1.6 dev: true - /@changesets/config/2.1.1: - resolution: {integrity: sha512-nSRINMqHpdtBpNVT9Eh9HtmLhOwOTAeSbaqKM5pRmGfsvyaROTBXV84ujF9UsWNlV71YxFbxTbeZnwXSGQlyTw==} + /@changesets/config/2.3.0: + resolution: {integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==} dependencies: '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.3 + '@changesets/get-dependents-graph': 1.3.5 '@changesets/logger': 0.0.5 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 @@ -7891,18 +8572,18 @@ packages: extendable-error: 0.1.7 dev: true - /@changesets/get-dependents-graph/1.3.3: - resolution: {integrity: sha512-h4fHEIt6X+zbxdcznt1e8QD7xgsXRAXd2qzLlyxoRDFSa6SxJrDAUyh7ZUNdhjBU4Byvp4+6acVWVgzmTy4UNQ==} + /@changesets/get-dependents-graph/1.3.5: + resolution: {integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==} dependencies: - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 5.7.1 dev: true - /@changesets/get-github-info/0.5.1: - resolution: {integrity: sha512-w2yl3AuG+hFuEEmT6j1zDlg7GQLM/J2UxTmk0uJBMdRqHni4zXGe/vUlPfLom5KfX3cRfHc0hzGvloDPjWFNZw==} + /@changesets/get-github-info/0.5.2: + resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==} dependencies: dataloader: 1.4.0 node-fetch: 2.6.7 @@ -7910,15 +8591,15 @@ packages: - encoding dev: true - /@changesets/get-release-plan/3.0.14: - resolution: {integrity: sha512-xzSfeyIOvUnbqMuQXVKTYUizreWQfICwoQpvEHoePVbERLocc1tPo5lzR7dmVCFcaA/DcnbP6mxyioeq+JuzSg==} + /@changesets/get-release-plan/3.0.16: + resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==} dependencies: '@babel/runtime': 7.20.1 - '@changesets/assemble-release-plan': 5.2.1 - '@changesets/config': 2.1.1 - '@changesets/pre': 1.0.12 - '@changesets/read': 0.5.7 - '@changesets/types': 5.1.0 + '@changesets/assemble-release-plan': 5.2.3 + '@changesets/config': 2.3.0 + '@changesets/pre': 1.0.14 + '@changesets/read': 0.5.9 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 dev: true @@ -7926,14 +8607,15 @@ packages: resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} dev: true - /@changesets/git/1.4.1: - resolution: {integrity: sha512-GWwRXEqBsQ3nEYcyvY/u2xUK86EKAevSoKV/IhELoZ13caZ1A1TSak/71vyKILtzuLnFPk5mepP5HjBxr7lZ9Q==} + /@changesets/git/2.0.0: + resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} dependencies: '@babel/runtime': 7.20.1 '@changesets/errors': 0.1.4 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 + micromatch: 4.0.5 spawndamnit: 2.0.0 dev: true @@ -7943,31 +8625,31 @@ packages: chalk: 2.4.2 dev: true - /@changesets/parse/0.3.14: - resolution: {integrity: sha512-SWnNVyC9vz61ueTbuxvA6b4HXcSx2iaWr2VEa37lPg1Vw+cEyQp7lOB219P7uow1xFfdtIEEsxbzXnqLAAaY8w==} + /@changesets/parse/0.3.16: + resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} dependencies: - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 js-yaml: 3.14.1 dev: true - /@changesets/pre/1.0.12: - resolution: {integrity: sha512-RFzWYBZx56MtgMesXjxx7ymyI829/rcIw/41hvz3VJPnY8mDscN7RJyYu7Xm7vts2Fcd+SRcO0T/Ws3I1/6J7g==} + /@changesets/pre/1.0.14: + resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} dependencies: '@babel/runtime': 7.20.1 '@changesets/errors': 0.1.4 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 dev: true - /@changesets/read/0.5.7: - resolution: {integrity: sha512-Iteg0ccTPpkJ+qFzY97k7qqdVE5Kz30TqPo9GibpBk2g8tcLFUqf+Qd0iXPLcyhUZpPL1U6Hia1gINHNKIKx4g==} + /@changesets/read/0.5.9: + resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} dependencies: '@babel/runtime': 7.20.1 - '@changesets/git': 1.4.1 + '@changesets/git': 2.0.0 '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.14 - '@changesets/types': 5.1.0 + '@changesets/parse': 0.3.16 + '@changesets/types': 5.2.1 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 @@ -7977,18 +8659,18 @@ packages: resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} dev: true - /@changesets/types/5.1.0: - resolution: {integrity: sha512-uUByGATZCdaPkaO9JkBsgGDjEvHyY2Sb0e/J23+cwxBi5h0fxpLF/HObggO/Fw8T2nxK6zDfJbPsdQt5RwYFJA==} + /@changesets/types/5.2.1: + resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} dev: true - /@changesets/write/0.1.9: - resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==} + /@changesets/write/0.2.3: + resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} dependencies: '@babel/runtime': 7.20.1 - '@changesets/types': 5.1.0 + '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 - prettier: 1.19.1 + prettier: 2.7.1 dev: true /@cnakazawa/watch/1.0.4: @@ -8091,15 +8773,15 @@ packages: '@commitlint/execute-rule': 17.4.0 '@commitlint/resolve-extends': 17.4.0 '@commitlint/types': 17.4.0 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 cosmiconfig: 8.0.0 - cosmiconfig-typescript-loader: 4.3.0_uq4wlhacw2oduszgsmiowqxege + cosmiconfig-typescript-loader: 4.3.0_ljnzj3ucqtp2thhfw45pa4mg4a lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1_zpnjiqgiyrygwbc62chkjhj6km + ts-node: 10.9.1_76bvzwqatfihmnr5dx42jk5azq typescript: 4.9.3 transitivePeerDependencies: - '@swc/core' @@ -8591,13 +9273,13 @@ packages: resolution: {integrity: sha512-lb3TU6833arPoPZF8HTeG9V418CpurvqH5Aa/ls0I0wYdPDEMO6622+PQNQhQ8Vw8Az2MXoSyc8jsqrgawT84Q==} dev: false - /@craftamap/esbuild-plugin-html/0.4.0_esbuild@0.14.49: + /@craftamap/esbuild-plugin-html/0.4.0_esbuild@0.17.5: resolution: {integrity: sha512-8k9oyOBritQ0cjE/ugajijU4KME4ZwgHrpeVSltV2PQ21XEnTxXLaU3HcBGGFhyLHs9dLeOOsfezwCd+7bh3Cw==} engines: {node: '>13'} peerDependencies: esbuild: '>=0.12.28' dependencies: - esbuild: 0.14.49 + esbuild: 0.17.5 jsdom: 17.0.0 lodash.template: 4.5.0 transitivePeerDependencies: @@ -9052,7 +9734,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/helper-module-imports': 7.16.7 + '@babel/helper-module-imports': 7.18.6 '@babel/plugin-syntax-jsx': 7.16.7 '@babel/runtime': 7.20.1 '@emotion/hash': 0.8.0 @@ -9072,7 +9754,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.17.10 - '@babel/helper-module-imports': 7.16.7 + '@babel/helper-module-imports': 7.18.6 '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 '@babel/runtime': 7.20.1 '@emotion/hash': 0.8.0 @@ -9345,8 +10027,8 @@ packages: /@emotion/weak-memoize/0.2.5: resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} - /@esbuild/android-arm/0.15.15: - resolution: {integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==} + /@esbuild/android-arm/0.16.17: + resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -9354,10 +10036,172 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.15.15: - resolution: {integrity: sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==} + /@esbuild/android-arm/0.17.5: + resolution: {integrity: sha512-crmPUzgCmF+qZXfl1YkiFoUta2XAfixR1tEnr/gXIixE+WL8Z0BGqfydP5oox0EUOgQMMRgtATtakyAcClQVqQ==} engines: {node: '>=12'} - cpu: [loong64] + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64/0.16.17: + resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64/0.17.5: + resolution: {integrity: sha512-KHWkDqYAMmKZjY4RAN1PR96q6UOtfkWlTS8uEwWxdLtkRt/0F/csUhXIrVfaSIFxnscIBMPynGfhsMwQDRIBQw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64/0.16.17: + resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64/0.17.5: + resolution: {integrity: sha512-8fI/AnIdmWz/+1iza2WrCw8kwXK9wZp/yZY/iS8ioC+U37yJCeppi9EHY05ewJKN64ASoBIseufZROtcFnX5GA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64/0.16.17: + resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64/0.17.5: + resolution: {integrity: sha512-EAvaoyIySV6Iif3NQCglUNpnMfHSUgC5ugt2efl3+QDntucJe5spn0udNZjTgNi6tKVqSceOw9tQ32liNZc1Xw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64/0.16.17: + resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64/0.17.5: + resolution: {integrity: sha512-ha7QCJh1fuSwwCgoegfdaljowwWozwTDjBgjD3++WAy/qwee5uUi1gvOg2WENJC6EUyHBOkcd3YmLDYSZ2TPPA==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64/0.16.17: + resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64/0.17.5: + resolution: {integrity: sha512-VbdXJkn2aI2pQ/wxNEjEcnEDwPpxt3CWWMFYmO7CcdFBoOsABRy2W8F3kjbF9F/pecEUDcI3b5i2w+By4VQFPg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64/0.16.17: + resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64/0.17.5: + resolution: {integrity: sha512-olgGYND1/XnnWxwhjtY3/ryjOG/M4WfcA6XH8dBTH1cxMeBemMODXSFhkw71Kf4TeZFFTN25YOomaNh0vq2iXg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm/0.16.17: + resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm/0.17.5: + resolution: {integrity: sha512-YBdCyQwA3OQupi6W2/WO4FnI+NWFWe79cZEtlbqSESOHEg7a73htBIRiE6uHPQe7Yp5E4aALv+JxkRLGEUL7tw==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64/0.16.17: + resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64/0.17.5: + resolution: {integrity: sha512-8a0bqSwu3OlLCfu2FBbDNgQyBYdPJh1B9PvNX7jMaKGC9/KopgHs37t+pQqeMLzcyRqG6z55IGNQAMSlCpBuqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32/0.16.17: + resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32/0.17.5: + resolution: {integrity: sha512-uCwm1r/+NdP7vndctgq3PoZrnmhmnecWAr114GWMRwg2QMFFX+kIWnp7IO220/JLgnXK/jP7VKAFBGmeOYBQYQ==} + engines: {node: '>=12'} + cpu: [ia32] os: [linux] requiresBuild: true dev: true @@ -9372,6 +10216,222 @@ packages: dev: true optional: true + /@esbuild/linux-loong64/0.16.17: + resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64/0.17.5: + resolution: {integrity: sha512-3YxhSBl5Sb6TtBjJu+HP93poBruFzgXmf3PVfIe4xOXMj1XpxboYZyw3W8BhoX/uwxzZz4K1I99jTE/5cgDT1g==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el/0.16.17: + resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el/0.17.5: + resolution: {integrity: sha512-Hy5Z0YVWyYHdtQ5mfmfp8LdhVwGbwVuq8mHzLqrG16BaMgEmit2xKO+iDakHs+OetEx0EN/2mUzDdfdktI+Nmg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64/0.16.17: + resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64/0.17.5: + resolution: {integrity: sha512-5dbQvBLbU/Y3Q4ABc9gi23hww1mQcM7KZ9KBqabB7qhJswYMf8WrDDOSw3gdf3p+ffmijMd28mfVMvFucuECyg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64/0.16.17: + resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64/0.17.5: + resolution: {integrity: sha512-fp/KUB/ZPzEWGTEUgz9wIAKCqu7CjH1GqXUO2WJdik1UNBQ7Xzw7myIajpxztE4Csb9504ERiFMxZg5KZ6HlZQ==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x/0.16.17: + resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x/0.17.5: + resolution: {integrity: sha512-kRV3yw19YDqHTp8SfHXfObUFXlaiiw4o2lvT1XjsPZ++22GqZwSsYWJLjMi1Sl7j9qDlDUduWDze/nQx0d6Lzw==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64/0.16.17: + resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64/0.17.5: + resolution: {integrity: sha512-vnxuhh9e4pbtABNLbT2ANW4uwQ/zvcHRCm1JxaYkzSehugoFd5iXyC4ci1nhXU13mxEwCnrnTIiiSGwa/uAF1g==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64/0.16.17: + resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64/0.17.5: + resolution: {integrity: sha512-cigBpdiSx/vPy7doUyImsQQBnBjV5f1M99ZUlaJckDAJjgXWl6y9W17FIfJTy8TxosEF6MXq+fpLsitMGts2nA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64/0.16.17: + resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64/0.17.5: + resolution: {integrity: sha512-VdqRqPVIjjZfkf40LrqOaVuhw9EQiAZ/GNCSM2UplDkaIzYVsSnycxcFfAnHdWI8Gyt6dO15KHikbpxwx+xHbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64/0.16.17: + resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64/0.17.5: + resolution: {integrity: sha512-ItxPaJ3MBLtI4nK+mALLEoUs6amxsx+J1ibnfcYMkqaCqHST1AkF4aENpBehty3czqw64r/XqL+W9WqU6kc2Qw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64/0.16.17: + resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64/0.17.5: + resolution: {integrity: sha512-4u2Q6qsJTYNFdS9zHoAi80spzf78C16m2wla4eJPh4kSbRv+BpXIfl6TmBSWupD8e47B1NrTfrOlEuco7mYQtg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32/0.16.17: + resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32/0.17.5: + resolution: {integrity: sha512-KYlm+Xu9TXsfTWAcocLuISRtqxKp/Y9ZBVg6CEEj0O5J9mn7YvBKzAszo2j1ndyzUPk+op+Tie2PJeN+BnXGqQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64/0.16.17: + resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64/0.17.5: + resolution: {integrity: sha512-XgA9qWRqby7xdYXuF6KALsn37QGBMHsdhmnpjfZtYxKxbTOwfnDM6MYi2WuUku5poNaX2n9XGVr20zgT/2QwCw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@eslint/eslintrc/0.1.3: resolution: {integrity: sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==} engines: {node: ^10.12.0 || >=12.0.0} @@ -10621,7 +11681,7 @@ packages: '@firebase/app-compat': 0.1.25 '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' dev: false @@ -10640,7 +11700,7 @@ packages: '@firebase/installations': 0.5.9_@firebase+app@0.7.24 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/app-check-compat/0.2.8_nl2xbfjx4m6epdjz4gqb77kzfy: @@ -10654,7 +11714,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' dev: false @@ -10676,7 +11736,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/app-compat/0.1.25: @@ -10686,7 +11746,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/app-types/0.7.0: @@ -10700,7 +11760,7 @@ packages: '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/auth-compat/0.2.14_c5clqnyoeu2ajh7x4b5vgze3bq: @@ -10715,7 +11775,7 @@ packages: '@firebase/util': 1.6.0 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -10755,7 +11815,7 @@ packages: '@firebase/util': 1.6.0 node-fetch: 2.6.7 selenium-webdriver: 4.1.1 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - bufferutil - encoding @@ -10766,7 +11826,7 @@ packages: resolution: {integrity: sha512-ct2p1MTMV5P/nGIlkC3XjAVwHwjsIZaeo8JVyDAkJCNTROu5mYX3FBK16hjIUIIVJDpgnnzFh9nP74gciL4WrA==} dependencies: '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/database-compat/0.2.0_rpd4ipbmnh3eak32lkxgflhihy: @@ -10780,7 +11840,7 @@ packages: '@firebase/database-types': 0.9.8 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app-types' dev: false @@ -10800,7 +11860,7 @@ packages: '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 faye-websocket: 0.11.4 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app-types' dev: false @@ -10815,7 +11875,7 @@ packages: '@firebase/firestore': 3.4.9_@firebase+app@0.7.24 '@firebase/firestore-types': 2.5.0_d3sbubxik2e3di7jgmisc34csi '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -10846,7 +11906,7 @@ packages: '@grpc/grpc-js': 1.6.7 '@grpc/proto-loader': 0.6.12 node-fetch: 2.6.7 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - encoding dev: false @@ -10861,7 +11921,7 @@ packages: '@firebase/functions': 0.8.1_qrm533ploorf37ce2akwhmmape '@firebase/functions-types': 0.5.0 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -10884,7 +11944,7 @@ packages: '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.0 node-fetch: 2.6.7 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app-types' - encoding @@ -10899,13 +11959,13 @@ packages: '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/logger/0.3.2: resolution: {integrity: sha512-lzLrcJp9QBWpo40OcOM9B8QEtBw2Fk1zOZQdvv+rWS6gKmhQBCEMc4SMABQfWdjsylBcDfniD1Q+fUX1dcBTXA==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/messaging-compat/0.1.13_nl2xbfjx4m6epdjz4gqb77kzfy: @@ -10917,7 +11977,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/messaging': 0.9.13_@firebase+app@0.7.24 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' dev: false @@ -10937,7 +11997,7 @@ packages: '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.0 idb: 7.0.1 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/performance-compat/0.1.9_nl2xbfjx4m6epdjz4gqb77kzfy: @@ -10951,7 +12011,7 @@ packages: '@firebase/performance': 0.5.9_@firebase+app@0.7.24 '@firebase/performance-types': 0.1.0 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' dev: false @@ -10970,7 +12030,7 @@ packages: '@firebase/installations': 0.5.9_@firebase+app@0.7.24 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/polyfill/0.3.36: @@ -10992,7 +12052,7 @@ packages: '@firebase/remote-config': 0.3.8_@firebase+app@0.7.24 '@firebase/remote-config-types': 0.2.0 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' dev: false @@ -11011,7 +12071,7 @@ packages: '@firebase/installations': 0.5.9_@firebase+app@0.7.24 '@firebase/logger': 0.3.2 '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/storage-compat/0.1.14_c5clqnyoeu2ajh7x4b5vgze3bq: @@ -11024,7 +12084,7 @@ packages: '@firebase/storage': 0.9.6_@firebase+app@0.7.24 '@firebase/storage-types': 0.6.0_d3sbubxik2e3di7jgmisc34csi '@firebase/util': 1.6.0 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - '@firebase/app' - '@firebase/app-types' @@ -11050,7 +12110,7 @@ packages: '@firebase/component': 0.5.14 '@firebase/util': 1.6.0 node-fetch: 2.6.7 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - encoding dev: false @@ -11058,7 +12118,7 @@ packages: /@firebase/util/1.6.0: resolution: {integrity: sha512-6+hhqb4Zzjoo12xofTDHPkgW3FnN4ydBsjd5X2KuQI268DR3W3Ld64W/gkKPZrKRgUxeNeb+pykfP3qRe7q+vA==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@firebase/webchannel-wrapper/0.6.1: @@ -11093,7 +12153,7 @@ packages: resolution: {integrity: sha512-EBikYFp2JCdIfGEb5G9dyCkTGDmC57KSHhRQOC3aYxoPWVZvfWCDjZwkGYHN7Lis/fmuWl906bnNTJifDQ3sXw==} dependencies: '@formatjs/intl-localematcher': 0.2.25 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@formatjs/intl-datetimeformat/5.0.2: @@ -11121,7 +12181,7 @@ packages: /@formatjs/intl-localematcher/0.2.25: resolution: {integrity: sha512-YmLcX70BxoSopLFdLr1Ds99NdlTI2oWoLbaUW2M406lxOIPzE1KQhRz2fPUkq34xVZQaihCoU29h0KK7An3bhA==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@formatjs/intl-numberformat/7.4.3: @@ -11157,7 +12217,7 @@ packages: engines: {node: ^8.13.0 || >=10.10.0} dependencies: '@grpc/proto-loader': 0.6.12 - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@grpc/proto-loader/0.6.12: @@ -11378,7 +12438,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -11390,7 +12450,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -11459,7 +12519,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -11505,14 +12565,14 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.3.2 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.1.3 - jest-config: 28.1.3_@types+node@17.0.32 + jest-config: 28.1.3_@types+node@18.11.18 jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -11690,7 +12750,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 jest-mock: 27.5.1 dev: false @@ -11755,7 +12815,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 17.0.32 + '@types/node': 18.11.18 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -11767,7 +12827,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -11860,7 +12920,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -11900,7 +12960,7 @@ packages: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -11939,7 +12999,7 @@ packages: '@jest/transform': 28.1.3_metro@0.67.0 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -12126,7 +13186,7 @@ packages: resolution: {integrity: sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==} engines: {node: '>= 6'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 24.9.0 babel-plugin-istanbul: 5.2.0 chalk: 2.4.2 @@ -12150,7 +13210,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -12174,7 +13234,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -12198,7 +13258,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -12221,7 +13281,7 @@ packages: resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 @@ -12245,7 +13305,7 @@ packages: resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 @@ -12268,7 +13328,7 @@ packages: resolution: {integrity: sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/types': 29.3.1 '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 @@ -12454,7 +13514,7 @@ packages: /@ledgerhq/devices/7.0.5: resolution: {integrity: sha512-2o2zD2Yv1Hgd3+R2aLCvlyT7NxBz2nltawTCPSXaf3+8MDIyZbiJlXi43hLEISRFBG3u3bYwAQuiOisimN9C6Q==} dependencies: - '@ledgerhq/errors': 6.12.3 + '@ledgerhq/errors': 6.12.1 '@ledgerhq/logs': 6.10.1 rxjs: 6.6.7 semver: 7.3.8 @@ -12479,8 +13539,8 @@ packages: resolution: {integrity: sha512-gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==} dev: false - /@ledgerhq/errors/6.12.3: - resolution: {integrity: sha512-djiMSgB/7hnK3aLR/c5ZMMivxjcI7o2+y3VKcsZZpydPoVf9+FXqeJPRfOwmJ0JxbQ//LinUfWpIfHew8LkaVw==} + /@ledgerhq/errors/6.12.1: + resolution: {integrity: sha512-2qeUSUCpQbMhV9eLJDLI8wycFwTcWszP8g3cJycBt9Jf1VczC5MRERwAQv5AYhPa4rcy+jLKBOVZYxc35r5l7g==} dev: false /@ledgerhq/hw-app-eth/5.11.0: @@ -12529,7 +13589,7 @@ packages: resolution: {integrity: sha512-WSUgF1W3tAikSnAfeNAT2e2dgTdEQd5Vi/095C2mR5Fr0/POCSl9X4T9rlBhK5NSVD+nGXI0rN2ISj08zai8HQ==} dependencies: '@ledgerhq/devices': 7.0.5 - '@ledgerhq/errors': 6.12.3 + '@ledgerhq/errors': 6.12.1 events: 3.3.0 dev: false @@ -12575,7 +13635,7 @@ packages: /@ledgerhq/wallet-api-core/0.11.0: resolution: {integrity: sha512-SHIdZD/gQJ4dMag5zzmRAAfhkkfiyHFVLHR7xz0Srj2BLdMfQZzXneTSnv7YND4YOZrwHIfBTA68Bim+AiKjwA==} dependencies: - '@ledgerhq/errors': 6.12.3 + '@ledgerhq/errors': 6.12.1 bignumber.js: 9.1.0 uuid: 9.0.0 zod: 3.19.1 @@ -12584,7 +13644,7 @@ packages: /@ledgerhq/wallet-api-core/0.12.0: resolution: {integrity: sha512-e8V73MgiXa63mUkyF3MqwqjKxYzVVF6lhLHYWtUVJCUDwyXEq7EmuEK9IxYl7o5oxqmXlkxQ6qXjl7aQTT6P8g==} dependencies: - '@ledgerhq/errors': 6.12.3 + '@ledgerhq/errors': 6.12.1 bignumber.js: 9.1.0 uuid: 9.0.0 zod: 3.19.1 @@ -13110,7 +14170,7 @@ packages: /@octokit/types/2.16.2: resolution: {integrity: sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: true /@octokit/types/6.34.0: @@ -13153,7 +14213,7 @@ packages: open: 8.4.0 picocolors: 1.0.0 tiny-glob: 0.2.9 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /@playwright/test/1.17.2: @@ -14682,7 +15742,7 @@ packages: strip-json-comments: 3.1.1 dev: false - /@rollup/plugin-babel/5.3.1_grjwmk4ql6unjmhsznzs3pdpta: + /@rollup/plugin-babel/5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -14693,7 +15753,7 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.18.6 '@rollup/pluginutils': 3.1.0_rollup@2.79.1 rollup: 2.79.1 @@ -16331,27 +17391,27 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 '@storybook/addons': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.22 @@ -16371,9 +17431,9 @@ packages: '@types/node': 14.18.17 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 css-loader: 3.6.0_webpack@4.46.0 @@ -16425,27 +17485,27 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 '@storybook/addons': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.22 @@ -16465,9 +17525,9 @@ packages: '@types/node': 14.18.17 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 css-loader: 3.6.0_webpack@4.46.0 @@ -16519,27 +17579,27 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 '@storybook/addons': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/api': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/channel-postmessage': 6.4.22 @@ -16559,9 +17619,9 @@ packages: '@types/node': 14.18.17 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.22.5 css-loader: 3.6.0_webpack@4.46.0 @@ -16889,34 +17949,34 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 '@types/node': 14.18.17 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 chalk: 4.1.2 core-js: 3.22.5 express: 4.18.1 @@ -16927,7 +17987,7 @@ packages: glob: 7.2.3 handlebars: 4.7.7 interpret: 2.2.0 - json5: 2.2.1 + json5: 2.2.3 lazy-universal-dotenv: 3.0.1 picomatch: 2.3.1 pkg-dir: 5.0.0 @@ -16959,34 +18019,34 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 '@types/node': 14.18.17 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 chalk: 4.1.2 core-js: 3.22.5 express: 4.18.1 @@ -16997,7 +18057,7 @@ packages: glob: 7.2.3 handlebars: 4.7.7 interpret: 2.2.0 - json5: 2.2.1 + json5: 2.2.3 lazy-universal-dotenv: 3.0.1 picomatch: 2.3.1 pkg-dir: 5.0.0 @@ -17029,34 +18089,34 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.18.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 '@storybook/node-logger': 6.4.22 '@storybook/semver': 7.3.2 '@types/node': 14.18.17 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 chalk: 4.1.2 core-js: 3.22.5 express: 4.18.1 @@ -17067,7 +18127,7 @@ packages: glob: 7.2.3 handlebars: 4.7.7 interpret: 2.2.0 - json5: 2.2.1 + json5: 2.2.3 lazy-universal-dotenv: 3.0.1 picomatch: 2.3.1 pkg-dir: 5.0.0 @@ -17511,13 +18571,13 @@ packages: /@storybook/csf-tools/6.4.22: resolution: {integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw==} dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.18.12 - '@babel/parser': 7.18.11 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.14 + '@babel/parser': 7.20.13 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.22.5 @@ -17554,9 +18614,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 '@storybook/addons': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-client': 6.4.22_7mrd2sjqlqrawzoflemgvxtq2a '@storybook/core-common': 6.4.22_fl7eym2gyl6xoinpm5hjjeog6u @@ -17565,7 +18625,7 @@ packages: '@storybook/ui': 6.4.22_k2mvpji5i2ojml6m4ftklg47pa '@types/node': 14.18.17 '@types/webpack': 4.41.32 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -17615,9 +18675,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 '@storybook/addons': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-client': 6.4.22_7mrd2sjqlqrawzoflemgvxtq2a '@storybook/core-common': 6.4.22_lbkporforplfw6y5rmbogd2gpa @@ -17626,7 +18686,7 @@ packages: '@storybook/ui': 6.4.22_k2mvpji5i2ojml6m4ftklg47pa '@types/node': 14.18.17 '@types/webpack': 4.41.32 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -17676,9 +18736,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 '@storybook/addons': 6.4.22_sfoxds7t5ydpegc3knd667wn6m '@storybook/core-client': 6.4.22_7mrd2sjqlqrawzoflemgvxtq2a '@storybook/core-common': 6.4.22_3a3ybgz3m7xenqhkkvltvi2ane @@ -17687,7 +18747,7 @@ packages: '@storybook/ui': 6.4.22_k2mvpji5i2ojml6m4ftklg47pa '@types/node': 14.18.17 '@types/webpack': 4.41.32 - babel-loader: 8.2.5_5ouqwanl7jnotevpn4w6qovjqm + babel-loader: 8.2.5_nwtvwtk5tmh22l2urnqucz7kqu case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.22.5 @@ -17781,7 +18841,7 @@ packages: flat-cache: 3.0.4 micromatch: 4.0.5 react-docgen-typescript: 2.2.2_typescript@4.9.3 - tslib: 2.5.0 + tslib: 2.4.0 typescript: 4.9.3 webpack: 4.46.0 transitivePeerDependencies: @@ -18307,7 +19367,7 @@ packages: resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} dependencies: ejs: 3.1.7 - json5: 2.2.1 + json5: 2.2.3 magic-string: 0.25.9 string.prototype.matchall: 4.0.7 dev: false @@ -18471,19 +19531,19 @@ packages: resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} engines: {node: '>=8'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@svgr/hast-util-to-babel-ast/5.5.0: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@svgr/plugin-jsx/4.3.3: resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@svgr/babel-preset': 4.3.3 '@svgr/hast-util-to-babel-ast': 4.3.2 svg-parser: 2.0.4 @@ -18533,10 +19593,10 @@ packages: resolution: {integrity: sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 '@svgr/core': 4.3.3_@svgr+plugin-svgo@4.3.1 '@svgr/plugin-jsx': 4.3.3 '@svgr/plugin-svgo': 4.3.1 @@ -18548,10 +19608,10 @@ packages: resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 '@svgr/core': 5.5.0_@svgr+plugin-svgo@5.5.0 '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -18762,18 +19822,18 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.18.11 - '@babel/types': 7.18.10 + '@babel/parser': 7.20.13 + '@babel/types': 7.20.7 /@types/babel__traverse/7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 /@types/bchaddrjs/0.4.0: resolution: {integrity: sha512-Nvv3haWpXNWYfKasVoEp3VBgVsBTLTh45anhHUN8xVUPhn4ErU3FPS5AEcZtACWc5ICGUxbaiLTWOnwDkwYF1Q==} @@ -18782,32 +19842,32 @@ packages: /@types/bn.js/4.11.6: resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/bn.js/5.1.0: resolution: {integrity: sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/bn.js/5.1.1: resolution: {integrity: sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/body-parser/1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/bs58/4.0.1: @@ -18831,7 +19891,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/responselike': 1.0.0 /@types/cbor/6.0.0: @@ -18866,13 +19926,13 @@ packages: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.28 - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/d3-array/2.3.0: @@ -18936,7 +19996,7 @@ packages: resolution: {integrity: sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ==} dependencies: '@types/bn.js': 5.1.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/eventsource/1.1.8: @@ -18946,7 +20006,7 @@ packages: /@types/express-serve-static-core/4.17.28: resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: false @@ -18970,12 +20030,12 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 17.0.32 + '@types/node': 18.11.18 /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 /@types/hammerjs/2.0.41: resolution: {integrity: sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA==} @@ -19026,7 +20086,7 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/invariant/2.2.35: @@ -19035,7 +20095,7 @@ packages: /@types/ioredis/4.28.10: resolution: {integrity: sha512-69LyhUgrXdgcNDv7ogs1qXZomnfOEnSmrmMFqKgt1XMJxmoOSG/u3wYy13yACIfKuMJ8IhKgHafDO3sx19zVQQ==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/is-base64/1.1.1: @@ -19105,7 +20165,7 @@ packages: /@types/jsdom/16.2.15: resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/parse5': 6.0.3 '@types/tough-cookie': 4.0.2 dev: true @@ -19122,18 +20182,18 @@ packages: /@types/jsonwebtoken/8.5.8: resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 /@types/ledgerhq__hw-transport/4.21.4: resolution: {integrity: sha512-vep+6yZnGv6owAthIY0w3f72w4dJIb4+yE5PCHveInTlZE9wukvU6Wc5Eig0OUUxcdhTazzeZx1xUaNVLqyQSg==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/libsodium-wrappers/0.7.9: @@ -19174,7 +20234,7 @@ packages: /@types/node-fetch/2.6.1: resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 form-data: 3.0.1 dev: true @@ -19216,6 +20276,9 @@ packages: /@types/node/17.0.32: resolution: {integrity: sha512-eAIcfAvhf/BkHcf4pkLJ7ECpBAhh9kcxRBpip9cTiO+hf+aJrsxYxBeS6OXvOd9WqNAJmavXVpZvY1rBjNsXmw==} + /@types/node/18.11.18: + resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} + /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true @@ -19249,7 +20312,7 @@ packages: /@types/pbkdf2/3.1.0: resolution: {integrity: sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/pino-http/5.8.1: @@ -19261,20 +20324,20 @@ packages: /@types/pino-pretty/4.7.5: resolution: {integrity: sha512-rfHe6VIknk14DymxGqc9maGsRe8/HQSvM2u46EAz2XrS92qsAJnW16dpdFejBuZKD8cRJX6Aw6uVZqIQctMpAg==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/pino': 6.3.12 dev: false /@types/pino-std-serializers/2.4.1: resolution: {integrity: sha512-17XcksO47M24IVTVKPeAByWUd3Oez7EbIjXpSbzMPhXVzgjGtrOa49gKBwxH9hb8dKv58OelsWQ+A1G1l9S3wQ==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/pino/6.3.12: resolution: {integrity: sha512-dsLRTq8/4UtVSpJgl9aeqHvbh6pzdmjYD3C092SYgLD2TyoCqHpTJk6vp8DvCTGGc7iowZ2MoiYiVUUCcu7muw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/pino-pretty': 4.7.5 '@types/pino-std-serializers': 2.4.1 sonic-boom: 2.8.0 @@ -19284,7 +20347,7 @@ packages: resolution: {integrity: sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==} requiresBuild: true dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 xmlbuilder: 15.1.1 dev: true optional: true @@ -19312,7 +20375,7 @@ packages: /@types/randombytes/2.0.0: resolution: {integrity: sha512-bz8PhAVlwN72vqefzxa14DKNT8jK/mV66CSjwdVQM/k3Th3EPKfUtdMniwZgMedQTFuywAsfjnZsg+pEnltaMA==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/range-parser/1.2.4: @@ -19560,13 +20623,13 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -19582,7 +20645,7 @@ packages: /@types/secp256k1/4.0.3: resolution: {integrity: sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/semver/6.2.3: @@ -19611,13 +20674,13 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/source-list-map/0.1.2: @@ -19675,7 +20738,7 @@ packages: /@types/tunnel/0.0.3: resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: true /@types/uglify-js/3.13.2: @@ -19736,7 +20799,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/source-list-map': 0.1.2 source-map: 0.7.3 dev: true @@ -19744,7 +20807,7 @@ packages: /@types/webpack/4.41.32: resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/tapable': 1.0.8 '@types/uglify-js': 3.13.2 '@types/webpack-sources': 3.2.0 @@ -19759,7 +20822,7 @@ packages: /@types/ws/7.4.7: resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /@types/ws/8.5.3: @@ -19794,7 +20857,7 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 optional: true /@typescript-eslint/eslint-plugin/2.34.0_tbglwmj7t2rhd43mvxmptakoay: @@ -20522,7 +21585,7 @@ packages: debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.8 + semver: 7.3.7 tsutils: 3.21.0_typescript@4.9.3 typescript: 4.9.3 transitivePeerDependencies: @@ -20543,7 +21606,7 @@ packages: debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.8 + semver: 7.3.7 tsutils: 3.21.0_typescript@4.9.3 typescript: 4.9.3 transitivePeerDependencies: @@ -20786,20 +21849,18 @@ packages: hasBin: true dev: false - /@vitejs/plugin-react/2.0.1_vite@3.2.4: - resolution: {integrity: sha512-uINzNHmjrbunlFtyVkST6lY1ewSfz/XwLufG0PIqvLGnpk2nOIOa/1CACTDNcKi1/RwaCzJLmsXwm1NsUVV/NA==} + /@vitejs/plugin-react/3.1.0_vite@4.1.1: + resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - vite: ^3.0.0 + vite: ^4.1.0-beta.0 dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.18.10 - '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.18.10 - magic-string: 0.26.2 + '@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.27.0 react-refresh: 0.14.0 - vite: 3.2.4 + vite: 4.1.1 transitivePeerDependencies: - supports-color dev: true @@ -20807,7 +21868,7 @@ packages: /@vue/compiler-core/3.2.33: resolution: {integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw==} dependencies: - '@babel/parser': 7.18.11 + '@babel/parser': 7.20.13 '@vue/shared': 3.2.33 estree-walker: 2.0.2 source-map: 0.6.1 @@ -20826,7 +21887,7 @@ packages: resolution: {integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q==} requiresBuild: true dependencies: - '@babel/parser': 7.18.11 + '@babel/parser': 7.20.13 '@vue/compiler-core': 3.2.33 '@vue/compiler-dom': 3.2.33 '@vue/compiler-ssr': 3.2.33 @@ -20834,7 +21895,7 @@ packages: '@vue/shared': 3.2.33 estree-walker: 2.0.2 magic-string: 0.25.9 - postcss: 8.4.19 + postcss: 8.4.21 source-map: 0.6.1 dev: true optional: true @@ -20850,7 +21911,7 @@ packages: /@vue/reactivity-transform/3.2.33: resolution: {integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw==} dependencies: - '@babel/parser': 7.18.11 + '@babel/parser': 7.20.13 '@vue/compiler-core': 3.2.33 '@vue/shared': 3.2.33 estree-walker: 2.0.2 @@ -20871,7 +21932,7 @@ packages: '@walletconnect/window-getters': 1.0.0 '@walletconnect/window-metadata': 1.0.0 detect-browser: 5.2.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/client/1.7.3: @@ -20906,7 +21967,7 @@ packages: '@walletconnect/socket-transport': 1.7.8 '@walletconnect/types': 1.7.8 '@walletconnect/utils': 1.7.8 - tslib: 2.5.0 + tslib: 2.4.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -20920,21 +21981,21 @@ packages: '@walletconnect/randombytes': 1.0.2 aes-js: 3.1.2 hash.js: 1.1.7 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/encoding/1.0.1: resolution: {integrity: sha512-8opL2rs6N6E3tJfsqwS82aZQDL3gmupWUgmvuZ3CGU7z/InZs3R9jkzH8wmYtpbq0sFK3WkJkQRZFFk4BkrmFA==} dependencies: is-typedarray: 1.0.0 - tslib: 2.5.0 + tslib: 2.4.0 typedarray-to-buffer: 3.1.5 dev: false /@walletconnect/environment/1.0.0: resolution: {integrity: sha512-4BwqyWy6KpSvkocSaV7WR3BlZfrxLbJSLkg+j7Gl6pTDE+U55lLhJvQaMuDVazXYxcjBsG09k7UlH7cGiUI5vQ==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/iso-crypto/1.7.8: @@ -20944,14 +22005,14 @@ packages: '@walletconnect/encoding': 1.0.1 '@walletconnect/types': 1.7.8 '@walletconnect/utils': 1.7.8 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/jsonrpc-types/1.0.0: resolution: {integrity: sha512-11QXNq5H1PKZk7bP8SxgmCw3HRaDuPOVE+wObqEvmhc7OWYUZqfuaaMb+OXGRSOHL3sbC+XHfdeCxFTMXSFyng==} dependencies: keyvaluestorage-interface: 1.0.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/jsonrpc-utils/1.0.0: @@ -20959,7 +22020,7 @@ packages: dependencies: '@walletconnect/environment': 1.0.0 '@walletconnect/jsonrpc-types': 1.0.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/randombytes/1.0.2: @@ -20968,13 +22029,13 @@ packages: '@walletconnect/encoding': 1.0.1 '@walletconnect/environment': 1.0.0 randombytes: 2.1.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/safe-json/1.0.0: resolution: {integrity: sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/socket-transport/1.7.8: @@ -20982,7 +22043,7 @@ packages: dependencies: '@walletconnect/types': 1.7.8 '@walletconnect/utils': 1.7.8 - tslib: 2.5.0 + tslib: 2.4.0 ws: 7.5.3 transitivePeerDependencies: - bufferutil @@ -20992,7 +22053,7 @@ packages: /@walletconnect/types/1.7.8: resolution: {integrity: sha512-0oSZhKIrtXRJVP1jQ0EDTRtotQY6kggGjDcmm/LLQBKnOZXdPeo0sPkV/7DjT5plT3O7Cjc6JvuXt9WOY0hlCA==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/utils/1.7.8: @@ -21005,20 +22066,20 @@ packages: bn.js: 4.11.8 js-sha3: 0.8.0 query-string: 6.13.5 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/window-getters/1.0.0: resolution: {integrity: sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@walletconnect/window-metadata/1.0.0: resolution: {integrity: sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==} dependencies: '@walletconnect/window-getters': 1.0.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: false /@webassemblyjs/ast/1.11.1: @@ -22217,7 +23278,7 @@ packages: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 /astral-regex/1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} @@ -22454,12 +23515,12 @@ packages: - supports-color dev: true - /babel-core/7.0.0-bridge.0_@babel+core@7.18.10: + /babel-core/7.0.0-bridge.0_@babel+core@7.20.12: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 /babel-eslint/10.1.0_eslint@6.8.0: resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} @@ -22542,18 +23603,18 @@ packages: - supports-color dev: true - /babel-jest/24.9.0_@babel+core@7.18.10: + /babel-jest/24.9.0_@babel+core@7.20.12: resolution: {integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==} engines: {node: '>= 6'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/transform': 24.9.0 '@jest/types': 24.9.0 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 5.2.0 - babel-preset-jest: 24.9.0_@babel+core@7.18.10 + babel-preset-jest: 24.9.0_@babel+core@7.20.12 chalk: 2.4.2 slash: 2.0.0 transitivePeerDependencies: @@ -22617,18 +23678,18 @@ packages: - metro - supports-color - /babel-jest/27.5.1_@babel+core@7.18.10: + /babel-jest/27.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.18.10 + babel-preset-jest: 27.5.1_@babel+core@7.20.12 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -22637,17 +23698,17 @@ packages: - supports-color dev: false - /babel-jest/28.1.3_@babel+core@7.18.10: + /babel-jest/28.1.3_@babel+core@7.20.12: resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/transform': 28.1.3 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.18.10 + babel-preset-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -22656,17 +23717,17 @@ packages: - supports-color dev: true - /babel-jest/28.1.3_t4dc3ld2gdxymdcv4ou4caxzqu: + /babel-jest/28.1.3_okjo2qlwbydbhwsvujz5mo2jxm: resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/transform': 28.1.3_metro@0.67.0 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.18.10 + babel-preset-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -22705,14 +23766,14 @@ packages: schema-utils: 2.7.1 webpack: 4.42.0 - /babel-loader/8.2.5_5ouqwanl7jnotevpn4w6qovjqm: + /babel-loader/8.2.5_nwtvwtk5tmh22l2urnqucz7kqu: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -22774,9 +23835,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-typescript': 7.17.10 - '@babel/traverse': 7.18.11 + '@babel/traverse': 7.20.13 transitivePeerDependencies: - supports-color dev: false @@ -22810,7 +23871,7 @@ packages: resolution: {integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==} engines: {node: '>=6'} dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 find-up: 3.0.0 istanbul-lib-instrument: 3.3.0 test-exclude: 5.2.3 @@ -22839,8 +23900,8 @@ packages: resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/template': 7.16.7 - '@babel/types': 7.18.10 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -22849,8 +23910,8 @@ packages: resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.18.10 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 @@ -22858,8 +23919,8 @@ packages: resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.18.10 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 @@ -22937,13 +23998,25 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.18.10: + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.20.12: + resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.17.10 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.12 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.12: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.10 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.12 core-js-compat: 3.22.5 transitivePeerDependencies: - supports-color @@ -22981,6 +24054,17 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.20.12: + resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.12 + core-js-compat: 3.22.5 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-regenerator/0.3.1: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: @@ -23010,6 +24094,16 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.20.12: + resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + /babel-plugin-react-docgen/4.2.1: resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} dependencies: @@ -23092,24 +24186,24 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.10 - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.10: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.12: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 /babel-preset-expo/8.5.1_@babel+core@7.17.10: resolution: {integrity: sha512-qQVG6Twn7tymODw8cH+85QtzFqcD0ckLWgVLC8pzRkwLKP5lIs5gtiYdoUsvhvyWWesSFR9VlhN0HE2Nu7WCWQ==} @@ -23246,14 +24340,14 @@ packages: transitivePeerDependencies: - supports-color - /babel-preset-jest/24.9.0_@babel+core@7.18.10: + /babel-preset-jest/24.9.0_@babel+core@7.20.12: resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==} engines: {node: '>= 6'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 babel-plugin-jest-hoist: 24.9.0 /babel-preset-jest/24.9.0_@babel+core@7.9.0: @@ -23287,44 +24381,44 @@ packages: babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 - /babel-preset-jest/27.5.1_@babel+core@7.18.10: + /babel-preset-jest/27.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 dev: false - /babel-preset-jest/28.1.3_@babel+core@7.18.10: + /babel-preset-jest/28.1.3_@babel+core@7.20.12: resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 /babel-preset-react-app/10.0.1: resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.18.10 - '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 - '@babel/preset-react': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 + '@babel/preset-react': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 '@babel/runtime': 7.20.1 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 @@ -24102,8 +25196,8 @@ packages: resolution: {integrity: sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==} hasBin: true dependencies: - caniuse-lite: 1.0.30001340 - electron-to-chromium: 1.4.137 + caniuse-lite: 1.0.30001373 + electron-to-chromium: 1.4.210 node-releases: 1.1.77 pkg-up: 3.1.0 @@ -24625,7 +25719,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.5.0 + tslib: 2.4.0 /camelcase-css/2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} @@ -24681,7 +25775,7 @@ packages: /canvas-renderer/2.2.0: resolution: {integrity: sha512-Itdq9pwXcs4IbbkRCXc7reeGBk6i6tlDtZTjE1yc+KvYkx1Mt3WLf6tidZ/Ixbm7Vmi+jpWKG0dRBor67x9yGw==} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /capability/0.2.5: @@ -25904,7 +26998,7 @@ packages: vary: 1.1.2 dev: false - /cosmiconfig-typescript-loader/4.3.0_uq4wlhacw2oduszgsmiowqxege: + /cosmiconfig-typescript-loader/4.3.0_ljnzj3ucqtp2thhfw45pa4mg4a: resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -25913,9 +27007,9 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 cosmiconfig: 8.0.0 - ts-node: 10.9.1_zpnjiqgiyrygwbc62chkjhj6km + ts-node: 10.9.1_76bvzwqatfihmnr5dx42jk5azq typescript: 4.9.3 dev: true @@ -26185,13 +27279,13 @@ packages: postcss: 7.0.39 timsort: 0.3.0 - /css-declaration-sorter/6.3.0_postcss@8.4.19: + /css-declaration-sorter/6.3.0_postcss@8.4.21: resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /css-functions-list/3.1.0: @@ -26326,12 +27420,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.19 - postcss: 8.4.19 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.19 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.19 - postcss-modules-scope: 3.0.0_postcss@8.4.19 - postcss-modules-values: 4.0.0_postcss@8.4.19 + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.21 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.21 + postcss-modules-scope: 3.0.0_postcss@8.4.21 + postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.7 webpack: 5.72.1 @@ -26356,9 +27450,9 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.12_postcss@8.4.19 + cssnano: 5.1.12_postcss@8.4.21 jest-worker: 27.5.1 - postcss: 8.4.19 + postcss: 8.4.21 schema-utils: 4.0.0 serialize-javascript: 6.0.0 source-map: 0.6.1 @@ -26525,42 +27619,42 @@ packages: postcss-svgo: 4.0.3 postcss-unique-selectors: 4.0.1 - /cssnano-preset-default/5.2.12_postcss@8.4.19: + /cssnano-preset-default/5.2.12_postcss@8.4.21: resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.0_postcss@8.4.19 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 - postcss-calc: 8.2.4_postcss@8.4.19 - postcss-colormin: 5.3.0_postcss@8.4.19 - postcss-convert-values: 5.1.2_postcss@8.4.19 - postcss-discard-comments: 5.1.2_postcss@8.4.19 - postcss-discard-duplicates: 5.1.0_postcss@8.4.19 - postcss-discard-empty: 5.1.1_postcss@8.4.19 - postcss-discard-overridden: 5.1.0_postcss@8.4.19 - postcss-merge-longhand: 5.1.6_postcss@8.4.19 - postcss-merge-rules: 5.1.2_postcss@8.4.19 - postcss-minify-font-values: 5.1.0_postcss@8.4.19 - postcss-minify-gradients: 5.1.1_postcss@8.4.19 - postcss-minify-params: 5.1.3_postcss@8.4.19 - postcss-minify-selectors: 5.2.1_postcss@8.4.19 - postcss-normalize-charset: 5.1.0_postcss@8.4.19 - postcss-normalize-display-values: 5.1.0_postcss@8.4.19 - postcss-normalize-positions: 5.1.1_postcss@8.4.19 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.19 - postcss-normalize-string: 5.1.0_postcss@8.4.19 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.19 - postcss-normalize-unicode: 5.1.0_postcss@8.4.19 - postcss-normalize-url: 5.1.0_postcss@8.4.19 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.19 - postcss-ordered-values: 5.1.3_postcss@8.4.19 - postcss-reduce-initial: 5.1.0_postcss@8.4.19 - postcss-reduce-transforms: 5.1.0_postcss@8.4.19 - postcss-svgo: 5.1.0_postcss@8.4.19 - postcss-unique-selectors: 5.1.1_postcss@8.4.19 + css-declaration-sorter: 6.3.0_postcss@8.4.21 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-calc: 8.2.4_postcss@8.4.21 + postcss-colormin: 5.3.0_postcss@8.4.21 + postcss-convert-values: 5.1.2_postcss@8.4.21 + postcss-discard-comments: 5.1.2_postcss@8.4.21 + postcss-discard-duplicates: 5.1.0_postcss@8.4.21 + postcss-discard-empty: 5.1.1_postcss@8.4.21 + postcss-discard-overridden: 5.1.0_postcss@8.4.21 + postcss-merge-longhand: 5.1.6_postcss@8.4.21 + postcss-merge-rules: 5.1.2_postcss@8.4.21 + postcss-minify-font-values: 5.1.0_postcss@8.4.21 + postcss-minify-gradients: 5.1.1_postcss@8.4.21 + postcss-minify-params: 5.1.3_postcss@8.4.21 + postcss-minify-selectors: 5.2.1_postcss@8.4.21 + postcss-normalize-charset: 5.1.0_postcss@8.4.21 + postcss-normalize-display-values: 5.1.0_postcss@8.4.21 + postcss-normalize-positions: 5.1.1_postcss@8.4.21 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21 + postcss-normalize-string: 5.1.0_postcss@8.4.21 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21 + postcss-normalize-unicode: 5.1.0_postcss@8.4.21 + postcss-normalize-url: 5.1.0_postcss@8.4.21 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.21 + postcss-ordered-values: 5.1.3_postcss@8.4.21 + postcss-reduce-initial: 5.1.0_postcss@8.4.21 + postcss-reduce-transforms: 5.1.0_postcss@8.4.21 + postcss-svgo: 5.1.0_postcss@8.4.21 + postcss-unique-selectors: 5.1.1_postcss@8.4.21 dev: false /cssnano-util-get-arguments/4.0.0: @@ -26581,13 +27675,13 @@ packages: resolution: {integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==} engines: {node: '>=6.9.0'} - /cssnano-utils/3.1.0_postcss@8.4.19: + /cssnano-utils/3.1.0_postcss@8.4.21: resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /cssnano/4.1.11: @@ -26599,15 +27693,15 @@ packages: is-resolvable: 1.1.0 postcss: 7.0.39 - /cssnano/5.1.12_postcss@8.4.19: + /cssnano/5.1.12_postcss@8.4.21: resolution: {integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.12_postcss@8.4.19 + cssnano-preset-default: 5.2.12_postcss@8.4.21 lilconfig: 2.0.6 - postcss: 8.4.19 + postcss: 8.4.21 yaml: 1.10.2 dev: false @@ -27694,7 +28788,7 @@ packages: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.5.0 + tslib: 2.4.0 /dot-prop/5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} @@ -27741,7 +28835,7 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-is: 17.0.2 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /dtrace-provider/0.8.8: @@ -28300,24 +29394,6 @@ packages: sliced: 1.0.1 dev: true - /esbuild-android-64/0.14.49: - resolution: {integrity: sha512-vYsdOTD+yi+kquhBiFWl3tyxnj2qZJsl4tAqwhT90ktUdnyTizgle7TjNx6Ar1bN7wcwWqZ9QInfdk2WVagSww==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /esbuild-android-64/0.15.15: - resolution: {integrity: sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - /esbuild-android-64/0.15.5: resolution: {integrity: sha512-dYPPkiGNskvZqmIK29OPxolyY3tp+c47+Fsc2WYSOVjEPWNCHNyqhtFqQadcXMJDQt8eN0NMDukbyQgFcHquXg==} engines: {node: '>=12'} @@ -28334,24 +29410,6 @@ packages: requiresBuild: true optional: true - /esbuild-android-arm64/0.14.49: - resolution: {integrity: sha512-g2HGr/hjOXCgSsvQZ1nK4nW/ei8JUx04Li74qub9qWrStlysaVmadRyTVuW32FGIpLQyc5sUjjZopj49eGGM2g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /esbuild-android-arm64/0.15.15: - resolution: {integrity: sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - /esbuild-android-arm64/0.15.5: resolution: {integrity: sha512-YyEkaQl08ze3cBzI/4Cm1S+rVh8HMOpCdq8B78JLbNFHhzi4NixVN93xDrHZLztlocEYqi45rHHCgA8kZFidFg==} engines: {node: '>=12'} @@ -28368,24 +29426,6 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-64/0.14.49: - resolution: {integrity: sha512-3rvqnBCtX9ywso5fCHixt2GBCUsogNp9DjGmvbBohh31Ces34BVzFltMSxJpacNki96+WIcX5s/vum+ckXiLYg==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /esbuild-darwin-64/0.15.15: - resolution: {integrity: sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /esbuild-darwin-64/0.15.5: resolution: {integrity: sha512-Cr0iIqnWKx3ZTvDUAzG0H/u9dWjLE4c2gTtRLz4pqOBGjfjqdcZSfAObFzKTInLLSmD0ZV1I/mshhPoYSBMMCQ==} engines: {node: '>=12'} @@ -28402,24 +29442,6 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-arm64/0.14.49: - resolution: {integrity: sha512-XMaqDxO846srnGlUSJnwbijV29MTKUATmOLyQSfswbK/2X5Uv28M9tTLUJcKKxzoo9lnkYPsx2o8EJcTYwCs/A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /esbuild-darwin-arm64/0.15.15: - resolution: {integrity: sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /esbuild-darwin-arm64/0.15.5: resolution: {integrity: sha512-WIfQkocGtFrz7vCu44ypY5YmiFXpsxvz2xqwe688jFfSVCnUsCn2qkEVDo7gT8EpsLOz1J/OmqjExePL1dr1Kg==} engines: {node: '>=12'} @@ -28436,24 +29458,6 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-64/0.14.49: - resolution: {integrity: sha512-NJ5Q6AjV879mOHFri+5lZLTp5XsO2hQ+KSJYLbfY9DgCu8s6/Zl2prWXVANYTeCDLlrIlNNYw8y34xqyLDKOmQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-freebsd-64/0.15.15: - resolution: {integrity: sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /esbuild-freebsd-64/0.15.5: resolution: {integrity: sha512-M5/EfzV2RsMd/wqwR18CELcenZ8+fFxQAAEO7TJKDmP3knhWSbD72ILzrXFMMwshlPAS1ShCZ90jsxkm+8FlaA==} engines: {node: '>=12'} @@ -28470,24 +29474,6 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.14.49: - resolution: {integrity: sha512-lFLtgXnAc3eXYqj5koPlBZvEbBSOSUbWO3gyY/0+4lBdRqELyz4bAuamHvmvHW5swJYL7kngzIZw6kdu25KGOA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-freebsd-arm64/0.15.15: - resolution: {integrity: sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - /esbuild-freebsd-arm64/0.15.5: resolution: {integrity: sha512-2JQQ5Qs9J0440F/n/aUBNvY6lTo4XP/4lt1TwDfHuo0DY3w5++anw+jTjfouLzbJmFFiwmX7SmUhMnysocx96w==} engines: {node: '>=12'} @@ -28504,24 +29490,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-32/0.14.49: - resolution: {integrity: sha512-zTTH4gr2Kb8u4QcOpTDVn7Z8q7QEIvFl/+vHrI3cF6XOJS7iEI1FWslTo3uofB2+mn6sIJEQD9PrNZKoAAMDiA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-32/0.15.15: - resolution: {integrity: sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-32/0.15.5: resolution: {integrity: sha512-gO9vNnIN0FTUGjvTFucIXtBSr1Woymmx/aHQtuU+2OllGU6YFLs99960UD4Dib1kFovVgs59MTXwpFdVoSMZoQ==} engines: {node: '>=12'} @@ -28538,24 +29506,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-64/0.14.49: - resolution: {integrity: sha512-hYmzRIDzFfLrB5c1SknkxzM8LdEUOusp6M2TnuQZJLRtxTgyPnZZVtyMeCLki0wKgYPXkFsAVhi8vzo2mBNeTg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-64/0.15.15: - resolution: {integrity: sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-64/0.15.5: resolution: {integrity: sha512-ne0GFdNLsm4veXbTnYAWjbx3shpNKZJUd6XpNbKNUZaNllDZfYQt0/zRqOg0sc7O8GQ+PjSMv9IpIEULXVTVmg==} engines: {node: '>=12'} @@ -28572,24 +29522,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm/0.14.49: - resolution: {integrity: sha512-iE3e+ZVv1Qz1Sy0gifIsarJMQ89Rpm9mtLSRtG3AH0FPgAzQ5Z5oU6vYzhc/3gSPi2UxdCOfRhw2onXuFw/0lg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-arm/0.15.15: - resolution: {integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-arm/0.15.5: resolution: {integrity: sha512-wvAoHEN+gJ/22gnvhZnS/+2H14HyAxM07m59RSLn3iXrQsdS518jnEWRBnJz3fR6BJa+VUTo0NxYjGaNt7RA7Q==} engines: {node: '>=12'} @@ -28606,24 +29538,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm64/0.14.49: - resolution: {integrity: sha512-KLQ+WpeuY+7bxukxLz5VgkAAVQxUv67Ft4DmHIPIW+2w3ObBPQhqNoeQUHxopoW/aiOn3m99NSmSV+bs4BSsdA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-arm64/0.15.15: - resolution: {integrity: sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-arm64/0.15.5: resolution: {integrity: sha512-7EgFyP2zjO065XTfdCxiXVEk+f83RQ1JsryN1X/VSX2li9rnHAt2swRbpoz5Vlrl6qjHrCmq5b6yxD13z6RheA==} engines: {node: '>=12'} @@ -28640,24 +29554,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-mips64le/0.14.49: - resolution: {integrity: sha512-n+rGODfm8RSum5pFIqFQVQpYBw+AztL8s6o9kfx7tjfK0yIGF6tm5HlG6aRjodiiKkH2xAiIM+U4xtQVZYU4rA==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-mips64le/0.15.15: - resolution: {integrity: sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-mips64le/0.15.5: resolution: {integrity: sha512-KdnSkHxWrJ6Y40ABu+ipTZeRhFtc8dowGyFsZY5prsmMSr1ZTG9zQawguN4/tunJ0wy3+kD54GaGwdcpwWAvZQ==} engines: {node: '>=12'} @@ -28674,24 +29570,6 @@ packages: requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.14.49: - resolution: {integrity: sha512-WP9zR4HX6iCBmMFH+XHHng2LmdoIeUmBpL4aL2TR8ruzXyT4dWrJ5BSbT8iNo6THN8lod6GOmYDLq/dgZLalGw==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-ppc64le/0.15.15: - resolution: {integrity: sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-ppc64le/0.15.5: resolution: {integrity: sha512-QdRHGeZ2ykl5P0KRmfGBZIHmqcwIsUKWmmpZTOq573jRWwmpfRmS7xOhmDHBj9pxv+6qRMH8tLr2fe+ZKQvCYw==} engines: {node: '>=12'} @@ -28701,24 +29579,6 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.14.49: - resolution: {integrity: sha512-h66ORBz+Dg+1KgLvzTVQEA1LX4XBd1SK0Fgbhhw4akpG/YkN8pS6OzYI/7SGENiN6ao5hETRDSkVcvU9NRtkMQ==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-riscv64/0.15.15: - resolution: {integrity: sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-riscv64/0.15.5: resolution: {integrity: sha512-p+WE6RX+jNILsf+exR29DwgV6B73khEQV0qWUbzxaycxawZ8NE0wA6HnnTxbiw5f4Gx9sJDUBemh9v49lKOORA==} engines: {node: '>=12'} @@ -28728,24 +29588,6 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.14.49: - resolution: {integrity: sha512-DhrUoFVWD+XmKO1y7e4kNCqQHPs6twz6VV6Uezl/XHYGzM60rBewBF5jlZjG0nCk5W/Xy6y1xWeopkrhFFM0sQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /esbuild-linux-s390x/0.15.15: - resolution: {integrity: sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - /esbuild-linux-s390x/0.15.5: resolution: {integrity: sha512-J2ngOB4cNzmqLHh6TYMM/ips8aoZIuzxJnDdWutBw5482jGXiOzsPoEF4j2WJ2mGnm7FBCO4StGcwzOgic70JQ==} engines: {node: '>=12'} @@ -28755,19 +29597,6 @@ packages: dev: true optional: true - /esbuild-loader/2.19.0: - resolution: {integrity: sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q==} - peerDependencies: - webpack: ^4.40.0 || ^5.0.0 - dependencies: - esbuild: 0.14.49 - joycon: 3.1.1 - json5: 2.2.1 - loader-utils: 2.0.2 - tapable: 2.2.1 - webpack-sources: 2.3.1 - dev: true - /esbuild-netbsd-64/0.13.15: resolution: {integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==} cpu: [x64] @@ -28775,24 +29604,6 @@ packages: requiresBuild: true optional: true - /esbuild-netbsd-64/0.14.49: - resolution: {integrity: sha512-BXaUwFOfCy2T+hABtiPUIpWjAeWK9P8O41gR4Pg73hpzoygVGnj0nI3YK4SJhe52ELgtdgWP/ckIkbn2XaTxjQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-netbsd-64/0.15.15: - resolution: {integrity: sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - /esbuild-netbsd-64/0.15.5: resolution: {integrity: sha512-MmKUYGDizYjFia0Rwt8oOgmiFH7zaYlsoQ3tIOfPxOqLssAsEgG0MUdRDm5lliqjiuoog8LyDu9srQk5YwWF3w==} engines: {node: '>=12'} @@ -28809,24 +29620,6 @@ packages: requiresBuild: true optional: true - /esbuild-openbsd-64/0.14.49: - resolution: {integrity: sha512-lP06UQeLDGmVPw9Rg437Btu6J9/BmyhdoefnQ4gDEJTtJvKtQaUcOQrhjTq455ouZN4EHFH1h28WOJVANK41kA==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /esbuild-openbsd-64/0.15.15: - resolution: {integrity: sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - /esbuild-openbsd-64/0.15.5: resolution: {integrity: sha512-2mMFfkLk3oPWfopA9Plj4hyhqHNuGyp5KQyTT9Rc8hFd8wAn5ZrbJg+gNcLMo2yzf8Uiu0RT6G9B15YN9WQyMA==} engines: {node: '>=12'} @@ -28849,24 +29642,6 @@ packages: requiresBuild: true optional: true - /esbuild-sunos-64/0.14.49: - resolution: {integrity: sha512-4c8Zowp+V3zIWje329BeLbGh6XI9c/rqARNaj5yPHdC61pHI9UNdDxT3rePPJeWcEZVKjkiAS6AP6kiITp7FSw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /esbuild-sunos-64/0.15.15: - resolution: {integrity: sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - /esbuild-sunos-64/0.15.5: resolution: {integrity: sha512-2sIzhMUfLNoD+rdmV6AacilCHSxZIoGAU2oT7XmJ0lXcZWnCvCtObvO6D4puxX9YRE97GodciRGDLBaiC6x1SA==} engines: {node: '>=12'} @@ -28883,24 +29658,6 @@ packages: requiresBuild: true optional: true - /esbuild-windows-32/0.14.49: - resolution: {integrity: sha512-q7Rb+J9yHTeKr9QTPDYkqfkEj8/kcKz9lOabDuvEXpXuIcosWCJgo5Z7h/L4r7rbtTH4a8U2FGKb6s1eeOHmJA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /esbuild-windows-32/0.15.15: - resolution: {integrity: sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild-windows-32/0.15.5: resolution: {integrity: sha512-e+duNED9UBop7Vnlap6XKedA/53lIi12xv2ebeNS4gFmu7aKyTrok7DPIZyU5w/ftHD4MUDs5PJUkQPP9xJRzg==} engines: {node: '>=12'} @@ -28917,24 +29674,6 @@ packages: requiresBuild: true optional: true - /esbuild-windows-64/0.14.49: - resolution: {integrity: sha512-+Cme7Ongv0UIUTniPqfTX6mJ8Deo7VXw9xN0yJEN1lQMHDppTNmKwAM3oGbD/Vqff+07K2gN0WfNkMohmG+dVw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /esbuild-windows-64/0.15.15: - resolution: {integrity: sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild-windows-64/0.15.5: resolution: {integrity: sha512-v+PjvNtSASHOjPDMIai9Yi+aP+Vwox+3WVdg2JB8N9aivJ7lyhp4NVU+J0MV2OkWFPnVO8AE/7xH+72ibUUEnw==} engines: {node: '>=12'} @@ -28951,24 +29690,6 @@ packages: requiresBuild: true optional: true - /esbuild-windows-arm64/0.14.49: - resolution: {integrity: sha512-v+HYNAXzuANrCbbLFJ5nmO3m5y2PGZWLe3uloAkLt87aXiO2mZr3BTmacZdjwNkNEHuH3bNtN8cak+mzVjVPfA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /esbuild-windows-arm64/0.15.15: - resolution: {integrity: sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /esbuild-windows-arm64/0.15.5: resolution: {integrity: sha512-Yz8w/D8CUPYstvVQujByu6mlf48lKmXkq6bkeSZZxTA626efQOJb26aDGLzmFWx6eg/FwrXgt6SZs9V8Pwy/aA==} engines: {node: '>=12'} @@ -29001,64 +29722,6 @@ packages: esbuild-windows-64: 0.13.15 esbuild-windows-arm64: 0.13.15 - /esbuild/0.14.49: - resolution: {integrity: sha512-/TlVHhOaq7Yz8N1OJrjqM3Auzo5wjvHFLk+T8pIue+fhnhIMpfAzsG6PLVMbFveVxqD2WOp3QHei+52IMUNmCw==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - esbuild-android-64: 0.14.49 - esbuild-android-arm64: 0.14.49 - esbuild-darwin-64: 0.14.49 - esbuild-darwin-arm64: 0.14.49 - esbuild-freebsd-64: 0.14.49 - esbuild-freebsd-arm64: 0.14.49 - esbuild-linux-32: 0.14.49 - esbuild-linux-64: 0.14.49 - esbuild-linux-arm: 0.14.49 - esbuild-linux-arm64: 0.14.49 - esbuild-linux-mips64le: 0.14.49 - esbuild-linux-ppc64le: 0.14.49 - esbuild-linux-riscv64: 0.14.49 - esbuild-linux-s390x: 0.14.49 - esbuild-netbsd-64: 0.14.49 - esbuild-openbsd-64: 0.14.49 - esbuild-sunos-64: 0.14.49 - esbuild-windows-32: 0.14.49 - esbuild-windows-64: 0.14.49 - esbuild-windows-arm64: 0.14.49 - dev: true - - /esbuild/0.15.15: - resolution: {integrity: sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.15.15 - '@esbuild/linux-loong64': 0.15.15 - esbuild-android-64: 0.15.15 - esbuild-android-arm64: 0.15.15 - esbuild-darwin-64: 0.15.15 - esbuild-darwin-arm64: 0.15.15 - esbuild-freebsd-64: 0.15.15 - esbuild-freebsd-arm64: 0.15.15 - esbuild-linux-32: 0.15.15 - esbuild-linux-64: 0.15.15 - esbuild-linux-arm: 0.15.15 - esbuild-linux-arm64: 0.15.15 - esbuild-linux-mips64le: 0.15.15 - esbuild-linux-ppc64le: 0.15.15 - esbuild-linux-riscv64: 0.15.15 - esbuild-linux-s390x: 0.15.15 - esbuild-netbsd-64: 0.15.15 - esbuild-openbsd-64: 0.15.15 - esbuild-sunos-64: 0.15.15 - esbuild-windows-32: 0.15.15 - esbuild-windows-64: 0.15.15 - esbuild-windows-arm64: 0.15.15 - dev: true - /esbuild/0.15.5: resolution: {integrity: sha512-VSf6S1QVqvxfIsSKb3UKr3VhUCis7wgDbtF4Vd9z84UJr05/Sp2fRKmzC+CSPG/dNAPPJZ0BTBLTT1Fhd6N9Gg==} engines: {node: '>=12'} @@ -29088,6 +29751,66 @@ packages: esbuild-windows-arm64: 0.15.5 dev: true + /esbuild/0.16.17: + resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.16.17 + '@esbuild/android-arm64': 0.16.17 + '@esbuild/android-x64': 0.16.17 + '@esbuild/darwin-arm64': 0.16.17 + '@esbuild/darwin-x64': 0.16.17 + '@esbuild/freebsd-arm64': 0.16.17 + '@esbuild/freebsd-x64': 0.16.17 + '@esbuild/linux-arm': 0.16.17 + '@esbuild/linux-arm64': 0.16.17 + '@esbuild/linux-ia32': 0.16.17 + '@esbuild/linux-loong64': 0.16.17 + '@esbuild/linux-mips64el': 0.16.17 + '@esbuild/linux-ppc64': 0.16.17 + '@esbuild/linux-riscv64': 0.16.17 + '@esbuild/linux-s390x': 0.16.17 + '@esbuild/linux-x64': 0.16.17 + '@esbuild/netbsd-x64': 0.16.17 + '@esbuild/openbsd-x64': 0.16.17 + '@esbuild/sunos-x64': 0.16.17 + '@esbuild/win32-arm64': 0.16.17 + '@esbuild/win32-ia32': 0.16.17 + '@esbuild/win32-x64': 0.16.17 + dev: true + + /esbuild/0.17.5: + resolution: {integrity: sha512-Bu6WLCc9NMsNoMJUjGl3yBzTjVLXdysMltxQWiLAypP+/vQrf+3L1Xe8fCXzxaECus2cEJ9M7pk4yKatEwQMqQ==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.5 + '@esbuild/android-arm64': 0.17.5 + '@esbuild/android-x64': 0.17.5 + '@esbuild/darwin-arm64': 0.17.5 + '@esbuild/darwin-x64': 0.17.5 + '@esbuild/freebsd-arm64': 0.17.5 + '@esbuild/freebsd-x64': 0.17.5 + '@esbuild/linux-arm': 0.17.5 + '@esbuild/linux-arm64': 0.17.5 + '@esbuild/linux-ia32': 0.17.5 + '@esbuild/linux-loong64': 0.17.5 + '@esbuild/linux-mips64el': 0.17.5 + '@esbuild/linux-ppc64': 0.17.5 + '@esbuild/linux-riscv64': 0.17.5 + '@esbuild/linux-s390x': 0.17.5 + '@esbuild/linux-x64': 0.17.5 + '@esbuild/netbsd-x64': 0.17.5 + '@esbuild/openbsd-x64': 0.17.5 + '@esbuild/sunos-x64': 0.17.5 + '@esbuild/win32-arm64': 0.17.5 + '@esbuild/win32-ia32': 0.17.5 + '@esbuild/win32-x64': 0.17.5 + dev: true + /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -29283,8 +30006,8 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.10 - '@babel/eslint-parser': 7.18.9_qduvoe7pjsglgq7qckbm7gljwi + '@babel/core': 7.20.12 + '@babel/eslint-parser': 7.18.9_plrnlghpmvninluqjefgduuqei '@rushstack/eslint-patch': 1.1.4 '@typescript-eslint/eslint-plugin': 5.43.0_gkfkxuwo3gmffvr656g3nfnk6e '@typescript-eslint/parser': 5.43.0_wdqgoy3juh7r2u2b4n4o4ol5rq @@ -30708,8 +31431,8 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 c8: 7.11.2 transitivePeerDependencies: - supports-color @@ -32488,7 +33211,7 @@ packages: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} engines: {node: '>= 12'} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 dev: false /file-system-cache/1.0.5: @@ -34164,7 +34887,7 @@ packages: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: graphql: 15.8.0 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /graphql/15.8.0: @@ -34206,7 +34929,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.17.4 + uglify-js: 3.16.0 /har-schema/2.0.0: resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} @@ -34964,13 +35687,13 @@ packages: dependencies: postcss: 7.0.39 - /icss-utils/5.1.0_postcss@8.4.19: + /icss-utils/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /idb/7.0.1: @@ -36060,11 +36783,11 @@ packages: resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==} engines: {node: '>=6'} dependencies: - '@babel/generator': 7.17.10 - '@babel/parser': 7.18.11 - '@babel/template': 7.16.7 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/generator': 7.20.14 + '@babel/parser': 7.20.13 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 istanbul-lib-coverage: 2.0.5 semver: 6.3.0 transitivePeerDependencies: @@ -36074,7 +36797,7 @@ packages: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -36086,7 +36809,7 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/parser': 7.18.11 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -36248,7 +36971,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -36527,10 +37250,10 @@ packages: resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==} engines: {node: '>= 6'} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 24.9.0 '@jest/types': 24.9.0 - babel-jest: 24.9.0_@babel+core@7.18.10 + babel-jest: 24.9.0_@babel+core@7.20.12 chalk: 2.4.2 glob: 7.2.3 jest-environment-jsdom: 24.9.0 @@ -36559,10 +37282,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.18.10 + babel-jest: 27.5.1_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36603,10 +37326,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - babel-jest: 28.1.3_@babel+core@7.18.10 + babel-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36642,11 +37365,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 14.18.17 - babel-jest: 28.1.3_@babel+core@7.18.10 + babel-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36682,11 +37405,51 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 17.0.32 - babel-jest: 28.1.3_@babel+core@7.18.10 + babel-jest: 28.1.3_@babel+core@7.20.12 + chalk: 4.1.2 + ci-info: 3.3.2 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - metro + - supports-color + dev: true + + /jest-config/28.1.3_@types+node@18.11.18: + resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.20.12 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 18.11.18 + babel-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36722,11 +37485,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 16.11.12 - babel-jest: 28.1.3_@babel+core@7.18.10 + babel-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36763,10 +37526,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3_metro@0.67.0 '@jest/types': 28.1.3 - babel-jest: 28.1.3_t4dc3ld2gdxymdcv4ou4caxzqu + babel-jest: 28.1.3_okjo2qlwbydbhwsvujz5mo2jxm chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36801,11 +37564,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 17.0.32 - babel-jest: 28.1.3_@babel+core@7.18.10 + babel-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36842,11 +37605,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3_metro@0.67.0 '@jest/types': 28.1.3 '@types/node': 17.0.32 - babel-jest: 28.1.3_t4dc3ld2gdxymdcv4ou4caxzqu + babel-jest: 28.1.3_okjo2qlwbydbhwsvujz5mo2jxm chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -36996,7 +37759,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -37046,7 +37809,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 jest-mock: 27.5.1 jest-util: 27.5.1 dev: false @@ -37058,7 +37821,7 @@ packages: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -37125,7 +37888,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.32 + '@types/node': 18.11.18 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -37149,7 +37912,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.32 + '@types/node': 18.11.18 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -37215,7 +37978,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.32 + '@types/node': 18.11.18 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -37235,7 +37998,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.32 + '@types/node': 18.11.18 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -37255,7 +38018,7 @@ packages: dependencies: '@jest/types': 29.3.1 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.32 + '@types/node': 18.11.18 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -37273,7 +38036,7 @@ packages: resolution: {integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==} engines: {node: '>= 6'} dependencies: - '@babel/traverse': 7.18.11 + '@babel/traverse': 7.20.13 '@jest/environment': 24.9.0 '@jest/test-result': 24.9.0 '@jest/types': 24.9.0 @@ -37301,7 +38064,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -37446,7 +38209,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 dev: false /jest-mock/28.1.3: @@ -37454,7 +38217,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 /jest-mock/29.3.1: resolution: {integrity: sha512-H8/qFDtDVMFvFP4X8NuOT3XRDzOUTz+FeACjufHzsOIBAxivLqkB1PoLCaJx9iPPQ8dZThHPp/G3WRWyMgA3JA==} @@ -37660,7 +38423,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.10 @@ -37693,7 +38456,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 @@ -37723,7 +38486,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3_metro@0.67.0 '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 @@ -37877,7 +38640,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 graceful-fs: 4.2.10 dev: true @@ -37885,14 +38648,14 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 graceful-fs: 4.2.10 /jest-snapshot/24.9.0: resolution: {integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==} engines: {node: '>= 6'} dependencies: - '@babel/types': 7.18.10 + '@babel/types': 7.20.7 '@jest/types': 24.9.0 chalk: 2.4.2 expect: 24.9.0 @@ -37912,16 +38675,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.17.10 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.18.10 - '@babel/traverse': 7.18.11 - '@babel/types': 7.18.10 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.14 + '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.20.12 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.10 @@ -37943,9 +38706,9 @@ packages: resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/generator': 7.17.10 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.18.10 + '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.20.12 '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 '@jest/expect-utils': 28.1.3 @@ -37953,7 +38716,7 @@ packages: '@jest/types': 28.1.3 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.10 @@ -37975,9 +38738,9 @@ packages: resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/generator': 7.17.10 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.18.10 + '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.20.12 '@babel/traverse': 7.18.11 '@babel/types': 7.18.10 '@jest/expect-utils': 28.1.3 @@ -37985,7 +38748,7 @@ packages: '@jest/types': 28.1.3 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12 chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.10 @@ -38026,7 +38789,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 @@ -38038,7 +38801,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 chalk: 4.1.2 ci-info: 3.3.2 graceful-fs: 4.2.10 @@ -38160,7 +38923,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.32 + '@types/node': 18.11.18 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -38173,7 +38936,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 17.0.32 + '@types/node': 18.11.18 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -38240,7 +39003,7 @@ packages: metro: optional: true dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -38253,7 +39016,7 @@ packages: metro: optional: true dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 merge-stream: 2.0.0 metro: 0.67.0 supports-color: 8.1.1 @@ -38267,7 +39030,7 @@ packages: metro: optional: true dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 merge-stream: 2.0.0 metro: 0.67.0 supports-color: 8.1.1 @@ -38281,7 +39044,7 @@ packages: metro: optional: true dependencies: - '@types/node': 17.0.32 + '@types/node': 18.11.18 merge-stream: 2.0.0 metro: 0.67.0 supports-color: 8.1.1 @@ -38602,16 +39365,16 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.18.10 - '@babel/parser': 7.18.11 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.18.10 - '@babel/preset-flow': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/parser': 7.20.13 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.20.12 + '@babel/preset-flow': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 + babel-core: 7.0.0-bridge.0_@babel+core@7.20.12 colors: 1.4.0 flow-parser: 0.182.0 graceful-fs: 4.2.10 @@ -38631,16 +39394,16 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.18.10 - '@babel/parser': 7.18.11 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.18.10 - '@babel/preset-flow': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/parser': 7.20.13 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.20.12 + '@babel/preset-flow': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 + babel-core: 7.0.0-bridge.0_@babel+core@7.20.12 chalk: 4.1.2 flow-parser: 0.182.0 graceful-fs: 4.2.10 @@ -38659,17 +39422,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.18.10 - '@babel/parser': 7.18.11 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/parser': 7.20.13 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.20.12 '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-flow': 7.16.7_@babel+core@7.18.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 - babel-core: 7.0.0-bridge.0_@babel+core@7.18.10 + '@babel/preset-flow': 7.16.7_@babel+core@7.20.12 + '@babel/preset-typescript': 7.16.7_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 + babel-core: 7.0.0-bridge.0_@babel+core@7.20.12 chalk: 4.1.2 flow-parser: 0.182.0 graceful-fs: 4.2.10 @@ -38881,7 +39644,7 @@ packages: hasBin: true /jsesc/1.3.0: - resolution: {integrity: sha1-RsP+yMGJKxKwgz25vHYiF226s0s=} + resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} hasBin: true dev: true @@ -38989,6 +39752,11 @@ packages: engines: {node: '>=6'} hasBin: true + /json5/2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + /jsonc-parser/3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} dev: true @@ -39409,8 +40177,8 @@ packages: /konan/2.1.1: resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==} dependencies: - '@babel/parser': 7.18.11 - '@babel/traverse': 7.18.11 + '@babel/parser': 7.20.13 + '@babel/traverse': 7.20.13 transitivePeerDependencies: - supports-color dev: true @@ -39831,7 +40599,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.1 + json5: 2.2.3 dev: true /loader-utils/2.0.2: @@ -40181,7 +40949,7 @@ packages: /lower-case/2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 /lowercase-keys/1.0.0: resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==} @@ -40388,11 +41156,11 @@ packages: dependencies: sourcemap-codec: 1.4.8 - /magic-string/0.26.2: - resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} + /magic-string/0.27.0: + resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} dependencies: - sourcemap-codec: 1.4.8 + '@jridgewell/sourcemap-codec': 1.4.14 dev: true /make-dir/2.1.0: @@ -40774,13 +41542,13 @@ packages: /metro-babel-register/0.66.2: resolution: {integrity: sha512-3F+vsVubUPJYKfVMeol8/7pd8CC287Rw92QYzJD8LEmI980xcgwMUEVBZ0UIAUwlLgiJG/f4Mwhuji2EeBXrPg==} dependencies: - '@babel/core': 7.18.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.18.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.18.10 - '@babel/register': 7.17.7_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.20.12 + '@babel/register': 7.17.7_@babel+core@7.20.12 escape-string-regexp: 1.0.5 transitivePeerDependencies: - supports-color @@ -40788,7 +41556,7 @@ packages: /metro-babel-transformer/0.67.0: resolution: {integrity: sha512-SBqc4nq/dgsPNFm+mpWcQQzJaXnh0nrfz2pSnZC4i6zMtIakrTWb8SQ78jOU1FZVEZ3nu9xCYVHS9Tbr/LoEuw==} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 hermes-parser: 0.5.0 metro-source-map: 0.67.0 nullthrows: 1.1.1 @@ -40910,8 +41678,8 @@ packages: '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.10 '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.17.10 - '@babel/plugin-transform-react-jsx-self': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.17.10 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.17.10 '@babel/plugin-transform-regenerator': 7.17.9_@babel+core@7.17.10 '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 @@ -40920,7 +41688,7 @@ packages: '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.10 '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.10 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -41110,8 +41878,8 @@ packages: /metro-source-map/0.66.2: resolution: {integrity: sha512-038tFmB7vSh73VQcDWIbr5O1m+WXWyYafDaOy+1A/2K308YP0oj33gbEgDnZsLZDwcJ+xt1x6KUEBIzlX4YGeQ==} dependencies: - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.20.13 + '@babel/types': 7.20.7 invariant: 2.2.4 metro-symbolicate: 0.66.2 nullthrows: 1.1.1 @@ -41166,7 +41934,7 @@ packages: /metro-transform-plugins/0.67.0: resolution: {integrity: sha512-DQFoSDIJdTMPDTUlKaCNJjEXiHGwFNneAF9wDSJ3luO5gigM7t7MuSaPzF4hpjmfmcfPnRhP6AEn9jcza2Sh8Q==} dependencies: - '@babel/core': 7.18.10 + '@babel/core': 7.20.12 '@babel/generator': 7.18.12 '@babel/template': 7.18.10 '@babel/traverse': 7.18.11 @@ -41905,7 +42673,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.5.0 + tslib: 2.4.0 /nocache/2.1.0: resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==} @@ -41976,8 +42744,8 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-fetch/3.2.7: - resolution: {integrity: sha512-xRYIBUEoMvzvLt0FT2mAKAGXps1Wm0GpswR63pPJC4Hp5EubeigGYJJge34f3mPApap4+2B3sTKyUygsZrkmyg==} + /node-fetch/3.2.10: + resolution: {integrity: sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: data-uri-to-buffer: 4.0.0 @@ -43035,7 +43803,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.5.0 + tslib: 2.4.0 /parent-module/1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -43170,7 +43938,7 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.5.0 + tslib: 2.4.0 /pascalcase/0.1.1: resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} @@ -43632,13 +44400,13 @@ packages: postcss-selector-parser: 6.0.10 dev: false - /postcss-browser-comments/3.0.0_browserslist@4.20.3: + /postcss-browser-comments/3.0.0_browserslist@4.21.3: resolution: {integrity: sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==} engines: {node: '>=8.0.0'} peerDependencies: browserslist: ^4 dependencies: - browserslist: 4.20.3 + browserslist: 4.21.3 postcss: 7.0.39 /postcss-browser-comments/4.0.0_3a4j5usjtoc23kersryedrwazm: @@ -43668,12 +44436,12 @@ packages: postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 - /postcss-calc/8.2.4_postcss@8.4.19: + /postcss-calc/8.2.4_postcss@8.4.21: resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: false @@ -43801,7 +44569,7 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-colormin/5.3.0_postcss@8.4.19: + /postcss-colormin/5.3.0_postcss@8.4.21: resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -43810,7 +44578,7 @@ packages: browserslist: 4.21.3 caniuse-api: 3.0.0 colord: 2.9.2 - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -43821,14 +44589,14 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-convert-values/5.1.2_postcss@8.4.19: + /postcss-convert-values/5.1.2_postcss@8.4.21: resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -43941,13 +44709,13 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-comments/5.1.2_postcss@8.4.19: + /postcss-discard-comments/5.1.2_postcss@8.4.21: resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-discard-duplicates/4.0.2: @@ -43956,13 +44724,13 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-duplicates/5.1.0_postcss@8.4.19: + /postcss-discard-duplicates/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-discard-empty/4.0.1: @@ -43971,13 +44739,13 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-empty/5.1.1_postcss@8.4.19: + /postcss-discard-empty/5.1.1_postcss@8.4.21: resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-discard-overridden/4.0.1: @@ -43986,13 +44754,13 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-overridden/5.1.0_postcss@8.4.19: + /postcss-discard-overridden/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-double-position-gradients/1.0.0: @@ -44194,13 +44962,13 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-import/14.1.0_postcss@8.4.19: + /postcss-import/14.1.0_postcss@8.4.21: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 @@ -44226,14 +44994,14 @@ packages: postcss: 8.4.13 dev: false - /postcss-js/4.0.0_postcss@8.4.19: + /postcss-js/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-lab-function/2.0.1: @@ -44288,7 +45056,7 @@ packages: yaml: 1.10.2 dev: true - /postcss-load-config/3.1.4_postcss@8.4.19: + /postcss-load-config/3.1.4_postcss@8.4.21: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -44301,7 +45069,7 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.19 + postcss: 8.4.21 yaml: 1.10.2 dev: false @@ -44418,15 +45186,15 @@ packages: postcss-value-parser: 3.3.1 stylehacks: 4.0.3 - /postcss-merge-longhand/5.1.6_postcss@8.4.19: + /postcss-merge-longhand/5.1.6_postcss@8.4.21: resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 - stylehacks: 5.1.0_postcss@8.4.19 + stylehacks: 5.1.0_postcss@8.4.21 dev: false /postcss-merge-rules/4.0.3: @@ -44440,7 +45208,7 @@ packages: postcss-selector-parser: 3.1.2 vendors: 1.0.4 - /postcss-merge-rules/5.1.2_postcss@8.4.19: + /postcss-merge-rules/5.1.2_postcss@8.4.21: resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -44448,8 +45216,8 @@ packages: dependencies: browserslist: 4.21.3 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -44460,13 +45228,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-minify-font-values/5.1.0_postcss@8.4.19: + /postcss-minify-font-values/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44479,15 +45247,15 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-minify-gradients/5.1.1_postcss@8.4.19: + /postcss-minify-gradients/5.1.1_postcss@8.4.21: resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.2 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44502,15 +45270,15 @@ packages: postcss-value-parser: 3.3.1 uniqs: 2.0.0 - /postcss-minify-params/5.1.3_postcss@8.4.19: + /postcss-minify-params/5.1.3_postcss@8.4.21: resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44523,13 +45291,13 @@ packages: postcss: 7.0.39 postcss-selector-parser: 3.1.2 - /postcss-minify-selectors/5.2.1_postcss@8.4.19: + /postcss-minify-selectors/5.2.1_postcss@8.4.21: resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -44539,13 +45307,13 @@ packages: dependencies: postcss: 7.0.39 - /postcss-modules-extract-imports/3.0.0_postcss@8.4.19: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.21: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-modules-local-by-default/3.0.3: @@ -44557,14 +45325,14 @@ packages: postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 - /postcss-modules-local-by-default/4.0.0_postcss@8.4.19: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.19 - postcss: 8.4.19 + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: false @@ -44576,13 +45344,13 @@ packages: postcss: 7.0.39 postcss-selector-parser: 6.0.10 - /postcss-modules-scope/3.0.0_postcss@8.4.19: + /postcss-modules-scope/3.0.0_postcss@8.4.21: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -44592,23 +45360,23 @@ packages: icss-utils: 4.1.1 postcss: 7.0.39 - /postcss-modules-values/4.0.0_postcss@8.4.19: + /postcss-modules-values/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.19 - postcss: 8.4.19 + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 dev: false - /postcss-nested/5.0.6_postcss@8.4.19: + /postcss-nested/5.0.6_postcss@8.4.21: resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -44645,13 +45413,13 @@ packages: dependencies: postcss: 7.0.39 - /postcss-normalize-charset/5.1.0_postcss@8.4.19: + /postcss-normalize-charset/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-normalize-display-values/4.0.2: @@ -44662,13 +45430,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-display-values/5.1.0_postcss@8.4.19: + /postcss-normalize-display-values/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44681,13 +45449,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-positions/5.1.1_postcss@8.4.19: + /postcss-normalize-positions/5.1.1_postcss@8.4.21: resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44700,13 +45468,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.19: + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21: resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44718,13 +45486,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-string/5.1.0_postcss@8.4.19: + /postcss-normalize-string/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44736,13 +45504,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.19: + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44754,14 +45522,14 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-unicode/5.1.0_postcss@8.4.19: + /postcss-normalize-unicode/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44774,14 +45542,14 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-url/5.1.0_postcss@8.4.19: + /postcss-normalize-url/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44792,13 +45560,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-whitespace/5.1.1_postcss@8.4.19: + /postcss-normalize-whitespace/5.1.1_postcss@8.4.21: resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44833,9 +45601,9 @@ packages: engines: {node: '>=8.0.0'} dependencies: '@csstools/normalize.css': 10.1.0 - browserslist: 4.20.3 + browserslist: 4.21.3 postcss: 7.0.39 - postcss-browser-comments: 3.0.0_browserslist@4.20.3 + postcss-browser-comments: 3.0.0_browserslist@4.21.3 sanitize.css: 10.0.0 /postcss-opacity-percentage/1.1.2: @@ -44850,14 +45618,14 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-ordered-values/5.1.3_postcss@8.4.19: + /postcss-ordered-values/5.1.3_postcss@8.4.21: resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.19 - postcss: 8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.21 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -44937,7 +45705,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: autoprefixer: 9.8.8 - browserslist: 4.20.3 + browserslist: 4.21.3 caniuse-lite: 1.0.30001340 css-blank-pseudo: 0.1.4 css-has-pseudo: 0.10.0 @@ -45120,7 +45888,7 @@ packages: has: 1.0.3 postcss: 7.0.39 - /postcss-reduce-initial/5.1.0_postcss@8.4.19: + /postcss-reduce-initial/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -45128,7 +45896,7 @@ packages: dependencies: browserslist: 4.21.3 caniuse-api: 3.0.0 - postcss: 8.4.19 + postcss: 8.4.21 dev: false /postcss-reduce-transforms/4.0.2: @@ -45140,13 +45908,13 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-reduce-transforms/5.1.0_postcss@8.4.19: + /postcss-reduce-transforms/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false @@ -45258,13 +46026,13 @@ packages: postcss-value-parser: 3.3.1 svgo: 1.3.2 - /postcss-svgo/5.1.0_postcss@8.4.19: + /postcss-svgo/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: false @@ -45277,13 +46045,13 @@ packages: postcss: 7.0.39 uniqs: 2.0.0 - /postcss-unique-selectors/5.1.1_postcss@8.4.19: + /postcss-unique-selectors/5.1.1_postcss@8.4.21: resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.19 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -45332,6 +46100,15 @@ packages: nanoid: 3.3.4 picocolors: 1.0.0 source-map-js: 1.0.2 + dev: true + + /postcss/8.4.21: + resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 /prando/5.1.2: resolution: {integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==} @@ -45798,7 +46575,7 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 long: 4.0.0 dev: false @@ -45818,7 +46595,7 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 long: 4.0.0 dev: false @@ -46392,8 +47169,8 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.18.10 - '@babel/generator': 7.18.12 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.14 '@babel/runtime': 7.20.1 ast-types: 0.14.2 commander: 2.20.3 @@ -46674,7 +47451,7 @@ packages: /react-native-codegen/0.0.18: resolution: {integrity: sha512-XPI9aVsFy3dvgDZvyGWrFnknNiyb22kg5nHgxa0vjWTH9ENLBgVRZt9A64xHZ8BYihH+gl0p/1JNOCIEUzRPBg==} dependencies: - '@babel/parser': 7.18.11 + '@babel/parser': 7.20.13 flow-parser: 0.121.0 glob: 8.0.3 invariant: 2.2.4 @@ -46687,7 +47464,7 @@ packages: /react-native-codegen/0.0.18_@babel+preset-env@7.17.10: resolution: {integrity: sha512-XPI9aVsFy3dvgDZvyGWrFnknNiyb22kg5nHgxa0vjWTH9ENLBgVRZt9A64xHZ8BYihH+gl0p/1JNOCIEUzRPBg==} dependencies: - '@babel/parser': 7.18.11 + '@babel/parser': 7.20.13 flow-parser: 0.121.0 glob: 8.0.3 invariant: 2.2.4 @@ -48168,7 +48945,7 @@ packages: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.5.0 + tslib: 2.4.0 /rechoir/0.6.2: resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=} @@ -49006,6 +49783,15 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: false + + /rollup/3.12.1: + resolution: {integrity: sha512-t9elERrz2i4UU9z7AwISj3CQcXP39cWxgRWLdf4Tm6aKm1eYrqHIgjzXBgb67GNY1sZckTFFi0oMozh3/S++Ig==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true /rollup/3.3.0: resolution: {integrity: sha512-wqOV/vUJCYEbWsXvwCkgGWvgaEnsbn4jxBQWKpN816CqsmCimDmCNJI83c6if7QVD4v/zlyRzxN7U2yDT5rfoA==} @@ -49076,7 +49862,7 @@ packages: /rxjs/7.8.0: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: - tslib: 2.5.0 + tslib: 2.4.0 /safe-buffer/5.1.1: resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} @@ -50954,14 +51740,14 @@ packages: postcss: 7.0.39 postcss-selector-parser: 3.1.2 - /stylehacks/5.1.0_postcss@8.4.19: + /stylehacks/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.3 - postcss: 8.4.19 + postcss: 8.4.21 postcss-selector-parser: 6.0.10 dev: false @@ -51116,7 +51902,7 @@ packages: mime: 2.6.0 qs: 6.10.3 readable-stream: 3.6.0 - semver: 7.3.8 + semver: 7.3.7 transitivePeerDependencies: - supports-color dev: false @@ -51286,7 +52072,7 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.1 - tslib: 2.5.0 + tslib: 2.4.0 dev: true /tabbable/5.3.2: @@ -51340,11 +52126,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.19 - postcss-import: 14.1.0_postcss@8.4.19 - postcss-js: 4.0.0_postcss@8.4.19 - postcss-load-config: 3.1.4_postcss@8.4.19 - postcss-nested: 5.0.6_postcss@8.4.19 + postcss: 8.4.21 + postcss-import: 14.1.0_postcss@8.4.21 + postcss-js: 4.0.0_postcss@8.4.21 + postcss-load-config: 3.1.4_postcss@8.4.21 + postcss-nested: 5.0.6_postcss@8.4.21 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -51948,7 +52734,7 @@ packages: to-space-case: 1.0.0 /to-fast-properties/1.0.3: - resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=} + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} engines: {node: '>=0.10.0'} dev: true @@ -52448,7 +53234,7 @@ packages: - source-map-support dev: true - /ts-node/10.9.1_zpnjiqgiyrygwbc62chkjhj6km: + /ts-node/10.9.1_76bvzwqatfihmnr5dx42jk5azq: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -52467,7 +53253,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 acorn: 8.7.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -52532,9 +53318,6 @@ packages: /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tslib/2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tsscmp/1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} engines: {node: '>=0.6.x'} @@ -52910,8 +53693,8 @@ packages: commander: 2.13.0 source-map: 0.6.1 - /uglify-js/3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + /uglify-js/3.16.0: + resolution: {integrity: sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -54190,8 +54973,8 @@ packages: resolution: {integrity: sha512-hTY1pdtSmN/BNOnjvmcmK+2fW1Ac9wD0gFBy67i5IsKwhr1fS1/GGmssdCaik2SpnplHjoDrmCgVsgBv20HzrA==} dev: true - /vite/3.2.4: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} + /vite/4.1.1: + resolution: {integrity: sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -54215,10 +54998,10 @@ packages: terser: optional: true dependencies: - esbuild: 0.15.15 - postcss: 8.4.19 + esbuild: 0.16.17 + postcss: 8.4.21 resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.12.1 optionalDependencies: fsevents: 2.3.2 dev: true @@ -54945,6 +55728,7 @@ packages: dependencies: source-list-map: 2.0.1 source-map: 0.6.1 + dev: false /webpack-sources/3.2.3: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} @@ -55512,10 +56296,10 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@apideck/better-ajv-errors': 0.3.6_ajv@8.11.0 - '@babel/core': 7.18.10 - '@babel/preset-env': 7.17.10_@babel+core@7.18.10 + '@babel/core': 7.20.12 + '@babel/preset-env': 7.17.10_@babel+core@7.20.12 '@babel/runtime': 7.20.1 - '@rollup/plugin-babel': 5.3.1_grjwmk4ql6unjmhsznzs3pdpta + '@rollup/plugin-babel': 5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1 '@rollup/plugin-replace': 2.4.2_rollup@2.79.1 '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -56421,21 +57205,21 @@ packages: resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} dev: true - /zx/7.0.7: - resolution: {integrity: sha512-cWF5cWqqrTVxgEPmQ8w/LvUXOK3rJTdgC+Tt1nz113+YncNIO0X6UXgCY72UfE8Az/lwOubbEJARXpQ+7RiM9g==} + /zx/7.1.1: + resolution: {integrity: sha512-5YlTO2AJ+Ku2YuZKSSSqnUKuagcM/f/j4LmHs15O84Ch80Z9gzR09ZK3gR7GV+rc8IFpz2H/XNFtFVmj31yrZA==} engines: {node: '>= 16.0.0'} hasBin: true dependencies: '@types/fs-extra': 9.0.13 '@types/minimist': 1.2.2 - '@types/node': 17.0.32 + '@types/node': 18.11.18 '@types/ps-tree': 1.1.2 '@types/which': 2.0.1 chalk: 5.0.1 fs-extra: 10.1.0 globby: 13.1.2 minimist: 1.2.6 - node-fetch: 3.2.7 + node-fetch: 3.2.10 ps-tree: 1.2.0 which: 2.0.2 yaml: 2.1.1 diff --git a/tools/esbuild-utils/package.json b/tools/esbuild-utils/package.json index 5926cf7d5442..4fd79af5d4ea 100644 --- a/tools/esbuild-utils/package.json +++ b/tools/esbuild-utils/package.json @@ -9,7 +9,7 @@ "devDependencies": { "@craftamap/esbuild-plugin-html": "^0.4.0", "dotenv": "^8.2.0", - "esbuild": "^0.14.42", + "esbuild": "^0.17.5", "esbuild-plugin-import-glob": "^0.1.1", "flow-remove-types": "^2.180.0" } diff --git a/tools/esbuild-utils/plugins/alias.js b/tools/esbuild-utils/plugins/alias.js index 6b13133f1a6e..24aede53c49c 100644 --- a/tools/esbuild-utils/plugins/alias.js +++ b/tools/esbuild-utils/plugins/alias.js @@ -8,7 +8,7 @@ module.exports = (mappings) => ({ mappings = [mappings]; } - const resolveCallback = async function (args) { + const resolveCallback = async function(args) { if (args.resolveDir === "") { return; // Ignore unresolvable paths } @@ -27,12 +27,14 @@ module.exports = (mappings) => ({ : `./${relativeMappedPath}`; let result = await build.resolve(mappedPath, { + kind: "import-statement", resolveDir: args.resolveDir, }); if (result.errors.length > 0) { errors.push(...result.errors); result = await build.resolve(rawMappedPath, { + kind: "import-statement", resolveDir: args.resolveDir, });