diff --git a/config/build.config.ts b/config/build.config.ts index d32be9c5fc5..8c8b505671c 100644 --- a/config/build.config.ts +++ b/config/build.config.ts @@ -3,4 +3,7 @@ export default { externals: ["vite"], declaration: true, clean: true, + rollup: { + emitCJS: true, + }, }; diff --git a/config/package.json b/config/package.json index 3523ab54c8f..ed8258bd684 100644 --- a/config/package.json +++ b/config/package.json @@ -14,17 +14,26 @@ "url": "https://github.com/fwouts/previewjs/issues" }, "homepage": "https://previewjs.com", - "type": "module", - "main": "./dist/index.mjs", + "main": "./dist/index.cjs", + "module": "./dist/index.mjs", "types": "./dist/index.d.ts", + "exports": { + ".": { + "require": "./dist/index.cjs", + "import": "./dist/index.mjs", + "types": "./dist/index.d.ts" + } + }, "sideEffects": false, "scripts": { "build": "tsc && unbuild" }, + "dependencies": { + "vite": "^4.4.11" + }, "devDependencies": { "@types/node": "^20.8.2", "typescript": "^5.2.2", - "unbuild": "^2.0.0", - "vite": "^4.4.11" + "unbuild": "^2.0.0" } } diff --git a/config/src/config.ts b/config/src/config.ts index 1bfe20bf66d..53f1d4c535b 100644 --- a/config/src/config.ts +++ b/config/src/config.ts @@ -1,9 +1,17 @@ import type { UserConfig } from "vite"; +export function defineConfig(config: PreviewConfig) { + return { + // Note: this can be removed after Feb 2024. + publicDir: "public", + ...config, + }; +} + export interface PreviewConfig { /** @deprecated Use the `vite.resolve.alias` field instead. */ alias?: Record; - publicDir: string; + publicDir?: string; wrapper?: { path: string; componentName?: string; diff --git a/config/src/index.ts b/config/src/index.ts index a6091770f12..c382ed1458c 100644 --- a/config/src/index.ts +++ b/config/src/index.ts @@ -1,2 +1,3 @@ +export { defineConfig } from "./config"; export type { PreviewConfig } from "./config"; -export { PREVIEW_CONFIG_NAME, readConfig } from "./read-config"; +export { PREVIEW_CONFIG_NAMES, readConfig } from "./read-config"; diff --git a/config/src/read-config.ts b/config/src/read-config.ts index fc43d303cc4..25837b26745 100644 --- a/config/src/read-config.ts +++ b/config/src/read-config.ts @@ -1,53 +1,51 @@ import fs from "fs"; -import { createRequire } from "module"; import path from "path"; -import url from "url"; +import { loadConfigFromFile, type LogLevel } from "vite"; import type { PreviewConfig } from "./config"; -const require = createRequire(import.meta.url); +export const PREVIEW_CONFIG_NAMES = [ + "preview.config.js", + "preview.config.mjs", + "preview.config.ts", + "preview.config.cjs", + "preview.config.mts", + "preview.config.cts", +]; -export const PREVIEW_CONFIG_NAME = "preview.config.js"; - -export async function readConfig(rootDir: string): Promise { - const configPath = path.join(rootDir, PREVIEW_CONFIG_NAME); +export async function readConfig( + rootDir: string, + logLevel: LogLevel +): Promise { let config: Partial = {}; - const configFileExists = fs.existsSync(configPath); - if (configFileExists) { - let isModule = false; - const packageJsonPath = path.join(rootDir, "package.json"); - if (fs.existsSync(packageJsonPath)) { - const { type } = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")); - isModule = type === "module"; - } - try { - return await loadModule(configPath, isModule); - } catch (e) { - // Try again but with the other type of module. + for (const configName of PREVIEW_CONFIG_NAMES) { + const configPath = path.join(rootDir, configName); + const configFileExists = fs.existsSync(configPath); + if (configFileExists) { try { - return await loadModule(configPath, !isModule); - } catch { - // Throw the original error if not working. - throw new Error(`Unable to read preview.config.js:\n${e}`); + const loaded = await loadConfigFromFile( + { + command: "serve", + mode: "development", + }, + configName, + rootDir, + logLevel + ); + if (loaded) { + config = loaded.config as Partial; + break; + } + } catch (e: any) { + if ( + typeof e.message === "string" && + e.message.includes("config must export or return an object") + ) { + throw new Error(`Please use a default export in preview.config.js`); + } else { + throw e; + } } } } - return { - alias: {}, - publicDir: "public", - ...config, - }; -} - -async function loadModule(configPath: string, asModule: boolean) { - if (asModule) { - const module = await import( - `${url.pathToFileURL(configPath).href}?ts=${Date.now()}` - ); - return module.default || module; - } else { - // Delete any existing cache so we reload the config fresh. - delete require.cache[require.resolve(configPath)]; - const required = require(configPath); - return required.module || required; - } + return config; } diff --git a/core/src/html-error.ts b/core/src/html-error.ts index 4dcf684beed..80d4d57be07 100644 --- a/core/src/html-error.ts +++ b/core/src/html-error.ts @@ -1,24 +1,25 @@ import { escape } from "html-escaper"; export function generateHtmlError(message: string) { + if (message.startsWith("Error: Build failed with 1 error:\n")) { + message = message.substring(message.indexOf("\n") + 1); + } return ` - -
${escape(message)}
- + ${escape(message.trim())} `; } diff --git a/core/src/vite/vite-manager.ts b/core/src/vite/vite-manager.ts index e523a199031..c16bb2aad8c 100644 --- a/core/src/vite/vite-manager.ts +++ b/core/src/vite/vite-manager.ts @@ -1,7 +1,7 @@ import viteTsconfigPaths from "@fwouts/vite-tsconfig-paths"; import { decodePreviewableId } from "@previewjs/analyzer-api"; import { - PREVIEW_CONFIG_NAME, + PREVIEW_CONFIG_NAMES, readConfig, type PreviewConfig, } from "@previewjs/config"; @@ -62,7 +62,7 @@ const GLOBAL_CSS_FILE = GLOBAL_CSS_FILE_NAMES_WITHOUT_EXT.flatMap((fileName) => ); const FILES_REQUIRING_VITE_RESTART = new Set([ - PREVIEW_CONFIG_NAME, + ...PREVIEW_CONFIG_NAMES, ...FILES_REQUIRING_REDETECTION, ...POSTCSS_CONFIG_FILE, ...GLOBAL_CSS_FILE, @@ -251,7 +251,10 @@ export class ViteManager { // PostCSS requires the current directory to change because it relies // on the `import-cwd` package to resolve plugins. process.chdir(this.options.rootDir); - const configFromProject = await readConfig(this.options.rootDir); + const configFromProject = await readConfig( + this.options.rootDir, + viteLogLevelFromPinoLogger(this.options.logger) + ); const globalCssAbsoluteFilePaths = await findFiles( this.options.rootDir, `**/@(${GLOBAL_CSS_FILE_NAMES_WITHOUT_EXT.join( @@ -353,7 +356,8 @@ export class ViteManager { config.vite?.publicDir || existingViteConfig?.config.publicDir || frameworkPluginViteConfig.publicDir || - config.publicDir; + config.publicDir || + "public"; const plugins = replaceHandleHotUpdate( this.options.reader, await flattenPlugins([ diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/package.json b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/package.json similarity index 82% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/package.json rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/package.json index 83c9ce5e097..fa09ad312d0 100644 --- a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/package.json +++ b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/package.json @@ -1,8 +1,7 @@ { - "name": "react-test-app-wrapper-custom-esm-named-exports-config", + "name": "react-test-app-wrapper-custom-config-ts", "license": "MIT", "private": true, - "type": "module", "scripts": { "start": "react-scripts start" }, diff --git a/framework-plugins/react/tests/apps/wrapper-custom-config-ts/preview.config.ts b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/preview.config.ts new file mode 100644 index 00000000000..6e56f09903b --- /dev/null +++ b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/preview.config.ts @@ -0,0 +1,7 @@ +/** @type {import("@previewjs/config").PreviewConfig} */ +export default { + wrapper: { + path: "src/Wrapper.js", + componentName: "Around", + }, +}; diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/public/index.html b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/public/index.html similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/public/index.html rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/public/index.html diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/App.css b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/App.css similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/App.css rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/App.css diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/App.tsx b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/App.tsx similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/App.tsx rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/App.tsx diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/App_screenshot_linux.png b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/App_screenshot_linux.png similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/App_screenshot_linux.png rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/App_screenshot_linux.png diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/Wrapper.js b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/Wrapper.js similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/Wrapper.js rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/Wrapper.js diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/index.css b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/index.css similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/index.css rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/index.css diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/index.tsx b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/index.tsx similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/index.tsx rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/index.tsx diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/logo.svg b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/logo.svg similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/logo.svg rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/logo.svg diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/react-app-env.d.ts b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/react-app-env.d.ts similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/src/react-app-env.d.ts rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/src/react-app-env.d.ts diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/tsconfig.json b/framework-plugins/react/tests/apps/wrapper-custom-config-ts/tsconfig.json similarity index 100% rename from framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/tsconfig.json rename to framework-plugins/react/tests/apps/wrapper-custom-config-ts/tsconfig.json diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/preview.config.js b/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/preview.config.js deleted file mode 100644 index 58838bd614c..00000000000 --- a/framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config/preview.config.js +++ /dev/null @@ -1,4 +0,0 @@ -export const wrapper = { - path: "src/Wrapper.js", - componentName: "Around", -}; diff --git a/framework-plugins/react/tests/apps/wrapper-custom-esm/preview.config.js b/framework-plugins/react/tests/apps/wrapper-custom-esm/preview.config.js index 6e56f09903b..691c9e4b744 100644 --- a/framework-plugins/react/tests/apps/wrapper-custom-esm/preview.config.js +++ b/framework-plugins/react/tests/apps/wrapper-custom-esm/preview.config.js @@ -1,7 +1,8 @@ -/** @type {import("@previewjs/config").PreviewConfig} */ -export default { +import { defineConfig } from "@previewjs/config"; + +export default defineConfig({ wrapper: { path: "src/Wrapper.js", componentName: "Around", }, -}; +}); diff --git a/framework-plugins/react/tests/apps/wrapper-custom/preview.config.js b/framework-plugins/react/tests/apps/wrapper-custom/preview.config.js index 3466a9adca6..691c9e4b744 100644 --- a/framework-plugins/react/tests/apps/wrapper-custom/preview.config.js +++ b/framework-plugins/react/tests/apps/wrapper-custom/preview.config.js @@ -1,7 +1,8 @@ -/** @type {import("@previewjs/config").PreviewConfig} */ -module.exports = { +import { defineConfig } from "@previewjs/config"; + +export default defineConfig({ wrapper: { path: "src/Wrapper.js", componentName: "Around", }, -}; +}); diff --git a/framework-plugins/react/tests/smoke-tests.spec.ts b/framework-plugins/react/tests/smoke-tests.spec.ts index 6366dd30cf7..f4314c0a41c 100644 --- a/framework-plugins/react/tests/smoke-tests.spec.ts +++ b/framework-plugins/react/tests/smoke-tests.spec.ts @@ -60,7 +60,7 @@ test.describe.parallel("smoke tests", () => { "vite-without-svgr": ["src/App.tsx:App"], "wrapper-custom": ["src/App.tsx:App"], "wrapper-custom-esm": ["src/App.tsx:App"], - "wrapper-custom-esm-named-exports-config": ["src/App.tsx:App"], + "wrapper-custom-config-ts": ["src/App.tsx:App"], "wrapper-default": ["src/App.tsx:App"], }, }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c766b57479d..59a7773fdc2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -266,6 +266,10 @@ importers: version: 4.4.11(@types/node@20.8.2) config: + dependencies: + vite: + specifier: ^4.4.11 + version: 4.4.11(@types/node@20.8.2) devDependencies: '@types/node': specifier: ^20.8.2 @@ -276,9 +280,6 @@ importers: unbuild: specifier: ^2.0.0 version: 2.0.0(typescript@5.2.2) - vite: - specifier: ^4.4.11 - version: 4.4.11(@types/node@20.8.2) config-helpers/nextjs: devDependencies: @@ -287,7 +288,7 @@ importers: version: 18.2.25 next: specifier: ^13.4.7 - version: 13.4.7(@babel/core@7.22.10)(react-dom@18.2.0)(react@18.2.0) + version: 13.4.7(@babel/core@7.22.20)(react-dom@18.2.0)(react@18.2.0) react: specifier: ^18.2.0 version: 18.2.0 @@ -735,7 +736,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -779,7 +780,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) devDependencies: typescript: specifier: ^4.9.5 @@ -804,7 +805,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -828,7 +829,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -852,7 +853,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -876,7 +877,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -913,7 +914,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -947,7 +948,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -966,7 +967,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) devDependencies: typescript: specifier: ^4.9.5 @@ -982,7 +983,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) devDependencies: typescript: specifier: ^4.9.5 @@ -1010,7 +1011,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1050,7 +1051,7 @@ importers: version: 5.3.4(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1214,7 +1215,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1281,7 +1282,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) styled-components: specifier: ^5.3.10 version: 5.3.10(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) @@ -1303,7 +1304,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) devDependencies: typescript: specifier: ^4.9.5 @@ -1328,7 +1329,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1359,7 +1360,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1396,7 +1397,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1433,7 +1434,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1470,7 +1471,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1518,7 +1519,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1542,7 +1543,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1587,7 +1588,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -1846,7 +1847,7 @@ importers: version: 0.14.0 react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) webpack: specifier: ^5.83.1 version: 5.83.1 @@ -2056,7 +2057,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -2068,17 +2069,17 @@ importers: specifier: workspace:* version: link:../../../../../config - framework-plugins/react/tests/apps/wrapper-custom-esm: + framework-plugins/react/tests/apps/wrapper-custom-config-ts: dependencies: '@types/node': specifier: ^18.16.14 version: 18.16.14 '@types/react': specifier: ^18.2.6 - version: 18.2.6 + version: 18.2.25 '@types/react-dom': specifier: ^18.2.4 - version: 18.2.4 + version: 18.2.10 react: specifier: ^18.2.0 version: 18.2.0 @@ -2087,29 +2088,29 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 devDependencies: '@babel/core': specifier: ^7.21.8 - version: 7.21.8 + version: 7.22.20 '@previewjs/config': specifier: workspace:* version: link:../../../../../config - framework-plugins/react/tests/apps/wrapper-custom-esm-named-exports-config: + framework-plugins/react/tests/apps/wrapper-custom-esm: dependencies: '@types/node': specifier: ^18.16.14 version: 18.16.14 '@types/react': specifier: ^18.2.6 - version: 18.2.22 + version: 18.2.6 '@types/react-dom': specifier: ^18.2.4 - version: 18.2.7 + version: 18.2.4 react: specifier: ^18.2.0 version: 18.2.0 @@ -2118,14 +2119,14 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 devDependencies: '@babel/core': specifier: ^7.21.8 - version: 7.22.10 + version: 7.21.8 '@previewjs/config': specifier: workspace:* version: link:../../../../../config @@ -2149,7 +2150,7 @@ importers: version: 18.2.0(react@18.2.0) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -3565,28 +3566,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core@7.22.10: - resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.10 - '@babel/generator': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helpers': 7.22.10 - '@babel/parser': 7.22.10 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10 - '@babel/types': 7.22.10 - convert-source-map: 1.9.0 - debug: 4.3.4(supports-color@5.5.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/core@7.22.20: resolution: {integrity: sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==} engines: {node: '>=6.9.0'} @@ -3609,14 +3588,14 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser@7.19.1(@babel/core@7.22.10)(eslint@8.50.0): + /@babel/eslint-parser@7.19.1(@babel/core@7.22.20)(eslint@8.50.0): resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==} 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.22.10 + '@babel/core': 7.22.20 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.50.0 eslint-visitor-keys: 2.1.0 @@ -3626,7 +3605,7 @@ packages: resolution: {integrity: sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.22.19 '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 @@ -3754,23 +3733,6 @@ packages: semver: 6.3.1 dev: false - /@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.22.20): resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==} engines: {node: '>=6.9.0'} @@ -3827,25 +3789,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-class-features-plugin@7.22.5(@babel/core@7.22.20): resolution: {integrity: sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q==} engines: {node: '>=6.9.0'} @@ -3886,16 +3829,6 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.1 - /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.1 - /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} engines: {node: '>=6.9.0'} @@ -3906,12 +3839,12 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.1 - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.22.10): + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.22.20): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 @@ -3955,21 +3888,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.10): - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@5.5.0) - lodash.debounce: 4.0.8 - resolve: 1.22.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.20): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: @@ -4079,19 +3997,6 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.20(@babel/core@7.22.10): - resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.20(@babel/core@7.22.20): resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} engines: {node: '>=6.9.0'} @@ -4132,19 +4037,6 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.20): resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} @@ -4205,20 +4097,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.22.19 - transitivePeerDependencies: - - supports-color - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} @@ -4270,17 +4148,6 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 dev: false - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.10): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.20): resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} engines: {node: '>=6.9.0'} @@ -4309,7 +4176,6 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 - dev: false /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} @@ -4367,6 +4233,7 @@ packages: '@babel/types': 7.22.10 transitivePeerDependencies: - supports-color + dev: true /@babel/helpers@7.22.15: resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} @@ -4441,15 +4308,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -4482,17 +4340,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.8) - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} @@ -4533,20 +4380,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -4586,18 +4419,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.20) - '@babel/helper-plugin-utils': 7.22.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -4635,17 +4456,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10) - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} @@ -4685,19 +4495,6 @@ packages: '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.21.8) dev: false - /@babel/plugin-proposal-decorators@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.22.10) - /@babel/plugin-proposal-decorators@7.22.5(@babel/core@7.22.20): resolution: {integrity: sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A==} engines: {node: '>=6.9.0'} @@ -4712,7 +4509,6 @@ packages: '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.22.20) transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} @@ -4735,16 +4531,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.8) - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -4766,17 +4552,6 @@ packages: '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.21.8) dev: false - /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.22.10): - resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.22.10) - dev: true - /@babel/plugin-proposal-export-default-from@7.18.10(@babel/core@7.22.20): resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} @@ -4786,7 +4561,6 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-default-from': 7.18.6(@babel/core@7.22.20) - dev: false /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.4): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} @@ -4809,16 +4583,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.8) - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10) - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -4850,16 +4614,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8) - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -4891,16 +4645,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8) - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} @@ -4932,16 +4676,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8) - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.20) - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -4973,16 +4707,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8) - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.20) - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -5032,19 +4756,6 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8) '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.8) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.10) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -5079,16 +4790,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8) - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -5122,17 +4823,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8) - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.20) - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} @@ -5167,16 +4857,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.20) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -5214,18 +4894,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10) - /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} @@ -5259,16 +4927,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.8) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -5296,14 +4954,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.10): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.20): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -5345,14 +4995,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.20): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -5380,15 +5022,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.10): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.20): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -5418,15 +5051,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.22.20): resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} engines: {node: '>=6.9.0'} @@ -5435,7 +5059,6 @@ packages: dependencies: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - dev: false /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -5454,14 +5077,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -5480,16 +5095,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} @@ -5498,7 +5103,6 @@ packages: dependencies: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - dev: false /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} @@ -5517,14 +5121,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -5542,15 +5138,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} @@ -5579,15 +5166,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.10): - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.20): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} @@ -5605,14 +5183,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.10): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.20): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -5638,14 +5208,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -5692,15 +5254,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} @@ -5720,15 +5273,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.20): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} @@ -5755,14 +5299,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.10): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.20): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -5788,14 +5324,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -5821,14 +5349,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.20): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -5863,14 +5383,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -5896,14 +5408,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -5929,14 +5433,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.20): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -5964,15 +5460,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.10): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.20): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -6001,15 +5488,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.10): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.20): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -6029,15 +5507,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.10): - resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.20): resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} @@ -6057,16 +5526,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.10): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - dev: false - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.20): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} @@ -6086,13 +5545,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.10): + /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6105,15 +5564,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} engines: {node: '>=6.9.0'} @@ -6150,19 +5600,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -6195,15 +5632,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -6232,15 +5660,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -6300,23 +5719,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} @@ -6355,16 +5757,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.5 - /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - /@babel/plugin-transform-computed-properties@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} engines: {node: '>=6.9.0'} @@ -6373,7 +5765,7 @@ packages: dependencies: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 + '@babel/template': 7.22.5 /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.4): resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} @@ -6385,13 +5777,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.22.10): + /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6404,15 +5796,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.10): - resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.20): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} @@ -6443,16 +5826,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.8) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -6482,15 +5855,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} @@ -6521,16 +5885,6 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -6551,16 +5905,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.8) - /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.22.10) - /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} engines: {node: '>=6.9.0'} @@ -6581,13 +5925,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.10): + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6600,15 +5944,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} engines: {node: '>=6.9.0'} @@ -6625,7 +5960,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.22.10 '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6641,17 +5976,6 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -6659,7 +5983,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.20 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.22.10 '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -6682,15 +6006,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -6719,15 +6034,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -6758,16 +6064,6 @@ packages: '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.8) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.10): - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.20): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} @@ -6801,17 +6097,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} @@ -6848,18 +6133,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.10): - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.20): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} @@ -6893,16 +6166,6 @@ packages: '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.8) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -6934,16 +6197,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.8) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.10): - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.20): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} @@ -6973,15 +6226,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} @@ -7024,16 +6268,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.10) - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -7063,15 +6297,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} engines: {node: '>=6.9.0'} @@ -7100,15 +6325,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.10): - resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.20): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -7137,15 +6353,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -7155,13 +6362,13 @@ packages: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.22.10): + /@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.22.20): resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.8): @@ -7173,15 +6380,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} @@ -7201,15 +6399,6 @@ packages: '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.8) dev: true - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.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.22.10 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.10) - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} @@ -7218,7 +6407,6 @@ packages: dependencies: '@babel/core': 7.22.20 '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.20) - dev: true /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.8): resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} @@ -7303,20 +6491,7 @@ packages: '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.8) - '@babel/types': 7.22.10 - - /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/types': 7.22.10 + '@babel/types': 7.22.19 /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} @@ -7329,7 +6504,7 @@ packages: '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.20) - '@babel/types': 7.22.10 + '@babel/types': 7.22.19 /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.8): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} @@ -7342,16 +6517,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} @@ -7361,7 +6526,6 @@ packages: '@babel/core': 7.22.20 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.4): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} @@ -7384,16 +6548,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 - /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 - /@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} engines: {node: '>=6.9.0'} @@ -7423,15 +6577,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} @@ -7458,22 +6603,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.10) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.10) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.10) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==} engines: {node: '>=6.9.0'} @@ -7489,7 +6618,6 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.4): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} @@ -7510,15 +6638,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -7549,16 +6668,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.10): - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.20): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -7588,15 +6697,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -7625,15 +6725,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -7662,15 +6753,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.20): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -7694,19 +6776,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.22.5(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==} engines: {node: '>=6.9.0'} @@ -7733,19 +6802,6 @@ packages: '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.8) dev: false - /@babel/plugin-transform-typescript@7.22.10(@babel/core@7.22.10): - resolution: {integrity: sha512-7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.10) - dev: false - /@babel/plugin-transform-typescript@7.22.10(@babel/core@7.22.20): resolution: {integrity: sha512-7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A==} engines: {node: '>=6.9.0'} @@ -7777,15 +6833,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} engines: {node: '>=6.9.0'} @@ -7816,16 +6863,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.8) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.22.10) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -8008,92 +7045,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-env@7.21.5(@babel/core@7.22.10): - resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.21.5(@babel/core@7.22.10) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-computed-properties': 7.21.5(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.10) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': 7.21.5(@babel/core@7.22.10) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.21.5(@babel/core@7.22.10) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.10) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.10) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.10) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-regenerator': 7.21.5(@babel/core@7.22.10) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-escapes': 7.21.5(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.10) - '@babel/preset-modules': 0.1.5(@babel/core@7.22.10) - '@babel/types': 7.22.19 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.10) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.10) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.10) - core-js-compat: 3.29.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/preset-env@7.21.5(@babel/core@7.22.20): resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} engines: {node: '>=6.9.0'} @@ -8188,7 +7139,7 @@ packages: dependencies: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 + '@babel/helper-validator-option': 7.22.15 '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.8) dev: true @@ -8228,18 +7179,6 @@ packages: '@babel/types': 7.22.10 esutils: 2.0.3 - /@babel/preset-modules@0.1.5(@babel/core@7.22.10): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.10) - '@babel/types': 7.22.19 - esutils: 2.0.3 - /@babel/preset-modules@0.1.5(@babel/core@7.22.20): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -8267,20 +7206,6 @@ packages: '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.8) dev: true - /@babel/preset-react@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.22.10) - /@babel/preset-react@7.18.6(@babel/core@7.22.20): resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} @@ -8294,7 +7219,6 @@ packages: '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.20) '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.20) '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.22.20) - dev: true /@babel/preset-typescript@7.21.0(@babel/core@7.21.4): resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==} @@ -8310,19 +7234,6 @@ packages: - supports-color dev: true - /@babel/preset-typescript@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - /@babel/preset-typescript@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==} engines: {node: '>=6.9.0'} @@ -8331,25 +7242,11 @@ packages: dependencies: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 + '@babel/helper-validator-option': 7.22.15 '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.22.20) transitivePeerDependencies: - supports-color - /@babel/register@7.21.0(@babel/core@7.22.10): - resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.5 - source-map-support: 0.5.21 - dev: true - /@babel/register@7.21.0(@babel/core@7.22.20): resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} engines: {node: '>=6.9.0'} @@ -8406,8 +7303,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/parser': 7.22.10 - '@babel/types': 7.22.10 + '@babel/parser': 7.22.16 + '@babel/types': 7.22.19 /@babel/template@7.22.15: resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} @@ -8425,24 +7322,6 @@ packages: '@babel/parser': 7.22.10 '@babel/types': 7.22.10 - /@babel/traverse@7.21.5: - resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.16 - '@babel/types': 7.22.19 - debug: 4.3.4(supports-color@5.5.0) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/traverse@7.21.5(supports-color@5.5.0): resolution: {integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==} engines: {node: '>=6.9.0'} @@ -8459,7 +7338,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false /@babel/traverse@7.22.10: resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==} @@ -8593,7 +7471,7 @@ packages: cosmiconfig-typescript-loader: 1.0.9(@types/node@18.16.14)(cosmiconfig@7.1.0)(typescript@4.9.5) cross-spawn: 7.0.3 lodash: 4.17.21 - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) semver: 7.3.8 webpack-merge: 5.8.0 transitivePeerDependencies: @@ -8672,6 +7550,16 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.27): + resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1(postcss-selector-parser@6.0.11)(postcss@8.4.27) + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /@csstools/postcss-cascade-layers@3.0.1(postcss@8.4.27): resolution: {integrity: sha512-dD8W98dOYNOH/yX4V4HXOhfCOnvVAg8TtsL+qCGNoKXuq5z2C/d026wGWgySgC8cajXXo/wNezS31Glj5GcqrA==} engines: {node: ^14 || ^16 || >=18} @@ -8693,6 +7581,16 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-color-function@1.1.1(postcss@8.4.27): + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-color-function@2.1.0(postcss@8.4.27): resolution: {integrity: sha512-XBoCClLyWchlYGHGlmMOa6M2UXZNrZm63HVfsvgD/z1RPm/s3+FhHyT6VkDo+OvEBPhCgn6xz4IeCu4pRctKDQ==} engines: {node: ^14 || ^16 || >=18} @@ -8714,6 +7612,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.27): + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-font-format-keywords@2.0.2(postcss@8.4.27): resolution: {integrity: sha512-iKYZlIs6JsNT7NKyRjyIyezTCHLh4L4BBB3F5Nx7Dc4Z/QmBgX+YJFuUSar8IM6KclGiAUFGomXFdYxAwJydlA==} engines: {node: ^14 || ^16 || >=18} @@ -8733,6 +7640,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.27): + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-hwb-function@2.1.1(postcss@8.4.27): resolution: {integrity: sha512-XijKzdxBdH2hU6IcPWmnaU85FKEF1XE5hGy0d6dQC6XznFUIRu1T4uebL3krayX40m4xIcxfCBsQm5zphzVrtg==} engines: {node: ^14 || ^16 || >=18} @@ -8754,6 +7670,16 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.27): + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-ic-unit@2.0.2(postcss@8.4.27): resolution: {integrity: sha512-N84qGTJkfLTPj2qOG5P4CIqGjpZBbjOEMKMn+UjO5wlb9lcBTfBsxCF0lQsFdWJUzBHYFOz19dL66v71WF3Pig==} engines: {node: ^14 || ^16 || >=18} @@ -8775,6 +7701,16 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.27): + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1(postcss-selector-parser@6.0.11)(postcss@8.4.27) + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /@csstools/postcss-is-pseudo-class@3.1.1(postcss@8.4.27): resolution: {integrity: sha512-hhiacuby4YdUnnxfCYCRMBIobyJImozf0u+gHSbQ/tNOdwvmrZtVROvgW7zmfYuRkHVDNZJWZslq2v5jOU+j/A==} engines: {node: ^14 || ^16 || >=18} @@ -8836,6 +7772,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.27): + resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-nested-calc@2.0.2(postcss@8.4.27): resolution: {integrity: sha512-jbwrP8rN4e7LNaRcpx3xpMUjhtt34I9OV+zgbcsYAAk6k1+3kODXJBf95/JMYWhu9g1oif7r06QVUgfWsKxCFw==} engines: {node: ^14 || ^16 || >=18} @@ -8855,6 +7800,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.27): + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-normalize-display-values@2.0.1(postcss@8.4.27): resolution: {integrity: sha512-TQT5g3JQ5gPXC239YuRK8jFceXF9d25ZvBkyjzBGGoW5st5sPXFVQS8OjYb9IJ/K3CdfK4528y483cgS2DJR/w==} engines: {node: ^14 || ^16 || >=18} @@ -8875,6 +7829,16 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.27): + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-oklab-function@2.1.0(postcss@8.4.27): resolution: {integrity: sha512-U/odSNjOVhagNRu+RDaNVbn8vaqA9GyCOoneQA2je7697KOrtRDc7/POrYsP7QioO2aaezDzKNX02wBzc99fkQ==} engines: {node: ^14 || ^16 || >=18} @@ -8896,6 +7860,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.27): + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-progressive-custom-properties@2.1.0(postcss@8.4.27): resolution: {integrity: sha512-tRX1rinsXajZlc4WiU7s9Y6O9EdSHScT997zDsvDUjQ1oZL2nvnL6Bt0s9KyQZZTdC3lrG2PIdBqdOIWXSEPlQ==} engines: {node: ^14 || ^16 || >=18} @@ -8925,6 +7898,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.27): + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-stepped-value-functions@2.1.0(postcss@8.4.27): resolution: {integrity: sha512-CkEo9BF8fQeMoXW3biXjlgTLY7PA4UFihn6leq7hPoRzIguLUI0WZIVgsITGXfX8LXmkhCSTjXO2DLYu/LUixQ==} engines: {node: ^14 || ^16 || >=18} @@ -8946,6 +7928,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.27): + resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-text-decoration-shorthand@2.2.1(postcss@8.4.27): resolution: {integrity: sha512-Ow6/cWWdjjVvA83mkm3kLRvvWsbzoe1AbJCxkpC+c9ibUjyS8pifm+LpZslQUKcxRVQ69ztKHDBEbFGTDhNeUw==} engines: {node: ^14 || ^16 || >=18} @@ -8966,6 +7957,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.27): + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /@csstools/postcss-trigonometric-functions@2.0.1(postcss@8.4.27): resolution: {integrity: sha512-uGmmVWGHozyWe6+I4w321fKUC034OB1OYW0ZP4ySHA23n+r9y93K+1yrmW+hThpSfApKhaWySoD4I71LLlFUYQ==} engines: {node: ^14 || ^16 || >=18} @@ -8984,6 +7984,14 @@ packages: dependencies: postcss: 8.4.23 + /@csstools/postcss-unset-value@1.0.2(postcss@8.4.27): + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + /@csstools/postcss-unset-value@2.0.1(postcss@8.4.27): resolution: {integrity: sha512-oJ9Xl29/yU8U7/pnMJRqAZd4YXNCfGEdcP4ywREuqm/xMqcgDNDppYRoCGDt40aaZQIEKBS79LytUDN/DHf0Ew==} engines: {node: ^14 || ^16 || >=18} @@ -9012,7 +8020,6 @@ packages: dependencies: postcss: 8.4.27 postcss-selector-parser: 6.0.11 - dev: false /@date-io/core@1.3.13: resolution: {integrity: sha512-AlEKV7TxjeK+jxWVKcCFrfYAk8spX9aCyiToFIiLPtfQbsjmRGLIhb5VZgptQcJdHtLXo7+m0DuurwFgUToQuA==} @@ -10763,7 +9770,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -10774,7 +9781,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -10794,7 +9801,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -10837,7 +9844,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 jest-mock: 27.5.1 /@jest/fake-timers@27.5.1: @@ -10846,7 +9853,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 18.16.14 + '@types/node': 20.8.2 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -10873,7 +9880,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -11020,7 +10027,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 '@types/yargs': 15.0.15 chalk: 4.1.2 @@ -11030,7 +10037,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 '@types/yargs': 16.0.5 chalk: 4.1.2 @@ -11041,7 +10048,7 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 '@types/yargs': 17.0.22 chalk: 4.1.2 @@ -11052,7 +10059,7 @@ packages: '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 '@types/yargs': 17.0.22 chalk: 4.1.2 dev: true @@ -11989,18 +10996,18 @@ packages: engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-compilation-targets': 7.22.10 '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.20) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) '@babel/runtime': 7.21.0 - '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.10)(vue@2.7.14) + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.20)(vue@2.7.14) core-js: 3.30.2 core-js-compat: 3.30.2 regenerator-runtime: 0.13.11 @@ -12698,11 +11705,11 @@ packages: resolution: {integrity: sha512-VHXTMQj+8bUaaeIZKH4z2Ip/TnO4GuvpFV6GL7D+wjGMB+qeSsTPlWS7/FQxOt86uKEzpMz9w4jPJTYzgLV6pg==} engines: {node: ^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0} dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@nuxt/babel-preset-app': 2.16.3(vue@2.7.14) '@nuxt/friendly-errors-webpack-plugin': 2.5.2(webpack@4.46.0) '@nuxt/utils': 2.16.3 - babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@4.46.0) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@4.46.0) cache-loader: 4.1.0(webpack@4.46.0) caniuse-lite: 1.0.30001518 consola: 2.15.3 @@ -13001,7 +12008,7 @@ packages: preact: ^10.4.0 vite: '>=2.0.0-beta.3' dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@prefresh/babel-plugin': 0.4.4 '@prefresh/core': 1.4.1(preact@10.15.0) '@prefresh/utils': 1.1.3 @@ -14292,8 +13299,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^18 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.20) '@jest/transform': 29.5.0 '@mdx-js/react': 2.3.0(react@18.2.0) '@storybook/blocks': 7.0.17(react-dom@18.2.0)(react@18.2.0) @@ -15506,7 +14513,7 @@ packages: resolution: {integrity: sha512-rzAutA+trQWwQ5HvEqUVUyO9rvs4nSiUCu0NgcCl7hHNDM2DEYylUoegFdlO+pOxUhIKm6IA+kwRH4dEeZiIoQ==} hasBin: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/preset-env': 7.21.5(@babel/core@7.22.20) '@ndelangen/get-tarball': 3.0.7 '@storybook/codemod': 7.0.17 @@ -15816,35 +14823,35 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) - '@babel/preset-react': 7.18.6(@babel/core@7.22.10) - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) - '@babel/register': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.20) + '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.22.20) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) + '@babel/preset-react': 7.18.6(@babel/core@7.22.20) + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) + '@babel/register': 7.21.0(@babel/core@7.22.20) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 '@types/node': 16.18.14 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@4.46.0) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@4.46.0) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.10) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.20) chalk: 4.1.2 core-js: 3.30.2 express: 4.18.2 @@ -15887,35 +14894,35 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) - '@babel/preset-react': 7.18.6(@babel/core@7.22.10) - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) - '@babel/register': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.20) + '@babel/plugin-proposal-export-default-from': 7.18.10(@babel/core@7.22.20) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.22.20) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) + '@babel/preset-react': 7.18.6(@babel/core@7.22.20) + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) + '@babel/register': 7.21.0(@babel/core@7.22.20) '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 '@types/node': 16.18.14 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@4.46.0) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@4.46.0) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.10) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.22.20) chalk: 4.1.2 core-js: 3.30.2 express: 4.18.2 @@ -16310,7 +15317,7 @@ packages: dependencies: '@babel/generator': 7.21.9 '@babel/parser': 7.21.9 - '@babel/traverse': 7.21.5 + '@babel/traverse': 7.21.5(supports-color@5.5.0) '@babel/types': 7.21.5 '@storybook/csf': 0.1.0 '@storybook/types': 7.0.17 @@ -16340,7 +15347,7 @@ packages: /@storybook/docs-tools@6.5.16(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-o+rAWPRGifjBF5xZzTKOqnHN3XQWkl0QFJYVDIiJYJrVll7ExCkpEq/PahOGzIBBV+tpMstJgmKM3lr/lu/jmg==} dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/store': 6.5.16(react-dom@18.2.0)(react@18.2.0) core-js: 3.30.2 @@ -16356,7 +15363,7 @@ packages: /@storybook/docs-tools@7.0.17: resolution: {integrity: sha512-x8nw5na26SFBney/aXfu+eltvWV9QmxAB+FuMOr+3urIASeIU0gIGtrqfzSdvtb9SRf5BGtymTOQFIga/ENBsw==} dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@storybook/core-common': 7.0.17 '@storybook/preview-api': 7.0.17 '@storybook/types': 7.0.17 @@ -16792,7 +15799,7 @@ packages: '@types/babel__core': 7.20.0 babel-plugin-react-docgen: 4.2.1 pnp-webpack-plugin: 1.7.0(typescript@4.9.5) - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) semver: 7.3.8 transitivePeerDependencies: - '@types/webpack' @@ -16823,7 +15830,7 @@ packages: '@types/babel__core': 7.20.0 babel-plugin-react-docgen: 4.2.1 pnp-webpack-plugin: 1.7.0(typescript@4.9.5) - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) semver: 7.3.8 transitivePeerDependencies: - '@types/webpack' @@ -17956,15 +16963,6 @@ packages: resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} engines: {node: '>=10'} - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} @@ -17978,15 +16976,6 @@ packages: resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} engines: {node: '>=10'} - /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.22.10): - resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.22.20): resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} engines: {node: '>=10'} @@ -18000,15 +16989,6 @@ packages: resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} engines: {node: '>=10'} - /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.22.10): - resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.22.20): resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} engines: {node: '>=10'} @@ -18022,15 +17002,6 @@ packages: resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} engines: {node: '>=10'} - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} @@ -18044,15 +17015,6 @@ packages: resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} engines: {node: '>=10'} - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} @@ -18066,15 +17028,6 @@ packages: resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} engines: {node: '>=10'} - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} @@ -18088,15 +17041,6 @@ packages: resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} engines: {node: '>=10'} - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} @@ -18110,15 +17054,6 @@ packages: resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} engines: {node: '>=10'} - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - dev: true - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} @@ -18141,23 +17076,6 @@ packages: '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 '@svgr/babel-plugin-transform-svg-component': 5.5.0 - /@svgr/babel-preset@6.5.1(@babel/core@7.22.10): - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.22.10) - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.22.10) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.22.10) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.22.10) - dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.22.20): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} @@ -18189,8 +17107,8 @@ packages: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.10 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@svgr/babel-preset': 6.5.1(@babel/core@7.22.20) '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -18216,7 +17134,7 @@ packages: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@svgr/babel-preset': 5.5.0 '@svgr/hast-util-to-babel-ast': 5.5.0 svg-parser: 2.0.4 @@ -18250,10 +17168,10 @@ packages: resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-transform-react-constant-elements': 7.20.2(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) - '@babel/preset-react': 7.18.6(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-transform-react-constant-elements': 7.20.2(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) + '@babel/preset-react': 7.18.6(@babel/core@7.22.20) '@svgr/core': 5.5.0 '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -18494,7 +17412,7 @@ packages: /@types/bonjour@3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} @@ -18509,7 +17427,7 @@ packages: /@types/clean-css@4.2.6: resolution: {integrity: sha512-Ze1tf+LnGPmG6hBFMi0B4TEB0mhF7EiMM5oyjLDNPE9hxrPU0W+5+bHvO+eFPA+bt0iC1zkQMoU/iGdRVjcRbw==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 source-map: 0.6.1 dev: true @@ -18523,12 +17441,12 @@ packages: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.33 - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/connect@3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/cookie@0.5.1: resolution: {integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==} @@ -18570,7 +17488,7 @@ packages: /@types/etag@1.8.1: resolution: {integrity: sha512-bsKkeSqN7HYyYntFRAmzcwx/dKW4Wa+KVMTInANlI72PWLQmOpZu96j0OqHZGArW4VQwCmJPteQlXaUDeOB0WQ==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 dev: true /@types/express-serve-static-core@4.17.33: @@ -18609,20 +17527,20 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.16.14 + '@types/node': 20.8.2 dev: true /@types/glob@8.1.0: resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.16.14 + '@types/node': 20.8.2 dev: true /@types/graceful-fs@4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/hast@2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} @@ -18662,12 +17580,12 @@ packages: /@types/http-proxy@1.17.10: resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/http-proxy@1.17.11: resolution: {integrity: sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 dev: true /@types/inquirer@9.0.3: @@ -18709,7 +17627,7 @@ packages: /@types/keyv@3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 dev: true /@types/less@3.0.3: @@ -18760,7 +17678,7 @@ packages: /@types/node-fetch@2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 form-data: 3.0.1 dev: true @@ -18842,7 +17760,6 @@ packages: resolution: {integrity: sha512-5VEC5RgXIk1HHdyN1pHlg0cOqnxHzvPGpMMyGAP5qSaDRmyZNDaQ0kkVAkK6NYlDhP6YBID3llaXlmAS/mdgCA==} dependencies: '@types/react': 18.2.25 - dev: true /@types/react-dom@18.2.4: resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==} @@ -18855,12 +17772,6 @@ packages: '@types/react': 18.2.25 dev: true - /@types/react-dom@18.2.7: - resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} - dependencies: - '@types/react': 18.2.25 - dev: false - /@types/react-is@18.2.0: resolution: {integrity: sha512-1vz2yObaQkLL7YFe/pme2cpvDsCwI1WXIfL+5eLz0MI9gFG24Re16RzUsI8t9XZn9ZWvgLNDrJBmrqXJO7GNQQ==} dependencies: @@ -18932,14 +17843,6 @@ packages: csstype: 3.1.2 dev: true - /@types/react@18.2.22: - resolution: {integrity: sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==} - dependencies: - '@types/prop-types': 15.7.8 - '@types/scheduler': 0.16.2 - csstype: 3.1.2 - dev: false - /@types/react@18.2.25: resolution: {integrity: sha512-24xqse6+VByVLIr+xWaQ9muX1B4bXJKXBbjszbld/UEDslGLY53+ZucF44HCmLbMPejTzGG9XgR+3m2/Wqu1kw==} dependencies: @@ -18961,7 +17864,7 @@ packages: /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/resolve@1.20.2: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -18969,7 +17872,7 @@ packages: /@types/responselike@1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 dev: true /@types/retry@0.12.0: @@ -19006,7 +17909,7 @@ packages: /@types/sockjs@0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/source-list-map@0.1.2: resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==} @@ -19080,14 +17983,14 @@ packages: /@types/webpack-sources@3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 '@types/source-list-map': 0.1.2 source-map: 0.7.4 /@types/webpack@4.41.33: resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 '@types/tapable': 1.0.8 '@types/uglify-js': 3.17.1 '@types/webpack-sources': 3.2.0 @@ -19097,7 +18000,7 @@ packages: /@types/ws@8.5.4: resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} @@ -19707,8 +18610,8 @@ packages: /@vanilla-extract/integration@6.1.1: resolution: {integrity: sha512-JGlynmtCju+NWU5ITgs81szCo8A4hFfW1E2oAsn++JHvgU7+wyg9N0TwByZOB1/nbrHVKISzRvl1M0BeB0mZXQ==} dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.20) '@vanilla-extract/babel-plugin-debug-ids': 1.0.2 '@vanilla-extract/css': 1.11.0 esbuild: 0.16.17 @@ -19858,9 +18761,9 @@ packages: vite: ^4.0.0 vue: ^3.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-transform-typescript': 7.22.10(@babel/core@7.22.10) - '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-transform-typescript': 7.22.10(@babel/core@7.22.20) + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.20) vite: 4.4.11(@types/node@20.8.2) vue: 3.3.4 transitivePeerDependencies: @@ -19874,11 +18777,11 @@ packages: vite: ^2.9.13 || ^3.0.0 || ^4.0.0 vue: ^2.7.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.20) + '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.22.20) '@rollup/pluginutils': 5.0.2(rollup@3.28.1) - '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.10)(vue@2.7.14) + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.20)(vue@2.7.14) vite: 4.4.11(@types/node@20.8.2) vue: 2.7.14 transitivePeerDependencies: @@ -20108,11 +19011,11 @@ packages: /@vue/babel-helper-vue-transform-on@1.1.5: resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==} - /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.22.10): + /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.22.20): resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) '@babel/template': 7.22.15 '@babel/traverse': 7.22.20 '@babel/types': 7.22.19 @@ -20125,32 +19028,13 @@ packages: - supports-color dev: true - /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.10): - resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.10 - '@babel/types': 7.22.10 - '@vue/babel-helper-vue-transform-on': 1.1.5 - camelcase: 6.3.0 - html-tags: 3.3.1 - svg-tags: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: false - /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.20): resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.20 - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) '@babel/template': 7.22.15 '@babel/traverse': 7.22.20 @@ -20161,22 +19045,21 @@ packages: svg-tags: 1.0.0 transitivePeerDependencies: - supports-color - dev: true - /@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.22.10): + /@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 html-tags: 2.0.0 lodash.kebabcase: 4.1.1 svg-tags: 1.0.0 - /@vue/babel-preset-app@5.0.8(@babel/core@7.22.10)(core-js@3.30.2)(vue@2.7.14): + /@vue/babel-preset-app@5.0.8(@babel/core@7.22.20)(core-js@3.30.2)(vue@2.7.14): resolution: {integrity: sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg==} peerDependencies: '@babel/core': '*' @@ -20188,18 +19071,18 @@ packages: vue: optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.22.20 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.20) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) '@babel/runtime': 7.21.0 - '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.22.10) - '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.10)(vue@2.7.14) + '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.22.20) + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.20)(vue@2.7.14) babel-plugin-dynamic-import-node: 2.3.3 core-js: 3.30.2 core-js-compat: 3.30.2 @@ -20209,7 +19092,7 @@ packages: - supports-color dev: true - /@vue/babel-preset-app@5.0.8(@babel/core@7.22.10)(core-js@3.30.2)(vue@3.3.4): + /@vue/babel-preset-app@5.0.8(@babel/core@7.22.20)(core-js@3.30.2)(vue@3.3.4): resolution: {integrity: sha512-yl+5qhpjd8e1G4cMXfORkkBlvtPCIgmRf3IYCWYDKIQ7m+PPa5iTm4feiNmCMD6yGqQWMhhK/7M3oWGL9boKwg==} peerDependencies: '@babel/core': '*' @@ -20221,18 +19104,18 @@ packages: vue: optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.22.20 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.20) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) '@babel/runtime': 7.21.0 - '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.22.10) - '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.10)(vue@3.3.4) + '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.22.20) + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.22.20)(vue@3.3.4) babel-plugin-dynamic-import-node: 2.3.3 core-js: 3.30.2 core-js-compat: 3.30.2 @@ -20242,7 +19125,7 @@ packages: - supports-color dev: true - /@vue/babel-preset-jsx@1.4.0(@babel/core@7.22.10)(vue@2.7.14): + /@vue/babel-preset-jsx@1.4.0(@babel/core@7.22.20)(vue@2.7.14): resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -20251,18 +19134,18 @@ packages: vue: optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 - '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.22.10) + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.22.20) vue: 2.7.14 - /@vue/babel-preset-jsx@1.4.0(@babel/core@7.22.10)(vue@3.3.4): + /@vue/babel-preset-jsx@1.4.0(@babel/core@7.22.20)(vue@3.3.4): resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -20271,71 +19154,71 @@ packages: vue: optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 - '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.22.10) - '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.22.10) + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.22.20) + '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.22.20) vue: 3.3.4 dev: true - /@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.22.10): + /@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) - /@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.22.10): + /@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) - /@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.22.10): + /@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) - /@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.22.10): + /@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) - /@vue/babel-sugar-v-model@1.4.0(@babel/core@7.22.10): + /@vue/babel-sugar-v-model@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 - '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.10) + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.20) camelcase: 5.3.1 html-tags: 2.0.0 svg-tags: 1.0.0 - /@vue/babel-sugar-v-on@1.4.0(@babel/core@7.22.10): + /@vue/babel-sugar-v-on@1.4.0(@babel/core@7.22.20): resolution: {integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) - '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.22.20) camelcase: 5.3.1 /@vue/cli-overlay@5.0.8: @@ -20347,11 +19230,11 @@ packages: peerDependencies: '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@vue/babel-preset-app': 5.0.8(@babel/core@7.22.10)(core-js@3.30.2)(vue@2.7.14) + '@babel/core': 7.22.20 + '@vue/babel-preset-app': 5.0.8(@babel/core@7.22.20)(core-js@3.30.2)(vue@2.7.14) '@vue/cli-service': 5.0.8(@babel/core@7.22.20)(react-dom@18.2.0)(react@18.2.0)(vue-template-compiler@2.7.14)(vue@2.7.14) '@vue/cli-shared-utils': 5.0.8 - babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@5.83.1) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@5.83.1) thread-loader: 3.0.4(webpack@5.83.1) webpack: 5.83.1 transitivePeerDependencies: @@ -20370,11 +19253,11 @@ packages: peerDependencies: '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@vue/babel-preset-app': 5.0.8(@babel/core@7.22.10)(core-js@3.30.2)(vue@3.3.4) + '@babel/core': 7.22.20 + '@vue/babel-preset-app': 5.0.8(@babel/core@7.22.20)(core-js@3.30.2)(vue@3.3.4) '@vue/cli-service': 5.0.8(@babel/core@7.22.20)(@vue/compiler-sfc@3.3.4)(vue@3.3.4) '@vue/cli-shared-utils': 5.0.8 - babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@5.83.1) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@5.83.1) thread-loader: 3.0.4(webpack@5.83.1) webpack: 5.83.1 transitivePeerDependencies: @@ -22000,7 +20883,7 @@ packages: '@babel/core': 7.22.20 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/babel__core': 7.20.0 + '@types/babel__core': 7.20.2 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 27.5.1(@babel/core@7.22.20) chalk: 4.1.2 @@ -22038,35 +20921,6 @@ packages: schema-utils: 2.7.1 webpack: 5.83.1 - /babel-loader@8.3.0(@babel/core@7.22.10)(webpack@4.46.0): - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.22.10 - find-cache-dir: 3.3.2 - loader-utils: 2.0.4 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 4.46.0 - - /babel-loader@8.3.0(@babel/core@7.22.10)(webpack@5.83.1): - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.22.10 - find-cache-dir: 3.3.2 - loader-utils: 2.0.4 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 5.83.1 - dev: true - /babel-loader@8.3.0(@babel/core@7.22.20)(webpack@4.46.0): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} @@ -22080,7 +20934,6 @@ packages: make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 4.46.0 - dev: true /babel-loader@8.3.0(@babel/core@7.22.20)(webpack@5.83.1): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} @@ -22095,7 +20948,6 @@ packages: make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.83.1 - dev: true /babel-loader@9.1.2(@babel/core@7.21.8)(webpack@5.83.1): resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} @@ -22157,14 +21009,14 @@ packages: '@types/babel__core': 7.20.0 '@types/babel__traverse': 7.18.3 - /babel-plugin-jsx-dom-expressions@0.36.9(@babel/core@7.22.10): + /babel-plugin-jsx-dom-expressions@0.36.9(@babel/core@7.22.20): resolution: {integrity: sha512-4ACO10PoUvqRcBEErbhVGv5vAHXgkz7epvULHfqJXw5TPtDYwjhmhGxGNGSK6220ec/b85ElLrGHlqQiJxI0WQ==} peerDependencies: '@babel/core': ^7.20.12 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.20) '@babel/types': 7.22.19 html-entities: 2.3.3 validate-html-nesting: 1.2.1 @@ -22195,6 +21047,13 @@ packages: dependencies: '@babel/core': 7.21.8 + /babel-plugin-named-asset-import@0.3.8(@babel/core@7.22.20): + resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} + peerDependencies: + '@babel/core': ^7.1.0 + dependencies: + '@babel/core': 7.22.20 + /babel-plugin-named-exports-order@0.0.2: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: true @@ -22224,18 +21083,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.10): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.10) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.20): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -22248,13 +21095,13 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.22.10): + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.22.20): resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.22.20) core-js-compat: 3.30.2 transitivePeerDependencies: - supports-color @@ -22283,17 +21130,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.10): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.10) - core-js-compat: 3.29.0 - transitivePeerDependencies: - - supports-color - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.20): resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -22326,16 +21162,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.10): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.20): resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -22542,33 +21368,33 @@ packages: /babel-preset-react-app@10.0.1: resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) - '@babel/preset-react': 7.18.6(@babel/core@7.22.10) - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-decorators': 7.22.5(@babel/core@7.22.20) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.22.20) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.20) + '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) + '@babel/preset-react': 7.18.6(@babel/core@7.22.20) + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) '@babel/runtime': 7.21.0 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: - supports-color - /babel-preset-solid@1.7.3(@babel/core@7.22.10): + /babel-preset-solid@1.7.3(@babel/core@7.22.20): resolution: {integrity: sha512-HOdyrij99zo+CBrmtDxSexBAl54vCBCfBoyueLBvcfVniaEXNd4ftKqSN6XQcLvFfCY28UFO+DHaigXzWKOfzg==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - babel-plugin-jsx-dom-expressions: 0.36.9(@babel/core@7.22.10) + '@babel/core': 7.22.20 + babel-plugin-jsx-dom-expressions: 0.36.9(@babel/core@7.22.20) /babel-walk@3.0.0-canary-5: resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} @@ -24666,6 +23492,16 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /css-blank-pseudo@3.0.3(postcss@8.4.27): + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /css-blank-pseudo@5.0.2(postcss@8.4.27): resolution: {integrity: sha512-aCU4AZ7uEcVSUzagTlA9pHciz7aWPKA/YzrEkpdSopJ2pvhIxiQ5sYeMz1/KByxlIo4XBdvMNJAVKMg/GRnhfw==} engines: {node: ^14 || ^16 || >=18} @@ -24720,6 +23556,16 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /css-has-pseudo@3.0.4(postcss@8.4.27): + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /css-has-pseudo@5.0.2(postcss@8.4.27): resolution: {integrity: sha512-q+U+4QdwwB7T9VEW/LyO6CFrLAeLqOykC5mDqJXc7aKZAhDbq7BvGT13VGJe+IwBfdN2o3Xdw2kJ5IxwV1Sc9Q==} engines: {node: ^14 || ^16 || >=18} @@ -24849,6 +23695,15 @@ packages: dependencies: postcss: 8.4.23 + /css-prefers-color-scheme@6.0.3(postcss@8.4.27): + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + /css-prefers-color-scheme@8.0.2(postcss@8.4.27): resolution: {integrity: sha512-OvFghizHJ45x7nsJJUSYLyQNTzsCU8yWjxAc/nhPQg1pbs18LMoET8N3kOweFDPy0JV0OSXN2iqRFhPBHYOeMA==} engines: {node: ^14 || ^16 || >=18} @@ -26537,9 +25392,9 @@ packages: esbuild: '>=0.12' solid-js: '>= 1.0' dependencies: - '@babel/core': 7.22.10 - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) - babel-preset-solid: 1.7.3(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) + babel-preset-solid: 1.7.3(@babel/core@7.22.20) esbuild: 0.17.19 solid-js: 1.7.5 transitivePeerDependencies: @@ -26902,8 +25757,8 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/eslint-parser': 7.19.1(@babel/core@7.22.10)(eslint@8.50.0) + '@babel/core': 7.22.20 + '@babel/eslint-parser': 7.19.1(@babel/core@7.22.20)(eslint@8.50.0) '@rushstack/eslint-patch': 1.2.0 '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.50.0)(typescript@4.9.5) '@typescript-eslint/parser': 5.61.0(eslint@8.50.0)(typescript@4.9.5) @@ -26936,8 +25791,8 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.10 - '@babel/eslint-parser': 7.19.1(@babel/core@7.22.10)(eslint@8.50.0) + '@babel/core': 7.22.20 + '@babel/eslint-parser': 7.19.1(@babel/core@7.22.20)(eslint@8.50.0) '@rushstack/eslint-patch': 1.2.0 '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.50.0)(typescript@5.2.2) '@typescript-eslint/parser': 5.61.0(eslint@8.50.0)(typescript@5.2.2) @@ -30877,7 +29732,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -30997,7 +29852,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -31014,7 +29869,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -31033,7 +29888,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.6 - '@types/node': 18.16.14 + '@types/node': 20.8.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -31056,7 +29911,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.6 - '@types/node': 18.16.14 + '@types/node': 20.8.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -31075,7 +29930,7 @@ packages: dependencies: '@jest/types': 29.5.0 '@types/graceful-fs': 4.1.6 - '@types/node': 18.16.14 + '@types/node': 20.8.2 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -31096,7 +29951,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -31161,7 +30016,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -31226,7 +30081,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.10 @@ -31281,7 +30136,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 graceful-fs: 4.2.10 dev: true @@ -31289,7 +30144,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 graceful-fs: 4.2.10 /jest-snapshot@27.5.1: @@ -31326,7 +30181,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 @@ -31338,7 +30193,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.10 @@ -31349,7 +30204,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.10 @@ -31360,7 +30215,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.5.0 - '@types/node': 18.16.14 + '@types/node': 20.8.2 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.10 @@ -31411,7 +30266,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 18.16.14 + '@types/node': 20.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -31423,7 +30278,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.16.14 + '@types/node': 20.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -31434,7 +30289,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 merge-stream: 2.0.0 supports-color: 7.2.0 @@ -31442,7 +30297,7 @@ packages: resolution: {integrity: sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 merge-stream: 2.0.0 supports-color: 8.1.1 dev: false @@ -31451,7 +30306,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -31459,7 +30314,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -31467,7 +30322,7 @@ packages: resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 18.16.14 + '@types/node': 20.8.2 jest-util: 29.5.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -33759,7 +32614,7 @@ packages: postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.22.10)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.22.20)(react@18.2.0) zod: 3.21.4 optionalDependencies: '@next/swc-darwin-arm64': 13.4.3 @@ -33776,7 +32631,7 @@ packages: - babel-plugin-macros dev: false - /next@13.4.7(@babel/core@7.22.10)(react-dom@18.2.0)(react@18.2.0): + /next@13.4.7(@babel/core@7.22.20)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-M8z3k9VmG51SRT6v5uDKdJXcAqLzP3C+vaKfLIAM0Mhx1um1G7MDnO63+m52qPdZfrTFzMZNzfsgvm3ghuVHIQ==} engines: {node: '>=16.8.0'} hasBin: true @@ -33801,7 +32656,7 @@ packages: postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.22.10)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.22.20)(react@18.2.0) watchpack: 2.4.0 zod: 3.21.4 optionalDependencies: @@ -35618,6 +34473,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.27): + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-attribute-case-insensitive@6.0.2(postcss@8.4.27): resolution: {integrity: sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==} engines: {node: ^14 || ^16 || >=18} @@ -35628,6 +34492,16 @@ packages: postcss-selector-parser: 6.0.11 dev: false + /postcss-browser-comments@4.0.0(browserslist@4.21.10)(postcss@8.4.27): + resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} + engines: {node: '>=8'} + peerDependencies: + browserslist: '>=4' + postcss: '>=8' + dependencies: + browserslist: 4.21.10 + postcss: 8.4.27 + /postcss-browser-comments@4.0.0(browserslist@4.21.5)(postcss@8.4.23): resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} engines: {node: '>=8'} @@ -35693,7 +34567,6 @@ packages: dependencies: postcss: 8.4.27 postcss-value-parser: 4.2.0 - dev: false /postcss-color-functional-notation@4.2.4(postcss@8.4.23): resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} @@ -35704,6 +34577,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-color-functional-notation@4.2.4(postcss@8.4.27): + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-color-functional-notation@5.0.2(postcss@8.4.27): resolution: {integrity: sha512-M6ygxWOyd6eWf3sd1Lv8xi4SeF4iBPfJvkfMU4ITh8ExJc1qhbvh/U8Cv/uOvBgUVOMDdScvCdlg8+hREQzs7w==} engines: {node: ^14 || ^16 || >=18} @@ -35723,6 +34605,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-color-hex-alpha@8.0.4(postcss@8.4.27): + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-color-hex-alpha@9.0.2(postcss@8.4.27): resolution: {integrity: sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==} engines: {node: ^14 || ^16 || >=18} @@ -35742,6 +34633,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-color-rebeccapurple@7.1.1(postcss@8.4.27): + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-color-rebeccapurple@8.0.2(postcss@8.4.27): resolution: {integrity: sha512-xWf/JmAxVoB5bltHpXk+uGRoGFwu4WDAR7210el+iyvTdqiKpDhtcT8N3edXMoVJY0WHFMrKMUieql/wRNiXkw==} engines: {node: ^14 || ^16 || >=18} @@ -35850,6 +34750,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-custom-media@8.0.2(postcss@8.4.27): + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-custom-media@9.1.2(postcss@8.4.27): resolution: {integrity: sha512-osM9g4UKq4XKimAC7RAXroqi3BXpxfwTswAJQiZdrBjWGFGEyxQrY5H2eDWI8F+MEvEUfYDxA8scqi3QWROCSw==} engines: {node: ^14 || ^16 || >=18} @@ -35872,6 +34781,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-custom-properties@12.1.11(postcss@8.4.27): + resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-custom-properties@13.1.5(postcss@8.4.23): resolution: {integrity: sha512-98DXk81zTGqMVkGANysMHbGIg3voH383DYo3/+c+Abzay3nao+vM/f4Jgzsakk9S7BDsEw5DiW7sFy5G4W2wLA==} engines: {node: ^14 || ^16 || >=18} @@ -35907,6 +34825,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-custom-selectors@6.0.3(postcss@8.4.27): + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-custom-selectors@7.1.2(postcss@8.4.27): resolution: {integrity: sha512-jX7VlE3jrgfBIOfxiGNRFq81xUoHSZhvxhQurzE7ZFRv+bUmMwB7/XnA0nNlts2CwNtbXm4Ozy0ZAYKHlCRmBQ==} engines: {node: ^14 || ^16 || >=18} @@ -35929,6 +34856,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-dir-pseudo-class@6.0.5(postcss@8.4.27): + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-dir-pseudo-class@7.0.2(postcss@8.4.27): resolution: {integrity: sha512-cMnslilYxBf9k3qejnovrUONZx1rXeUZJw06fgIUBzABJe3D2LiLL5WAER7Imt3nrkaIgG05XZBztueLEf5P8w==} engines: {node: ^14 || ^16 || >=18} @@ -36081,6 +35017,16 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-double-position-gradients@3.1.2(postcss@8.4.27): + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-double-position-gradients@4.0.2(postcss@8.4.27): resolution: {integrity: sha512-GXL1RmFREDK4Q9aYvI2RhVrA6a6qqSMQQ5ke8gSH1xgV6exsqbcJpIumC7AOgooH6/WIG3/K/T8xxAiVHy/tJg==} engines: {node: ^14 || ^16 || >=18} @@ -36101,6 +35047,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-env-function@4.0.6(postcss@8.4.27): + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-flexbugs-fixes@4.2.1: resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} dependencies: @@ -36114,6 +35069,13 @@ packages: dependencies: postcss: 8.4.23 + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.27): + resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} + peerDependencies: + postcss: ^8.1.4 + dependencies: + postcss: 8.4.27 + /postcss-focus-visible@6.0.4(postcss@8.4.23): resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} @@ -36123,6 +35085,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-focus-visible@6.0.4(postcss@8.4.27): + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-focus-visible@8.0.2(postcss@8.4.27): resolution: {integrity: sha512-f/Vd+EC/GaKElknU59esVcRYr/Y3t1ZAQyL4u2xSOgkDy4bMCmG7VP5cGvj3+BTLNE9ETfEuz2nnt4qkZwTTeA==} engines: {node: ^14 || ^16 || >=18} @@ -36142,6 +35113,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-focus-within@5.0.4(postcss@8.4.27): + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-focus-within@7.0.2(postcss@8.4.27): resolution: {integrity: sha512-AHAJ89UQBcqBvFgQJE9XasGuwMNkKsGj4D/f9Uk60jFmEBHpAL14DrnSk3Rj+SwZTr/WUG+mh+Rvf8fid/346w==} engines: {node: ^14 || ^16 || >=18} @@ -36165,7 +35145,6 @@ packages: postcss: ^8.1.0 dependencies: postcss: 8.4.27 - dev: false /postcss-gap-properties@3.0.5(postcss@8.4.23): resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} @@ -36175,6 +35154,14 @@ packages: dependencies: postcss: 8.4.23 + /postcss-gap-properties@3.0.5(postcss@8.4.27): + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + /postcss-gap-properties@4.0.1(postcss@8.4.27): resolution: {integrity: sha512-V5OuQGw4lBumPlwHWk/PRfMKjaq/LTGR4WDTemIMCaMevArVfCCA9wBJiL1VjDAd+rzuCIlkRoRvDsSiAaZ4Fg==} engines: {node: ^14 || ^16 || >=18} @@ -36193,6 +35180,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-image-set-function@4.0.7(postcss@8.4.27): + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-image-set-function@5.0.2(postcss@8.4.27): resolution: {integrity: sha512-Sszjwo0ubETX0Fi5MvpYzsONwrsjeabjMoc5YqHvURFItXgIu3HdCjcVuVKGMPGzKRhgaknmdM5uVWInWPJmeg==} engines: {node: ^14 || ^16 || >=18} @@ -36255,7 +35251,6 @@ packages: postcss: ^8.0.0 dependencies: postcss: 8.4.27 - dev: false /postcss-js@4.0.1(postcss@8.4.23): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} @@ -36276,6 +35271,16 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-lab-function@4.2.1(postcss@8.4.27): + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27) + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-lab-function@5.1.0(postcss@8.4.27): resolution: {integrity: sha512-iZApRTNcpc71uTn7PkzjHtj5cmuZpvu6okX4jHnM5OFi2fG97sodjxkq6SpL65xhW0NviQrAMSX97ntyGVRV0w==} engines: {node: ^14 || ^16 || >=18} @@ -36418,6 +35423,19 @@ packages: semver: 7.5.4 webpack: 5.83.1 + /postcss-loader@6.2.1(postcss@8.4.27)(webpack@5.83.1): + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + postcss: 8.4.27 + semver: 7.5.4 + webpack: 5.83.1 + /postcss-logical@5.0.4(postcss@8.4.23): resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} @@ -36426,6 +35444,14 @@ packages: dependencies: postcss: 8.4.23 + /postcss-logical@5.0.4(postcss@8.4.27): + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.27 + /postcss-logical@6.1.0(postcss@8.4.27): resolution: {integrity: sha512-qb1+LpClhYjxac8SfOcWotnY3unKZesDqIOm+jnGt8rTl7xaIWpE2bPGZHxflOip1E/4ETo79qlJyRL3yrHn1g==} engines: {node: ^14 || ^16 || >=18} @@ -36451,7 +35477,6 @@ packages: postcss: ^8.1.0 dependencies: postcss: 8.4.27 - dev: false /postcss-merge-longhand@4.0.11: resolution: {integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==} @@ -36801,6 +35826,16 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-nesting@10.2.0(postcss@8.4.27): + resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1(postcss-selector-parser@6.0.11)(postcss@8.4.27) + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-nesting@11.2.2(postcss@8.4.23): resolution: {integrity: sha512-aOTiUniAB1bcPE6GGiynWRa6PZFPhOTAm5q3q5cem6QeSijIHHkWr6gs65ukCZMXeak8yXeZVbBJET3VM+HlhA==} engines: {node: ^14 || ^16 || >=18} @@ -37167,6 +36202,19 @@ packages: postcss-value-parser: 4.2.0 dev: true + /postcss-normalize@10.0.1(browserslist@4.21.10)(postcss@8.4.27): + resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} + engines: {node: '>= 12'} + peerDependencies: + browserslist: '>= 4' + postcss: '>= 8' + dependencies: + '@csstools/normalize.css': 12.0.0 + browserslist: 4.21.10 + postcss: 8.4.27 + postcss-browser-comments: 4.0.0(browserslist@4.21.10)(postcss@8.4.27) + sanitize.css: 13.0.0 + /postcss-normalize@10.0.1(browserslist@4.21.5)(postcss@8.4.23): resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} engines: {node: '>= 12'} @@ -37195,7 +36243,6 @@ packages: postcss: ^8.2 dependencies: postcss: 8.4.27 - dev: false /postcss-ordered-values@4.1.2: resolution: {integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==} @@ -37247,6 +36294,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-overflow-shorthand@3.0.4(postcss@8.4.27): + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-overflow-shorthand@4.0.1(postcss@8.4.27): resolution: {integrity: sha512-HQZ0qi/9iSYHW4w3ogNqVNr2J49DHJAl7r8O2p0Meip38jsdnRPgiDW7r/LlLrrMBMe3KHkvNtAV2UmRVxzLIg==} engines: {node: ^14 || ^16 || >=18} @@ -37270,7 +36326,6 @@ packages: postcss: ^8 dependencies: postcss: 8.4.27 - dev: false /postcss-place@7.0.5(postcss@8.4.23): resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} @@ -37281,6 +36336,15 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 + /postcss-place@7.0.5(postcss@8.4.27): + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + /postcss-place@8.0.1(postcss@8.4.27): resolution: {integrity: sha512-Ow2LedN8sL4pq8ubukO77phSVt4QyCm35ZGCYXKvRFayAwcpgB0sjNJglDoTuRdUL32q/ZC1VkPBo0AOEr4Uiw==} engines: {node: ^14 || ^16 || >=18} @@ -37348,6 +36412,63 @@ packages: postcss-selector-not: 6.0.1(postcss@8.4.23) postcss-value-parser: 4.2.0 + /postcss-preset-env@7.8.3(postcss@8.4.27): + resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.27) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.27) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.27) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.27) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.27) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.27) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.27) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.27) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.27) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.27) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.27) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.27) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.27) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.27) + autoprefixer: 10.4.14(postcss@8.4.27) + browserslist: 4.21.10 + css-blank-pseudo: 3.0.3(postcss@8.4.27) + css-has-pseudo: 3.0.4(postcss@8.4.27) + css-prefers-color-scheme: 6.0.3(postcss@8.4.27) + cssdb: 7.4.1 + postcss: 8.4.27 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.27) + postcss-clamp: 4.1.0(postcss@8.4.27) + postcss-color-functional-notation: 4.2.4(postcss@8.4.27) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.27) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.27) + postcss-custom-media: 8.0.2(postcss@8.4.27) + postcss-custom-properties: 12.1.11(postcss@8.4.27) + postcss-custom-selectors: 6.0.3(postcss@8.4.27) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.27) + postcss-double-position-gradients: 3.1.2(postcss@8.4.27) + postcss-env-function: 4.0.6(postcss@8.4.27) + postcss-focus-visible: 6.0.4(postcss@8.4.27) + postcss-focus-within: 5.0.4(postcss@8.4.27) + postcss-font-variant: 5.0.0(postcss@8.4.27) + postcss-gap-properties: 3.0.5(postcss@8.4.27) + postcss-image-set-function: 4.0.7(postcss@8.4.27) + postcss-initial: 4.0.1(postcss@8.4.27) + postcss-lab-function: 4.2.1(postcss@8.4.27) + postcss-logical: 5.0.4(postcss@8.4.27) + postcss-media-minmax: 5.0.0(postcss@8.4.27) + postcss-nesting: 10.2.0(postcss@8.4.27) + postcss-opacity-percentage: 1.1.3(postcss@8.4.27) + postcss-overflow-shorthand: 3.0.4(postcss@8.4.27) + postcss-page-break: 3.0.4(postcss@8.4.27) + postcss-place: 7.0.5(postcss@8.4.27) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.27) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.27) + postcss-selector-not: 6.0.1(postcss@8.4.27) + postcss-value-parser: 4.2.0 + /postcss-preset-env@8.0.1(postcss@8.4.27): resolution: {integrity: sha512-IUbymw0JlUbyVG+I85963PNWgPp3KhnFa1sxU7M/2dGthxV8e297P0VV5W9XcyypoH4hirH2fp1c6fmqh6YnSg==} engines: {node: ^14 || ^16 || >=18} @@ -37419,6 +36540,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.27): + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-pseudo-class-any-link@8.0.2(postcss@8.4.27): resolution: {integrity: sha512-FYTIuRE07jZ2CW8POvctRgArQJ43yxhr5vLmImdKUvjFCkR09kh8pIdlCwdx/jbFm7MiW4QP58L4oOUv3grQYA==} engines: {node: ^14 || ^16 || >=18} @@ -37523,7 +36653,6 @@ packages: postcss: ^8.0.3 dependencies: postcss: 8.4.27 - dev: false /postcss-selector-not@6.0.1(postcss@8.4.23): resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} @@ -37534,6 +36663,15 @@ packages: postcss: 8.4.23 postcss-selector-parser: 6.0.11 + /postcss-selector-not@6.0.1(postcss@8.4.27): + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.11 + /postcss-selector-not@7.0.1(postcss@8.4.27): resolution: {integrity: sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==} engines: {node: ^14 || ^16 || >=18} @@ -38456,7 +37594,7 @@ packages: peerDependencies: react-scripts: '>=2.1.3' dependencies: - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5) semver: 5.7.1 dev: true @@ -38859,15 +37997,15 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.8 + '@babel/core': 7.22.20 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.83.1) '@svgr/webpack': 5.5.0 - babel-jest: 27.5.1(@babel/core@7.21.8) - babel-loader: 8.3.0(@babel/core@7.21.8)(webpack@5.83.1) - babel-plugin-named-asset-import: 0.3.8(@babel/core@7.21.8) + babel-jest: 27.5.1(@babel/core@7.22.20) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@5.83.1) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.22.20) babel-preset-react-app: 10.0.1 bfj: 7.0.2 - browserslist: 4.21.5 + browserslist: 4.21.10 camelcase: 6.3.0 case-sensitive-paths-webpack-plugin: 2.4.0 css-loader: 6.7.3(webpack@5.83.1) @@ -38885,24 +38023,24 @@ packages: jest-resolve: 27.5.1 jest-watch-typeahead: 1.1.0(jest@27.5.1) mini-css-extract-plugin: 2.7.3(webpack@5.83.1) - postcss: 8.4.23 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.23) - postcss-loader: 6.2.1(postcss@8.4.23)(webpack@5.83.1) - postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.23) - postcss-preset-env: 7.8.3(postcss@8.4.23) + postcss: 8.4.27 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.27) + postcss-loader: 6.2.1(postcss@8.4.27)(webpack@5.83.1) + postcss-normalize: 10.0.1(browserslist@4.21.10)(postcss@8.4.27) + postcss-preset-env: 7.8.3(postcss@8.4.27) prompts: 2.4.2 react: 16.14.0 react-app-polyfill: 3.0.0 react-dev-utils: 12.0.1(eslint@8.50.0)(typescript@4.9.5)(webpack@5.83.1) react-refresh: 0.11.0 - resolve: 1.22.1 + resolve: 1.22.2 resolve-url-loader: 4.0.0 sass-loader: 12.6.0(sass@1.62.1)(webpack@5.83.1) - semver: 7.3.8 + semver: 7.5.4 source-map-loader: 3.0.2(webpack@5.83.1) style-loader: 3.3.1(webpack@5.83.1) tailwindcss: 3.3.2(ts-node@10.9.1) - terser-webpack-plugin: 5.3.6(webpack@5.83.1) + terser-webpack-plugin: 5.3.9(webpack@5.83.1) typescript: 4.9.5 webpack: 5.83.1 webpack-dev-server: 4.11.1(debug@4.3.4)(webpack@5.83.1) @@ -38945,6 +38083,103 @@ packages: dev: false /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(sass@1.62.1)(ts-node@10.9.1)(typescript@4.9.5): + resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} + engines: {node: '>=14.0.0'} + hasBin: true + peerDependencies: + eslint: '*' + react: '>= 16 || ^18' + typescript: ^3.2.1 || ^4 + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.22.20 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.83.1) + '@svgr/webpack': 5.5.0 + babel-jest: 27.5.1(@babel/core@7.22.20) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@5.83.1) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.22.20) + babel-preset-react-app: 10.0.1 + bfj: 7.0.2 + browserslist: 4.21.10 + camelcase: 6.3.0 + case-sensitive-paths-webpack-plugin: 2.4.0 + css-loader: 6.7.3(webpack@5.83.1) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.83.1) + dotenv: 10.0.0 + dotenv-expand: 5.1.0 + eslint: 8.50.0 + eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(jest@27.5.1)(typescript@4.9.5) + eslint-webpack-plugin: 3.2.0(eslint@8.50.0)(webpack@5.83.1) + file-loader: 6.2.0(webpack@5.83.1) + fs-extra: 10.1.0 + html-webpack-plugin: 5.5.0(webpack@5.83.1) + identity-obj-proxy: 3.0.0 + jest: 27.5.1(ts-node@10.9.1) + jest-resolve: 27.5.1 + jest-watch-typeahead: 1.1.0(jest@27.5.1) + mini-css-extract-plugin: 2.7.3(webpack@5.83.1) + postcss: 8.4.27 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.27) + postcss-loader: 6.2.1(postcss@8.4.27)(webpack@5.83.1) + postcss-normalize: 10.0.1(browserslist@4.21.10)(postcss@8.4.27) + postcss-preset-env: 7.8.3(postcss@8.4.27) + prompts: 2.4.2 + react: 18.2.0 + react-app-polyfill: 3.0.0 + react-dev-utils: 12.0.1(eslint@8.50.0)(typescript@4.9.5)(webpack@5.83.1) + react-refresh: 0.11.0 + resolve: 1.22.2 + resolve-url-loader: 4.0.0 + sass-loader: 12.6.0(sass@1.62.1)(webpack@5.83.1) + semver: 7.5.4 + source-map-loader: 3.0.2(webpack@5.83.1) + style-loader: 3.3.1(webpack@5.83.1) + tailwindcss: 3.3.2(ts-node@10.9.1) + terser-webpack-plugin: 5.3.9(webpack@5.83.1) + typescript: 4.9.5 + webpack: 5.83.1 + webpack-dev-server: 4.11.1(debug@4.3.4)(webpack@5.83.1) + webpack-manifest-plugin: 4.1.1(webpack@5.83.1) + workbox-webpack-plugin: 6.5.4(webpack@5.83.1) + optionalDependencies: + fsevents: 2.3.3 + transitivePeerDependencies: + - '@babel/plugin-syntax-flow' + - '@babel/plugin-transform-react-jsx' + - '@parcel/css' + - '@swc/core' + - '@types/babel__core' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - debug + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - node-notifier + - node-sass + - rework + - rework-visit + - sass + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve + dev: false + + /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.21.0)(eslint@8.50.0)(react@18.2.0)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -39052,15 +38287,15 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.21.8 + '@babel/core': 7.22.20 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.83.1) '@svgr/webpack': 5.5.0 - babel-jest: 27.5.1(@babel/core@7.21.8) - babel-loader: 8.3.0(@babel/core@7.21.8)(webpack@5.83.1) - babel-plugin-named-asset-import: 0.3.8(@babel/core@7.21.8) + babel-jest: 27.5.1(@babel/core@7.22.20) + babel-loader: 8.3.0(@babel/core@7.22.20)(webpack@5.83.1) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.22.20) babel-preset-react-app: 10.0.1 bfj: 7.0.2 - browserslist: 4.21.5 + browserslist: 4.21.10 camelcase: 6.3.0 case-sensitive-paths-webpack-plugin: 2.4.0 css-loader: 6.7.3(webpack@5.83.1) @@ -39078,24 +38313,24 @@ packages: jest-resolve: 27.5.1 jest-watch-typeahead: 1.1.0(jest@27.5.1) mini-css-extract-plugin: 2.7.3(webpack@5.83.1) - postcss: 8.4.23 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.23) - postcss-loader: 6.2.1(postcss@8.4.23)(webpack@5.83.1) - postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.23) - postcss-preset-env: 7.8.3(postcss@8.4.23) + postcss: 8.4.27 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.27) + postcss-loader: 6.2.1(postcss@8.4.27)(webpack@5.83.1) + postcss-normalize: 10.0.1(browserslist@4.21.10)(postcss@8.4.27) + postcss-preset-env: 7.8.3(postcss@8.4.27) prompts: 2.4.2 react: 18.2.0 react-app-polyfill: 3.0.0 react-dev-utils: 12.0.1(eslint@8.50.0)(typescript@5.2.2)(webpack@5.83.1) react-refresh: 0.11.0 - resolve: 1.22.1 + resolve: 1.22.2 resolve-url-loader: 4.0.0 sass-loader: 12.6.0(sass@1.62.1)(webpack@5.83.1) - semver: 7.3.8 + semver: 7.5.4 source-map-loader: 3.0.2(webpack@5.83.1) style-loader: 3.3.1(webpack@5.83.1) tailwindcss: 3.3.2(ts-node@10.9.1) - terser-webpack-plugin: 5.3.6(webpack@5.83.1) + terser-webpack-plugin: 5.3.9(webpack@5.83.1) typescript: 5.2.2 webpack: 5.83.1 webpack-dev-server: 4.11.1(debug@4.3.4)(webpack@5.83.1) @@ -40705,9 +39940,9 @@ packages: peerDependencies: solid-js: ^1.3 dependencies: - '@babel/generator': 7.22.10 + '@babel/generator': 7.22.15 '@babel/helper-module-imports': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.19 solid-js: 1.7.12 dev: false @@ -40716,9 +39951,9 @@ packages: peerDependencies: solid-js: ^1.3 dependencies: - '@babel/generator': 7.22.10 + '@babel/generator': 7.22.15 '@babel/helper-module-imports': 7.22.5 - '@babel/types': 7.22.10 + '@babel/types': 7.22.19 solid-js: 1.7.5 /solid-start-node@0.2.26(solid-start@0.2.26)(undici@5.22.1)(vite@3.2.6): @@ -40776,11 +40011,11 @@ packages: solid-start-vercel: optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/generator': 7.21.9 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/preset-env': 7.21.5(@babel/core@7.22.10) - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.20) + '@babel/preset-env': 7.21.5(@babel/core@7.22.20) + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) '@babel/template': 7.20.7 '@solidjs/meta': 0.28.5(solid-js@1.7.5) '@solidjs/router': 0.6.0(solid-js@1.7.5) @@ -41551,7 +40786,7 @@ packages: react: 18.2.0 dev: false - /styled-jsx@5.1.1(@babel/core@7.22.10)(react@18.2.0): + /styled-jsx@5.1.1(@babel/core@7.22.20)(react@18.2.0): resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -41564,7 +40799,7 @@ packages: babel-plugin-macros: optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 client-only: 0.0.1 react: 18.2.0 @@ -43630,7 +42865,7 @@ packages: resolution: {integrity: sha512-z219Z65rOGD6jXIvIhpZFfwWdqQckB8sdZec2NO+TkcH1Bph7gL0hwLzRJs1KsOo4Jz4mF9guBXhsEnyEBGVfw==} hasBin: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/standalone': 7.21.4 '@babel/types': 7.22.10 defu: 6.1.2 @@ -43645,7 +42880,7 @@ packages: resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==} hasBin: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.22.20 '@babel/standalone': 7.22.12 '@babel/types': 7.22.10 defu: 6.1.2 @@ -44175,10 +43410,10 @@ packages: solid-js: ^1.7.2 vite: ^3.0.0 || ^4.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) '@types/babel__core': 7.20.0 - babel-preset-solid: 1.7.3(@babel/core@7.22.10) + babel-preset-solid: 1.7.3(@babel/core@7.22.20) merge-anything: 5.1.4 solid-js: 1.7.12 solid-refresh: 0.5.1(solid-js@1.7.12) @@ -44194,10 +43429,10 @@ packages: solid-js: ^1.7.2 vite: ^3.0.0 || ^4.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) '@types/babel__core': 7.20.0 - babel-preset-solid: 1.7.3(@babel/core@7.22.10) + babel-preset-solid: 1.7.3(@babel/core@7.22.20) merge-anything: 5.1.4 solid-js: 1.7.5 solid-refresh: 0.5.1(solid-js@1.7.5) @@ -44212,10 +43447,10 @@ packages: solid-js: ^1.7.2 vite: ^3.0.0 || ^4.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/preset-typescript': 7.21.0(@babel/core@7.22.10) + '@babel/core': 7.22.20 + '@babel/preset-typescript': 7.21.0(@babel/core@7.22.20) '@types/babel__core': 7.20.0 - babel-preset-solid: 1.7.3(@babel/core@7.22.10) + babel-preset-solid: 1.7.3(@babel/core@7.22.20) merge-anything: 5.1.4 solid-js: 1.7.5 solid-refresh: 0.5.1(solid-js@1.7.5)