From ae4105e961d36587f9f022816d3ac0017f34855e Mon Sep 17 00:00:00 2001 From: Himself65 Date: Sun, 19 Feb 2023 02:40:39 -0600 Subject: [PATCH] chore: unify version (#1123) --- apps/desktop/package.json | 29 +- apps/web/.eslintrc | 3 +- apps/web/{next.config.js => next.config.mjs} | 19 +- apps/web/package.json | 48 +- apps/web/scripts/{gitInfo.js => gitInfo.mjs} | 10 +- apps/web/scripts/{printer.js => printer.mjs} | 7 +- .../components/editor-mode-switch/style.ts | 1 - .../theme-mode-switch/style.ts | 1 - apps/web/src/components/provider-composer.ts | 2 - .../general/delete/Delete.tsx | 16 +- .../member/InviteMemberModal.tsx | 7 +- .../workspace-setting/member/MembersPage.tsx | 2 +- apps/web/src/hooks/use-page-helper.ts | 2 +- apps/web/src/providers/ConfirmProvider.tsx | 1 - apps/web/src/providers/ThemeProvider.tsx | 7 +- apps/web/src/store/globalModal/index.tsx | 1 - apps/web/src/utils/get-is-mobile.ts | 1 - apps/web/src/utils/tools.ts | 1 - package.json | 22 +- packages/component/package.json | 22 +- packages/data-center/package.json | 19 +- packages/i18n/package.json | 8 +- packages/i18n/src/index.ts | 7 + packages/logger/package.json | 4 +- packages/store/package.json | 6 +- pnpm-lock.yaml | 2734 +++++++---------- 26 files changed, 1286 insertions(+), 1694 deletions(-) rename apps/web/{next.config.js => next.config.mjs} (86%) rename apps/web/scripts/{gitInfo.js => gitInfo.mjs} (77%) rename apps/web/scripts/{printer.js => printer.mjs} (74%) diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 17aa0078ba..52e5a7db54 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -15,35 +15,36 @@ "build:app": "tauri build" }, "dependencies": { - "@blocksuite/icons": "^2.0.14", + "@blocksuite/icons": "2.0.12", "@blocksuite/store": "0.4.1", - "@emotion/react": "^11.10.5", - "@emotion/styled": "^11.10.5", + "@emotion/react": "^11.10.6", + "@emotion/styled": "^11.10.6", "@tauri-apps/api": "^1.2.0", "json-schema-to-typescript": "^11.0.2", - "lib0": "^0.2.58", - "next": "^13.1.6", + "lib0": "^0.2.62", + "next": "13.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18.2.0", "react-router": "^6.5.0", "react-router-dom": "^6.5.0", "y-protocols": "^1.0.5", - "yjs": "^13.5.43" + "yjs": "^13.5.46" }, "devDependencies": { "@tauri-apps/cli": "^1.2.3", - "@types/node": "^18.11.17", - "@types/react": "^18.0.26", - "@types/react-dom": "^18.0.9", + "@types/node": "^18.14.0", + "@types/react": "^18.0.28", + "@types/react-dom": "^18.0.11", "concurrently": "^7.6.0", "cross-env": "^7.0.3", - "esbuild": "^0.16.10", - "prettier": "2.8.1", - "rimraf": "^3.0.2", + "esbuild": "^0.17.8", + "lit": "^2.6.1", + "prettier": "2.8.4", + "rimraf": "^4.1.2", "typescript": "^4.9.4", - "typesync": "^0.9.2", - "vite": "^4.0.2", + "typesync": "^0.10.0", + "vite": "^4.1.2", "zx": "^7.1.1" } } diff --git a/apps/web/.eslintrc b/apps/web/.eslintrc index e2081ec106..5d3a253002 100644 --- a/apps/web/.eslintrc +++ b/apps/web/.eslintrc @@ -1,4 +1,5 @@ { "root": false, - "extends": "next/core-web-vitals" + "extends": "next/core-web-vitals", + "reportUnusedDisableDirectives": true } diff --git a/apps/web/next.config.js b/apps/web/next.config.mjs similarity index 86% rename from apps/web/next.config.js rename to apps/web/next.config.mjs index fccf586828..643717e814 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.mjs @@ -1,8 +1,12 @@ -/* eslint @typescript-eslint/no-var-requires: "off" */ -const { getGitVersion, getCommitHash } = require('./scripts/gitInfo'); -const { dependencies } = require('./package.json'); -const path = require('node:path'); -const printer = require('./scripts/printer').printer; +import { getGitVersion, getCommitHash } from './scripts/gitInfo.mjs'; +import fs from 'node:fs'; +import path from 'node:path'; +import { printer } from './scripts/printer.mjs'; +import debugLocal from 'next-debug-local'; + +const dependencies = JSON.parse(fs.readFileSync('./package.json', 'utf8'))[ + 'dependencies' +]; const enableDebugLocal = path.isAbsolute(process.env.LOCAL_BLOCK_SUITE ?? ''); const EDITOR_VERSION = enableDebugLocal @@ -56,7 +60,6 @@ const nextConfig = { ], webpack: config => { config.experiments = { ...config.experiments, topLevelAwait: true }; - config.resolve.alias['yjs'] = require.resolve('yjs'); config.module.rules.push({ test: /\.md$/i, loader: 'raw-loader', @@ -81,7 +84,7 @@ const nextConfig = { }; const baseDir = process.env.LOCAL_BLOCK_SUITE ?? '/'; -const withDebugLocal = require('next-debug-local')( +const withDebugLocal = debugLocal( { '@blocksuite/editor': path.resolve(baseDir, 'packages', 'editor'), '@blocksuite/blocks/models': path.resolve( @@ -115,4 +118,4 @@ const detectFirebaseConfig = () => { }; detectFirebaseConfig(); -module.exports = withDebugLocal(nextConfig); +export default withDebugLocal(nextConfig); diff --git a/apps/web/package.json b/apps/web/package.json index 2c251cc4bb..5de148d031 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -16,50 +16,42 @@ "@blocksuite/blocks": "0.4.1", "@blocksuite/editor": "0.4.1", "@blocksuite/global": "0.4.1", - "@blocksuite/icons": "^2.0.14", + "@blocksuite/icons": "2.0.12", "@blocksuite/store": "0.4.1", - "@emotion/css": "^11.10.5", - "@emotion/react": "^11.10.5", + "@emotion/css": "^11.10.6", + "@emotion/react": "^11.10.6", "@emotion/server": "^11.10.0", - "@emotion/styled": "^11.10.5", + "@emotion/styled": "^11.10.6", "@fontsource/poppins": "^4.5.10", - "@fontsource/space-mono": "^4.5.10", - "@mui/base": "=5.0.0-alpha.117", - "@mui/icons-material": "=5.11.0", - "@mui/material": "=5.11.8", + "@fontsource/space-mono": "^4.5.12", + "@mui/base": "5.0.0-alpha.118", + "@mui/icons-material": "^5.11.9", + "@mui/material": "^5.11.9", "@toeverything/pathfinder-logger": "workspace:@affine/logger@*", - "cmdk": "^0.1.20", + "cmdk": "^0.1.22", "css-spring": "^4.1.0", "dayjs": "^1.11.7", "lit": "^2.6.1", "next": "13.1.0", "next-debug-local": "^0.1.5", - "prettier": "^2.7.1", + "prettier": "^2.8.4", "quill": "^1.3.7", "quill-cursors": "^4.0.0", "react": "18.2.0", "react-dom": "18.2.0", - "yjs": "^13.5.45", - "zustand": "^4.3.2" + "yjs": "^13.5.46", + "zustand": "^4.3.3" }, "devDependencies": { - "@types/node": "18.7.18", - "@types/react": "18.0.20", - "@types/react-dom": "18.0.6", + "@types/node": "18.14.0", + "@types/react": "18.0.28", + "@types/react-dom": "18.0.11", "@types/wicg-file-system-access": "^2020.9.5", - "chalk": "^4.1.2", - "eslint-config-next": "12.3.1", + "chalk": "^5.2.0", + "eslint": "^8.34.0", + "eslint-config-next": "13.1.6", "raw-loader": "^4.0.2", - "typescript": "^4.9.5" - }, - "eslintConfig": { - "extends": [ - "next/core-web-vitals", - "plugin:@next/next/recommended" - ], - "rules": { - "prettier/prettier": "warn" - }, - "reportUnusedDisableDirectives": true + "typescript": "^4.9.5", + "webpack": "^5.75.0" } } diff --git a/apps/web/scripts/gitInfo.js b/apps/web/scripts/gitInfo.mjs similarity index 77% rename from apps/web/scripts/gitInfo.js rename to apps/web/scripts/gitInfo.mjs index becc95e59e..51ea7d5127 100644 --- a/apps/web/scripts/gitInfo.js +++ b/apps/web/scripts/gitInfo.mjs @@ -1,8 +1,5 @@ // @ts-check - -// import { execSync } from 'child_process' -// eslint-disable-next-line @typescript-eslint/no-var-requires -const { execSync } = require('child_process'); +import { execSync } from 'node:child_process'; const hasGit = () => { try { @@ -41,7 +38,4 @@ const getGitVersion = () => { const getCommitHash = (rev = 'HEAD') => execSync(`git rev-parse --short ${rev}`).toString(); -module.exports = { - getGitVersion, - getCommitHash, -}; +export { getCommitHash, getGitVersion }; diff --git a/apps/web/scripts/printer.js b/apps/web/scripts/printer.mjs similarity index 74% rename from apps/web/scripts/printer.js rename to apps/web/scripts/printer.mjs index ea86acc91e..b180187ad3 100644 --- a/apps/web/scripts/printer.js +++ b/apps/web/scripts/printer.mjs @@ -1,6 +1,5 @@ -// eslint-disable-next-line @typescript-eslint/no-var-requires -const chalk = require('chalk'); -const printer = { +import chalk from 'chalk'; +export const printer = { debug: msg => { const result = chalk.green`debug` + chalk.white(' - ' + msg); console.log(result); @@ -17,5 +16,3 @@ const printer = { return result; }, }; - -module.exports = { printer }; diff --git a/apps/web/src/components/editor-mode-switch/style.ts b/apps/web/src/components/editor-mode-switch/style.ts index 300c44fe1f..cee75ce544 100644 --- a/apps/web/src/components/editor-mode-switch/style.ts +++ b/apps/web/src/components/editor-mode-switch/style.ts @@ -1,5 +1,4 @@ import { displayFlex, keyframes, styled } from '@affine/component'; -// eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore import spring, { toString } from 'css-spring'; diff --git a/apps/web/src/components/header/header-right-items/theme-mode-switch/style.ts b/apps/web/src/components/header/header-right-items/theme-mode-switch/style.ts index 0677921750..d03be61940 100644 --- a/apps/web/src/components/header/header-right-items/theme-mode-switch/style.ts +++ b/apps/web/src/components/header/header-right-items/theme-mode-switch/style.ts @@ -1,5 +1,4 @@ import { displayFlex, keyframes, styled } from '@affine/component'; -// eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore import spring, { toString } from 'css-spring'; import { CSSProperties } from 'react'; diff --git a/apps/web/src/components/provider-composer.ts b/apps/web/src/components/provider-composer.ts index 23691240ba..188d0b76fb 100644 --- a/apps/web/src/components/provider-composer.ts +++ b/apps/web/src/components/provider-composer.ts @@ -2,12 +2,10 @@ import { cloneElement, FC, PropsWithChildren, ReactNode } from 'react'; export const ProviderComposer: FC< PropsWithChildren<{ - // eslint-disable-next-line @typescript-eslint/no-explicit-any contexts: any; }> > = ({ contexts, children }) => contexts.reduceRight( - // eslint-disable-next-line @typescript-eslint/no-explicit-any (kids: ReactNode, parent: any) => cloneElement(parent, { children: kids, diff --git a/apps/web/src/components/workspace-setting/general/delete/Delete.tsx b/apps/web/src/components/workspace-setting/general/delete/Delete.tsx index 474bc0309d..02a1efe611 100644 --- a/apps/web/src/components/workspace-setting/general/delete/Delete.tsx +++ b/apps/web/src/components/workspace-setting/general/delete/Delete.tsx @@ -52,22 +52,18 @@ export const WorkspaceDelete = ({ Deleting ( - - {{ workspace: workspace.name }} - - ) cannot be undone, please proceed with caution. along with all - its content. + {workspace.name}) + cannot be undone, please proceed with caution. along with all its + content. ) : ( Deleting ( - - {{ workspace: workspace.name }} - - ) will delete both local and cloud data, this operation cannot be - undone, please proceed with caution. + {workspace.name}) will + delete both local and cloud data, this operation cannot be undone, + please proceed with caution. )} diff --git a/apps/web/src/components/workspace-setting/member/InviteMemberModal.tsx b/apps/web/src/components/workspace-setting/member/InviteMemberModal.tsx index 51ebf58668..97cd73d1bd 100644 --- a/apps/web/src/components/workspace-setting/member/InviteMemberModal.tsx +++ b/apps/web/src/components/workspace-setting/member/InviteMemberModal.tsx @@ -15,17 +15,16 @@ interface LoginModalProps { workspaceId: string; onInviteSuccess: () => void; } -// eslint-disable-next-line @typescript-eslint/no-explicit-any + export const debounce = any>( fn: T, time?: number, immediate?: boolean - // eslint-disable-next-line @typescript-eslint/no-explicit-any ): ((...args: any) => any) => { let timeoutId: null | number; let defaultImmediate = immediate || false; const delay = time || 300; - // eslint-disable-next-line @typescript-eslint/no-explicit-any + return (...args: any) => { if (defaultImmediate) { fn.apply(this, args); @@ -35,7 +34,7 @@ export const debounce = any>( if (timeoutId) { clearTimeout(timeoutId); } - // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore timeoutId = setTimeout(() => { fn.apply(this, args); diff --git a/apps/web/src/components/workspace-setting/member/MembersPage.tsx b/apps/web/src/components/workspace-setting/member/MembersPage.tsx index 1e0808f6bb..bbd0777263 100644 --- a/apps/web/src/components/workspace-setting/member/MembersPage.tsx +++ b/apps/web/src/components/workspace-setting/member/MembersPage.tsx @@ -102,7 +102,7 @@ export const MembersPage = ({ workspace }: { workspace: WorkspaceUnit }) => { { // FIXME: remove ignore - // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore await removeMember(member.id); toast( diff --git a/apps/web/src/hooks/use-page-helper.ts b/apps/web/src/hooks/use-page-helper.ts index 26056691ca..02febbe804 100644 --- a/apps/web/src/hooks/use-page-helper.ts +++ b/apps/web/src/hooks/use-page-helper.ts @@ -119,7 +119,7 @@ export const usePageHelper = (): EditorHandlers => { }, permanentlyDeletePage: pageId => { // TODO: workspace.meta.removePage or workspace.removePage? - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + currentWorkspace!.blocksuiteWorkspace?.meta.removePage(pageId); }, openPage: (pageId, query = {}, newTab = false) => { diff --git a/apps/web/src/providers/ConfirmProvider.tsx b/apps/web/src/providers/ConfirmProvider.tsx index 5ba3e0d1fc..a4671d3897 100644 --- a/apps/web/src/providers/ConfirmProvider.tsx +++ b/apps/web/src/providers/ConfirmProvider.tsx @@ -76,7 +76,6 @@ export const useConfirm: UseBoundStore = (( ) => { const api = useConfirmApi(); return useStore(api, selector, equals); - // eslint-disable-next-line @typescript-eslint/no-explicit-any }) as any; function Records() { diff --git a/apps/web/src/providers/ThemeProvider.tsx b/apps/web/src/providers/ThemeProvider.tsx index e875e79418..5882040ed5 100644 --- a/apps/web/src/providers/ThemeProvider.tsx +++ b/apps/web/src/providers/ThemeProvider.tsx @@ -30,7 +30,7 @@ import useCurrentPageMeta from '@/hooks/use-current-page-meta'; export const ThemeContext = createContext({ mode: 'light', - // eslint-disable-next-line @typescript-eslint/no-empty-function + changeMode: () => {}, theme: getLightTheme('page'), }); @@ -124,10 +124,7 @@ export const ThemeProvider = ({ diff --git a/apps/web/src/store/globalModal/index.tsx b/apps/web/src/store/globalModal/index.tsx index 69db466350..70292e4961 100644 --- a/apps/web/src/store/globalModal/index.tsx +++ b/apps/web/src/store/globalModal/index.tsx @@ -118,7 +118,6 @@ export const useModal: UseBoundStore = (( ) => { const api = useModalApi(); return useStore(api, selector, equals); - // eslint-disable-next-line @typescript-eslint/no-explicit-any }) as any; const Modals: React.FC = function Modal() { diff --git a/apps/web/src/utils/get-is-mobile.ts b/apps/web/src/utils/get-is-mobile.ts index 1755a40061..4399da501b 100644 --- a/apps/web/src/utils/get-is-mobile.ts +++ b/apps/web/src/utils/get-is-mobile.ts @@ -13,7 +13,6 @@ export function isMobile(userAgent: string) { export const getIsMobile = function () { return isMobile( - // eslint-disable-next-line @typescript-eslint/no-explicit-any navigator?.userAgent || navigator?.vendor || (window as any)?.opera ); }; diff --git a/apps/web/src/utils/tools.ts b/apps/web/src/utils/tools.ts index eaa7bc6774..fef254cd16 100644 --- a/apps/web/src/utils/tools.ts +++ b/apps/web/src/utils/tools.ts @@ -1,4 +1,3 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ // eslint-disable-next-line @typescript-eslint/ban-types export function debounce(fn: Function, timeout: number) { let timeoutId: any; diff --git a/package.json b/package.json index 4362aca063..a9d28ee29f 100644 --- a/package.json +++ b/package.json @@ -29,18 +29,18 @@ }, "devDependencies": { "@changesets/cli": "^2.26.0", - "@playwright/test": "^1.29.1", + "@playwright/test": "^1.30.0", "@testing-library/react": "^14.0.0", - "@types/eslint": "^8.4.10", - "@types/node": "^18.11.17", - "@typescript-eslint/eslint-plugin": "^5.47.0", - "@typescript-eslint/parser": "^5.47.0", + "@types/eslint": "^8.21.1", + "@types/node": "^18.14.0", + "@typescript-eslint/eslint-plugin": "^5.52.0", + "@typescript-eslint/parser": "^5.52.0", "@vitejs/plugin-react": "^3.1.0", "@vitest/coverage-istanbul": "^0.28.5", "concurrently": "^7.6.0", "cross-env": "^7.0.3", "eslint": "^8.34.0", - "eslint-config-prettier": "^8.5.0", + "eslint-config-prettier": "^8.6.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", @@ -48,11 +48,11 @@ "eslint-plugin-unused-imports": "^2.0.0", "fake-indexeddb": "4.0.1", "got": "^12.5.3", - "happy-dom": "^8.4.4", - "husky": "^8.0.2", - "lint-staged": "^13.1.0", + "happy-dom": "^8.5.0", + "husky": "^8.0.3", + "lint-staged": "^13.1.2", "nyc": "^15.1.0", - "prettier": "^2.7.1", + "prettier": "^2.8.4", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^4.9.5", @@ -62,7 +62,7 @@ "pnpm": { "patchedDependencies": { "@tauri-apps/api@1.2.0": "patches/@tauri-apps__api@1.2.0.patch", - "next@13.1.0": "patches/next@13.1.0.patch" + "next@13.1.6": "patches/next@13.1.0.patch" } } } diff --git a/packages/component/package.json b/packages/component/package.json index 928207ca70..ca39b3a8b8 100644 --- a/packages/component/package.json +++ b/packages/component/package.json @@ -12,14 +12,14 @@ "@blocksuite/blocks": "0.4.1", "@blocksuite/editor": "0.4.1", "@blocksuite/global": "0.4.1", - "@blocksuite/icons": "^2.0.2", + "@blocksuite/icons": "2.0.12", "@blocksuite/react": "0.4.1", "@blocksuite/store": "0.4.1", - "@emotion/react": "^11.10.5", - "@emotion/styled": "^11.10.5", - "@mui/base": "=5.0.0-alpha.117", - "@mui/icons-material": "=5.11.0", - "@mui/material": "=5.11.8", + "@emotion/react": "^11.10.6", + "@emotion/styled": "^11.10.6", + "@mui/base": "5.0.0-alpha.118", + "@mui/icons-material": "^5.11.9", + "@mui/material": "^5.11.9", "lit": "^2.6.1", "react": "^18.2.0", "react-dom": "^18.2.0" @@ -31,14 +31,16 @@ "@storybook/builder-vite": "^7.0.0-beta.46", "@storybook/react": "^7.0.0-beta.46", "@storybook/react-vite": "7.0.0-beta.46", - "@types/react": "^18.0.27", - "@types/react-dom": "18.0.10", + "@swc/core": "^1.3.35", + "@types/react": "^18.0.28", + "@types/react-dom": "18.0.11", "@vitejs/plugin-react": "^3.1.0", "storybook": "^7.0.0-beta.46", "swc": "^1.0.11", "swc-loader": "^0.2.3", "typescript": "^4.9.5", - "vite": "^4.0.2", - "webpack": "^5.75.0" + "vite": "^4.1.2", + "webpack": "^5.75.0", + "yjs": "^13.5.46" } } diff --git a/packages/data-center/package.json b/packages/data-center/package.json index ccb12c72f9..bc7f61d844 100644 --- a/packages/data-center/package.json +++ b/packages/data-center/package.json @@ -4,10 +4,6 @@ "private": true, "description": "", "main": "./src/index.ts", - "scripts": { - "dev": "tsc --project ./tsconfig.json -w", - "build": "tsc --project ./tsconfig.json" - }, "repository": { "type": "git", "url": "git+https://github.com/toeverything/AFFiNE.git" @@ -15,9 +11,7 @@ "devDependencies": { "@types/debug": "^4.1.7", "fake-indexeddb": "4.0.1", - "lit": "^2.6.1", - "typescript": "^4.9.5", - "yjs": "^13.5.45" + "typescript": "^4.9.5" }, "dependencies": { "@blocksuite/blocks": "0.4.1", @@ -25,13 +19,14 @@ "@tauri-apps/api": "^1.2.0", "debug": "^4.3.4", "encoding": "^0.1.13", - "firebase": "^9.15.0", + "firebase": "^9.17.1", "idb-keyval": "^6.2.0", "js-base64": "^3.7.5", - "ky": "^0.33.0", + "ky": "^0.33.2", "ky-universal": "^0.11.0", - "lib0": "^0.2.58", - "swr": "^2.0.0", - "y-protocols": "^1.0.5" + "lib0": "^0.2.62", + "lit": "^2.6.1", + "y-protocols": "^1.0.5", + "yjs": "^13.5.46" } } diff --git a/packages/i18n/package.json b/packages/i18n/package.json index fadccdb8aa..dcb86a0af1 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -26,12 +26,14 @@ "url": "git+https://github.com/toeverything/AFFiNE.git" }, "dependencies": { - "i18next": "^21.9.1", - "prettier": "^2.7.1", - "react-i18next": "^11.18.4" + "react": "^18.2.0", + "i18next": "^22.4.10", + "react-i18next": "^12.1.5" }, "devDependencies": { + "@types/node": "^18.14.0", "@types/prettier": "^2.7.2", + "prettier": "^2.8.4", "ts-node": "^10.9.1", "typescript": "^4.9.5" } diff --git a/packages/i18n/src/index.ts b/packages/i18n/src/index.ts index 2e124cc3d6..b14ebd1aa4 100644 --- a/packages/i18n/src/index.ts +++ b/packages/i18n/src/index.ts @@ -4,6 +4,13 @@ import { initReactI18next, Trans, useTranslation } from 'react-i18next'; import { LOCALES } from './resources'; import type en_US from './resources/en.json'; +declare module 'i18next' { + // Refs: https://www.i18next.com/overview/typescript#argument-of-type-defaulttfuncreturn-is-not-assignable-to-parameter-of-type-xyz + interface CustomTypeOptions { + returnNull: false; + } +} + // const localStorage = { // getItem() { // return undefined; diff --git a/packages/logger/package.json b/packages/logger/package.json index fdb3990f68..b5dbf295b2 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -13,12 +13,12 @@ "url": "git+https://github.com/toeverything/AFFiNE.git" }, "dependencies": { - "next": "^12.3.1", + "next": "^13.1.6", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@types/react": "^18.0.21", + "@types/react": "^18.0.28", "typescript": "^4.9.5" } } diff --git a/packages/store/package.json b/packages/store/package.json index 8ccf3e7efc..7272f31ab5 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -9,11 +9,15 @@ "@blocksuite/global": "0.4.1", "@blocksuite/react": "0.4.1", "@blocksuite/store": "0.4.1", + "lit": "^2.6.1", "react": "^18.2.0", + "react-dom": "^18.2.0", "swr": "^2.0.3", + "yjs": "^13.5.46", "zustand": "^4.3.3" }, "devDependencies": { - "@types/react": "^18.0.28" + "@types/react": "^18.0.28", + "@types/react-dom": "^18.0.11" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6fcc62fba3..803885c9b1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,7 +1,7 @@ lockfileVersion: 5.4 patchedDependencies: - next@13.1.0: + next@13.1.6: hash: rdilrli7uexa22ralt77ekax24 path: patches/next@13.1.0.patch '@tauri-apps/api@1.2.0': @@ -13,18 +13,18 @@ importers: .: specifiers: '@changesets/cli': ^2.26.0 - '@playwright/test': ^1.29.1 + '@playwright/test': ^1.30.0 '@testing-library/react': ^14.0.0 - '@types/eslint': ^8.4.10 - '@types/node': ^18.11.17 - '@typescript-eslint/eslint-plugin': ^5.47.0 - '@typescript-eslint/parser': ^5.47.0 + '@types/eslint': ^8.21.1 + '@types/node': ^18.14.0 + '@typescript-eslint/eslint-plugin': ^5.52.0 + '@typescript-eslint/parser': ^5.52.0 '@vitejs/plugin-react': ^3.1.0 '@vitest/coverage-istanbul': ^0.28.5 concurrently: ^7.6.0 cross-env: ^7.0.3 eslint: ^8.34.0 - eslint-config-prettier: ^8.5.0 + eslint-config-prettier: ^8.6.0 eslint-plugin-import: ^2.27.5 eslint-plugin-prettier: ^4.2.1 eslint-plugin-react: ^7.32.2 @@ -32,11 +32,11 @@ importers: eslint-plugin-unused-imports: ^2.0.0 fake-indexeddb: 4.0.1 got: ^12.5.3 - happy-dom: ^8.4.4 - husky: ^8.0.2 - lint-staged: ^13.1.0 + happy-dom: ^8.5.0 + husky: ^8.0.3 + lint-staged: ^13.1.2 nyc: ^15.1.0 - prettier: ^2.7.1 + prettier: ^2.8.4 react: ^18.2.0 react-dom: ^18.2.0 typescript: ^4.9.5 @@ -44,95 +44,97 @@ importers: vitest: ^0.28.5 devDependencies: '@changesets/cli': 2.26.0 - '@playwright/test': 1.29.1 + '@playwright/test': 1.30.0 '@testing-library/react': 14.0.0_biqbaboplfbrettd7655fr4n2y - '@types/eslint': 8.4.10 - '@types/node': 18.11.18 - '@typescript-eslint/eslint-plugin': 5.48.0_ddfje6clmktndfpbpk5swat3gi - '@typescript-eslint/parser': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm + '@types/eslint': 8.21.1 + '@types/node': 18.14.0 + '@typescript-eslint/eslint-plugin': 5.52.0_6cfvjsbua5ptj65675bqcn6oza + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm '@vitejs/plugin-react': 3.1.0_vite@4.1.2 - '@vitest/coverage-istanbul': 0.28.5_happy-dom@8.4.4 + '@vitest/coverage-istanbul': 0.28.5_happy-dom@8.5.0 concurrently: 7.6.0 cross-env: 7.0.3 eslint: 8.34.0 - eslint-config-prettier: 8.5.0_eslint@8.34.0 - eslint-plugin-import: 2.27.5_srp5jszoagkj3pnpsesjjepemq - eslint-plugin-prettier: 4.2.1_f52onrjfrbj5enknkp6ytmuaxu + eslint-config-prettier: 8.6.0_eslint@8.34.0 + eslint-plugin-import: 2.27.5_mcvs2y73sfmcxqzpjj5lr7a2m4 + eslint-plugin-prettier: 4.2.1_u5wnrdwibbfomslmnramz52buy eslint-plugin-react: 7.32.2_eslint@8.34.0 eslint-plugin-simple-import-sort: 10.0.0_eslint@8.34.0 - eslint-plugin-unused-imports: 2.0.0_3p5c3yu7rnlwfc7nnagwrjhciu + eslint-plugin-unused-imports: 2.0.0_vqeavzxdzk2atb75l6fx3anzpi fake-indexeddb: 4.0.1 got: 12.5.3 - happy-dom: 8.4.4 - husky: 8.0.2 - lint-staged: 13.1.0 + happy-dom: 8.5.0 + husky: 8.0.3 + lint-staged: 13.1.2 nyc: 15.1.0 - prettier: 2.7.1 + prettier: 2.8.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 typescript: 4.9.5 - vite: 4.1.2_@types+node@18.11.18 - vitest: 0.28.5_happy-dom@8.4.4 + vite: 4.1.2_@types+node@18.14.0 + vitest: 0.28.5_happy-dom@8.5.0 apps/desktop: specifiers: - '@blocksuite/icons': ^2.0.14 + '@blocksuite/icons': 2.0.12 '@blocksuite/store': 0.4.1 - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 + '@emotion/react': ^11.10.6 + '@emotion/styled': ^11.10.6 '@tauri-apps/api': ^1.2.0 '@tauri-apps/cli': ^1.2.3 - '@types/node': ^18.11.17 - '@types/react': ^18.0.26 - '@types/react-dom': ^18.0.9 + '@types/node': ^18.14.0 + '@types/react': ^18.0.28 + '@types/react-dom': ^18.0.11 concurrently: ^7.6.0 cross-env: ^7.0.3 - esbuild: ^0.16.10 + esbuild: ^0.17.8 json-schema-to-typescript: ^11.0.2 - lib0: ^0.2.58 - next: ^13.1.6 - prettier: 2.8.1 + lib0: ^0.2.62 + lit: ^2.6.1 + next: 13.1.0 + prettier: 2.8.4 react: ^18.2.0 react-dom: ^18.2.0 react-is: ^18.2.0 react-router: ^6.5.0 react-router-dom: ^6.5.0 - rimraf: ^3.0.2 + rimraf: ^4.1.2 typescript: ^4.9.4 - typesync: ^0.9.2 - vite: ^4.0.2 + typesync: ^0.10.0 + vite: ^4.1.2 y-protocols: ^1.0.5 - yjs: ^13.5.43 + yjs: ^13.5.46 zx: ^7.1.1 dependencies: - '@blocksuite/icons': 2.0.14_3stiutgnnbnfnf3uowm5cip22i - '@blocksuite/store': 0.4.1_yjs@13.5.45 - '@emotion/react': 11.10.5_3stiutgnnbnfnf3uowm5cip22i - '@emotion/styled': 11.10.5_jrh5enlbqfbnumycmktdqgd6se + '@blocksuite/icons': 2.0.12_pmekkgnqduwlme35zpnqhenc34 + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu json-schema-to-typescript: 11.0.3 lib0: 0.2.62 - next: 13.1.6_biqbaboplfbrettd7655fr4n2y + next: 13.1.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 react-router: 6.8.1_react@18.2.0 react-router-dom: 6.8.1_biqbaboplfbrettd7655fr4n2y y-protocols: 1.0.5 - yjs: 13.5.45 + yjs: 13.5.46 devDependencies: '@tauri-apps/cli': 1.2.3 - '@types/node': 18.11.18 - '@types/react': 18.0.27 - '@types/react-dom': 18.0.10 + '@types/node': 18.14.0 + '@types/react': 18.0.28 + '@types/react-dom': 18.0.11 concurrently: 7.6.0 cross-env: 7.0.3 - esbuild: 0.16.17 - prettier: 2.8.1 - rimraf: 3.0.2 + esbuild: 0.17.8 + lit: 2.6.1 + prettier: 2.8.4 + rimraf: 4.1.2 typescript: 4.9.5 - typesync: 0.9.2 - vite: 4.1.1_@types+node@18.11.18 + typesync: 0.10.0 + vite: 4.1.2_@types+node@18.14.0 zx: 7.1.1 apps/web: @@ -144,81 +146,85 @@ importers: '@blocksuite/blocks': 0.4.1 '@blocksuite/editor': 0.4.1 '@blocksuite/global': 0.4.1 - '@blocksuite/icons': ^2.0.14 + '@blocksuite/icons': 2.0.12 '@blocksuite/store': 0.4.1 - '@emotion/css': ^11.10.5 - '@emotion/react': ^11.10.5 + '@emotion/css': ^11.10.6 + '@emotion/react': ^11.10.6 '@emotion/server': ^11.10.0 - '@emotion/styled': ^11.10.5 + '@emotion/styled': ^11.10.6 '@fontsource/poppins': ^4.5.10 - '@fontsource/space-mono': ^4.5.10 - '@mui/base': '=5.0.0-alpha.117' - '@mui/icons-material': '=5.11.0' - '@mui/material': '=5.11.8' + '@fontsource/space-mono': ^4.5.12 + '@mui/base': 5.0.0-alpha.118 + '@mui/icons-material': ^5.11.9 + '@mui/material': ^5.11.9 '@toeverything/pathfinder-logger': workspace:@affine/logger@* - '@types/node': 18.7.18 - '@types/react': 18.0.20 - '@types/react-dom': 18.0.6 + '@types/node': 18.14.0 + '@types/react': 18.0.28 + '@types/react-dom': 18.0.11 '@types/wicg-file-system-access': ^2020.9.5 - chalk: ^4.1.2 - cmdk: ^0.1.20 + chalk: ^5.2.0 + cmdk: ^0.1.22 css-spring: ^4.1.0 dayjs: ^1.11.7 - eslint-config-next: 12.3.1 + eslint: ^8.34.0 + eslint-config-next: 13.1.6 lit: ^2.6.1 next: 13.1.0 next-debug-local: ^0.1.5 - prettier: ^2.7.1 + prettier: ^2.8.4 quill: ^1.3.7 quill-cursors: ^4.0.0 raw-loader: ^4.0.2 react: 18.2.0 react-dom: 18.2.0 typescript: ^4.9.5 - yjs: ^13.5.45 - zustand: ^4.3.2 + webpack: ^5.75.0 + yjs: ^13.5.46 + zustand: ^4.3.3 dependencies: '@affine/component': link:../../packages/component '@affine/datacenter': link:../../packages/data-center '@affine/i18n': link:../../packages/i18n '@affine/store': link:../../packages/store - '@blocksuite/blocks': 0.4.1_3qrlive734t4pirxhx2n4mip3a + '@blocksuite/blocks': 0.4.1_tdlxw56kpoc45go7l7gsdk5hjm '@blocksuite/editor': 0.4.1_e5cdg6aldwc4hxgrfphufwkeea '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/icons': 2.0.14_w5j4k42lgipnm43s3brx6h3c34 - '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.45 - '@emotion/css': 11.10.5 - '@emotion/react': 11.10.5_w5j4k42lgipnm43s3brx6h3c34 - '@emotion/server': 11.10.0_@emotion+css@11.10.5 - '@emotion/styled': 11.10.5_s7uipz3r575xmfz2gje3lxfqua + '@blocksuite/icons': 2.0.12_pmekkgnqduwlme35zpnqhenc34 + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 + '@emotion/css': 11.10.6 + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/server': 11.10.0_@emotion+css@11.10.6 + '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia '@fontsource/poppins': 4.5.10 - '@fontsource/space-mono': 4.5.10 - '@mui/base': 5.0.0-alpha.117_7ey2zzynotv32rpkwno45fsx4e - '@mui/icons-material': 5.11.0_ixytn77exq5nzezlwja6xe4jxi - '@mui/material': 5.11.8_pmppvr4gtvd6vpdr5yl42vjwtu + '@fontsource/space-mono': 4.5.12 + '@mui/base': 5.0.0-alpha.118_zula6vjvt3wdocc4mwcxqa6nzi + '@mui/icons-material': 5.11.9_ofpk46txu7v2f5mzrtv4xsczka + '@mui/material': 5.11.9_xqeqsl5kvjjtyxwyi3jhw3yuli '@toeverything/pathfinder-logger': link:../../packages/logger - cmdk: 0.1.21_7ey2zzynotv32rpkwno45fsx4e + cmdk: 0.1.22_zula6vjvt3wdocc4mwcxqa6nzi css-spring: 4.1.0 dayjs: 1.11.7 lit: 2.6.1 - next: 13.1.0_rdilrli7uexa22ralt77ekax24_biqbaboplfbrettd7655fr4n2y + next: 13.1.0_biqbaboplfbrettd7655fr4n2y next-debug-local: 0.1.5 - prettier: 2.8.1 + prettier: 2.8.4 quill: 1.3.7 quill-cursors: 4.0.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - yjs: 13.5.45 - zustand: 4.3.2_react@18.2.0 + yjs: 13.5.46 + zustand: 4.3.3_react@18.2.0 devDependencies: - '@types/node': 18.7.18 - '@types/react': 18.0.20 - '@types/react-dom': 18.0.6 + '@types/node': 18.14.0 + '@types/react': 18.0.28 + '@types/react-dom': 18.0.11 '@types/wicg-file-system-access': 2020.9.5 - chalk: 4.1.2 - eslint-config-next: 12.3.1_typescript@4.9.5 - raw-loader: 4.0.2 + chalk: 5.2.0 + eslint: 8.34.0 + eslint-config-next: 13.1.6_7kw3g6rralp5ps6mg3uyzz6azm + raw-loader: 4.0.2_webpack@5.75.0 typescript: 4.9.5 + webpack: 5.75.0 packages/component: specifiers: @@ -226,22 +232,23 @@ importers: '@blocksuite/blocks': 0.4.1 '@blocksuite/editor': 0.4.1 '@blocksuite/global': 0.4.1 - '@blocksuite/icons': ^2.0.2 + '@blocksuite/icons': 2.0.12 '@blocksuite/react': 0.4.1 '@blocksuite/store': 0.4.1 - '@emotion/react': ^11.10.5 - '@emotion/styled': ^11.10.5 - '@mui/base': '=5.0.0-alpha.117' - '@mui/icons-material': '=5.11.0' - '@mui/material': '=5.11.8' + '@emotion/react': ^11.10.6 + '@emotion/styled': ^11.10.6 + '@mui/base': 5.0.0-alpha.118 + '@mui/icons-material': ^5.11.9 + '@mui/material': ^5.11.9 '@storybook/addon-actions': ^7.0.0-beta.46 '@storybook/addon-essentials': ^7.0.0-beta.46 '@storybook/addon-links': ^7.0.0-beta.46 '@storybook/builder-vite': ^7.0.0-beta.46 '@storybook/react': ^7.0.0-beta.46 '@storybook/react-vite': 7.0.0-beta.46 - '@types/react': ^18.0.27 - '@types/react-dom': 18.0.10 + '@swc/core': ^1.3.35 + '@types/react': ^18.0.28 + '@types/react-dom': 18.0.11 '@vitejs/plugin-react': ^3.1.0 lit: ^2.6.1 react: ^18.2.0 @@ -250,21 +257,22 @@ importers: swc: ^1.0.11 swc-loader: ^0.2.3 typescript: ^4.9.5 - vite: ^4.0.2 + vite: ^4.1.2 webpack: ^5.75.0 + yjs: ^13.5.46 dependencies: '@affine/i18n': link:../i18n - '@blocksuite/blocks': 0.4.1_@blocksuite+store@0.4.1 + '@blocksuite/blocks': 0.4.1_tdlxw56kpoc45go7l7gsdk5hjm '@blocksuite/editor': 0.4.1_e5cdg6aldwc4hxgrfphufwkeea '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/icons': 2.0.4_3stiutgnnbnfnf3uowm5cip22i + '@blocksuite/icons': 2.0.12_pmekkgnqduwlme35zpnqhenc34 '@blocksuite/react': 0.4.1_v4k7r3722g7d6aoxzctkttv45y - '@blocksuite/store': 0.4.1_lit@2.6.1 - '@emotion/react': 11.10.5_3stiutgnnbnfnf3uowm5cip22i - '@emotion/styled': 11.10.5_jrh5enlbqfbnumycmktdqgd6se - '@mui/base': 5.0.0-alpha.117_5ndqzdd6t4rivxsukjv3i3ak2q - '@mui/icons-material': 5.11.0_3psqo62dtzuc5tpd3awdluze4i - '@mui/material': 5.11.8_rqh7qj4464ntrqrt6banhaqg4q + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@mui/base': 5.0.0-alpha.118_zula6vjvt3wdocc4mwcxqa6nzi + '@mui/icons-material': 5.11.9_ofpk46txu7v2f5mzrtv4xsczka + '@mui/material': 5.11.9_xqeqsl5kvjjtyxwyi3jhw3yuli lit: 2.6.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -272,18 +280,20 @@ importers: '@storybook/addon-actions': 7.0.0-beta.46_biqbaboplfbrettd7655fr4n2y '@storybook/addon-essentials': 7.0.0-beta.46_biqbaboplfbrettd7655fr4n2y '@storybook/addon-links': 7.0.0-beta.46_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-vite': 7.0.0-beta.46_ggo5j25brebqqko7hdmvawpmuy + '@storybook/builder-vite': 7.0.0-beta.46_f7vjlzfn2qz6iyr4iasvdrpcpu '@storybook/react': 7.0.0-beta.46_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/react-vite': 7.0.0-beta.46_jpauyvbrjmqmlxhfgzv45zaizm - '@types/react': 18.0.27 - '@types/react-dom': 18.0.10 - '@vitejs/plugin-react': 3.1.0_vite@4.1.1 + '@storybook/react-vite': 7.0.0-beta.46_li3mi7l5obvr3srmivssltef2i + '@swc/core': 1.3.35 + '@types/react': 18.0.28 + '@types/react-dom': 18.0.11 + '@vitejs/plugin-react': 3.1.0_vite@4.1.2 storybook: 7.0.0-beta.46 swc: 1.0.11 - swc-loader: 0.2.3_webpack@5.75.0 + swc-loader: 0.2.3_gwpkmym7uf5m6snr3dgsgj5rrq typescript: 4.9.5 - vite: 4.1.1 - webpack: 5.75.0 + vite: 4.1.2 + webpack: 5.75.0_@swc+core@1.3.35 + yjs: 13.5.46 packages/data-center: specifiers: @@ -294,68 +304,70 @@ importers: debug: ^4.3.4 encoding: ^0.1.13 fake-indexeddb: 4.0.1 - firebase: ^9.15.0 + firebase: ^9.17.1 idb-keyval: ^6.2.0 js-base64: ^3.7.5 - ky: ^0.33.0 + ky: ^0.33.2 ky-universal: ^0.11.0 - lib0: ^0.2.58 + lib0: ^0.2.62 lit: ^2.6.1 - swr: ^2.0.0 typescript: ^4.9.5 y-protocols: ^1.0.5 - yjs: ^13.5.45 + yjs: ^13.5.46 dependencies: - '@blocksuite/blocks': 0.4.1_3qrlive734t4pirxhx2n4mip3a - '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.45 + '@blocksuite/blocks': 0.4.1_tdlxw56kpoc45go7l7gsdk5hjm + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu debug: 4.3.4 encoding: 0.1.13 - firebase: 9.15.0_encoding@0.1.13 + firebase: 9.17.1_encoding@0.1.13 idb-keyval: 6.2.0 js-base64: 3.7.5 - ky: 0.33.1 - ky-universal: 0.11.0_ky@0.33.1 - lib0: 0.2.58 - swr: 2.0.0 + ky: 0.33.2 + ky-universal: 0.11.0_ky@0.33.2 + lib0: 0.2.62 + lit: 2.6.1 y-protocols: 1.0.5 + yjs: 13.5.46 devDependencies: '@types/debug': 4.1.7 fake-indexeddb: 4.0.1 - lit: 2.6.1 typescript: 4.9.5 - yjs: 13.5.45 packages/i18n: specifiers: + '@types/node': ^18.14.0 '@types/prettier': ^2.7.2 - i18next: ^21.9.1 - prettier: ^2.7.1 - react-i18next: ^11.18.4 + i18next: ^22.4.10 + prettier: ^2.8.4 + react: ^18.2.0 + react-i18next: ^12.1.5 ts-node: ^10.9.1 typescript: ^4.9.5 dependencies: - i18next: 21.10.0 - prettier: 2.7.1 - react-i18next: 11.18.6_i18next@21.10.0 + i18next: 22.4.10 + react: 18.2.0 + react-i18next: 12.1.5_dxv7ampvtjrtnimevxnrn5rvga devDependencies: + '@types/node': 18.14.0 '@types/prettier': 2.7.2 - ts-node: 10.9.1_typescript@4.9.5 + prettier: 2.8.4 + ts-node: 10.9.1_tncu2ai53lzgmizdedur7lbibe typescript: 4.9.5 packages/logger: specifiers: - '@types/react': ^18.0.21 - next: ^12.3.1 + '@types/react': ^18.0.28 + next: ^13.1.6 react: ^18.2.0 react-dom: ^18.2.0 typescript: ^4.9.5 dependencies: - next: 12.3.1_biqbaboplfbrettd7655fr4n2y + next: 13.1.6_rdilrli7uexa22ralt77ekax24_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: - '@types/react': 18.0.21 + '@types/react': 18.0.28 typescript: 4.9.5 packages/store: @@ -367,21 +379,29 @@ importers: '@blocksuite/react': 0.4.1 '@blocksuite/store': 0.4.1 '@types/react': ^18.0.28 + '@types/react-dom': ^18.0.11 + lit: ^2.6.1 react: ^18.2.0 + react-dom: ^18.2.0 swr: ^2.0.3 + yjs: ^13.5.46 zustand: ^4.3.3 dependencies: '@affine/datacenter': link:../data-center - '@blocksuite/blocks': 0.4.1_@blocksuite+store@0.4.1 + '@blocksuite/blocks': 0.4.1_tdlxw56kpoc45go7l7gsdk5hjm '@blocksuite/editor': 0.4.1_e5cdg6aldwc4hxgrfphufwkeea - '@blocksuite/global': 0.4.1 - '@blocksuite/react': 0.4.1_6imdqfxdvhtp63fiogxmlqrieq - '@blocksuite/store': 0.4.1 + '@blocksuite/global': 0.4.1_lit@2.6.1 + '@blocksuite/react': 0.4.1_v4k7r3722g7d6aoxzctkttv45y + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 + lit: 2.6.1 react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 swr: 2.0.3_react@18.2.0 + yjs: 13.5.46 zustand: 4.3.3_react@18.2.0 devDependencies: '@types/react': 18.0.28 + '@types/react-dom': 18.0.11 packages: @@ -667,6 +687,7 @@ packages: /@babel/helper-plugin-utils/7.20.2: resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} engines: {node: '>=6.9.0'} + dev: true /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} @@ -1356,15 +1377,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-jsx/7.18.6: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: false - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} @@ -2552,19 +2564,18 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/runtime-corejs3/7.19.1: - resolution: {integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==} + /@babel/runtime/7.20.13: + resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==} engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.25.2 regenerator-runtime: 0.13.11 - dev: true /@babel/runtime/7.20.7: resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 + dev: true /@babel/template/7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} @@ -2618,36 +2629,15 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@blocksuite/blocks/0.4.1_3qrlive734t4pirxhx2n4mip3a: + /@blocksuite/blocks/0.4.1_tdlxw56kpoc45go7l7gsdk5hjm: resolution: {integrity: sha512-BnTeBUlbRf/RFk7Vk3oN5Cgcq0J/Pda2lsrYdvyHVcxEiWOBKjIDTjF1iE7ROrWHXsmW0//fxvfLKYl+m8C6GQ==} peerDependencies: '@blocksuite/store': 0.4.1 dependencies: '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/phasor': 0.4.1_lit@2.6.1+yjs@13.5.45 - '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.45 - '@blocksuite/virgo': 0.4.1_lit@2.6.1+yjs@13.5.45 - '@popperjs/core': 2.11.6 - autosize: 6.0.1 - highlight.js: 11.7.0 - hotkeys-js: 3.10.1 - lit: 2.6.1 - quill: 1.3.7 - quill-cursors: 4.0.2 - zod: 3.20.6 - transitivePeerDependencies: - - yjs - dev: false - - /@blocksuite/blocks/0.4.1_@blocksuite+store@0.4.1: - resolution: {integrity: sha512-BnTeBUlbRf/RFk7Vk3oN5Cgcq0J/Pda2lsrYdvyHVcxEiWOBKjIDTjF1iE7ROrWHXsmW0//fxvfLKYl+m8C6GQ==} - peerDependencies: - '@blocksuite/store': 0.4.1 - dependencies: - '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/phasor': 0.4.1_lit@2.6.1 - '@blocksuite/store': 0.4.1_lit@2.6.1 - '@blocksuite/virgo': 0.4.1_lit@2.6.1 + '@blocksuite/phasor': 0.4.1_lit@2.6.1+yjs@13.5.46 + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 + '@blocksuite/virgo': 0.4.1_lit@2.6.1+yjs@13.5.46 '@popperjs/core': 2.11.6 autosize: 6.0.1 highlight.js: 11.7.0 @@ -2666,26 +2656,14 @@ packages: '@blocksuite/blocks': 0.4.1 '@blocksuite/store': 0.4.1 dependencies: - '@blocksuite/blocks': 0.4.1_3qrlive734t4pirxhx2n4mip3a + '@blocksuite/blocks': 0.4.1_tdlxw56kpoc45go7l7gsdk5hjm '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.45 + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 lit: 2.6.1 marked: 4.2.12 turndown: 7.1.1 dev: false - /@blocksuite/global/0.4.1: - resolution: {integrity: sha512-m2VN9waZdKhQ/fZ5wKWCx4xeVQXFvcDJXO8vMUP3W/z/FwAv3+Z7cQAoKNPJ+q1rFeUZ+9BjvvIG7oIHMr5btQ==} - peerDependencies: - lit: ^2.6 - peerDependenciesMeta: - lit: - optional: true - dependencies: - ansi-colors: 4.1.3 - zod: 3.20.6 - dev: false - /@blocksuite/global/0.4.1_lit@2.6.1: resolution: {integrity: sha512-m2VN9waZdKhQ/fZ5wKWCx4xeVQXFvcDJXO8vMUP3W/z/FwAv3+Z7cQAoKNPJ+q1rFeUZ+9BjvvIG7oIHMr5btQ==} peerDependencies: @@ -2699,37 +2677,17 @@ packages: zod: 3.20.6 dev: false - /@blocksuite/icons/2.0.14_3stiutgnnbnfnf3uowm5cip22i: - resolution: {integrity: sha512-1uStOtcn13ncC+/ne51Aywwo1er0a6IKFhC84B8mqUXxFdmJkYEQ1NLSxHW/HktwwWgMQYNE//ohKFnAPe5YGg==} + /@blocksuite/icons/2.0.12_pmekkgnqduwlme35zpnqhenc34: + resolution: {integrity: sha512-mUmSXoFvHAGLPmykea5EHnVZf7QKBtj1bvCIfhRuQBopt2z3yVtEr7zD/4Cqus2oYNS3HrjwvCDiTqeE7fsjJQ==} peerDependencies: '@types/react': ^18.0.25 react: ^18.2.0 dependencies: - '@types/react': 18.0.27 + '@types/react': 18.0.28 react: 18.2.0 dev: false - /@blocksuite/icons/2.0.14_w5j4k42lgipnm43s3brx6h3c34: - resolution: {integrity: sha512-1uStOtcn13ncC+/ne51Aywwo1er0a6IKFhC84B8mqUXxFdmJkYEQ1NLSxHW/HktwwWgMQYNE//ohKFnAPe5YGg==} - peerDependencies: - '@types/react': ^18.0.25 - react: ^18.2.0 - dependencies: - '@types/react': 18.0.20 - react: 18.2.0 - dev: false - - /@blocksuite/icons/2.0.4_3stiutgnnbnfnf3uowm5cip22i: - resolution: {integrity: sha512-Ewx30d3W6MXJGPXYvv48UpvAVfDB+gIVu90sHZX5curnSn+e1DdpCVfL0DeZA7Iyq6aLbxnKVzOAewlfoP8kDQ==} - peerDependencies: - '@types/react': ^18.0.25 - react: ^18.2.0 - dependencies: - '@types/react': 18.0.27 - react: 18.2.0 - dev: false - - /@blocksuite/phasor/0.4.1_lit@2.6.1: + /@blocksuite/phasor/0.4.1_lit@2.6.1+yjs@13.5.46: resolution: {integrity: sha512-RzAmB9wbsVo8K4sUjjhatM/D/mbe2crHyJ5LE/HkUTIxp7D4DQapRP7RREJojzw2KhcRvapEVRRwlLV2f5wGUQ==} peerDependencies: yjs: ^13 @@ -2738,44 +2696,11 @@ packages: fractional-indexing: 3.2.0 nanoid: 4.0.1 perfect-freehand: 1.2.0 + yjs: 13.5.46 transitivePeerDependencies: - lit dev: false - /@blocksuite/phasor/0.4.1_lit@2.6.1+yjs@13.5.45: - resolution: {integrity: sha512-RzAmB9wbsVo8K4sUjjhatM/D/mbe2crHyJ5LE/HkUTIxp7D4DQapRP7RREJojzw2KhcRvapEVRRwlLV2f5wGUQ==} - peerDependencies: - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1_lit@2.6.1 - fractional-indexing: 3.2.0 - nanoid: 4.0.1 - perfect-freehand: 1.2.0 - yjs: 13.5.45 - transitivePeerDependencies: - - lit - dev: false - - /@blocksuite/react/0.4.1_6imdqfxdvhtp63fiogxmlqrieq: - resolution: {integrity: sha512-RTsJAh02FlQ36Ry71r3UycA3vKzJRO6i+fhAzTAmt6X5E0/+zBdG1Gy3nxwt9b9krgvkhxJMFSAPKAYHr8RG+Q==} - peerDependencies: - '@blocksuite/blocks': 0.4.1 - '@blocksuite/editor': 0.4.1 - '@blocksuite/store': 0.4.1 - react: '>=18.0.0' - react-dom: '>=18.0.0' - dependencies: - '@blocksuite/blocks': 0.4.1_@blocksuite+store@0.4.1 - '@blocksuite/editor': 0.4.1_e5cdg6aldwc4hxgrfphufwkeea - '@blocksuite/global': 0.4.1 - '@blocksuite/store': 0.4.1 - react: 18.2.0 - zustand: 4.3.3_react@18.2.0 - transitivePeerDependencies: - - immer - - lit - dev: false - /@blocksuite/react/0.4.1_v4k7r3722g7d6aoxzctkttv45y: resolution: {integrity: sha512-RTsJAh02FlQ36Ry71r3UycA3vKzJRO6i+fhAzTAmt6X5E0/+zBdG1Gy3nxwt9b9krgvkhxJMFSAPKAYHr8RG+Q==} peerDependencies: @@ -2785,10 +2710,10 @@ packages: react: '>=18.0.0' react-dom: '>=18.0.0' dependencies: - '@blocksuite/blocks': 0.4.1_@blocksuite+store@0.4.1 + '@blocksuite/blocks': 0.4.1_tdlxw56kpoc45go7l7gsdk5hjm '@blocksuite/editor': 0.4.1_e5cdg6aldwc4hxgrfphufwkeea '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/store': 0.4.1_lit@2.6.1 + '@blocksuite/store': 0.4.1_lit@2.6.1+yjs@13.5.46 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 zustand: 4.3.3_react@18.2.0 @@ -2797,38 +2722,13 @@ packages: - lit dev: false - /@blocksuite/store/0.4.1: - resolution: {integrity: sha512-OLAcCDwRDUB7tkxptg5TZ4bcBBRmvWESRu5y7rekCWWbiPI1Fv0hX6pZGvnIGJ6pCRFTI9SQNcs9uEhHxuXIbA==} - peerDependencies: - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1 - '@blocksuite/virgo': 0.4.1 - '@types/flexsearch': 0.7.3 - buffer: 6.0.3 - flexsearch: 0.7.21 - idb-keyval: 6.2.0 - ky: 0.33.2 - lib0: 0.2.62 - merge: 2.1.1 - nanoid: 4.0.1 - y-protocols: 1.0.5 - y-webrtc: 10.2.4 - zod: 3.20.6 - transitivePeerDependencies: - - bufferutil - - lit - - supports-color - - utf-8-validate - dev: false - - /@blocksuite/store/0.4.1_lit@2.6.1: + /@blocksuite/store/0.4.1_lit@2.6.1+yjs@13.5.46: resolution: {integrity: sha512-OLAcCDwRDUB7tkxptg5TZ4bcBBRmvWESRu5y7rekCWWbiPI1Fv0hX6pZGvnIGJ6pCRFTI9SQNcs9uEhHxuXIbA==} peerDependencies: yjs: ^13 dependencies: '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/virgo': 0.4.1_lit@2.6.1 + '@blocksuite/virgo': 0.4.1_lit@2.6.1+yjs@13.5.46 '@types/flexsearch': 0.7.3 buffer: 6.0.3 flexsearch: 0.7.21 @@ -2839,6 +2739,7 @@ packages: nanoid: 4.0.1 y-protocols: 1.0.5 y-webrtc: 10.2.4 + yjs: 13.5.46 zod: 3.20.6 transitivePeerDependencies: - bufferutil @@ -2847,69 +2748,7 @@ packages: - utf-8-validate dev: false - /@blocksuite/store/0.4.1_lit@2.6.1+yjs@13.5.45: - resolution: {integrity: sha512-OLAcCDwRDUB7tkxptg5TZ4bcBBRmvWESRu5y7rekCWWbiPI1Fv0hX6pZGvnIGJ6pCRFTI9SQNcs9uEhHxuXIbA==} - peerDependencies: - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1_lit@2.6.1 - '@blocksuite/virgo': 0.4.1_lit@2.6.1+yjs@13.5.45 - '@types/flexsearch': 0.7.3 - buffer: 6.0.3 - flexsearch: 0.7.21 - idb-keyval: 6.2.0 - ky: 0.33.2 - lib0: 0.2.62 - merge: 2.1.1 - nanoid: 4.0.1 - y-protocols: 1.0.5 - y-webrtc: 10.2.4 - yjs: 13.5.45 - zod: 3.20.6 - transitivePeerDependencies: - - bufferutil - - lit - - supports-color - - utf-8-validate - dev: false - - /@blocksuite/store/0.4.1_yjs@13.5.45: - resolution: {integrity: sha512-OLAcCDwRDUB7tkxptg5TZ4bcBBRmvWESRu5y7rekCWWbiPI1Fv0hX6pZGvnIGJ6pCRFTI9SQNcs9uEhHxuXIbA==} - peerDependencies: - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1 - '@blocksuite/virgo': 0.4.1_yjs@13.5.45 - '@types/flexsearch': 0.7.3 - buffer: 6.0.3 - flexsearch: 0.7.21 - idb-keyval: 6.2.0 - ky: 0.33.2 - lib0: 0.2.62 - merge: 2.1.1 - nanoid: 4.0.1 - y-protocols: 1.0.5 - y-webrtc: 10.2.4 - yjs: 13.5.45 - zod: 3.20.6 - transitivePeerDependencies: - - bufferutil - - lit - - supports-color - - utf-8-validate - dev: false - - /@blocksuite/virgo/0.4.1: - resolution: {integrity: sha512-vlsGIp/kKNI4XRglD4l3w/7ozSQnaLtmXyH+rsP5jnR7/Nmbd6L6n6jK2nMYCE2RBNgiG4YqiuqWutheHsTF4Q==} - peerDependencies: - lit: ^2 - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1 - zod: 3.20.6 - dev: false - - /@blocksuite/virgo/0.4.1_lit@2.6.1: + /@blocksuite/virgo/0.4.1_lit@2.6.1+yjs@13.5.46: resolution: {integrity: sha512-vlsGIp/kKNI4XRglD4l3w/7ozSQnaLtmXyH+rsP5jnR7/Nmbd6L6n6jK2nMYCE2RBNgiG4YqiuqWutheHsTF4Q==} peerDependencies: lit: ^2 @@ -2917,29 +2756,7 @@ packages: dependencies: '@blocksuite/global': 0.4.1_lit@2.6.1 lit: 2.6.1 - zod: 3.20.6 - dev: false - - /@blocksuite/virgo/0.4.1_lit@2.6.1+yjs@13.5.45: - resolution: {integrity: sha512-vlsGIp/kKNI4XRglD4l3w/7ozSQnaLtmXyH+rsP5jnR7/Nmbd6L6n6jK2nMYCE2RBNgiG4YqiuqWutheHsTF4Q==} - peerDependencies: - lit: ^2 - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1_lit@2.6.1 - lit: 2.6.1 - yjs: 13.5.45 - zod: 3.20.6 - dev: false - - /@blocksuite/virgo/0.4.1_yjs@13.5.45: - resolution: {integrity: sha512-vlsGIp/kKNI4XRglD4l3w/7ozSQnaLtmXyH+rsP5jnR7/Nmbd6L6n6jK2nMYCE2RBNgiG4YqiuqWutheHsTF4Q==} - peerDependencies: - lit: ^2 - yjs: ^13 - dependencies: - '@blocksuite/global': 0.4.1 - yjs: 13.5.45 + yjs: 13.5.46 zod: 3.20.6 dev: false @@ -2956,7 +2773,7 @@ packages: fs-extra: 7.0.1 lodash.startcase: 4.4.0 outdent: 0.5.0 - prettier: 2.8.1 + prettier: 2.8.4 resolve-from: 5.0.0 semver: 5.7.1 dev: true @@ -3124,7 +2941,7 @@ packages: '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 - prettier: 2.8.1 + prettier: 2.8.4 dev: true /@colors/colors/1.5.0: @@ -3146,14 +2963,11 @@ packages: engines: {node: '>=10.0.0'} dev: true - /@emotion/babel-plugin/11.10.5: - resolution: {integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==} - peerDependencies: - '@babel/core': ^7.0.0 + /@emotion/babel-plugin/11.10.6: + resolution: {integrity: sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==} dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6 - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 '@emotion/serialize': 1.1.1 @@ -3175,15 +2989,10 @@ packages: stylis: 4.1.3 dev: false - /@emotion/css/11.10.5: - resolution: {integrity: sha512-maJy0wG82hWsiwfJpc3WrYsyVwUbdu+sdIseKUB+/OLjB8zgc3tqkT6eO0Yt0AhIkJwGGnmMY/xmQwEAgQ4JHA==} - peerDependencies: - '@babel/core': ^7.0.0 - peerDependenciesMeta: - '@babel/core': - optional: true + /@emotion/css/11.10.6: + resolution: {integrity: sha512-88Sr+3heKAKpj9PCqq5A1hAmAkoSIvwEq1O2TwDij7fUtsJpdkV4jMTISSTouFeRvsGvXIpuSuDQ4C1YdfNGXw==} dependencies: - '@emotion/babel-plugin': 11.10.5 + '@emotion/babel-plugin': 11.10.6 '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 '@emotion/sheet': 1.2.1 @@ -3204,50 +3013,23 @@ packages: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} dev: false - /@emotion/react/11.10.5_3stiutgnnbnfnf3uowm5cip22i: - resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==} + /@emotion/react/11.10.6_pmekkgnqduwlme35zpnqhenc34: + resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==} peerDependencies: - '@babel/core': ^7.0.0 '@types/react': '*' react: '>=16.8.0' peerDependenciesMeta: - '@babel/core': - optional: true '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 - '@emotion/babel-plugin': 11.10.5 + '@babel/runtime': 7.20.13 + '@emotion/babel-plugin': 11.10.6 '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 - '@types/react': 18.0.27 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 - dev: false - - /@emotion/react/11.10.5_w5j4k42lgipnm43s3brx6h3c34: - resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@emotion/babel-plugin': 11.10.5 - '@emotion/cache': 11.10.5 - '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 - '@emotion/utils': 1.2.0 - '@emotion/weak-memoize': 0.3.0 - '@types/react': 18.0.20 + '@types/react': 18.0.28 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -3262,7 +3044,7 @@ packages: csstype: 3.1.1 dev: false - /@emotion/server/11.10.0_@emotion+css@11.10.5: + /@emotion/server/11.10.0_@emotion+css@11.10.6: resolution: {integrity: sha512-MTvJ21JPo9aS02GdjFW4nhdwOi2tNNpMmAM/YED0pkxzjDNi5WbiTwXqaCnvLc2Lr8NFtjhT0az1vTJyLIHYcw==} peerDependencies: '@emotion/css': ^11.0.0-rc.0 @@ -3270,7 +3052,7 @@ packages: '@emotion/css': optional: true dependencies: - '@emotion/css': 11.10.5 + '@emotion/css': 11.10.6 '@emotion/utils': 1.2.0 html-tokenize: 2.0.1 multipipe: 1.0.2 @@ -3281,51 +3063,24 @@ packages: resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==} dev: false - /@emotion/styled/11.10.5_jrh5enlbqfbnumycmktdqgd6se: - resolution: {integrity: sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==} + /@emotion/styled/11.10.6_oouaibmszuch5k64ms7uxp2aia: + resolution: {integrity: sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==} peerDependencies: - '@babel/core': ^7.0.0 '@emotion/react': ^11.0.0-rc.0 '@types/react': '*' react: '>=16.8.0' peerDependenciesMeta: - '@babel/core': - optional: true '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 - '@emotion/babel-plugin': 11.10.5 + '@babel/runtime': 7.20.13 + '@emotion/babel-plugin': 11.10.6 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.5_3stiutgnnbnfnf3uowm5cip22i + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/serialize': 1.1.1 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 '@emotion/utils': 1.2.0 - '@types/react': 18.0.27 - react: 18.2.0 - dev: false - - /@emotion/styled/11.10.5_s7uipz3r575xmfz2gje3lxfqua: - resolution: {integrity: sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==} - peerDependencies: - '@babel/core': ^7.0.0 - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@emotion/babel-plugin': 11.10.5 - '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.5_w5j4k42lgipnm43s3brx6h3c34 - '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 - '@emotion/utils': 1.2.0 - '@types/react': 18.0.20 + '@types/react': 18.0.28 react: 18.2.0 dev: false @@ -3357,6 +3112,15 @@ packages: dev: true optional: true + /@esbuild/android-arm/0.17.8: + resolution: {integrity: sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-arm64/0.16.17: resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} engines: {node: '>=12'} @@ -3366,6 +3130,15 @@ packages: dev: true optional: true + /@esbuild/android-arm64/0.17.8: + resolution: {integrity: sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/android-x64/0.16.17: resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} engines: {node: '>=12'} @@ -3375,6 +3148,15 @@ packages: dev: true optional: true + /@esbuild/android-x64/0.17.8: + resolution: {integrity: sha512-bTliMLqD7pTOoPg4zZkXqCDuzIUguEWLpeqkNfC41ODBHwoUgZ2w5JBeYimv4oP6TDVocoYmEhZrCLQTrH89bg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@esbuild/darwin-arm64/0.16.17: resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} engines: {node: '>=12'} @@ -3384,6 +3166,15 @@ packages: dev: true optional: true + /@esbuild/darwin-arm64/0.17.8: + resolution: {integrity: sha512-ghAbV3ia2zybEefXRRm7+lx8J/rnupZT0gp9CaGy/3iolEXkJ6LYRq4IpQVI9zR97ID80KJVoUlo3LSeA/sMAg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@esbuild/darwin-x64/0.16.17: resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} engines: {node: '>=12'} @@ -3393,6 +3184,15 @@ packages: dev: true optional: true + /@esbuild/darwin-x64/0.17.8: + resolution: {integrity: sha512-n5WOpyvZ9TIdv2V1K3/iIkkJeKmUpKaCTdun9buhGRWfH//osmUjlv4Z5mmWdPWind/VGcVxTHtLfLCOohsOXw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@esbuild/freebsd-arm64/0.16.17: resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} engines: {node: '>=12'} @@ -3402,6 +3202,15 @@ packages: dev: true optional: true + /@esbuild/freebsd-arm64/0.17.8: + resolution: {integrity: sha512-a/SATTaOhPIPFWvHZDoZYgxaZRVHn0/LX1fHLGfZ6C13JqFUZ3K6SMD6/HCtwOQ8HnsNaEeokdiDSFLuizqv5A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/freebsd-x64/0.16.17: resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} engines: {node: '>=12'} @@ -3411,6 +3220,15 @@ packages: dev: true optional: true + /@esbuild/freebsd-x64/0.17.8: + resolution: {integrity: sha512-xpFJb08dfXr5+rZc4E+ooZmayBW6R3q59daCpKZ/cDU96/kvDM+vkYzNeTJCGd8rtO6fHWMq5Rcv/1cY6p6/0Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-arm/0.16.17: resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} engines: {node: '>=12'} @@ -3420,6 +3238,15 @@ packages: dev: true optional: true + /@esbuild/linux-arm/0.17.8: + resolution: {integrity: sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-arm64/0.16.17: resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} engines: {node: '>=12'} @@ -3429,6 +3256,15 @@ packages: dev: true optional: true + /@esbuild/linux-arm64/0.17.8: + resolution: {integrity: sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-ia32/0.16.17: resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} engines: {node: '>=12'} @@ -3438,6 +3274,15 @@ packages: dev: true optional: true + /@esbuild/linux-ia32/0.17.8: + resolution: {integrity: sha512-8svILYKhE5XetuFk/B6raFYIyIqydQi+GngEXJgdPdI7OMKUbSd7uzR02wSY4kb53xBrClLkhH4Xs8P61Q2BaA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-loong64/0.16.17: resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} engines: {node: '>=12'} @@ -3447,6 +3292,15 @@ packages: dev: true optional: true + /@esbuild/linux-loong64/0.17.8: + resolution: {integrity: sha512-B6FyMeRJeV0NpyEOYlm5qtQfxbdlgmiGdD+QsipzKfFky0K5HW5Td6dyK3L3ypu1eY4kOmo7wW0o94SBqlqBSA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-mips64el/0.16.17: resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} engines: {node: '>=12'} @@ -3456,6 +3310,15 @@ packages: dev: true optional: true + /@esbuild/linux-mips64el/0.17.8: + resolution: {integrity: sha512-CCb67RKahNobjm/eeEqeD/oJfJlrWyw29fgiyB6vcgyq97YAf3gCOuP6qMShYSPXgnlZe/i4a8WFHBw6N8bYAA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-ppc64/0.16.17: resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} engines: {node: '>=12'} @@ -3465,6 +3328,15 @@ packages: dev: true optional: true + /@esbuild/linux-ppc64/0.17.8: + resolution: {integrity: sha512-bytLJOi55y55+mGSdgwZ5qBm0K9WOCh0rx+vavVPx+gqLLhxtSFU0XbeYy/dsAAD6xECGEv4IQeFILaSS2auXw==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-riscv64/0.16.17: resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} engines: {node: '>=12'} @@ -3474,6 +3346,15 @@ packages: dev: true optional: true + /@esbuild/linux-riscv64/0.17.8: + resolution: {integrity: sha512-2YpRyQJmKVBEHSBLa8kBAtbhucaclb6ex4wchfY0Tj3Kg39kpjeJ9vhRU7x4mUpq8ISLXRXH1L0dBYjAeqzZAw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-s390x/0.16.17: resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} engines: {node: '>=12'} @@ -3483,6 +3364,15 @@ packages: dev: true optional: true + /@esbuild/linux-s390x/0.17.8: + resolution: {integrity: sha512-QgbNY/V3IFXvNf11SS6exkpVcX0LJcob+0RWCgV9OiDAmVElnxciHIisoSix9uzYzScPmS6dJFbZULdSAEkQVw==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/linux-x64/0.16.17: resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} engines: {node: '>=12'} @@ -3492,6 +3382,15 @@ packages: dev: true optional: true + /@esbuild/linux-x64/0.17.8: + resolution: {integrity: sha512-mM/9S0SbAFDBc4OPoyP6SEOo5324LpUxdpeIUUSrSTOfhHU9hEfqRngmKgqILqwx/0DVJBzeNW7HmLEWp9vcOA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@esbuild/netbsd-x64/0.16.17: resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} engines: {node: '>=12'} @@ -3501,6 +3400,15 @@ packages: dev: true optional: true + /@esbuild/netbsd-x64/0.17.8: + resolution: {integrity: sha512-eKUYcWaWTaYr9zbj8GertdVtlt1DTS1gNBWov+iQfWuWyuu59YN6gSEJvFzC5ESJ4kMcKR0uqWThKUn5o8We6Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/openbsd-x64/0.16.17: resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} engines: {node: '>=12'} @@ -3510,6 +3418,15 @@ packages: dev: true optional: true + /@esbuild/openbsd-x64/0.17.8: + resolution: {integrity: sha512-Vc9J4dXOboDyMXKD0eCeW0SIeEzr8K9oTHJU+Ci1mZc5njPfhKAqkRt3B/fUNU7dP+mRyralPu8QUkiaQn7iIg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + /@esbuild/sunos-x64/0.16.17: resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} engines: {node: '>=12'} @@ -3519,6 +3436,15 @@ packages: dev: true optional: true + /@esbuild/sunos-x64/0.17.8: + resolution: {integrity: sha512-0xvOTNuPXI7ft1LYUgiaXtpCEjp90RuBBYovdd2lqAFxje4sEucurg30M1WIm03+3jxByd3mfo+VUmPtRSVuOw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-arm64/0.16.17: resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} engines: {node: '>=12'} @@ -3528,6 +3454,15 @@ packages: dev: true optional: true + /@esbuild/win32-arm64/0.17.8: + resolution: {integrity: sha512-G0JQwUI5WdEFEnYNKzklxtBheCPkuDdu1YrtRrjuQv30WsYbkkoixKxLLv8qhJmNI+ATEWquZe/N0d0rpr55Mg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-ia32/0.16.17: resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} engines: {node: '>=12'} @@ -3537,6 +3472,15 @@ packages: dev: true optional: true + /@esbuild/win32-ia32/0.17.8: + resolution: {integrity: sha512-Fqy63515xl20OHGFykjJsMnoIWS+38fqfg88ClvPXyDbLtgXal2DTlhb1TfTX34qWi3u4I7Cq563QcHpqgLx8w==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@esbuild/win32-x64/0.16.17: resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} engines: {node: '>=12'} @@ -3546,6 +3490,15 @@ packages: dev: true optional: true + /@esbuild/win32-x64/0.17.8: + resolution: {integrity: sha512-1iuezdyDNngPnz8rLRDO2C/ZZ/emJLb72OsZeqQ6gL6Avko/XCXZw+NuxBSNhBAP13Hie418V7VMt9et1FMvpg==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@eslint/eslintrc/1.4.1: resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3567,16 +3520,16 @@ packages: resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} dev: true - /@firebase/analytics-compat/0.2.0_5z7svkifsmkn6ro3hru7lnxwrq: - resolution: {integrity: sha512-brk8IN4ErWiZoB/UdJ0mWZhQOKt90ztv4MUwQjhuYJ4iwnVMz0Mzj9+tplU1hVpSZXdfbKQFfRN9kp/3sTiyWw==} + /@firebase/analytics-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: + resolution: {integrity: sha512-HmvbB4GMgh8AUlIDIo/OuFENLCGRXxMvtOueK+m8+DcfqBvG+mkii0Mi9ovo0TnMM62cy3oBYG7PHdjIQNLSLA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/analytics': 0.9.0_@firebase+app@0.9.0 + '@firebase/analytics': 0.9.3_@firebase+app@0.9.3 '@firebase/analytics-types': 0.8.0 - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 - '@firebase/util': 1.8.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3586,30 +3539,30 @@ packages: resolution: {integrity: sha512-iRP+QKI2+oz3UAh4nPEq14CsEjrjD6a5+fuypjScisAh9kXKFvdJOZJDwk7kikLvWVLGEs9+kIUS4LPQV7VZVw==} dev: false - /@firebase/analytics/0.9.0_@firebase+app@0.9.0: - resolution: {integrity: sha512-cE6JAvaGDVhn3B09VuQ5pATLCtmQg3AUSDuCmMNzWlP7+12LBarV1JcGWKIi7YQK2ks3B73wRsawi08XKwsolQ==} + /@firebase/analytics/0.9.3_@firebase+app@0.9.3: + resolution: {integrity: sha512-XdYHBi6RvHYVAHGyLxXX0uRPwZmGeqw1JuWS1rMEeRF/jvbxnrL81kcFAHZVRkEvG9bXAJgL2fX9wmDo3e622w==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 - '@firebase/installations': 0.6.0_@firebase+app@0.9.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 + '@firebase/installations': 0.6.3_@firebase+app@0.9.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 dev: false - /@firebase/app-check-compat/0.3.0_5z7svkifsmkn6ro3hru7lnxwrq: - resolution: {integrity: sha512-CJFHWGMvWRkkvLPTvWdLrEYnfH7WS9zFLsWctSzRjQnzg6dQUTs5FDyg9RN7BIWoaSr9q7FTxkRnsOgardDPLA==} + /@firebase/app-check-compat/0.3.3_5qoz5voa527ucsvtk67mpz25ru: + resolution: {integrity: sha512-25AQ4W7WUL8OWas40GsABuNU622Dm1ojbfeZ03uKtLj5Af7FerJ25u7zkgm+11pc6rpr5v8E5oxEG9vmNRndEA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-check': 0.6.0_@firebase+app@0.9.0 + '@firebase/app-check': 0.6.3_@firebase+app@0.9.3 '@firebase/app-check-types': 0.5.0 - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3623,25 +3576,25 @@ packages: resolution: {integrity: sha512-uwSUj32Mlubybw7tedRzR24RP8M8JUVR3NPiMk3/Z4bCmgEKTlQBwMXrehDAZ2wF+TsBq0SN1c6ema71U/JPyQ==} dev: false - /@firebase/app-check/0.6.0_@firebase+app@0.9.0: - resolution: {integrity: sha512-DevuiUQujsG18NQ1fQ1g2X+75Vp1YfSxPsw363/HE2+ABmCWHf4ByPmxEf16y4PVcqJ2MZqYv8kXZYxzRJCS4g==} + /@firebase/app-check/0.6.3_@firebase+app@0.9.3: + resolution: {integrity: sha512-T9f9ceFLs7x4D2T6whu5a6j7B3qPuYHiZHZxW6DkMh/FoMmRA4/q/HVyu01i9+LyJJx2Xdo6eCcj6ofs9YZjqA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 dev: false - /@firebase/app-compat/0.2.0: - resolution: {integrity: sha512-Y8Cpuheai61jCdVflt437I94n8cdRbXY0e1dQMmTWHCShJUfWwpa5y2ZMnxClWnorXy9hC/3yNZMVlu79f1zGA==} + /@firebase/app-compat/0.2.3: + resolution: {integrity: sha512-sX6rD1KFX6K2CuCnQvc9jZLOgAFZ+sv2jKKahIl4SbTM561D682B8n4Jtx/SgDrvcTVTdb05g4NhZOws9hxYxA==} dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 dev: false @@ -3649,26 +3602,26 @@ packages: resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==} dev: false - /@firebase/app/0.9.0: - resolution: {integrity: sha512-sa15stSK6FoGW4mCeAVDt0TvBFxPjvNcG2rhacGudOzMaW3g2TS326zXTFG+p5jnTCPZ2SO5TTSiGHn1NNcD9Q==} + /@firebase/app/0.9.3: + resolution: {integrity: sha512-G79JUceVDaHRZ4WkA11GyVldVXhdyRJRwWVQFFvAAVfQJLvy2TA6lQjeUn28F6FmeUWxDGwPC30bxCRWq7Op8Q==} dependencies: - '@firebase/component': 0.6.0 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 idb: 7.0.1 tslib: 2.5.0 dev: false - /@firebase/auth-compat/0.3.0_smx2rqj2kjyjzx5x66zunbdpee: - resolution: {integrity: sha512-tcofcrQKBOo5Wrz59onWtZDJfVW09auvG/XRh7lZ4yfEWdGerTJXmEdQU6j3E8AnJ3X91BYltNYhh0ZJOoCJqQ==} + /@firebase/auth-compat/0.3.3_ilabgwonlgwas5yi6hpnop6rs4: + resolution: {integrity: sha512-9asUuGtkzUVELH3LYXdiom1nVVV9bqEPqzHohanoofHL/oVTNcHZ4AQ5CXjNATfb6c1WH32U+nEuPiYg26UUIw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/auth': 0.21.0_nw4m4mwqwngj7zodqmw3xrcjja - '@firebase/auth-types': 0.12.0_ymjb4f6a56kabcdqyfm4cet2ly - '@firebase/component': 0.6.0 - '@firebase/util': 1.8.0 + '@firebase/app-compat': 0.2.3 + '@firebase/auth': 0.21.3_elhicscdlgavbvc4rtd5whdute + '@firebase/auth-types': 0.12.0_rls6ojzmqtv4do6kouxcb5gfn4 + '@firebase/component': 0.6.3 + '@firebase/util': 1.9.2 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: @@ -3677,91 +3630,81 @@ packages: - encoding dev: false - /@firebase/auth-interop-types/0.2.0_ymjb4f6a56kabcdqyfm4cet2ly: - resolution: {integrity: sha512-7Mt2qzwvu5X3Qxz24gjj0qITrBsMmy1W4vGBP8TZRuQrjA4OTlGVCTG8ysvweZ3xpdl1XGhBsIjo2KjfOPg0xA==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - dependencies: - '@firebase/app-types': 0.9.0 - '@firebase/util': 1.8.0 + /@firebase/auth-interop-types/0.2.1: + resolution: {integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==} dev: false - /@firebase/auth-types/0.12.0_ymjb4f6a56kabcdqyfm4cet2ly: + /@firebase/auth-types/0.12.0_rls6ojzmqtv4do6kouxcb5gfn4: resolution: {integrity: sha512-pPwaZt+SPOshK8xNoiQlK5XIrS97kFYc3Rc7xmy373QsOJ9MmqXxLaYssP5Kcds4wd2qK//amx/c+A8O2fVeZA==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 dev: false - /@firebase/auth/0.21.0_nw4m4mwqwngj7zodqmw3xrcjja: - resolution: {integrity: sha512-kXOQl/hyLuGKxs0r2icLsDmAyeO0uM4zV9Q+fx6VE8Ncl94TBUc/n895GSrF3RkNHdiq/DZxV/PUCZ/ozPQNKw==} + /@firebase/auth/0.21.3_elhicscdlgavbvc4rtd5whdute: + resolution: {integrity: sha512-HPbcwgArLBVTowFcn4qaQr6LCx7BidI9yrQ5MRbQNv4PsgK/3UGpzCYaNPPbvgr9fe+0jNdJO+uC0+dk4xIzCQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: - encoding dev: false - /@firebase/component/0.6.0: - resolution: {integrity: sha512-9hyNc4OmrXMtthDJq6zyJHll/UIYBWYmMG3rXty2eMeWxHWB0vlsq3AOI+k14PL15aSBAQolv0EZJWVJv/gCEg==} + /@firebase/component/0.6.3: + resolution: {integrity: sha512-rnhq5SOsB5nuJphZF50iwqnBiuuyg9kdnlUn1rBrKfu7/cUVJZF5IG1cWrL0rXXyiZW1WBI/J2pmTvVO8dStGQ==} dependencies: - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 dev: false - /@firebase/database-compat/0.3.0_@firebase+app-types@0.9.0: - resolution: {integrity: sha512-5kzhXdACd+RX/G8k/DKYAuiMYHDHIZ9WFV/ccVoPsC+bxIQEgPilDEtkljY5ZxiKbUj+PEOSYUfYdV/LQMJatQ==} + /@firebase/database-compat/0.3.3: + resolution: {integrity: sha512-r+L9jTbvsnb7sD+xz6UKU39DgBWqB2pyjzPNdBeriGC9Ssa2MAZe0bIqjCQg51RRXYc/aa/zK1Q2/4uesZeVgQ==} dependencies: - '@firebase/component': 0.6.0 - '@firebase/database': 0.14.0_@firebase+app-types@0.9.0 - '@firebase/database-types': 0.10.0 + '@firebase/component': 0.6.3 + '@firebase/database': 0.14.3 + '@firebase/database-types': 0.10.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 - transitivePeerDependencies: - - '@firebase/app-types' dev: false - /@firebase/database-types/0.10.0: - resolution: {integrity: sha512-jZHI1fY1tm+8heLR4sbgJHtSYI2kTlSp4QTXWALwdT+dfST5OlZYsZeb+hGWeqjHEElzUnkLbw8XuZSy9Uy6rA==} + /@firebase/database-types/0.10.3: + resolution: {integrity: sha512-Hu34CDhHYZsd2eielr0jeaWrTJk8Hz0nd7WsnYDnXtQX4i49ppgPesUzPdXVBdIBLJmT0ZZRvT7qWHknkOT+zg==} dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 dev: false - /@firebase/database/0.14.0_@firebase+app-types@0.9.0: - resolution: {integrity: sha512-SM5eri3eGuPjQdXBRObqKTsgmkRwrSGsbgtD43EpGzU+lIeBVLqwRzfcFialYrWzFFI5V7hWXdS2oJxAkfnBFw==} + /@firebase/database/0.14.3: + resolution: {integrity: sha512-J76W6N7JiVkLaAtPyjaGRkrsIu9pi6iZikuGGtGjqvV19vkn7oiL4Hbo5uTYCMd4waTUWoL9iI08eX184W+5GQ==} dependencies: - '@firebase/auth-interop-types': 0.2.0_ymjb4f6a56kabcdqyfm4cet2ly - '@firebase/component': 0.6.0 + '@firebase/auth-interop-types': 0.2.1 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 faye-websocket: 0.11.4 tslib: 2.5.0 - transitivePeerDependencies: - - '@firebase/app-types' dev: false - /@firebase/firestore-compat/0.3.0_smx2rqj2kjyjzx5x66zunbdpee: - resolution: {integrity: sha512-ckU4mkziDnsFKxgYv+OAJHPuNpti2RjyoeIAqz3EqRHAsYFC70U5w4aXC2Sbu2jJp3Ba2BoD7MV/4Qb2A7CJtw==} + /@firebase/firestore-compat/0.3.3_ilabgwonlgwas5yi6hpnop6rs4: + resolution: {integrity: sha512-fMTsSC0s2cF5w2+JoB0dWD/o4kXtLrUCPGnZPuz4S0bqTN2t0vHr3gdAsQLtnadgwB78ACtinYmf4Udwx7TzDg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 - '@firebase/firestore': 3.8.0_nw4m4mwqwngj7zodqmw3xrcjja - '@firebase/firestore-types': 2.5.1_ymjb4f6a56kabcdqyfm4cet2ly - '@firebase/util': 1.8.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 + '@firebase/firestore': 3.8.3_elhicscdlgavbvc4rtd5whdute + '@firebase/firestore-types': 2.5.1_rls6ojzmqtv4do6kouxcb5gfn4 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3769,26 +3712,26 @@ packages: - encoding dev: false - /@firebase/firestore-types/2.5.1_ymjb4f6a56kabcdqyfm4cet2ly: + /@firebase/firestore-types/2.5.1_rls6ojzmqtv4do6kouxcb5gfn4: resolution: {integrity: sha512-xG0CA6EMfYo8YeUxC8FeDzf6W3FX1cLlcAGBYV6Cku12sZRI81oWcu61RSKM66K6kUENP+78Qm8mvroBcm1whw==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 dev: false - /@firebase/firestore/3.8.0_nw4m4mwqwngj7zodqmw3xrcjja: - resolution: {integrity: sha512-aKwfZ73FmOV8e/dN0anDtrq6+1IhX4zmjxUcXcgaypZ14q6bq0QpUdlRxjsfiUQ5m3H3MwWWIFOcT5Xa89sIkw==} + /@firebase/firestore/3.8.3_elhicscdlgavbvc4rtd5whdute: + resolution: {integrity: sha512-4xR3Mqj95bxHg3hZnz0O+LQrHkjq+siT2y+B9da6u68qJ8bzzT42JaFgd1vifhbBpVbBzpFaS2RuCq2E+kGv9g==} engines: {node: '>=10.10.0'} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 '@firebase/webchannel-wrapper': 0.9.0 '@grpc/grpc-js': 1.7.3 '@grpc/proto-loader': 0.6.13 @@ -3798,20 +3741,19 @@ packages: - encoding dev: false - /@firebase/functions-compat/0.3.0_smx2rqj2kjyjzx5x66zunbdpee: - resolution: {integrity: sha512-xOEdqOVeHXJ2ZjDbTntNGLl1lgW9umx73bWXJn9h68bSD4f9ldIVoz+h15s8i/e1pJOO/LlEp2BMvoA35U1P/Q==} + /@firebase/functions-compat/0.3.3_og3pmdegxblfifls6o6dz26cbi: + resolution: {integrity: sha512-UIAJ2gzNq0p/61cXqkpi9DnlQt0hdlGqgmL5an7KuJth2Iv5uGpKg/+OapAZxPuiUNZgTEyZDB7kNBHvnxWq5w==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 - '@firebase/functions': 0.9.0_abctzvz6bda5rcfr257jyree6a + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 + '@firebase/functions': 0.9.3_elhicscdlgavbvc4rtd5whdute '@firebase/functions-types': 0.6.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' - - '@firebase/app-types' - encoding dev: false @@ -3819,34 +3761,33 @@ packages: resolution: {integrity: sha512-hfEw5VJtgWXIRf92ImLkgENqpL6IWpYaXVYiRkFY1jJ9+6tIhWM7IzzwbevwIIud/jaxKVdRzD7QBWfPmkwCYw==} dev: false - /@firebase/functions/0.9.0_abctzvz6bda5rcfr257jyree6a: - resolution: {integrity: sha512-na/+7uc9ViQVBadEsCVjBnbZsfUCMyS/x6SID1Nz4Z5nkhuxrls9Jcv7jc28tMqHR0VpoGq8W6oLProyjT8JPg==} + /@firebase/functions/0.9.3_elhicscdlgavbvc4rtd5whdute: + resolution: {integrity: sha512-tPJgYY2ROQSYuzvgxZRoHeDj+Ic07/bWHwaftgTriawtupmFOkt5iikuhJSJUhaOpFh9TB335OvCXJw1N+BIlQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 + '@firebase/app': 0.9.3 '@firebase/app-check-interop-types': 0.2.0 - '@firebase/auth-interop-types': 0.2.0_ymjb4f6a56kabcdqyfm4cet2ly - '@firebase/component': 0.6.0 + '@firebase/auth-interop-types': 0.2.1 + '@firebase/component': 0.6.3 '@firebase/messaging-interop-types': 0.2.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: - - '@firebase/app-types' - encoding dev: false - /@firebase/installations-compat/0.2.0_z6klzwxqggigirvqix3ggnu6f4: - resolution: {integrity: sha512-EqCU8C9XPQN6npfTCW+6agzQ0yPLvbSCY5WROdnU1ZJfOsGFrMMVMRk42XBzah1dHBoSQYggVaixEzJUOH7zbQ==} + /@firebase/installations-compat/0.2.3_2nquphbz2k7fjevr4yz5c7cjmi: + resolution: {integrity: sha512-K9rKM/ym06lkpaKz7bMLxzHK/HEk65XfLJBV+dJkIuWeO0EqqC9VFGrpWAo0QmgC4BqbU58T6VBbzoJjb0gaFw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 - '@firebase/installations': 0.6.0_@firebase+app@0.9.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 + '@firebase/installations': 0.6.3_@firebase+app@0.9.3 '@firebase/installations-types': 0.5.0_@firebase+app-types@0.9.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3861,14 +3802,14 @@ packages: '@firebase/app-types': 0.9.0 dev: false - /@firebase/installations/0.6.0_@firebase+app@0.9.0: - resolution: {integrity: sha512-Aks56ThZs1MsM0qJzJxhdeXak+Ob3tjd3JSY2poJptreLWsIOSBCxYO7Ev4yZ7DE7twMdZ0x70NhQ1ceXfdy0w==} + /@firebase/installations/0.6.3_@firebase+app@0.9.3: + resolution: {integrity: sha512-20JFWm+tweNoRjRbz8/Y4I7O5pUJGZsFKCkLl1qNxfNYECSfrZUuozIDJDZC/MeVn5+kB9CwjThDlgQEPrfLdg==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 - '@firebase/util': 1.8.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 + '@firebase/util': 1.9.2 idb: 7.0.1 tslib: 2.5.0 dev: false @@ -3879,15 +3820,15 @@ packages: tslib: 2.5.0 dev: false - /@firebase/messaging-compat/0.2.0_5z7svkifsmkn6ro3hru7lnxwrq: - resolution: {integrity: sha512-Qk9W9lVmTO67bR5jCaQ9HqS9MipkCuPGKCcO5JnnDd/p+Y2beWzScYxwzYGh9pEga3qzDAMSCB1PYoNgNTMzew==} + /@firebase/messaging-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: + resolution: {integrity: sha512-MmuuohXV2YRzIoJmDngI5qqO/cF2q7SdAaw7k4r61W3ReJy7x4/rtqrIvwNVhM6X/X8NFGBbsYKsCfRHWjFdkg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 - '@firebase/messaging': 0.12.0_@firebase+app@0.9.0 - '@firebase/util': 1.8.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 + '@firebase/messaging': 0.12.3_@firebase+app@0.9.3 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3897,31 +3838,31 @@ packages: resolution: {integrity: sha512-ujA8dcRuVeBixGR9CtegfpU4YmZf3Lt7QYkcj693FFannwNuZgfAYaTmbJ40dtjB81SAu6tbFPL9YLNT15KmOQ==} dev: false - /@firebase/messaging/0.12.0_@firebase+app@0.9.0: - resolution: {integrity: sha512-M+LWaBH392SLF7/wAH5byJrP5f1MpromUG02NIr0sbgJ6Ot2nc+qDrDGjKF4qLXFqYzhNRlhskCCdf0ClgDM0A==} + /@firebase/messaging/0.12.3_@firebase+app@0.9.3: + resolution: {integrity: sha512-a3ZKcGDiV2sKmQDB56PpgL1yjFxXCtff2+v1grnAZZ4GnfNQ74t2EHCbmgY7xRX7ThzMqug54oxhuk4ur0MIoA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 - '@firebase/installations': 0.6.0_@firebase+app@0.9.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 + '@firebase/installations': 0.6.3_@firebase+app@0.9.3 '@firebase/messaging-interop-types': 0.2.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 idb: 7.0.1 tslib: 2.5.0 dev: false - /@firebase/performance-compat/0.2.0_5z7svkifsmkn6ro3hru7lnxwrq: - resolution: {integrity: sha512-iO0fspVpiVOGxR08Y51nXoSMPH/bdRkRVQXYo4wuDDfQoZ5WZ0DXQuE0kXy3/T9QgqXdr8tSU0P0nil/jvnOcg==} + /@firebase/performance-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: + resolution: {integrity: sha512-I3rqZsIhauXn4iApfj1ttKQdlti/r8OZBG4YK10vxKSdhAzTIDWDKEsdoCXvvKLwplcMv36sM3WPAPGQLqY5MQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/performance': 0.6.0_@firebase+app@0.9.0 + '@firebase/performance': 0.6.3_@firebase+app@0.9.3 '@firebase/performance-types': 0.2.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3931,30 +3872,30 @@ packages: resolution: {integrity: sha512-kYrbr8e/CYr1KLrLYZZt2noNnf+pRwDq2KK9Au9jHrBMnb0/C9X9yWSXmZkFt4UIdsQknBq8uBB7fsybZdOBTA==} dev: false - /@firebase/performance/0.6.0_@firebase+app@0.9.0: - resolution: {integrity: sha512-mmCQ/8F0hQZ+J+JBvfQPlPAgKIRZccYW6N9321NbX8swd7EQP3dsW905RBmdXRsbjBpBqhn20zcQU6TDOKRwYA==} + /@firebase/performance/0.6.3_@firebase+app@0.9.3: + resolution: {integrity: sha512-NQmQN6Ete7i9jz1mzULJZEGvsOmwwdUy6vpqnhUxSFMYPnlBKjX+yypCUUJDDN5zff5+kfwSD1qCyUAaS0xWUA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 - '@firebase/installations': 0.6.0_@firebase+app@0.9.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 + '@firebase/installations': 0.6.3_@firebase+app@0.9.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 dev: false - /@firebase/remote-config-compat/0.2.0_5z7svkifsmkn6ro3hru7lnxwrq: - resolution: {integrity: sha512-2t+w4ngp1DPtZc04a6IjicbUGBpLb/MuFPlqpT8kHNqa/fNvA+ZFcAlEtHvzjS4o9rnTfjHgB+OJMgFP+r9OOw==} + /@firebase/remote-config-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: + resolution: {integrity: sha512-w/ZL03YgYaXq03xIRyJ5oPhXZi6iDsY/v0J9Y7I7SqxCYytEnHVrL9nvBqd9R94y5LRAVNPCLokJeeizaUz4VQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 '@firebase/logger': 0.4.0 - '@firebase/remote-config': 0.4.0_@firebase+app@0.9.0 + '@firebase/remote-config': 0.4.3_@firebase+app@0.9.3 '@firebase/remote-config-types': 0.3.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3964,29 +3905,29 @@ packages: resolution: {integrity: sha512-RtEH4vdcbXZuZWRZbIRmQVBNsE7VDQpet2qFvq6vwKLBIQRQR5Kh58M4ok3A3US8Sr3rubYnaGqZSurCwI8uMA==} dev: false - /@firebase/remote-config/0.4.0_@firebase+app@0.9.0: - resolution: {integrity: sha512-sedVYE4PwN4qtXfb7EkUYe9mz7hqBP/3y3c7WRMmTuh2VRNz5C5+NYULr5zySeJq+UZd6KyaS+KUOIxmx70tTw==} + /@firebase/remote-config/0.4.3_@firebase+app@0.9.3: + resolution: {integrity: sha512-Q6d4jBWZoNt6SYq87bjtDGUHFkKwAmGnNjWyRjl14AZqE1ilgd9NZHmutharlYJ3LvxMsid80HdK5SgGEpIPfg==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 - '@firebase/installations': 0.6.0_@firebase+app@0.9.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 + '@firebase/installations': 0.6.3_@firebase+app@0.9.3 '@firebase/logger': 0.4.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 tslib: 2.5.0 dev: false - /@firebase/storage-compat/0.2.0_smx2rqj2kjyjzx5x66zunbdpee: - resolution: {integrity: sha512-w+7CyZyZ53YQWlTb8YOQ9YcmScgDwkvkXhpUbRWHlvlzAs06l0au42MydmHCeeTcSqvLOzpgURiVfm15ZifARg==} + /@firebase/storage-compat/0.3.1_ilabgwonlgwas5yi6hpnop6rs4: + resolution: {integrity: sha512-6HaTvWsT5Yy3j4UpCZpMcFUYEkJ2XYWukdyTl02u6VjSBRLvkhOXPzEfMvgVWqhnF/rYVfPdjrZ904wk5OxtmQ==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.0 - '@firebase/component': 0.6.0 - '@firebase/storage': 0.10.0_nw4m4mwqwngj7zodqmw3xrcjja - '@firebase/storage-types': 0.7.0_ymjb4f6a56kabcdqyfm4cet2ly - '@firebase/util': 1.8.0 + '@firebase/app-compat': 0.2.3 + '@firebase/component': 0.6.3 + '@firebase/storage': 0.11.1_elhicscdlgavbvc4rtd5whdute + '@firebase/storage-types': 0.8.0_rls6ojzmqtv4do6kouxcb5gfn4 + '@firebase/util': 1.9.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -3994,32 +3935,32 @@ packages: - encoding dev: false - /@firebase/storage-types/0.7.0_ymjb4f6a56kabcdqyfm4cet2ly: - resolution: {integrity: sha512-n/8pYd82hc9XItV3Pa2KGpnuJ/2h/n/oTAaBberhe6GeyWQPnsmwwRK94W3GxUwBA/ZsszBAYZd7w7tTE+6XXA==} + /@firebase/storage-types/0.8.0_rls6ojzmqtv4do6kouxcb5gfn4: + resolution: {integrity: sha512-isRHcGrTs9kITJC0AVehHfpraWFui39MPaU7Eo8QfWlqW7YPymBmRgjDrlOgFdURh6Cdeg07zmkLP5tzTKRSpg==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.8.0 + '@firebase/util': 1.9.2 dev: false - /@firebase/storage/0.10.0_nw4m4mwqwngj7zodqmw3xrcjja: - resolution: {integrity: sha512-2rp7+/bQ1gkUgrqDv5qHf/vlPAOKV+a/h1tnZ8D9zN0/6wc42gqFTORJUZj/A4efVnX7Ix8MWHBe4woO/2Th0w==} + /@firebase/storage/0.11.1_elhicscdlgavbvc4rtd5whdute: + resolution: {integrity: sha512-Xv8EG2j52ugF2xayBz26U9J0VBXHXPMVxSN+ph3R3BSoHxvMLaPu+qUYKHavSt+zbcgPH2GyBhrCdJK6SaDFPA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.0 - '@firebase/component': 0.6.0 - '@firebase/util': 1.8.0 + '@firebase/app': 0.9.3 + '@firebase/component': 0.6.3 + '@firebase/util': 1.9.2 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: - encoding dev: false - /@firebase/util/1.8.0: - resolution: {integrity: sha512-clK6pTTxIiLMYz4UrvDTVAs2rIaOiroAuFdX67C0JalvEwzi6Vv8li6xAGj38tkj7Qax06mosM1fQkxf2h4VTg==} + /@firebase/util/1.9.2: + resolution: {integrity: sha512-9l0uMGPGw3GsoD5khjMmYCCcMq/OR/OOSViiWMN+s2Q0pxM+fYzrii1H+r8qC/uoMjSVXomjLZt0vZIyryCqtQ==} dependencies: tslib: 2.5.0 dev: false @@ -4032,16 +3973,16 @@ packages: resolution: {integrity: sha512-oYZVHsnlwV3VWM1SE/m6SUxVh0QLk5+2wB+lBiXcI7N/0KVQWmV9YykaPqfJHBLvmdya+MAOnv+BQHeLU1vOOw==} dev: false - /@fontsource/space-mono/4.5.10: - resolution: {integrity: sha512-OTrWNdcPp01bZjEbSu52vMu9PaReUFylHAMI4lctKVbYUnm+e7a4eG6YcnRvDrJEMYHBDtEWLAsqGVldV5r1EQ==} + /@fontsource/space-mono/4.5.12: + resolution: {integrity: sha512-/ljrJgSIB/C0jUCn07r/V/KpkdHF9bnK2fD0raGSVkgQjFqQ6Q3LndVeBiUCJlIi6ROh7rHDkpFzn+nNmRgRlQ==} dev: false /@grpc/grpc-js/1.7.3: resolution: {integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==} engines: {node: ^8.13.0 || >=10.10.0} dependencies: - '@grpc/proto-loader': 0.7.4 - '@types/node': 18.11.18 + '@grpc/proto-loader': 0.7.5 + '@types/node': 18.14.0 dev: false /@grpc/proto-loader/0.6.13: @@ -4056,15 +3997,15 @@ packages: yargs: 16.2.0 dev: false - /@grpc/proto-loader/0.7.4: - resolution: {integrity: sha512-MnWjkGwqQ3W8fx94/c1CwqLsNmHHv2t0CFn+9++6+cDphC1lolpg9M2OU0iebIjK//pBNX9e94ho+gjx6vz39w==} + /@grpc/proto-loader/0.7.5: + resolution: {integrity: sha512-mfcTuMbFowq1wh/Rn5KQl6qb95M21Prej3bewD9dUQMurYGVckGO/Pbe2Ocwto6sD05b/mxZLspvqwx60xO2Rg==} engines: {node: '>=6'} hasBin: true dependencies: '@types/long': 4.0.2 lodash.camelcase: 4.3.0 long: 4.0.0 - protobufjs: 7.1.2 + protobufjs: 7.2.2 yargs: 16.2.0 dev: false @@ -4141,12 +4082,12 @@ packages: '@jest/schemas': 29.4.2 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.18 + '@types/node': 18.14.0 '@types/yargs': 17.0.22 chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript/0.2.1_ggo5j25brebqqko7hdmvawpmuy: + /@joshwooding/vite-plugin-react-docgen-typescript/0.2.1_f7vjlzfn2qz6iyr4iasvdrpcpu: resolution: {integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==} peerDependencies: typescript: '>= 4.3.x' @@ -4160,7 +4101,7 @@ packages: magic-string: 0.27.0 react-docgen-typescript: 2.2.2_typescript@4.9.5 typescript: 4.9.5 - vite: 4.1.1 + vite: 4.1.2 dev: true /@jridgewell/gen-mapping/0.1.1: @@ -4257,7 +4198,7 @@ packages: react: '>=16' dependencies: '@types/mdx': 2.0.3 - '@types/react': 18.0.27 + '@types/react': 18.0.28 react: 18.2.0 dev: true @@ -4275,8 +4216,8 @@ packages: os-filter-obj: 2.0.0 dev: true - /@mui/base/5.0.0-alpha.117_5ndqzdd6t4rivxsukjv3i3ak2q: - resolution: {integrity: sha512-3GlRSZdSrvDQ4k03dSV2rM+97JbNWimFOqGsE7n7Mi8WuBSYCgnPe56bQp3E5cShOrTn11dGH8FRCmVMcCEXqQ==} + /@mui/base/5.0.0-alpha.118_zula6vjvt3wdocc4mwcxqa6nzi: + resolution: {integrity: sha512-GAEpqhnuHjRaAZLdxFNuOf2GDTp9sUawM46oHZV4VnYPFjXJDkIYFWfIQLONb0nga92OiqS5DD/scGzVKCL0Mw==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -4286,12 +4227,12 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@emotion/is-prop-valid': 1.2.0 - '@mui/types': 7.2.3_@types+react@18.0.27 - '@mui/utils': 5.11.7_react@18.2.0 + '@mui/types': 7.2.3_@types+react@18.0.28 + '@mui/utils': 5.11.9_react@18.2.0 '@popperjs/core': 2.11.6 - '@types/react': 18.0.27 + '@types/react': 18.0.28 clsx: 1.2.1 prop-types: 15.8.1 react: 18.2.0 @@ -4299,36 +4240,12 @@ packages: react-is: 18.2.0 dev: false - /@mui/base/5.0.0-alpha.117_7ey2zzynotv32rpkwno45fsx4e: - resolution: {integrity: sha512-3GlRSZdSrvDQ4k03dSV2rM+97JbNWimFOqGsE7n7Mi8WuBSYCgnPe56bQp3E5cShOrTn11dGH8FRCmVMcCEXqQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@emotion/is-prop-valid': 1.2.0 - '@mui/types': 7.2.3_@types+react@18.0.20 - '@mui/utils': 5.11.7_react@18.2.0 - '@popperjs/core': 2.11.6 - '@types/react': 18.0.20 - clsx: 1.2.1 - prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-is: 18.2.0 + /@mui/core-downloads-tracker/5.11.9: + resolution: {integrity: sha512-YGEtucQ/Nl91VZkzYaLad47Cdui51n/hW+OQm4210g4N3/nZzBxmGeKfubEalf+ShKH4aYDS86XTO6q/TpZnjQ==} dev: false - /@mui/core-downloads-tracker/5.11.8: - resolution: {integrity: sha512-n/uJRIwZAaJaROaOA4VzycxDo27cusnrRzfycnAkAP5gBndwOJQ1CXjd1Y7hJe5eorj/ukixC7IZD+qCClMCMg==} - dev: false - - /@mui/icons-material/5.11.0_3psqo62dtzuc5tpd3awdluze4i: - resolution: {integrity: sha512-I2LaOKqO8a0xcLGtIozC9xoXjZAto5G5gh0FYUMAlbsIHNHIjn4Xrw9rvjY20vZonyiGrZNMAlAXYkY6JvhF6A==} + /@mui/icons-material/5.11.9_ofpk46txu7v2f5mzrtv4xsczka: + resolution: {integrity: sha512-SPANMk6K757Q1x48nCwPGdSNb8B71d+2hPMJ0V12VWerpSsbjZtvAPi5FAn13l2O5mwWkvI0Kne+0tCgnNxMNw==} engines: {node: '>=12.0.0'} peerDependencies: '@mui/material': ^5.0.0 @@ -4338,31 +4255,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 - '@mui/material': 5.11.8_rqh7qj4464ntrqrt6banhaqg4q - '@types/react': 18.0.27 + '@babel/runtime': 7.20.13 + '@mui/material': 5.11.9_xqeqsl5kvjjtyxwyi3jhw3yuli + '@types/react': 18.0.28 react: 18.2.0 dev: false - /@mui/icons-material/5.11.0_ixytn77exq5nzezlwja6xe4jxi: - resolution: {integrity: sha512-I2LaOKqO8a0xcLGtIozC9xoXjZAto5G5gh0FYUMAlbsIHNHIjn4Xrw9rvjY20vZonyiGrZNMAlAXYkY6JvhF6A==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@mui/material': ^5.0.0 - '@types/react': ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@mui/material': 5.11.8_pmppvr4gtvd6vpdr5yl42vjwtu - '@types/react': 18.0.20 - react: 18.2.0 - dev: false - - /@mui/material/5.11.8_pmppvr4gtvd6vpdr5yl42vjwtu: - resolution: {integrity: sha512-MpIVmtj9VJBhPHvPWoMkfCPpmVGXT4q43PtCJsdKIdc7W9/nG3Kpqw2oWyw+UxG5xG7eLhmfRFGPKvj4/WopEQ==} + /@mui/material/5.11.9_xqeqsl5kvjjtyxwyi3jhw3yuli: + resolution: {integrity: sha512-Wb3WzjzYyi/WKSl/XlF7aC8kk2NE21IoHMF7hNQMkPb0GslbWwR4OUjlBpxtG+RSZn44wMZkEDNB9Hw0TDsd8g==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -4378,15 +4278,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 - '@emotion/react': 11.10.5_w5j4k42lgipnm43s3brx6h3c34 - '@emotion/styled': 11.10.5_s7uipz3r575xmfz2gje3lxfqua - '@mui/base': 5.0.0-alpha.117_7ey2zzynotv32rpkwno45fsx4e - '@mui/core-downloads-tracker': 5.11.8 - '@mui/system': 5.11.8_rzxw6anggsjmiyyhdfmgehw6ye - '@mui/types': 7.2.3_@types+react@18.0.20 - '@mui/utils': 5.11.7_react@18.2.0 - '@types/react': 18.0.20 + '@babel/runtime': 7.20.13 + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@mui/base': 5.0.0-alpha.118_zula6vjvt3wdocc4mwcxqa6nzi + '@mui/core-downloads-tracker': 5.11.9 + '@mui/system': 5.11.9_d2lgyfpecxdc2bsiwyag5wf7ti + '@mui/types': 7.2.3_@types+react@18.0.28 + '@mui/utils': 5.11.9_react@18.2.0 + '@types/react': 18.0.28 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 csstype: 3.1.1 @@ -4397,44 +4297,8 @@ packages: react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y dev: false - /@mui/material/5.11.8_rqh7qj4464ntrqrt6banhaqg4q: - resolution: {integrity: sha512-MpIVmtj9VJBhPHvPWoMkfCPpmVGXT4q43PtCJsdKIdc7W9/nG3Kpqw2oWyw+UxG5xG7eLhmfRFGPKvj4/WopEQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@emotion/react': 11.10.5_3stiutgnnbnfnf3uowm5cip22i - '@emotion/styled': 11.10.5_jrh5enlbqfbnumycmktdqgd6se - '@mui/base': 5.0.0-alpha.117_5ndqzdd6t4rivxsukjv3i3ak2q - '@mui/core-downloads-tracker': 5.11.8 - '@mui/system': 5.11.8_gzalmy7izvhol7vh4xfy3dq6ua - '@mui/types': 7.2.3_@types+react@18.0.27 - '@mui/utils': 5.11.7_react@18.2.0 - '@types/react': 18.0.27 - '@types/react-transition-group': 4.4.5 - clsx: 1.2.1 - csstype: 3.1.1 - prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-is: 18.2.0 - react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y - dev: false - - /@mui/private-theming/5.11.7_3stiutgnnbnfnf3uowm5cip22i: - resolution: {integrity: sha512-XzRTSZdc8bhuUdjablTNv3kFkZ/XIMlKkOqqJCU0G8W3tWGXpau2DXkafPd1ddjPhF9zF3qLKNGgKCChYItjgA==} + /@mui/private-theming/5.11.9_pmekkgnqduwlme35zpnqhenc34: + resolution: {integrity: sha512-XMyVIFGomVCmCm92EvYlgq3zrC9K+J6r7IKl/rBJT2/xVYoRY6uM7jeB+Wxh7kXxnW9Dbqsr2yL3cx6wSD1sAg==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -4443,32 +4307,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 - '@mui/utils': 5.11.7_react@18.2.0 - '@types/react': 18.0.27 + '@babel/runtime': 7.20.13 + '@mui/utils': 5.11.9_react@18.2.0 + '@types/react': 18.0.28 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/private-theming/5.11.7_w5j4k42lgipnm43s3brx6h3c34: - resolution: {integrity: sha512-XzRTSZdc8bhuUdjablTNv3kFkZ/XIMlKkOqqJCU0G8W3tWGXpau2DXkafPd1ddjPhF9zF3qLKNGgKCChYItjgA==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/react': ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@mui/utils': 5.11.7_react@18.2.0 - '@types/react': 18.0.20 - prop-types: 15.8.1 - react: 18.2.0 - dev: false - - /@mui/styled-engine/5.11.8_dovxhg2tvkkxkdnqyoum6wzcxm: - resolution: {integrity: sha512-iSpZp9AoeictsDi5xAQ4PGXu7mKtQyzMl7ZaWpHIGMFpsNnfY3NQNg+wkj/gpsAZ+Zg+IIyD+t+ig71Kr9fa0w==} + /@mui/styled-engine/5.11.9_xqp3pgpqjlfxxa3zxu4zoc4fba: + resolution: {integrity: sha512-bkh2CjHKOMy98HyOc8wQXEZvhOmDa/bhxMUekFX5IG0/w4f5HJ8R6+K6nakUUYNEgjOWPYzNPrvGB8EcGbhahQ==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 @@ -4480,17 +4327,17 @@ packages: '@emotion/styled': optional: true dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@emotion/cache': 11.10.5 - '@emotion/react': 11.10.5_w5j4k42lgipnm43s3brx6h3c34 - '@emotion/styled': 11.10.5_s7uipz3r575xmfz2gje3lxfqua + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia csstype: 3.1.1 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/system/5.11.8_gzalmy7izvhol7vh4xfy3dq6ua: - resolution: {integrity: sha512-zhroUcxAw2x/dISBJKhGbD70DOYCwMFRo7o/LUYTiUfQkfmLhRfEf1bopWgY9nYstn7QOxOq9fA3aR3pHrUTbw==} + /@mui/system/5.11.9_d2lgyfpecxdc2bsiwyag5wf7ti: + resolution: {integrity: sha512-h6uarf+l3FO6l75Nf7yO+qDGrIoa1DM9nAMCUFZQsNCDKOInRzcptnm8M1w/Z3gVetfeeGoIGAYuYKbft6KZZA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -4505,51 +4352,21 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.20.7 - '@emotion/react': 11.10.5_3stiutgnnbnfnf3uowm5cip22i - '@emotion/styled': 11.10.5_jrh5enlbqfbnumycmktdqgd6se - '@mui/private-theming': 5.11.7_3stiutgnnbnfnf3uowm5cip22i - '@mui/styled-engine': 5.11.8_dovxhg2tvkkxkdnqyoum6wzcxm - '@mui/types': 7.2.3_@types+react@18.0.27 - '@mui/utils': 5.11.7_react@18.2.0 - '@types/react': 18.0.27 + '@babel/runtime': 7.20.13 + '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@mui/private-theming': 5.11.9_pmekkgnqduwlme35zpnqhenc34 + '@mui/styled-engine': 5.11.9_xqp3pgpqjlfxxa3zxu4zoc4fba + '@mui/types': 7.2.3_@types+react@18.0.28 + '@mui/utils': 5.11.9_react@18.2.0 + '@types/react': 18.0.28 clsx: 1.2.1 csstype: 3.1.1 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/system/5.11.8_rzxw6anggsjmiyyhdfmgehw6ye: - resolution: {integrity: sha512-zhroUcxAw2x/dISBJKhGbD70DOYCwMFRo7o/LUYTiUfQkfmLhRfEf1bopWgY9nYstn7QOxOq9fA3aR3pHrUTbw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@emotion/react': ^11.5.0 - '@emotion/styled': ^11.3.0 - '@types/react': ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@emotion/react': - optional: true - '@emotion/styled': - optional: true - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.20.7 - '@emotion/react': 11.10.5_w5j4k42lgipnm43s3brx6h3c34 - '@emotion/styled': 11.10.5_s7uipz3r575xmfz2gje3lxfqua - '@mui/private-theming': 5.11.7_w5j4k42lgipnm43s3brx6h3c34 - '@mui/styled-engine': 5.11.8_dovxhg2tvkkxkdnqyoum6wzcxm - '@mui/types': 7.2.3_@types+react@18.0.20 - '@mui/utils': 5.11.7_react@18.2.0 - '@types/react': 18.0.20 - clsx: 1.2.1 - csstype: 3.1.1 - prop-types: 15.8.1 - react: 18.2.0 - dev: false - - /@mui/types/7.2.3_@types+react@18.0.20: + /@mui/types/7.2.3_@types+react@18.0.28: resolution: {integrity: sha512-tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw==} peerDependencies: '@types/react': '*' @@ -4557,27 +4374,16 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 dev: false - /@mui/types/7.2.3_@types+react@18.0.27: - resolution: {integrity: sha512-tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw==} - peerDependencies: - '@types/react': '*' - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 18.0.27 - dev: false - - /@mui/utils/5.11.7_react@18.2.0: - resolution: {integrity: sha512-8uyNDeVHZA804Ego20Erv8TpxlbqTe/EbhTI2H1UYr4/RiIbBprat8W4Qqr2UQIsC/b3DLz+0RQ6R/E5BxEcLA==} + /@mui/utils/5.11.9_react@18.2.0: + resolution: {integrity: sha512-eOJaqzcEs4qEwolcvFAmXGpln+uvouvOS9FUX6Wkrte+4I8rZbjODOBDVNlK+V6/ziTfD4iNKC0G+KfOTApbqg==} engines: {node: '>=12.0.0'} peerDependencies: react: ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@types/prop-types': 15.7.5 '@types/react-is': 17.0.3 prop-types: 15.8.1 @@ -4585,10 +4391,6 @@ packages: react-is: 18.2.0 dev: false - /@next/env/12.3.1: - resolution: {integrity: sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg==} - dev: false - /@next/env/13.1.0: resolution: {integrity: sha512-6iNixFzCndH+Bl4FetQzOMjxCJqg8fs0LAlZviig1K6mIjOWH2m2oPcHcOg1Ta5VCe7Bx5KG1Hs+NrWDUkBt9A==} dev: false @@ -4597,21 +4399,12 @@ packages: resolution: {integrity: sha512-s+W9Fdqh5MFk6ECrbnVmmAOwxKQuhGMT7xXHrkYIBMBcTiOqNWhv5KbJIboKR5STXxNXl32hllnvKaffzFaWQg==} dev: false - /@next/eslint-plugin-next/12.3.1: - resolution: {integrity: sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw==} + /@next/eslint-plugin-next/13.1.6: + resolution: {integrity: sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw==} dependencies: glob: 7.1.7 dev: true - /@next/swc-android-arm-eabi/12.3.1: - resolution: {integrity: sha512-i+BvKA8tB//srVPPQxIQN5lvfROcfv4OB23/L1nXznP+N/TyKL8lql3l7oo2LNhnH66zWhfoemg3Q4VJZSruzQ==} - engines: {node: '>= 10'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: false - optional: true - /@next/swc-android-arm-eabi/13.1.0: resolution: {integrity: sha512-ANBZZRjZBV+Sii11ZVxbxSvfIi6dZwu4w+XnJBDmz+0/wtAigpjYWyMkuWZ/RCD7INdusOlU4EgJ99WzWGIDjA==} engines: {node: '>= 10'} @@ -4630,15 +4423,6 @@ packages: dev: false optional: true - /@next/swc-android-arm64/12.3.1: - resolution: {integrity: sha512-CmgU2ZNyBP0rkugOOqLnjl3+eRpXBzB/I2sjwcGZ7/Z6RcUJXK5Evz+N0ucOxqE4cZ3gkTeXtSzRrMK2mGYV8Q==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: false - optional: true - /@next/swc-android-arm64/13.1.0: resolution: {integrity: sha512-nPwbkS3aZjCIe61wztgjXjIeylijOP8uGtDGjjJVUF3B/5GLVx3ngZu6tjPTMEgaLM0u//HuGK+aZolWUQWE4g==} engines: {node: '>= 10'} @@ -4657,15 +4441,6 @@ packages: dev: false optional: true - /@next/swc-darwin-arm64/12.3.1: - resolution: {integrity: sha512-hT/EBGNcu0ITiuWDYU9ur57Oa4LybD5DOQp4f22T6zLfpoBMfBibPtR8XktXmOyFHrL/6FC2p9ojdLZhWhvBHg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - /@next/swc-darwin-arm64/13.1.0: resolution: {integrity: sha512-0hUydiAW18jK2uGPnZRdnRQtdB/3ZoPo84A6zH7MJHxAWw9lzVsv3kMg9kgVBBlrivzqdNN8rdgA+eYNxzXU9w==} engines: {node: '>= 10'} @@ -4684,15 +4459,6 @@ packages: dev: false optional: true - /@next/swc-darwin-x64/12.3.1: - resolution: {integrity: sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false - optional: true - /@next/swc-darwin-x64/13.1.0: resolution: {integrity: sha512-3S3iQqJIysklj0Q9gnanuYMzF8H9p+fUVhvSHxVVLcKH4HsE8EGddNkXsaOyznL1kC6vGKw7h6uz1ojaXEafCA==} engines: {node: '>= 10'} @@ -4711,15 +4477,6 @@ packages: dev: false optional: true - /@next/swc-freebsd-x64/12.3.1: - resolution: {integrity: sha512-qcuUQkaBZWqzM0F1N4AkAh88lLzzpfE6ImOcI1P6YeyJSsBmpBIV8o70zV+Wxpc26yV9vpzb+e5gCyxNjKJg5Q==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: false - optional: true - /@next/swc-freebsd-x64/13.1.0: resolution: {integrity: sha512-wAgzwm/em48GIuWq3OYr0BpncMy7c+UA3hsyX+xKh/vb/sOIpQly7JTa+GNdk17s7kprhMfsgzPG3da36NLpkA==} engines: {node: '>= 10'} @@ -4738,15 +4495,6 @@ packages: dev: false optional: true - /@next/swc-linux-arm-gnueabihf/12.3.1: - resolution: {integrity: sha512-diL9MSYrEI5nY2wc/h/DBewEDUzr/DqBjIgHJ3RUNtETAOB3spMNHvJk2XKUDjnQuluLmFMloet9tpEqU2TT9w==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: false - optional: true - /@next/swc-linux-arm-gnueabihf/13.1.0: resolution: {integrity: sha512-Cr2hzL7ad+4nj9KrR1Cz1RDcsWa61X6I7gc6PToRYIY4gL480Sijq19xo7dlXQPnr1viVzbNiNnNXZASHv7uvw==} engines: {node: '>= 10'} @@ -4765,15 +4513,6 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-gnu/12.3.1: - resolution: {integrity: sha512-o/xB2nztoaC7jnXU3Q36vGgOolJpsGG8ETNjxM1VAPxRwM7FyGCPHOMk1XavG88QZSQf+1r+POBW0tLxQOJ9DQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - /@next/swc-linux-arm64-gnu/13.1.0: resolution: {integrity: sha512-EjCIKfeZB9h72evL2yGNwBvE5Im96Zn7o2zxImlvCiUYb/xXDqn4hzhck035BSP3g3sGDLfijFTE1wKRyXIk4w==} engines: {node: '>= 10'} @@ -4792,15 +4531,6 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-musl/12.3.1: - resolution: {integrity: sha512-2WEasRxJzgAmP43glFNhADpe8zB7kJofhEAVNbDJZANp+H4+wq+/cW1CdDi8DqjkShPEA6/ejJw+xnEyDID2jg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false - optional: true - /@next/swc-linux-arm64-musl/13.1.0: resolution: {integrity: sha512-WAsZtCtPXlz/7/bnW9ryw856xEun+c6xSwZwbcvrMxtcSiW3z0LD91Nsj3AkexsjRtBjeEpNeVtDExqF2VKKSA==} engines: {node: '>= 10'} @@ -4819,15 +4549,6 @@ packages: dev: false optional: true - /@next/swc-linux-x64-gnu/12.3.1: - resolution: {integrity: sha512-JWEaMyvNrXuM3dyy9Pp5cFPuSSvG82+yABqsWugjWlvfmnlnx9HOQZY23bFq3cNghy5V/t0iPb6cffzRWylgsA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - /@next/swc-linux-x64-gnu/13.1.0: resolution: {integrity: sha512-Tjd5gieI3X9vPce5yF+GsQxOl0jwUkyOrTR1g5PQr+bT/9Qos/yPL48H1L5ayEp0hxgLVPW7skGal7lVnAoVEQ==} engines: {node: '>= 10'} @@ -4846,15 +4567,6 @@ packages: dev: false optional: true - /@next/swc-linux-x64-musl/12.3.1: - resolution: {integrity: sha512-xoEWQQ71waWc4BZcOjmatuvPUXKTv6MbIFzpm4LFeCHsg2iwai0ILmNXf81rJR+L1Wb9ifEke2sQpZSPNz1Iyg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false - optional: true - /@next/swc-linux-x64-musl/13.1.0: resolution: {integrity: sha512-H9UMEQv40e9pkgdX4mCms0dDf2dimmZ6WXhDTWF/yIh9icgcsHaP73BJ9IFlgvh80wLiUgWZ3LAX4vXnXzidmg==} engines: {node: '>= 10'} @@ -4873,15 +4585,6 @@ packages: dev: false optional: true - /@next/swc-win32-arm64-msvc/12.3.1: - resolution: {integrity: sha512-hswVFYQYIeGHE2JYaBVtvqmBQ1CppplQbZJS/JgrVI3x2CurNhEkmds/yqvDONfwfbttTtH4+q9Dzf/WVl3Opw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false - optional: true - /@next/swc-win32-arm64-msvc/13.1.0: resolution: {integrity: sha512-LFFIKjW/cPl4wvG8HF/6oYPJZ+Jy32G3FUflC8UW1Od6W9yOSEvadhk9fMyDZN4cgsNOcVc3uVSMpcuuCpbDGw==} engines: {node: '>= 10'} @@ -4900,15 +4603,6 @@ packages: dev: false optional: true - /@next/swc-win32-ia32-msvc/12.3.1: - resolution: {integrity: sha512-Kny5JBehkTbKPmqulr5i+iKntO5YMP+bVM8Hf8UAmjSMVo3wehyLVc9IZkNmcbxi+vwETnQvJaT5ynYBkJ9dWA==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false - optional: true - /@next/swc-win32-ia32-msvc/13.1.0: resolution: {integrity: sha512-MBLaoHZSenMdxhB3Ww1VNEhjyPT3uLjzAi5Ygk48LLLbOGu5KxQolhINRrqGuJWqJRNWSJ9JSFBfJrZwQzrUew==} engines: {node: '>= 10'} @@ -4927,15 +4621,6 @@ packages: dev: false optional: true - /@next/swc-win32-x64-msvc/12.3.1: - resolution: {integrity: sha512-W1ijvzzg+kPEX6LAc+50EYYSEo0FVu7dmTE+t+DM4iOLqgGHoW9uYSz9wCVdkXOEEMP9xhXfGpcSxsfDucyPkA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false - optional: true - /@next/swc-win32-x64-msvc/13.1.0: resolution: {integrity: sha512-fFTfIQvnmpbKoyh4v3ezlGqtERlgc2Sx8qJwPuYqoVi0V08wCx9wp2Iq1CINxP3UMHkEeNX7gYpDOd+9Cw9EiQ==} engines: {node: '>= 10'} @@ -4975,13 +4660,25 @@ packages: fastq: 1.13.0 dev: true - /@playwright/test/1.29.1: - resolution: {integrity: sha512-iQxk2DX5U9wOGV3+/Jh9OHPsw5H3mleUL2S4BgQuwtlAfK3PnKvn38m4Rg9zIViGHVW24opSm99HQm/UFLEy6w==} + /@pkgr/utils/2.3.1: + resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + dependencies: + cross-spawn: 7.0.3 + is-glob: 4.0.3 + open: 8.4.1 + picocolors: 1.0.0 + tiny-glob: 0.2.9 + tslib: 2.5.0 + dev: true + + /@playwright/test/1.30.0: + resolution: {integrity: sha512-SVxkQw1xvn/Wk/EvBnqWIq6NLo1AppwbYOjNLmyU0R1RoQ3rLEBtmjTnElcnz8VEtn11fptj1ECxK0tgURhajw==} engines: {node: '>=14'} hasBin: true dependencies: - '@types/node': 18.11.18 - playwright-core: 1.29.1 + '@types/node': 18.14.0 + playwright-core: 1.30.0 dev: true /@popperjs/core/2.11.6: @@ -5034,7 +4731,7 @@ packages: /@radix-ui/primitive/1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 dev: false /@radix-ui/react-compose-refs/1.0.0_react@18.2.0: @@ -5042,7 +4739,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 react: 18.2.0 dev: false @@ -5051,17 +4748,17 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 react: 18.2.0 dev: false - /@radix-ui/react-dialog/1.0.0_7ey2zzynotv32rpkwno45fsx4e: + /@radix-ui/react-dialog/1.0.0_zula6vjvt3wdocc4mwcxqa6nzi: resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 @@ -5074,10 +4771,10 @@ packages: '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-slot': 1.0.0_react@18.2.0 '@radix-ui/react-use-controllable-state': 1.0.0_react@18.2.0 - aria-hidden: 1.2.2_w5j4k42lgipnm43s3brx6h3c34 + aria-hidden: 1.2.2_pmekkgnqduwlme35zpnqhenc34 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.4_w5j4k42lgipnm43s3brx6h3c34 + react-remove-scroll: 2.5.4_pmekkgnqduwlme35zpnqhenc34 transitivePeerDependencies: - '@types/react' dev: false @@ -5088,7 +4785,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y @@ -5103,7 +4800,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 react: 18.2.0 dev: false @@ -5113,7 +4810,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 @@ -5126,7 +4823,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5137,7 +4834,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5149,7 +4846,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 react: 18.2.0 @@ -5162,7 +4859,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-slot': 1.0.0_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5173,7 +4870,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5183,7 +4880,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 react: 18.2.0 dev: false @@ -5192,7 +4889,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5202,7 +4899,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5212,7 +4909,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 react: 18.2.0 dev: false @@ -5589,7 +5286,7 @@ packages: - supports-color dev: true - /@storybook/builder-vite/7.0.0-beta.46_ggo5j25brebqqko7hdmvawpmuy: + /@storybook/builder-vite/7.0.0-beta.46_f7vjlzfn2qz6iyr4iasvdrpcpu: resolution: {integrity: sha512-CYYzxNYmVUELA+RBakcpf2IgH1W7niOMQVMt1fk6e+YAAAGdS9D8OqtR1d/63PakGxQtGnBNatmERbBAmSJu9w==} peerDependencies: '@preact/preset-vite': '*' @@ -5624,7 +5321,7 @@ packages: rollup: 3.14.0 slash: 3.0.0 typescript: 4.9.5 - vite: 4.1.1 + vite: 4.1.2 transitivePeerDependencies: - supports-color dev: true @@ -5719,7 +5416,7 @@ packages: globby: 11.1.0 jscodeshift: 0.14.0_@babel+preset-env@7.20.2 lodash: 4.17.21 - prettier: 2.8.1 + prettier: 2.8.4 recast: 0.23.1 util: 0.12.5 transitivePeerDependencies: @@ -5823,7 +5520,7 @@ packages: globby: 11.1.0 ip: 2.0.0 lodash: 4.17.21 - node-fetch: 2.6.7 + node-fetch: 2.6.9 open: 8.4.1 pretty-hrtime: 1.0.3 prompts: 2.4.2 @@ -5968,7 +5665,7 @@ packages: resolution: {integrity: sha512-4k62e85sR6Cyl0O7ZeCct/pE0v+tjIjGhHDs9U0AZbfBJlSppazRAP51q6v1QdF2eWDgdRbn3oTQnW8rdCBeMg==} dev: true - /@storybook/react-vite/7.0.0-beta.46_jpauyvbrjmqmlxhfgzv45zaizm: + /@storybook/react-vite/7.0.0-beta.46_li3mi7l5obvr3srmivssltef2i: resolution: {integrity: sha512-missKTXPIBE/7BOPfCCCZkoImOs6Da+A6BZPj8MwWSJm2c9Hm4CrCPjcQlyahzKOLYMEL/ugyS+geGDiJNVtBw==} engines: {node: '>=16'} peerDependencies: @@ -5976,17 +5673,17 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^3.0.0 || ^4.0.0 dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1_ggo5j25brebqqko7hdmvawpmuy + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1_f7vjlzfn2qz6iyr4iasvdrpcpu '@rollup/pluginutils': 4.2.1 - '@storybook/builder-vite': 7.0.0-beta.46_ggo5j25brebqqko7hdmvawpmuy + '@storybook/builder-vite': 7.0.0-beta.46_f7vjlzfn2qz6iyr4iasvdrpcpu '@storybook/react': 7.0.0-beta.46_ygqkwb4gg3aean7xjfdauovyqq - '@vitejs/plugin-react': 3.1.0_vite@4.1.1 + '@vitejs/plugin-react': 3.1.0_vite@4.1.2 ast-types: 0.14.2 magic-string: 0.27.0 react: 18.2.0 react-docgen: 6.0.0-alpha.3 react-dom: 18.2.0_react@18.2.0 - vite: 4.1.1 + vite: 4.1.2 transitivePeerDependencies: - '@preact/preset-vite' - supports-color @@ -6089,7 +5786,7 @@ packages: - supports-color dev: true - /@swc/cli/0.1.61_@swc+core@1.3.34: + /@swc/cli/0.1.61_@swc+core@1.3.35: resolution: {integrity: sha512-HeYMJ+8gKfJzM9xgcZqTpAHJYAJVGSljBSmWRUx2B6UiGraLsLjEcqxITwi6/t6Af+QboBMiQX5Wwll89oPK7g==} engines: {node: '>= 12.13'} hasBin: true @@ -6101,7 +5798,7 @@ packages: optional: true dependencies: '@mole-inc/bin-wrapper': 8.0.1 - '@swc/core': 1.3.34 + '@swc/core': 1.3.35 commander: 7.2.0 fast-glob: 3.2.12 semver: 7.3.8 @@ -6109,8 +5806,8 @@ packages: source-map: 0.7.4 dev: true - /@swc/core-darwin-arm64/1.3.34: - resolution: {integrity: sha512-m7+kybVLO9uo/TiGBlf/ISmpmm27I/NrFEBGOVBF2xNOs5BY1XHHM6ddbPPckQa38C19nWeAzdJPwGzJw+qO3A==} + /@swc/core-darwin-arm64/1.3.35: + resolution: {integrity: sha512-zQUFkHx4gZpu0uo2IspvPnKsz8bsdXd5bC33xwjtoAI1cpLerDyqo4v2zIahEp+FdKZjyVsLHtfJiQiA1Qka3A==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -6118,8 +5815,8 @@ packages: dev: true optional: true - /@swc/core-darwin-x64/1.3.34: - resolution: {integrity: sha512-arH7LtcOhuC1wy88qgbCO/E5NnBThbxv9HhjScDfoUPRunyvT9whEvSK0eXCXxGvDAiAtXIrW3blIrteOsQaOQ==} + /@swc/core-darwin-x64/1.3.35: + resolution: {integrity: sha512-oOSkSGWtALovaw22lNevKD434OQTPf8X+dVPvPMrJXJpJ34dWDlFWpLntoc+arvKLNZ7LQmTuk8rR1hkrAY7cw==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -6127,8 +5824,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf/1.3.34: - resolution: {integrity: sha512-+pvjXsXTBzSxEL3U9869y3Am/3yo6kQfU6VGVAebgLv+pjM+mIHywbgo1Uxw+pgpTuD38BsrtYcaPNeBICN/wA==} + /@swc/core-linux-arm-gnueabihf/1.3.35: + resolution: {integrity: sha512-Yie8k00O6O8BCATS/xeKStquV4OYSskUGRDXBQVDw1FrE23PHaSeHCgg4q6iNZjJzXCOJbaTCKnYoIDn9DMf7A==} engines: {node: '>=10'} cpu: [arm] os: [linux] @@ -6136,8 +5833,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-gnu/1.3.34: - resolution: {integrity: sha512-hOV1n1j+mDAgp19J+aeAnW4itMTWbaPbSbhEvLsNbVB00LoL6q6pUkWvCi+UbrejV6BIyyE9t7F5fU26SdKR8A==} + /@swc/core-linux-arm64-gnu/1.3.35: + resolution: {integrity: sha512-Zlv3WHa/4x2p51HSvjUWXHfSe1Gl2prqImUZJc8NZOlj75BFzVuR0auhQ+LbwvIQ3gaA1LODX9lyS9wXL3yjxA==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -6145,8 +5842,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl/1.3.34: - resolution: {integrity: sha512-r2/Hegp1DRSzG+kg36Tujdn+WX+gO/2wQpVj/g6RPxIPdjy53OOf+UwvJ23Ecn5ZbyJcgKhhTN6H6/ZNHQPqjQ==} + /@swc/core-linux-arm64-musl/1.3.35: + resolution: {integrity: sha512-u6tCYsrSyZ8U+4jLMA/O82veBfLy2aUpn51WxQaeH7wqZGy9TGSJXoO8vWxARQ6b72vjsnKDJHP4MD8hFwcctg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -6154,8 +5851,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu/1.3.34: - resolution: {integrity: sha512-jPxxAo7XlAT7bdIi49PtYN/K1TAxvpVS7otteJLhThOPPTVblIDg63U94ivp3mVQJb3WFH4KNYatEXypyvXppQ==} + /@swc/core-linux-x64-gnu/1.3.35: + resolution: {integrity: sha512-Dtxf2IbeH7XlNhP1Qt2/MvUPkpEbn7hhGfpSRs4ot8D3Vf5QEX4S/QtC1OsFWuciiYgHAT1Ybjt4xZic9DSkmA==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -6163,8 +5860,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl/1.3.34: - resolution: {integrity: sha512-eJaUuhvnNtcwpK9Mil4hZTSYZqG519gX5AQQ2VZOhrWBEBJi+jM0RXAvWdESsaXpS7W0CRtbmEXqeUff6UEgpQ==} + /@swc/core-linux-x64-musl/1.3.35: + resolution: {integrity: sha512-4XavNJ60GprjpTiESCu5daJUnmErixPAqDitJSMu4TV32LNIE8G00S9pDLXinDTW1rgcGtQdq1NLkNRmwwovtg==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -6172,8 +5869,8 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc/1.3.34: - resolution: {integrity: sha512-KFdeC5bXDcxIQ/1J5Pjj8BOblRFjh89TTJxujxAhKdoD1k0NV9BKEZACja2cTBz0hWD4cYlBX0cESVdL2rkm3w==} + /@swc/core-win32-arm64-msvc/1.3.35: + resolution: {integrity: sha512-dNGfKCUSX2M4qVyaS80Lyos0FkXyHRCvrdQ2Y4Hrg3FVokiuw3yY6fLohpUfQ5ws3n2A39dh7jGDeh34+l0sGA==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -6181,8 +5878,8 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc/1.3.34: - resolution: {integrity: sha512-MgWkAQDiWIHfJL5b5aoogenGIt3qcqBSvwLnDQqSWEhkodZjHyCWpQFuaa7Y6ER3pKUIZ5kR8O9aAkDmF39awQ==} + /@swc/core-win32-ia32-msvc/1.3.35: + resolution: {integrity: sha512-ChuPSrDR+JBf7S7dEKPicnG8A3bM0uWPsW2vG+V2wH4iNfNxKVemESHosmYVeEZXqMpomNMvLyeHep1rjRsc0Q==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -6190,8 +5887,8 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc/1.3.34: - resolution: {integrity: sha512-UhaikgVRYBZZdMI7Zo4/eUyYLnjGrC6QAn9aggt1+PiFIM9tXpX8aONUL3LoLkhQhd+6iWygfQ298RRxjKAKuw==} + /@swc/core-win32-x64-msvc/1.3.35: + resolution: {integrity: sha512-/RvphT4WfuGfIK84Ha0dovdPrKB1bW/mc+dtdmhv2E3EGkNc5FoueNwYmXWRimxnU7X0X7IkcRhyKB4G5DeAmg==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -6199,29 +5896,23 @@ packages: dev: true optional: true - /@swc/core/1.3.34: - resolution: {integrity: sha512-kaOCGRpciMEs2FpCUFaPJSNHgggFteOGZToM88uL5k/CEy0nU/6wzl8kUO5J+rI/8/8vN7qyhM1Ajhyj3WCSsw==} + /@swc/core/1.3.35: + resolution: {integrity: sha512-KmiBin0XSVzJhzX19zTiCqmLslZ40Cl7zqskJcTDeIrRhfgKdiAsxzYUanJgMJIRjYtl9Kcg1V/Ip2o2wL8v3w==} engines: {node: '>=10'} requiresBuild: true optionalDependencies: - '@swc/core-darwin-arm64': 1.3.34 - '@swc/core-darwin-x64': 1.3.34 - '@swc/core-linux-arm-gnueabihf': 1.3.34 - '@swc/core-linux-arm64-gnu': 1.3.34 - '@swc/core-linux-arm64-musl': 1.3.34 - '@swc/core-linux-x64-gnu': 1.3.34 - '@swc/core-linux-x64-musl': 1.3.34 - '@swc/core-win32-arm64-msvc': 1.3.34 - '@swc/core-win32-ia32-msvc': 1.3.34 - '@swc/core-win32-x64-msvc': 1.3.34 + '@swc/core-darwin-arm64': 1.3.35 + '@swc/core-darwin-x64': 1.3.35 + '@swc/core-linux-arm-gnueabihf': 1.3.35 + '@swc/core-linux-arm64-gnu': 1.3.35 + '@swc/core-linux-arm64-musl': 1.3.35 + '@swc/core-linux-x64-gnu': 1.3.35 + '@swc/core-linux-x64-musl': 1.3.35 + '@swc/core-win32-arm64-msvc': 1.3.35 + '@swc/core-win32-ia32-msvc': 1.3.35 + '@swc/core-win32-x64-msvc': 1.3.35 dev: true - /@swc/helpers/0.4.11: - resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==} - dependencies: - tslib: 2.5.0 - dev: false - /@swc/helpers/0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} dependencies: @@ -6368,7 +6059,7 @@ packages: dependencies: '@babel/runtime': 7.20.7 '@testing-library/dom': 9.0.0 - '@types/react-dom': 18.0.10 + '@types/react-dom': 18.0.11 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true @@ -6430,7 +6121,7 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/cacheable-request/6.0.3: @@ -6438,7 +6129,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 - '@types/node': 18.11.18 + '@types/node': 18.14.0 '@types/responselike': 1.0.0 dev: true @@ -6455,7 +6146,7 @@ packages: /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/debug/4.1.7: @@ -6483,29 +6174,29 @@ packages: /@types/eslint-scope/3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: - '@types/eslint': 8.4.10 - '@types/estree': 0.0.51 + '@types/eslint': 8.21.1 + '@types/estree': 1.0.0 dev: true - /@types/eslint/8.4.10: - resolution: {integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==} + /@types/eslint/8.21.1: + resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==} dependencies: - '@types/estree': 0.0.39 + '@types/estree': 1.0.0 '@types/json-schema': 7.0.11 dev: true - /@types/estree/0.0.39: - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - dev: true - /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} dev: true + /@types/estree/1.0.0: + resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} + dev: true + /@types/express-serve-static-core/4.17.33: resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: true @@ -6530,26 +6221,26 @@ packages: /@types/fs-extra/9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/glob/7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.18 + '@types/node': 18.14.0 /@types/glob/8.0.1: resolution: {integrity: sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/graceful-fs/4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/http-cache-semantics/4.0.1: @@ -6588,7 +6279,7 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/lodash/4.14.191: @@ -6624,7 +6315,7 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.11.18 + '@types/node': 16.18.12 form-data: 3.0.1 dev: true @@ -6636,12 +6327,8 @@ packages: resolution: {integrity: sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==} dev: true - /@types/node/18.11.18: - resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} - - /@types/node/18.7.18: - resolution: {integrity: sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg==} - dev: true + /@types/node/18.14.0: + resolution: {integrity: sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -6653,6 +6340,7 @@ packages: /@types/parse-json/4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + dev: false /@types/prettier/2.7.2: resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} @@ -6676,64 +6364,35 @@ packages: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} dev: true - /@types/react-dom/18.0.10: - resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} + /@types/react-dom/18.0.11: + resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==} dependencies: '@types/react': 18.0.28 dev: true - /@types/react-dom/18.0.6: - resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==} - dependencies: - '@types/react': 18.0.27 - dev: true - /@types/react-is/17.0.3: resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==} dependencies: - '@types/react': 18.0.27 + '@types/react': 18.0.28 dev: false /@types/react-transition-group/4.4.5: resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==} dependencies: - '@types/react': 18.0.27 + '@types/react': 18.0.28 dev: false - /@types/react/18.0.20: - resolution: {integrity: sha512-MWul1teSPxujEHVwZl4a5HxQ9vVNsjTchVA+xRqv/VYGCuKGAU6UhfrTdF5aBefwD1BHUD8i/zq+O/vyCm/FrA==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.2 - csstype: 3.1.1 - - /@types/react/18.0.21: - resolution: {integrity: sha512-7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.2 - csstype: 3.1.1 - dev: true - - /@types/react/18.0.27: - resolution: {integrity: sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.2 - csstype: 3.1.1 - /@types/react/18.0.28: resolution: {integrity: sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 csstype: 3.1.1 - dev: true /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/scheduler/0.16.2: @@ -6751,7 +6410,7 @@ packages: resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} dependencies: '@types/mime': 3.0.1 - '@types/node': 18.11.18 + '@types/node': 18.14.0 dev: true /@types/trusted-types/2.0.2: @@ -6779,8 +6438,8 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.48.0_ddfje6clmktndfpbpk5swat3gi: - resolution: {integrity: sha512-SVLafp0NXpoJY7ut6VFVUU9I+YeFsDzeQwtK0WZ+xbRN3mtxJ08je+6Oi2N89qDn087COdO0u3blKZNv9VetRQ==} + /@typescript-eslint/eslint-plugin/5.52.0_6cfvjsbua5ptj65675bqcn6oza: + resolution: {integrity: sha512-lHazYdvYVsBokwCdKOppvYJKaJ4S41CgKBcPvyd0xjZNbvQdhn/pnJlGtQksQ/NhInzdaeaSarlBjDXHuclEbg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -6790,24 +6449,25 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/scope-manager': 5.48.0 - '@typescript-eslint/type-utils': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/utils': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/scope-manager': 5.52.0 + '@typescript-eslint/type-utils': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/utils': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm debug: 4.3.4 eslint: 8.34.0 - ignore: 5.2.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.4 natural-compare-lite: 1.4.0 regexpp: 3.2.0 - semver: 7.3.7 + semver: 7.3.8 tsutils: 3.21.0_typescript@4.9.5 typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.48.0_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-1mxNA8qfgxX8kBvRDIHEzrRGrKHQfQlbW6iHyfHYS0Q4X1af+S6mkLNtgCOsGVl8+/LUPrqdHMssAemkrQ01qg==} + /@typescript-eslint/parser/5.52.0_7kw3g6rralp5ps6mg3uyzz6azm: + resolution: {integrity: sha512-e2KiLQOZRo4Y0D/b+3y08i3jsekoSkOYStROYmPUnGMEoA0h+k2qOH5H6tcjIc68WDvGwH+PaOrP1XRzLJ6QlA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -6816,9 +6476,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.48.0 - '@typescript-eslint/types': 5.48.0 - '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5 + '@typescript-eslint/scope-manager': 5.52.0 + '@typescript-eslint/types': 5.52.0 + '@typescript-eslint/typescript-estree': 5.52.0_typescript@4.9.5 debug: 4.3.4 eslint: 8.34.0 typescript: 4.9.5 @@ -6826,35 +6486,16 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.48.0_typescript@4.9.5: - resolution: {integrity: sha512-1mxNA8qfgxX8kBvRDIHEzrRGrKHQfQlbW6iHyfHYS0Q4X1af+S6mkLNtgCOsGVl8+/LUPrqdHMssAemkrQ01qg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.48.0 - '@typescript-eslint/types': 5.48.0 - '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5 - debug: 4.3.4 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/scope-manager/5.48.0: - resolution: {integrity: sha512-0AA4LviDtVtZqlyUQnZMVHydDATpD9SAX/RC5qh6cBd3xmyWvmXYF+WT1oOmxkeMnWDlUVTwdODeucUnjz3gow==} + /@typescript-eslint/scope-manager/5.52.0: + resolution: {integrity: sha512-AR7sxxfBKiNV0FWBSARxM8DmNxrwgnYMPwmpkC1Pl1n+eT8/I2NAUPuwDy/FmDcC6F8pBfmOcaxcxRHspgOBMw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.48.0 - '@typescript-eslint/visitor-keys': 5.48.0 + '@typescript-eslint/types': 5.52.0 + '@typescript-eslint/visitor-keys': 5.52.0 dev: true - /@typescript-eslint/type-utils/5.48.0_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-vbtPO5sJyFjtHkGlGK4Sthmta0Bbls4Onv0bEqOGm7hP9h8UpRsHJwsrCiWtCUndTRNQO/qe6Ijz9rnT/DB+7g==} + /@typescript-eslint/type-utils/5.52.0_7kw3g6rralp5ps6mg3uyzz6azm: + resolution: {integrity: sha512-tEKuUHfDOv852QGlpPtB3lHOoig5pyFQN/cUiZtpw99D93nEBjexRLre5sQZlkMoHry/lZr8qDAt2oAHLKA6Jw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -6863,8 +6504,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5 - '@typescript-eslint/utils': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/typescript-estree': 5.52.0_typescript@4.9.5 + '@typescript-eslint/utils': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm debug: 4.3.4 eslint: 8.34.0 tsutils: 3.21.0_typescript@4.9.5 @@ -6873,13 +6514,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.48.0: - resolution: {integrity: sha512-UTe67B0Ypius0fnEE518NB2N8gGutIlTojeTg4nt0GQvikReVkurqxd2LvYa9q9M5MQ6rtpNyWTBxdscw40Xhw==} + /@typescript-eslint/types/5.52.0: + resolution: {integrity: sha512-oV7XU4CHYfBhk78fS7tkum+/Dpgsfi91IIDy7fjCyq2k6KB63M6gMC0YIvy+iABzmXThCRI6xpCEyVObBdWSDQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.48.0_typescript@4.9.5: - resolution: {integrity: sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw==} + /@typescript-eslint/typescript-estree/5.52.0_typescript@4.9.5: + resolution: {integrity: sha512-WeWnjanyEwt6+fVrSR0MYgEpUAuROxuAH516WPjUblIrClzYJj0kBbjdnbQXLpgAN8qbEuGywiQsXUVDiAoEuQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -6887,8 +6528,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.48.0 - '@typescript-eslint/visitor-keys': 5.48.0 + '@typescript-eslint/types': 5.52.0 + '@typescript-eslint/visitor-keys': 5.52.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -6899,17 +6540,17 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.48.0_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-x2jrMcPaMfsHRRIkL+x96++xdzvrdBCnYRd5QiW5Wgo1OB4kDYPbC1XjWP/TNqlfK93K/lUL92erq5zPLgFScQ==} + /@typescript-eslint/utils/5.52.0_7kw3g6rralp5ps6mg3uyzz6azm: + resolution: {integrity: sha512-As3lChhrbwWQLNk2HC8Ree96hldKIqk98EYvypd3It8Q1f8d5zWyIoaZEp2va5667M4ZyE7X8UUR+azXrFl+NA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.48.0 - '@typescript-eslint/types': 5.48.0 - '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.5 + '@typescript-eslint/scope-manager': 5.52.0 + '@typescript-eslint/types': 5.52.0 + '@typescript-eslint/typescript-estree': 5.52.0_typescript@4.9.5 eslint: 8.34.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.34.0 @@ -6919,30 +6560,14 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.48.0: - resolution: {integrity: sha512-5motVPz5EgxQ0bHjut3chzBkJ3Z3sheYVcSwS5BpHZpLqSptSmELNtGixmgj65+rIfhvtQTz5i9OP2vtzdDH7Q==} + /@typescript-eslint/visitor-keys/5.52.0: + resolution: {integrity: sha512-qMwpw6SU5VHCPr99y274xhbm+PRViK/NATY6qzt+Et7+mThGuFSl/ompj2/hrBlRP/kq+BFdgagnOSgw9TB0eA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.48.0 + '@typescript-eslint/types': 5.52.0 eslint-visitor-keys: 3.3.0 dev: true - /@vitejs/plugin-react/3.1.0_vite@4.1.1: - resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.1.0-beta.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 - magic-string: 0.27.0 - react-refresh: 0.14.0 - vite: 4.1.1 - transitivePeerDependencies: - - supports-color - dev: true - /@vitejs/plugin-react/3.1.0_vite@4.1.2: resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} engines: {node: ^14.18.0 || >=16.0.0} @@ -6954,12 +6579,12 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.1.2_@types+node@18.11.18 + vite: 4.1.2_@types+node@18.14.0 transitivePeerDependencies: - supports-color dev: true - /@vitest/coverage-istanbul/0.28.5_happy-dom@8.4.4: + /@vitest/coverage-istanbul/0.28.5_happy-dom@8.5.0: resolution: {integrity: sha512-na1pkr3AVrdFflzuBXsBh1MvBfhSMrv4nfd4N8rm0HEJlvlbQc+GiqNwtwzfO8TPsXxcjNphSIMp5wvCy+0xrQ==} dependencies: istanbul-lib-coverage: 3.2.0 @@ -6968,7 +6593,7 @@ packages: istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 test-exclude: 6.0.0 - vitest: 0.28.5_happy-dom@8.4.4 + vitest: 0.28.5_happy-dom@8.5.0 transitivePeerDependencies: - '@edge-runtime/vm' - '@vitest/browser' @@ -7354,7 +6979,7 @@ packages: /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - /aria-hidden/1.2.2_w5j4k42lgipnm43s3brx6h3c34: + /aria-hidden/1.2.2_pmekkgnqduwlme35zpnqhenc34: resolution: {integrity: sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==} engines: {node: '>=10'} peerDependencies: @@ -7364,19 +6989,11 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 react: 18.2.0 tslib: 2.5.0 dev: false - /aria-query/4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} - dependencies: - '@babel/runtime': 7.20.7 - '@babel/runtime-corejs3': 7.19.1 - dev: true - /aria-query/5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: @@ -7502,30 +7119,33 @@ packages: engines: {node: '>= 0.4'} dev: true - /awilix/7.0.3: - resolution: {integrity: sha512-4Nmjyh9qloDwXfDK0DBuWd8WyFApyknoaKbE3leQflGLgNfNsBHy2/VYrlyy/mzMobjJ3J8XtNpbjzG3KRkIFQ==} + /awilix/8.0.0: + resolution: {integrity: sha512-9y4ejNj2nLu7ET8jtQPiI3Ibvu68iKcLbLy5pGsPy9HWWVyQhTT8YE+Ao7ZawTNXRWjosSy/r4QNmhaUt/ju0A==} engines: {node: '>=12.0.0'} dependencies: camel-case: 4.1.2 fast-glob: 3.2.12 dev: true - /axe-core/4.4.3: - resolution: {integrity: sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==} + /axe-core/4.6.3: + resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} engines: {node: '>=4'} dev: true - /axios/0.27.2: - resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} + /axios/1.3.3: + resolution: {integrity: sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==} dependencies: follow-redirects: 1.15.2 form-data: 4.0.0 + proxy-from-env: 1.1.0 transitivePeerDependencies: - debug dev: true - /axobject-query/2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + /axobject-query/3.1.1: + resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} + dependencies: + deep-equal: 2.2.0 dev: true /babel-core/7.0.0-bridge.0_@babel+core@7.20.12: @@ -7553,8 +7173,8 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.20.7 - cosmiconfig: 7.0.1 + '@babel/runtime': 7.20.13 + cosmiconfig: 7.1.0 resolve: 1.22.1 dev: false @@ -7777,7 +7397,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001419 + caniuse-lite: 1.0.30001456 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 @@ -7935,8 +7555,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite/1.0.30001419: - resolution: {integrity: sha512-aFO1r+g6R7TW+PNQxKzjITwLOyDhVRLjW0LcwS/HCZGUUKTGNp9+IwLC4xyDSZBygVL/mxaFR3HIV6wEKQuSzw==} + /caniuse-lite/1.0.30001456: + resolution: {integrity: sha512-XFHJY5dUgmpMV25UqaD4kVq2LsiaU5rS8fb0f17pCoXQiQslzmFgnfOxfvo1bTpTqf7dwG/N/05CnLCnOEKmzA==} /chai/4.3.7: resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} @@ -8126,13 +7746,13 @@ packages: engines: {node: '>=6'} dev: false - /cmdk/0.1.21_7ey2zzynotv32rpkwno45fsx4e: - resolution: {integrity: sha512-O5oiYmoBdcoqmax4RMOsnJHrseaXlnkzfCSWgNdyBxneTaSCmUByBF5MliJbsveoHJsjkyL2uNUs2kTBBMmIaw==} + /cmdk/0.1.22_zula6vjvt3wdocc4mwcxqa6nzi: + resolution: {integrity: sha512-F0ffliBO/U6SXKGRud9AjsNuINvfF+d9BVUgi/y2+v3TSBHVOmIXl43CWLEyEEIOwc2DTnlXvIQenhGAEpwW0Q==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@radix-ui/react-dialog': 1.0.0_7ey2zzynotv32rpkwno45fsx4e + '@radix-ui/react-dialog': 1.0.0_zula6vjvt3wdocc4mwcxqa6nzi command-score: 0.1.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -8191,8 +7811,8 @@ packages: engines: {node: '>= 10'} dev: true - /commander/9.4.1: - resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} + /commander/9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} engines: {node: ^12.20.0 || >=14} dev: true @@ -8289,16 +7909,11 @@ packages: browserslist: 4.21.4 dev: true - /core-js-pure/3.25.2: - resolution: {integrity: sha512-ItD7YpW1cUB4jaqFLZXe1AXkyqIxz6GqPnsDV4uF4hVcWh/WAGIqSqw5p0/WdsILM0Xht9s3Koyw05R3K6RtiA==} - requiresBuild: true - dev: true - /core-util-is/1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - /cosmiconfig/7.0.1: - resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + /cosmiconfig/7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: '@types/parse-json': 4.0.0 @@ -8306,6 +7921,17 @@ packages: parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 + dev: false + + /cosmiconfig/8.0.0: + resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==} + engines: {node: '>=14'} + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + dev: true /create-require/1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} @@ -8641,7 +8267,7 @@ packages: /dom-helpers/5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 csstype: 3.1.1 dev: false @@ -8781,7 +8407,7 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.10 is-weakref: 1.0.2 - object-inspect: 1.12.2 + object-inspect: 1.12.3 object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.4.3 @@ -8922,6 +8548,36 @@ packages: '@esbuild/win32-x64': 0.16.17 dev: true + /esbuild/0.17.8: + resolution: {integrity: sha512-g24ybC3fWhZddZK6R3uD2iF/RIPnRpwJAqLov6ouX3hMbY4+tKolP0VMF3zuIYCaXun+yHwS5IPQ91N2BT191g==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.8 + '@esbuild/android-arm64': 0.17.8 + '@esbuild/android-x64': 0.17.8 + '@esbuild/darwin-arm64': 0.17.8 + '@esbuild/darwin-x64': 0.17.8 + '@esbuild/freebsd-arm64': 0.17.8 + '@esbuild/freebsd-x64': 0.17.8 + '@esbuild/linux-arm': 0.17.8 + '@esbuild/linux-arm64': 0.17.8 + '@esbuild/linux-ia32': 0.17.8 + '@esbuild/linux-loong64': 0.17.8 + '@esbuild/linux-mips64el': 0.17.8 + '@esbuild/linux-ppc64': 0.17.8 + '@esbuild/linux-riscv64': 0.17.8 + '@esbuild/linux-s390x': 0.17.8 + '@esbuild/linux-x64': 0.17.8 + '@esbuild/netbsd-x64': 0.17.8 + '@esbuild/openbsd-x64': 0.17.8 + '@esbuild/sunos-x64': 0.17.8 + '@esbuild/win32-arm64': 0.17.8 + '@esbuild/win32-ia32': 0.17.8 + '@esbuild/win32-x64': 0.17.8 + dev: true + /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -8956,8 +8612,8 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-next/12.3.1_typescript@4.9.5: - resolution: {integrity: sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==} + /eslint-config-next/13.1.6_7kw3g6rralp5ps6mg3uyzz6azm: + resolution: {integrity: sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -8965,23 +8621,24 @@ packages: typescript: optional: true dependencies: - '@next/eslint-plugin-next': 12.3.1 + '@next/eslint-plugin-next': 13.1.6 '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/parser': 5.48.0_typescript@4.9.5 + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm + eslint: 8.34.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 2.7.1_5rfvta7qn57kxm7ir36ta6fixq - eslint-plugin-import: 2.27.5_yyrap6asrtdcelhal2ferseywy - eslint-plugin-jsx-a11y: 6.6.1 - eslint-plugin-react: 7.32.2 - eslint-plugin-react-hooks: 4.6.0 + eslint-import-resolver-typescript: 3.5.3_mvgyw3chnqkp6sgfmmtihyjpnm + eslint-plugin-import: 2.27.5_gndiqgw2wrzfeqy4ccfxbmtnsi + eslint-plugin-jsx-a11y: 6.7.1_eslint@8.34.0 + eslint-plugin-react: 7.32.2_eslint@8.34.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.34.0 typescript: 4.9.5 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-prettier/8.5.0_eslint@8.34.0: - resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + /eslint-config-prettier/8.6.0_eslint@8.34.0: + resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} hasBin: true peerDependencies: eslint: '>=7.0.0' @@ -8999,24 +8656,27 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/2.7.1_5rfvta7qn57kxm7ir36ta6fixq: - resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==} - engines: {node: '>=4'} + /eslint-import-resolver-typescript/3.5.3_mvgyw3chnqkp6sgfmmtihyjpnm: + resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' dependencies: debug: 4.3.4 - eslint-plugin-import: 2.27.5_yyrap6asrtdcelhal2ferseywy - glob: 7.2.3 + enhanced-resolve: 5.12.0 + eslint: 8.34.0 + eslint-plugin-import: 2.27.5_gndiqgw2wrzfeqy4ccfxbmtnsi + get-tsconfig: 4.4.0 + globby: 13.1.3 + is-core-module: 2.11.0 is-glob: 4.0.3 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 + synckit: 0.8.5 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_7tt65c33h36wrjxv6iulwpakhy: + /eslint-module-utils/2.7.4_cvrl34cvgpgac5pvqi7ag6zw7e: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -9037,15 +8697,16 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm debug: 3.2.7 eslint: 8.34.0 eslint-import-resolver-node: 0.3.7 + eslint-import-resolver-typescript: 3.5.3_mvgyw3chnqkp6sgfmmtihyjpnm transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_x7naht655oki6kt37ohcqz4scm: + /eslint-module-utils/2.7.4_npjqex3ey3rgd34fjcuucz7la4: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -9066,15 +8727,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_typescript@4.9.5 + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm debug: 3.2.7 + eslint: 8.34.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 2.7.1_5rfvta7qn57kxm7ir36ta6fixq transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import/2.27.5_srp5jszoagkj3pnpsesjjepemq: + /eslint-plugin-import/2.27.5_gndiqgw2wrzfeqy4ccfxbmtnsi: resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -9084,7 +8745,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 @@ -9092,7 +8753,7 @@ packages: doctrine: 2.1.0 eslint: 8.34.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_7tt65c33h36wrjxv6iulwpakhy + eslint-module-utils: 2.7.4_cvrl34cvgpgac5pvqi7ag6zw7e has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -9107,7 +8768,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.27.5_yyrap6asrtdcelhal2ferseywy: + /eslint-plugin-import/2.27.5_mcvs2y73sfmcxqzpjj5lr7a2m4: resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -9117,14 +8778,15 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.48.0_typescript@4.9.5 + '@typescript-eslint/parser': 5.52.0_7kw3g6rralp5ps6mg3uyzz6azm array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7 doctrine: 2.1.0 + eslint: 8.34.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_x7naht655oki6kt37ohcqz4scm + eslint-module-utils: 2.7.4_npjqex3ey3rgd34fjcuucz7la4 has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -9139,28 +8801,32 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y/6.6.1: - resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} + /eslint-plugin-jsx-a11y/6.7.1_eslint@8.34.0: + resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.20.7 - aria-query: 4.2.2 + '@babel/runtime': 7.20.13 + aria-query: 5.1.3 array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 ast-types-flow: 0.0.7 - axe-core: 4.4.3 - axobject-query: 2.2.0 + axe-core: 4.6.3 + axobject-query: 3.1.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 + eslint: 8.34.0 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 minimatch: 3.1.2 + object.entries: 1.1.6 + object.fromentries: 2.0.6 semver: 6.3.0 dev: true - /eslint-plugin-prettier/4.2.1_f52onrjfrbj5enknkp6ytmuaxu: + /eslint-plugin-prettier/4.2.1_u5wnrdwibbfomslmnramz52buy: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -9172,39 +8838,18 @@ packages: optional: true dependencies: eslint: 8.34.0 - eslint-config-prettier: 8.5.0_eslint@8.34.0 - prettier: 2.7.1 + eslint-config-prettier: 8.6.0_eslint@8.34.0 + prettier: 2.8.4 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-react-hooks/4.6.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.34.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - dev: true - - /eslint-plugin-react/7.32.2: - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 - doctrine: 2.1.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.3 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 2.0.0-next.4 - semver: 6.3.0 - string.prototype.matchall: 4.0.8 + eslint: 8.34.0 dev: true /eslint-plugin-react/7.32.2_eslint@8.34.0: @@ -9239,7 +8884,7 @@ packages: eslint: 8.34.0 dev: true - /eslint-plugin-unused-imports/2.0.0_3p5c3yu7rnlwfc7nnagwrjhciu: + /eslint-plugin-unused-imports/2.0.0_vqeavzxdzk2atb75l6fx3anzpi: resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9249,7 +8894,7 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.48.0_ddfje6clmktndfpbpk5swat3gi + '@typescript-eslint/eslint-plugin': 5.52.0_6cfvjsbua5ptj65675bqcn6oza eslint: 8.34.0 eslint-rule-composer: 0.3.0 dev: true @@ -9677,7 +9322,7 @@ packages: /filelist/1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: - minimatch: 5.1.2 + minimatch: 5.1.6 dev: true /filename-reserved-regex/3.0.0: @@ -9775,35 +9420,35 @@ packages: pkg-dir: 4.2.0 dev: true - /firebase/9.15.0_encoding@0.1.13: - resolution: {integrity: sha512-Fa8qFahDY/pMYMzwPGcfpUkAS3Q55qJ0QKD+5xnXjSX/jVHsJqoXtxapmyDCfAKktiLhXIcRElW1VDVd9xGwQQ==} + /firebase/9.17.1_encoding@0.1.13: + resolution: {integrity: sha512-MSZaTRaaRLgDFLqoEnoPYK8zkLwQNvYeLZ3YSKdcQxG8hDifNO22ywS1cSA1ZCGHlQeOsDtfDwBejKcANf/RQw==} dependencies: - '@firebase/analytics': 0.9.0_@firebase+app@0.9.0 - '@firebase/analytics-compat': 0.2.0_5z7svkifsmkn6ro3hru7lnxwrq - '@firebase/app': 0.9.0 - '@firebase/app-check': 0.6.0_@firebase+app@0.9.0 - '@firebase/app-check-compat': 0.3.0_5z7svkifsmkn6ro3hru7lnxwrq - '@firebase/app-compat': 0.2.0 + '@firebase/analytics': 0.9.3_@firebase+app@0.9.3 + '@firebase/analytics-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru + '@firebase/app': 0.9.3 + '@firebase/app-check': 0.6.3_@firebase+app@0.9.3 + '@firebase/app-check-compat': 0.3.3_5qoz5voa527ucsvtk67mpz25ru + '@firebase/app-compat': 0.2.3 '@firebase/app-types': 0.9.0 - '@firebase/auth': 0.21.0_nw4m4mwqwngj7zodqmw3xrcjja - '@firebase/auth-compat': 0.3.0_smx2rqj2kjyjzx5x66zunbdpee - '@firebase/database': 0.14.0_@firebase+app-types@0.9.0 - '@firebase/database-compat': 0.3.0_@firebase+app-types@0.9.0 - '@firebase/firestore': 3.8.0_nw4m4mwqwngj7zodqmw3xrcjja - '@firebase/firestore-compat': 0.3.0_smx2rqj2kjyjzx5x66zunbdpee - '@firebase/functions': 0.9.0_abctzvz6bda5rcfr257jyree6a - '@firebase/functions-compat': 0.3.0_smx2rqj2kjyjzx5x66zunbdpee - '@firebase/installations': 0.6.0_@firebase+app@0.9.0 - '@firebase/installations-compat': 0.2.0_z6klzwxqggigirvqix3ggnu6f4 - '@firebase/messaging': 0.12.0_@firebase+app@0.9.0 - '@firebase/messaging-compat': 0.2.0_5z7svkifsmkn6ro3hru7lnxwrq - '@firebase/performance': 0.6.0_@firebase+app@0.9.0 - '@firebase/performance-compat': 0.2.0_5z7svkifsmkn6ro3hru7lnxwrq - '@firebase/remote-config': 0.4.0_@firebase+app@0.9.0 - '@firebase/remote-config-compat': 0.2.0_5z7svkifsmkn6ro3hru7lnxwrq - '@firebase/storage': 0.10.0_nw4m4mwqwngj7zodqmw3xrcjja - '@firebase/storage-compat': 0.2.0_smx2rqj2kjyjzx5x66zunbdpee - '@firebase/util': 1.8.0 + '@firebase/auth': 0.21.3_elhicscdlgavbvc4rtd5whdute + '@firebase/auth-compat': 0.3.3_ilabgwonlgwas5yi6hpnop6rs4 + '@firebase/database': 0.14.3 + '@firebase/database-compat': 0.3.3 + '@firebase/firestore': 3.8.3_elhicscdlgavbvc4rtd5whdute + '@firebase/firestore-compat': 0.3.3_ilabgwonlgwas5yi6hpnop6rs4 + '@firebase/functions': 0.9.3_elhicscdlgavbvc4rtd5whdute + '@firebase/functions-compat': 0.3.3_og3pmdegxblfifls6o6dz26cbi + '@firebase/installations': 0.6.3_@firebase+app@0.9.3 + '@firebase/installations-compat': 0.2.3_2nquphbz2k7fjevr4yz5c7cjmi + '@firebase/messaging': 0.12.3_@firebase+app@0.9.3 + '@firebase/messaging-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru + '@firebase/performance': 0.6.3_@firebase+app@0.9.3 + '@firebase/performance-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru + '@firebase/remote-config': 0.4.3_@firebase+app@0.9.3 + '@firebase/remote-config-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru + '@firebase/storage': 0.11.1_elhicscdlgavbvc4rtd5whdute + '@firebase/storage-compat': 0.3.1_ilabgwonlgwas5yi6hpnop6rs4 + '@firebase/util': 1.9.2 transitivePeerDependencies: - encoding dev: false @@ -10059,6 +9704,10 @@ packages: get-intrinsic: 1.1.3 dev: true + /get-tsconfig/4.4.0: + resolution: {integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==} + dev: true + /giget/1.0.0: resolution: {integrity: sha512-KWELZn3Nxq5+0So485poHrFriK9Bn3V/x9y+wgqrHkbmnGbjfLmZ685/SVA/ovW+ewoqW0gVI47pI4yW/VNobQ==} hasBin: true @@ -10143,7 +9792,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.1.2 + minimatch: 5.1.6 once: 1.4.0 dev: true @@ -10166,6 +9815,10 @@ packages: define-properties: 1.1.4 dev: true + /globalyzer/0.1.0: + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + dev: true + /globby/11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -10173,7 +9826,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 dev: true @@ -10184,11 +9837,15 @@ packages: dependencies: dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.4 merge2: 1.4.1 slash: 4.0.0 dev: true + /globrex/0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + dev: true + /gopd/1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: @@ -10250,12 +9907,12 @@ packages: uglify-js: 3.17.4 dev: true - /happy-dom/8.4.4: - resolution: {integrity: sha512-v0RbFlIIApDN8D7HOlCJWKE4BiRZgidM6I0v/1//ctDLkJcgvitgTw/AZ3S2BPN5Z9cMaVLnOIuvakJhf8dojw==} + /happy-dom/8.5.0: + resolution: {integrity: sha512-lvTGebHYr6h13Fox5Gfej3DinLWzvvfYlBFvlxG2Y/RmaGoDrJ5Xdwyqnk5YxbDJeEpZuKn8holCidlxvkkqGw==} dependencies: css.escape: 1.5.1 he: 1.2.0 - node-fetch: 2.6.7 + node-fetch: 2.6.9 webidl-conversions: 7.0.0 whatwg-encoding: 2.0.0 whatwg-mimetype: 3.0.0 @@ -10438,16 +10095,16 @@ packages: engines: {node: '>=12.20.0'} dev: true - /husky/8.0.2: - resolution: {integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==} + /husky/8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} engines: {node: '>=14'} hasBin: true dev: true - /i18next/21.10.0: - resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} + /i18next/22.4.10: + resolution: {integrity: sha512-3EqgGK6fAJRjnGgfkNSStl4mYLCjUoJID338yVyLMj5APT67HUtWoqSayZewiiC5elzMUB1VEUwcmSCoeQcNEA==} dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 dev: false /iconv-lite/0.4.24: @@ -10481,6 +10138,11 @@ packages: engines: {node: '>= 4'} dev: true + /ignore/5.2.4: + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} + dev: true + /import-fresh/3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -10825,7 +10487,7 @@ packages: /isomorphic-unfetch/3.1.0: resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} dependencies: - node-fetch: 2.6.7 + node-fetch: 2.6.9 unfetch: 4.2.0 transitivePeerDependencies: - encoding @@ -10928,7 +10590,7 @@ packages: dependencies: '@jest/types': 29.4.2 '@types/graceful-fs': 4.1.6 - '@types/node': 18.11.18 + '@types/node': 18.14.0 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -10951,7 +10613,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.4.2 - '@types/node': 18.11.18 + '@types/node': 18.14.0 chalk: 4.1.2 ci-info: 3.7.0 graceful-fs: 4.2.10 @@ -10962,7 +10624,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -10971,7 +10633,7 @@ packages: resolution: {integrity: sha512-VIuZA2hZmFyRbchsUCHEehoSf2HEl0YVF8SDJqtPnKorAaBuh42V8QsLnde0XP5F6TyCynGPEGgBOn3Fc+wZGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 18.11.18 + '@types/node': 18.14.0 jest-util: 29.4.2 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -11068,7 +10730,7 @@ packages: minimist: 1.2.6 mkdirp: 1.0.4 mz: 2.7.0 - prettier: 2.8.1 + prettier: 2.8.4 dev: false /json-schema-traverse/0.4.1: @@ -11139,7 +10801,7 @@ packages: engines: {node: '>=6'} dev: true - /ky-universal/0.11.0_ky@0.33.1: + /ky-universal/0.11.0_ky@0.33.2: resolution: {integrity: sha512-65KyweaWvk+uKKkCrfAf+xqN2/epw1IJDtlyCPxYffFCMR8u1sp2U65NtWpnozYfZxQ6IUzIlvUcw+hQ82U2Xw==} engines: {node: '>=14.16'} peerDependencies: @@ -11150,15 +10812,10 @@ packages: optional: true dependencies: abort-controller: 3.0.0 - ky: 0.33.1 + ky: 0.33.2 node-fetch: 3.3.0 dev: false - /ky/0.33.1: - resolution: {integrity: sha512-zZ9OlhgM4UEunvgJBH1bBl7+a7vas1HnCLSezu2CJawc4Ka+yJculRAVKbakUece4gW7kC5Dz+UGvbXIlpDt1w==} - engines: {node: '>=14.16'} - dev: false - /ky/0.33.2: resolution: {integrity: sha512-f6oS2rKUcPu5FzdqCDbFpmzis/JlqFZw8uIHm/jf8Kc3vtnW+VDhuashOAKyBZv8bFiZFZUMNxTC0JtahEvujA==} engines: {node: '>=14.16'} @@ -11204,13 +10861,6 @@ packages: type-check: 0.4.0 dev: true - /lib0/0.2.58: - resolution: {integrity: sha512-6ovqPaYfOKU7GkkVxz/wjMR0zsqmNsISLvH+h9Lx5YNtWDZey69aYsTGXaSVpUPpJ+ZFtIvcZHsTGL3MbwOM8A==} - engines: {node: '>=14'} - dependencies: - isomorphic.js: 0.2.5 - dev: false - /lib0/0.2.62: resolution: {integrity: sha512-DY0G8AaQloUvpiss7EpAo/t4R82b9m/AydbQRNAa9Khssn9oGDJnSN8Q1qQ8u82Wog4iaT1O8yM+DfhzGCrrpQ==} engines: {node: '>=14'} @@ -11225,21 +10875,21 @@ packages: /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lint-staged/13.1.0: - resolution: {integrity: sha512-pn/sR8IrcF/T0vpWLilih8jmVouMlxqXxKuAojmbiGX5n/gDnz+abdPptlj0vYnbfE0SQNl3CY/HwtM0+yfOVQ==} + /lint-staged/13.1.2: + resolution: {integrity: sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: cli-truncate: 3.1.0 colorette: 2.0.19 - commander: 9.4.1 + commander: 9.5.0 debug: 4.3.4 execa: 6.1.0 lilconfig: 2.0.6 - listr2: 5.0.6 + listr2: 5.0.7 micromatch: 4.0.5 normalize-path: 3.0.0 - object-inspect: 1.12.2 + object-inspect: 1.12.3 pidtree: 0.6.0 string-argv: 0.3.1 yaml: 2.2.1 @@ -11248,8 +10898,8 @@ packages: - supports-color dev: true - /listr2/5.0.6: - resolution: {integrity: sha512-u60KxKBy1BR2uLJNTWNptzWQ1ob/gjMzIJPZffAENzpZqbMZ/5PrXXOomDcevIS/+IB7s1mmCEtSlT2qHWMqag==} + /listr2/5.0.7: + resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==} engines: {node: ^14.13.1 || >=16.0.0} peerDependencies: enquirer: '>= 2.3.0 < 3' @@ -11649,8 +11299,8 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/5.1.2: - resolution: {integrity: sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==} + /minimatch/5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 @@ -11785,52 +11435,7 @@ packages: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: false - /next/12.3.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-l7bvmSeIwX5lp07WtIiP9u2ytZMv7jIeB8iacR28PuUEFG5j0HGAPnMqyG5kbZNBG2H7tRsrQ4HCjuMOPnANZw==} - engines: {node: '>=12.22.0'} - hasBin: true - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^6.0.0 || ^7.0.0 - react: ^17.0.2 || ^18.0.0-0 - react-dom: ^17.0.2 || ^18.0.0-0 - sass: ^1.3.0 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - dependencies: - '@next/env': 12.3.1 - '@swc/helpers': 0.4.11 - caniuse-lite: 1.0.30001419 - postcss: 8.4.14 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.0.7_react@18.2.0 - use-sync-external-store: 1.2.0_react@18.2.0 - optionalDependencies: - '@next/swc-android-arm-eabi': 12.3.1 - '@next/swc-android-arm64': 12.3.1 - '@next/swc-darwin-arm64': 12.3.1 - '@next/swc-darwin-x64': 12.3.1 - '@next/swc-freebsd-x64': 12.3.1 - '@next/swc-linux-arm-gnueabihf': 12.3.1 - '@next/swc-linux-arm64-gnu': 12.3.1 - '@next/swc-linux-arm64-musl': 12.3.1 - '@next/swc-linux-x64-gnu': 12.3.1 - '@next/swc-linux-x64-musl': 12.3.1 - '@next/swc-win32-arm64-msvc': 12.3.1 - '@next/swc-win32-ia32-msvc': 12.3.1 - '@next/swc-win32-x64-msvc': 12.3.1 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - dev: false - - /next/13.1.0_rdilrli7uexa22ralt77ekax24_biqbaboplfbrettd7655fr4n2y: + /next/13.1.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-lQMZH1V94L5IL/WaihQkTYabSY73aqgrkGPJB5uz+2O3ES4I3losV/maXLY7l7x5e+oNyE9N81upNQ8uRsR5/A==} engines: {node: '>=14.6.0'} hasBin: true @@ -11850,7 +11455,7 @@ packages: dependencies: '@next/env': 13.1.0 '@swc/helpers': 0.4.14 - caniuse-lite: 1.0.30001419 + caniuse-lite: 1.0.30001456 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -11873,9 +11478,8 @@ packages: - '@babel/core' - babel-plugin-macros dev: false - patched: true - /next/13.1.6_biqbaboplfbrettd7655fr4n2y: + /next/13.1.6_rdilrli7uexa22ralt77ekax24_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-hHlbhKPj9pW+Cymvfzc15lvhaOZ54l+8sXDXJWm3OBNBzgrVj6hwGPmqqsXg40xO1Leq+kXpllzRPuncpC0Phw==} engines: {node: '>=14.6.0'} hasBin: true @@ -11895,7 +11499,7 @@ packages: dependencies: '@next/env': 13.1.6 '@swc/helpers': 0.4.14 - caniuse-lite: 1.0.30001419 + caniuse-lite: 1.0.30001456 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -11918,6 +11522,7 @@ packages: - '@babel/core' - babel-plugin-macros dev: false + patched: true /no-case/3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} @@ -11941,18 +11546,6 @@ packages: resolution: {integrity: sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==} dev: true - /node-fetch/2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - dependencies: - whatwg-url: 5.0.0 - dev: true - /node-fetch/2.6.7_encoding@0.1.13: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} @@ -11966,6 +11559,18 @@ packages: whatwg-url: 5.0.0 dev: false + /node-fetch/2.6.9: + resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + /node-fetch/3.2.10: resolution: {integrity: sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -12093,8 +11698,8 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - /object-inspect/1.12.2: - resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + /object-inspect/1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} dev: true /object-is/1.1.5: @@ -12513,8 +12118,8 @@ packages: pathe: 1.1.0 dev: true - /playwright-core/1.29.1: - resolution: {integrity: sha512-20Ai3d+lMkWpI9YZYlxk8gxatfgax5STW8GaMozAHwigLiyiKQrdkt7gaoT9UQR8FIVDg6qVXs9IoZUQrDjIIg==} + /playwright-core/1.30.0: + resolution: {integrity: sha512-7AnRmTCf+GVYhHbLJsGUtskWTE33SwMZkybJ0v6rqR1boxq2x36U7p1vDRV7HO2IwTZgmycracLxPEJI49wu4g==} engines: {node: '>=14'} hasBin: true dev: true @@ -12571,13 +12176,8 @@ packages: fast-diff: 1.2.0 dev: true - /prettier/2.7.1: - resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} - engines: {node: '>=10.13.0'} - hasBin: true - - /prettier/2.8.1: - resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==} + /prettier/2.8.4: + resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} engines: {node: '>=10.13.0'} hasBin: true @@ -12646,12 +12246,12 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 18.11.18 + '@types/node': 18.14.0 long: 4.0.0 dev: false - /protobufjs/7.1.2: - resolution: {integrity: sha512-4ZPTPkXCdel3+L81yw3dG6+Kq3umdWKh7Dc7GW/CpNk4SX3hK58iPCWeCyhVTDrbkNeKrYNZ7EojM5WDaEWTLQ==} + /protobufjs/7.2.2: + resolution: {integrity: sha512-++PrQIjrom+bFDPpfmqXfAGSQs40116JRrqqyf53dymUMvvb5d/LMRyicRoF1AUKoXVS1/IgJXlEgcpr4gTF3Q==} engines: {node: '>=12.0.0'} requiresBuild: true dependencies: @@ -12665,7 +12265,7 @@ packages: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 18.11.18 + '@types/node': 18.14.0 long: 5.2.1 dev: false @@ -12793,7 +12393,7 @@ packages: unpipe: 1.0.0 dev: true - /raw-loader/4.0.2: + /raw-loader/4.0.2_webpack@5.75.0: resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -12801,6 +12401,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 + webpack: 5.75.0 dev: true /react-colorful/5.6.1_biqbaboplfbrettd7655fr4n2y: @@ -12862,8 +12463,8 @@ packages: react-is: 18.1.0 dev: true - /react-i18next/11.18.6_i18next@21.10.0: - resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} + /react-i18next/12.1.5_dxv7ampvtjrtnimevxnrn5rvga: + resolution: {integrity: sha512-7PQAv6DA0TcStG96fle+8RfTwxVbHVlZZJPoEszwUNvDuWpGldJmNWa3ZPesEsZQZGF6GkzwvEh6p57qpFD2gQ==} peerDependencies: i18next: '>= 19.0.0' react: '>= 16.8.0' @@ -12875,9 +12476,10 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 html-parse-stringify: 3.0.1 - i18next: 21.10.0 + i18next: 22.4.10 + react: 18.2.0 dev: false /react-inspector/6.0.1_react@18.2.0: @@ -12908,7 +12510,7 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar/2.3.4_w5j4k42lgipnm43s3brx6h3c34: + /react-remove-scroll-bar/2.3.4_pmekkgnqduwlme35zpnqhenc34: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -12918,13 +12520,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 react: 18.2.0 - react-style-singleton: 2.2.1_w5j4k42lgipnm43s3brx6h3c34 + react-style-singleton: 2.2.1_pmekkgnqduwlme35zpnqhenc34 tslib: 2.5.0 dev: false - /react-remove-scroll/2.5.4_w5j4k42lgipnm43s3brx6h3c34: + /react-remove-scroll/2.5.4_pmekkgnqduwlme35zpnqhenc34: resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} engines: {node: '>=10'} peerDependencies: @@ -12934,13 +12536,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 react: 18.2.0 - react-remove-scroll-bar: 2.3.4_w5j4k42lgipnm43s3brx6h3c34 - react-style-singleton: 2.2.1_w5j4k42lgipnm43s3brx6h3c34 + react-remove-scroll-bar: 2.3.4_pmekkgnqduwlme35zpnqhenc34 + react-style-singleton: 2.2.1_pmekkgnqduwlme35zpnqhenc34 tslib: 2.5.0 - use-callback-ref: 1.3.0_w5j4k42lgipnm43s3brx6h3c34 - use-sidecar: 1.1.2_w5j4k42lgipnm43s3brx6h3c34 + use-callback-ref: 1.3.0_pmekkgnqduwlme35zpnqhenc34 + use-sidecar: 1.1.2_pmekkgnqduwlme35zpnqhenc34 dev: false /react-router-dom/6.8.1_biqbaboplfbrettd7655fr4n2y: @@ -12966,7 +12568,7 @@ packages: react: 18.2.0 dev: false - /react-style-singleton/2.2.1_w5j4k42lgipnm43s3brx6h3c34: + /react-style-singleton/2.2.1_pmekkgnqduwlme35zpnqhenc34: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -12976,7 +12578,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -12989,7 +12591,7 @@ packages: react: '>=16.6.0' react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -13135,7 +12737,7 @@ packages: /regenerator-transform/0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.20.7 + '@babel/runtime': 7.20.13 dev: true /regexp.prototype.flags/1.4.3: @@ -13288,6 +12890,12 @@ packages: glob: 7.2.3 dev: true + /rimraf/4.1.2: + resolution: {integrity: sha512-BlIbgFryTbw3Dz6hyoWFhKk+unCcHMSkZGrTFVAx2WmttdBSonsdtRlwiuTbDqTKr+UlXIUqJVS4QT5tUzGENQ==} + engines: {node: '>=14'} + hasBin: true + dev: true + /rollup/3.14.0: resolution: {integrity: sha512-o23sdgCLcLSe3zIplT9nQ1+r97okuaiR+vmAPZPTDYB7/f3tgWIYNyiQveMsZwshBT0is4eGax/HH83Q7CG+/Q==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} @@ -13296,6 +12904,14 @@ packages: fsevents: 2.3.2 dev: true + /rollup/3.17.1: + resolution: {integrity: sha512-8RnSms6rNqHmZK+wiqgnPCqen+rRnUHXkciGDirh7B00g1rX1vpKbPDhuxCvAG2bburoI+W4Q9/PlUB/zYkiYA==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + /run-parallel/1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: @@ -13374,14 +12990,6 @@ packages: hasBin: true dev: true - /semver/7.3.7: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver/7.3.8: resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} @@ -13498,7 +13106,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 - object-inspect: 1.12.2 + object-inspect: 1.12.3 dev: true /siginfo/2.0.0: @@ -13864,22 +13472,6 @@ packages: peek-readable: 5.0.0 dev: true - /styled-jsx/5.0.7_react@18.2.0: - resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' - peerDependenciesMeta: - '@babel/core': - optional: true - babel-plugin-macros: - optional: true - dependencies: - react: 18.2.0 - dev: false - /styled-jsx/5.1.1_react@18.2.0: resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} @@ -13925,33 +13517,25 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /swc-loader/0.2.3_webpack@5.75.0: + /swc-loader/0.2.3_gwpkmym7uf5m6snr3dgsgj5rrq: resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==} peerDependencies: '@swc/core': ^1.2.147 webpack: '>=2' dependencies: - webpack: 5.75.0 + '@swc/core': 1.3.35 + webpack: 5.75.0_@swc+core@1.3.35 dev: true /swc/1.0.11: resolution: {integrity: sha512-YbG4eija7g/ajQ0lu4P2WPgKt5zCm743VgKn+buBrXXo1IETftO2r/8VdBPhv8wpTyg3CO+VU1z2wHuL4iohmw==} dependencies: - '@swc/cli': 0.1.61_@swc+core@1.3.34 - '@swc/core': 1.3.34 + '@swc/cli': 0.1.61_@swc+core@1.3.35 + '@swc/core': 1.3.35 transitivePeerDependencies: - chokidar dev: true - /swr/2.0.0: - resolution: {integrity: sha512-IhUx5yPkX+Fut3h0SqZycnaNLXLXsb2ECFq0Y29cxnK7d8r7auY2JWNbCW3IX+EqXUg3rwNJFlhrw5Ye/b6k7w==} - engines: {pnpm: '7'} - peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 - dependencies: - use-sync-external-store: 1.2.0 - dev: false - /swr/2.0.3_react@18.2.0: resolution: {integrity: sha512-sGvQDok/AHEWTPfhUWXEHBVEXmgGnuahyhmRQbjl9XBYxT/MSlAzvXEKQpyM++bMPaI52vcWS2HiKNaW7+9OFw==} engines: {pnpm: '7'} @@ -13966,6 +13550,14 @@ packages: resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} dev: true + /synckit/0.8.5: + resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} + engines: {node: ^14.18.0 || >=16.0.0} + dependencies: + '@pkgr/utils': 2.3.1 + tslib: 2.5.0 + dev: true + /tapable/2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} @@ -14017,6 +13609,31 @@ packages: engines: {node: '>=8'} dev: true + /terser-webpack-plugin/5.3.6_gwpkmym7uf5m6snr3dgsgj5rrq: + resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + '@swc/core': 1.3.35 + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.16.1 + webpack: 5.75.0_@swc+core@1.3.35 + dev: true + /terser-webpack-plugin/5.3.6_webpack@5.75.0: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} @@ -14095,6 +13712,13 @@ packages: next-tick: 1.1.0 dev: false + /tiny-glob/0.2.9: + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + dependencies: + globalyzer: 0.1.0 + globrex: 0.1.2 + dev: true + /tinybench/2.3.1: resolution: {integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==} dev: true @@ -14176,7 +13800,7 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-node/10.9.1_typescript@4.9.5: + /ts-node/10.9.1_tncu2ai53lzgmizdedur7lbibe: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -14195,6 +13819,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 + '@types/node': 18.14.0 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -14360,17 +13985,17 @@ packages: engines: {node: '>=0.1.14'} dev: true - /typesync/0.9.2: - resolution: {integrity: sha512-FnHhbgECgkcGOR/DVmE0V9Z81Od7Icu2qkXGM91GFFzVO9HaQ9fYwmSY9ibKoydN4k7IV0hRRKGLLgfenWjRFw==} - engines: {node: '>=10.0.0'} + /typesync/0.10.0: + resolution: {integrity: sha512-zDAmphnWjVNv5gwARbQcJS+lZw91wkqPsrrQ+kRVKmim4N3oG7UleYZYyMFZ04BrofezOEvIaaNu1su4TI8CqA==} + engines: {node: '>=14.0.0'} hasBin: true dependencies: - awilix: 7.0.3 - axios: 0.27.2 + awilix: 8.0.0 + axios: 1.3.3 chalk: 4.1.2 - cosmiconfig: 7.0.1 + cosmiconfig: 8.0.0 detect-indent: 6.1.0 - glob: 7.2.3 + glob: 8.1.0 ora: 5.4.1 semver: 7.3.8 transitivePeerDependencies: @@ -14497,7 +14122,7 @@ packages: punycode: 2.1.1 dev: true - /use-callback-ref/1.3.0_w5j4k42lgipnm43s3brx6h3c34: + /use-callback-ref/1.3.0_pmekkgnqduwlme35zpnqhenc34: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -14507,7 +14132,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 react: 18.2.0 tslib: 2.5.0 dev: false @@ -14523,7 +14148,7 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: true - /use-sidecar/1.1.2_w5j4k42lgipnm43s3brx6h3c34: + /use-sidecar/1.1.2_pmekkgnqduwlme35zpnqhenc34: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -14533,18 +14158,12 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.28 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.5.0 dev: false - /use-sync-external-store/1.2.0: - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dev: false - /use-sync-external-store/1.2.0_react@18.2.0: resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: @@ -14605,7 +14224,7 @@ packages: engines: {node: '>= 0.8'} dev: true - /vite-node/0.28.5_@types+node@18.11.18: + /vite-node/0.28.5_@types+node@18.14.0: resolution: {integrity: sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==} engines: {node: '>=v14.16.0'} hasBin: true @@ -14617,7 +14236,7 @@ packages: picocolors: 1.0.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.1.2_@types+node@18.11.18 + vite: 4.1.2_@types+node@18.14.0 transitivePeerDependencies: - '@types/node' - less @@ -14628,74 +14247,7 @@ packages: - terser dev: true - /vite/4.1.1: - resolution: {integrity: sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - esbuild: 0.16.17 - postcss: 8.4.21 - resolve: 1.22.1 - rollup: 3.14.0 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vite/4.1.1_@types+node@18.11.18: - resolution: {integrity: sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 18.11.18 - esbuild: 0.16.17 - postcss: 8.4.21 - resolve: 1.22.1 - rollup: 3.14.0 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vite/4.1.2_@types+node@18.11.18: + /vite/4.1.2: resolution: {integrity: sha512-MWDb9Rfy3DI8omDQySbMK93nQqStwbsQWejXRY2EBzEWKmLAXWb1mkI9Yw2IJrc+oCvPCI1Os5xSSIBYY6DEAw==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -14720,16 +14272,49 @@ packages: terser: optional: true dependencies: - '@types/node': 18.11.18 esbuild: 0.16.17 postcss: 8.4.21 resolve: 1.22.1 - rollup: 3.14.0 + rollup: 3.17.1 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest/0.28.5_happy-dom@8.4.4: + /vite/4.1.2_@types+node@18.14.0: + resolution: {integrity: sha512-MWDb9Rfy3DI8omDQySbMK93nQqStwbsQWejXRY2EBzEWKmLAXWb1mkI9Yw2IJrc+oCvPCI1Os5xSSIBYY6DEAw==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + '@types/node': 18.14.0 + esbuild: 0.16.17 + postcss: 8.4.21 + resolve: 1.22.1 + rollup: 3.17.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vitest/0.28.5_happy-dom@8.5.0: resolution: {integrity: sha512-pyCQ+wcAOX7mKMcBNkzDwEHRGqQvHUl0XnoHR+3Pb1hytAHISgSxv9h0gUiSiYtISXUU3rMrKiKzFYDrI6ZIHA==} engines: {node: '>=v14.16.0'} hasBin: true @@ -14753,7 +14338,7 @@ packages: dependencies: '@types/chai': 4.3.4 '@types/chai-subset': 1.3.3 - '@types/node': 18.11.18 + '@types/node': 18.14.0 '@vitest/expect': 0.28.5 '@vitest/runner': 0.28.5 '@vitest/spy': 0.28.5 @@ -14763,7 +14348,7 @@ packages: cac: 6.7.14 chai: 4.3.7 debug: 4.3.4 - happy-dom: 8.4.4 + happy-dom: 8.5.0 local-pkg: 0.4.3 pathe: 1.1.0 picocolors: 1.0.0 @@ -14773,8 +14358,8 @@ packages: tinybench: 2.3.1 tinypool: 0.3.1 tinyspy: 1.1.1 - vite: 4.1.2_@types+node@18.11.18 - vite-node: 0.28.5_@types+node@18.11.18 + vite: 4.1.2_@types+node@18.14.0 + vite-node: 0.28.5_@types+node@18.14.0 why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -14880,6 +14465,46 @@ packages: - uglify-js dev: true + /webpack/5.75.0_@swc+core@1.3.35: + resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.4 + '@types/estree': 0.0.51 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.8.0 + acorn-import-assertions: 1.8.0_acorn@8.8.0 + browserslist: 4.21.4 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.12.0 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.6_gwpkmym7uf5m6snr3dgsgj5rrq + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true + /websocket-driver/0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} @@ -15149,6 +14774,7 @@ packages: /yaml/1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} + dev: false /yaml/2.2.1: resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} @@ -15221,8 +14847,8 @@ packages: fd-slicer: 1.1.0 dev: true - /yjs/13.5.45: - resolution: {integrity: sha512-9VUNDvb9oJHdYSMdzIpdM/agVm+EEFKRN+843CFqQuq5bo/BP3EAaxofRG9jQut3sqtGQT4A9YdQvOeeAjU6aA==} + /yjs/13.5.46: + resolution: {integrity: sha512-KIY4BEWYCm79Sr4JTDvgirXmz3lVZ5n7h6nKlsBYu97f/HDQo+XSoq92RqBiybejF9E/L5Iz+56zZrSfBKZ5DQ==} dependencies: lib0: 0.2.62 @@ -15245,22 +14871,6 @@ packages: resolution: {integrity: sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA==} dev: false - /zustand/4.3.2_react@18.2.0: - resolution: {integrity: sha512-rd4haDmlwMTVWVqwvgy00ny8rtti/klRoZjFbL/MAcDnmD5qSw/RZc+Vddstdv90M5Lv6RPgWvm1Hivyn0QgJw==} - engines: {node: '>=12.7.0'} - peerDependencies: - immer: '>=9.0' - react: '>=16.8' - peerDependenciesMeta: - immer: - optional: true - react: - optional: true - dependencies: - react: 18.2.0 - use-sync-external-store: 1.2.0_react@18.2.0 - dev: false - /zustand/4.3.3_react@18.2.0: resolution: {integrity: sha512-x2jXq8S0kfLGNwGh87nhRfEc2eZy37tSatpSoSIN+O6HIaBhgQHSONV/F9VNrNcBcKQu/E80K1DeHDYQC/zCrQ==} engines: {node: '>=12.7.0'} @@ -15284,7 +14894,7 @@ packages: dependencies: '@types/fs-extra': 9.0.13 '@types/minimist': 1.2.2 - '@types/node': 18.11.18 + '@types/node': 18.14.0 '@types/ps-tree': 1.1.2 '@types/which': 2.0.1 chalk: 5.2.0