diff --git a/apps/comment-bootstrapper/package.json b/apps/comment-bootstrapper/package.json index b66ae6e54..636815e98 100644 --- a/apps/comment-bootstrapper/package.json +++ b/apps/comment-bootstrapper/package.json @@ -14,18 +14,18 @@ "@chirpy-dev/tsconfigs": "workspace:*", "@chirpy-dev/utils": "workspace:*", "@testing-library/react": "13.4.0", - "@types/jest": "29.2.2", + "@types/jest": "29.2.3", "@types/node": "16.11.45", - "@types/react": "18.0.24", - "@types/react-dom": "18.0.8", - "dotenv": "16.0.1", - "dotenv-cli": "5.1.0", - "dotenv-expand": "8.0.3", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", + "dotenv": "16.0.3", + "dotenv-cli": "6.0.0", + "dotenv-expand": "9.0.0", "eslint": "8.27.0", - "jest": "29.2.2", + "jest": "29.3.1", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "4.8.4", + "typescript": "4.9.3", "vite": "2.9.14" }, "publishConfig": { diff --git a/apps/e2e/package.json b/apps/e2e/package.json index 973635c13..de62ccbc9 100644 --- a/apps/e2e/package.json +++ b/apps/e2e/package.json @@ -12,11 +12,11 @@ "@testing-library/cypress": "8.0.3", "@types/node": "16.11.45", "cypress": "10.11.0", - "dotenv": "16.0.1", - "dotenv-cli": "5.1.0", - "dotenv-expand": "8.0.3", + "dotenv": "16.0.3", + "dotenv-cli": "6.0.0", + "dotenv-expand": "9.0.0", "eslint": "8.27.0", - "typescript": "4.8.4" + "typescript": "4.9.3" }, "publishConfig": { "access": "public" diff --git a/apps/emails/package.json b/apps/emails/package.json index b1f1f9231..78916efb3 100644 --- a/apps/emails/package.json +++ b/apps/emails/package.json @@ -13,7 +13,7 @@ "@maizzle/framework": "4.3.0", "autoprefixer": "10.4.13", "glob": "8.0.3", - "postcss": "8.4.18", + "postcss": "8.4.19", "tailwindcss": "3.2.4", "tailwindcss-box-shadow": "2.0.0", "tailwindcss-email-variants": "2.0.0", diff --git a/apps/main/package.json b/apps/main/package.json index 6e6fc5fed..711cf3bf5 100644 --- a/apps/main/package.json +++ b/apps/main/package.json @@ -35,7 +35,7 @@ "html-loader": "4.2.0", "jsonwebtoken": "8.5.1", "lodash": "4.17.21", - "next": "13.0.3", + "next": "13.0.4", "next-auth": "4.16.4", "next-axiom": "0.15.1", "next-connect": "0.13.0", @@ -52,7 +52,7 @@ "rehype-pretty-code": "0.4.0", "rehype-slug": "5.1.0", "shiki": "0.11.1", - "superjson": "1.9.1", + "superjson": "1.11.0", "type-fest": "3.2.0", "urql": "3.0.3", "web-push": "3.5.0", @@ -65,30 +65,30 @@ "@chirpy-dev/eslint-config": "workspace:*", "@chirpy-dev/service-worker": "workspace:*", "@chirpy-dev/tsconfigs": "workspace:*", - "@next/bundle-analyzer": "13.0.3", + "@next/bundle-analyzer": "13.0.4", "@relative-ci/agent": "4.1.1", "@types/cors": "2.8.12", "@types/github-slugger": "1.3.0", - "@types/jest": "29.2.2", + "@types/jest": "29.2.3", "@types/jsonwebtoken": "8.5.9", - "@types/lodash": "4.14.187", + "@types/lodash": "4.14.189", "@types/node": "16.11.45", - "@types/react": "18.0.24", - "@types/react-dom": "18.0.8", - "@types/requestidlecallback": "0.3.4", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", + "@types/requestidlecallback": "0.3.5", "@types/web-push": "3.3.2", "@types/ws": "8.5.3", "configs": "workspace:*", - "dotenv": "16.0.1", - "dotenv-cli": "5.1.0", - "dotenv-expand": "8.0.3", + "dotenv": "16.0.3", + "dotenv-cli": "6.0.0", + "dotenv-expand": "9.0.0", "eslint": "8.27.0", - "jest": "29.2.2", - "postcss": "8.4.18", - "stellate": "1.17.0", + "jest": "29.3.1", + "postcss": "8.4.19", + "stellate": "1.17.1", "tailwindcss": "3.2.4", - "typescript": "4.8.4", - "webpack": "5.74.0" + "typescript": "4.9.3", + "webpack": "5.75.0" }, "engines": { "node": "16.x" diff --git a/apps/main/src/server/common/gql.ts b/apps/main/src/server/common/gql.ts index b21a013c3..9c77fe46c 100644 --- a/apps/main/src/server/common/gql.ts +++ b/apps/main/src/server/common/gql.ts @@ -23,8 +23,12 @@ export async function query< ): Promise> { const { data, error } = await client.query(query, variables).toPromise(); if (!data || !data[path] || error) { - const message = `GQL query error, error: ${error}, data: ${data}`; - log.error(message); + const message = `GQL query error, error: ${error}, data: ${JSON.stringify( + data, + null, + 2, + )}`; + log.error(message, { stack: error?.stack }); throw new Error(message); } return data[path] as NonNullable; @@ -49,7 +53,11 @@ export async function mutate< .mutation(mutation, variables) .toPromise(); if (!data || !data[path] || error) { - const message = `GQL mutation error, error: ${error}, data: ${data}`; + const message = `GQL mutation error, error: ${error}, data: ${JSON.stringify( + data, + null, + 2, + )}`; log.error(message, { stack: error?.stack }); throw new Error(message); } diff --git a/apps/service-worker/package.json b/apps/service-worker/package.json index f0122abe5..eb0bfc9ed 100644 --- a/apps/service-worker/package.json +++ b/apps/service-worker/package.json @@ -10,11 +10,11 @@ "devDependencies": { "@chirpy-dev/eslint-config": "workspace:*", "@chirpy-dev/tsconfigs": "workspace:*", - "dotenv": "16.0.1", - "dotenv-cli": "5.1.0", - "dotenv-expand": "8.0.3", + "dotenv": "16.0.3", + "dotenv-cli": "6.0.0", + "dotenv-expand": "9.0.0", "eslint": "8.27.0", - "typescript": "4.8.4", + "typescript": "4.9.3", "vite": "2.9.14" }, "publishConfig": { diff --git a/package.json b/package.json index 56a28789d..d3a35dada 100644 --- a/package.json +++ b/package.json @@ -19,9 +19,9 @@ "@chirpy-dev/eslint-config": "workspace:*", "@chirpy-dev/prettier-config": "workspace:*", "eslint": "8.27.0", - "husky": "8.0.1", + "husky": "8.0.2", "lint-staged": "13.0.3", - "next": "13.0.3", + "next": "13.0.4", "prettier": "2.7.1", "react": "18.2.0", "react-dom": "18.2.0", diff --git a/packages/configs/package.json b/packages/configs/package.json index 7a401a1e1..e4b2d82a1 100644 --- a/packages/configs/package.json +++ b/packages/configs/package.json @@ -10,11 +10,11 @@ "@tailwindcss/line-clamp": "0.4.2", "@tailwindcss/typography": "0.5.8", "color-convert": "2.0.1", - "postcss": "8.4.18", + "postcss": "8.4.19", "postcss-flexbugs-fixes": "5.0.2", - "postcss-preset-env": "7.8.2", + "postcss-preset-env": "7.8.3", "tailwindcss": "3.2.4", - "typescript": "4.8.4" + "typescript": "4.9.3" }, "publishConfig": { "access": "public" diff --git a/packages/docker-cli/generate-dev-files.ts b/packages/docker-cli/generate-dev-files.ts index 8914025e7..b452d7118 100644 --- a/packages/docker-cli/generate-dev-files.ts +++ b/packages/docker-cli/generate-dev-files.ts @@ -15,7 +15,6 @@ eta.configure({ autoTrim: false, }); -const chirpyURL = 'http://localhost:3000'; const hasuraURL = 'http://localhost:8080'; (async function generateDevFiles() { @@ -29,7 +28,9 @@ const hasuraURL = 'http://localhost:8080'; HASURA_GRAPHQL_ADMIN_SECRET: hasuraAdminSecret, HASURA_GRAPHQL_JWT_SECRET: hasuraJwtSecret, HASURA_EVENT_SECRET: hasuraEventSecret, - HASURA_GRAPHQL_EVENT_URL: chirpyURL, + // To let container call localhost + HASURA_GRAPHQL_EVENT_URL: + 'http://host.docker.internal:3000/api/mutation-event', })!; // logDebug(true, `Hasura docker compose: ${hasuraDCResult}`); const hasuraYaml = Yaml.parse(hasuraDCResult); diff --git a/packages/docker-cli/package.json b/packages/docker-cli/package.json index b68ddc028..19b562ce0 100644 --- a/packages/docker-cli/package.json +++ b/packages/docker-cli/package.json @@ -14,10 +14,10 @@ "@types/web-push": "3.3.2", "@types/which": "2.0.1", "@types/yargs": "17.0.13", - "dotenv": "16.0.1", + "dotenv": "16.0.3", "eta": "1.12.3", "ts-node": "10.9.1", - "typescript": "4.8.4", + "typescript": "4.9.3", "web-push": "3.5.0", "which": "2.0.2", "yaml": "2.1.3", diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 50a9ea291..1a1c549c0 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -5,19 +5,19 @@ "main": "./index.js", "dependencies": { "@chirpy-dev/prettier-config": "workspace:*", - "@typescript-eslint/eslint-plugin": "5.42.0", - "@typescript-eslint/parser": "5.42.0", - "eslint-config-next": "13.0.3", + "@typescript-eslint/eslint-plugin": "5.43.0", + "@typescript-eslint/parser": "5.43.0", + "eslint-config-next": "13.0.4", "eslint-config-prettier": "8.5.0", "eslint-plugin-jest": "27.1.5", "eslint-plugin-prettier": "4.2.1", "eslint-plugin-storybook": "0.6.7", "eslint-plugin-unicorn": "44.0.2", - "next": "13.0.3", + "next": "13.0.4", "prettier": "2.7.1", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "4.8.4" + "typescript": "4.9.3" }, "devDependencies": { "eslint": "8.27.0" diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 31c210b77..7e71543fb 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -11,21 +11,21 @@ "types": "./src/index.ts", "devDependencies": { "@chirpy-dev/tsconfigs": "workspace:*", - "@graphql-codegen/cli": "2.13.11", + "@graphql-codegen/cli": "2.13.12", "@graphql-codegen/introspection": "2.2.1", "@graphql-codegen/near-operation-file-preset": "2.4.4", - "@graphql-codegen/typed-document-node": "2.3.6", - "@graphql-codegen/typescript": "2.8.1", - "@graphql-codegen/typescript-operations": "2.5.6", + "@graphql-codegen/typed-document-node": "2.3.7", + "@graphql-codegen/typescript": "2.8.2", + "@graphql-codegen/typescript-operations": "2.5.7", "@graphql-codegen/typescript-urql": "3.7.3", "@graphql-typed-document-node/core": "3.1.1", "@types/node": "16.11.45", - "csstype": "3.1.0", + "csstype": "3.1.1", "graphql": "16.6.0", "graphql-tag": "2.12.6", "graphqurl": "1.0.1", "react": "18.2.0", - "typescript": "4.8.4", + "typescript": "4.9.3", "urql": "3.0.3", "zx": "7.0.8" }, diff --git a/packages/types/package.json b/packages/types/package.json index ac9d42504..4474a608e 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -11,17 +11,17 @@ "@tiptap/core": "2.0.0-beta.202", "@tiptap/react": "2.0.0-beta.202", "@types/node": "16.11.45", - "@types/react": "18.0.24", - "@types/react-dom": "18.0.8", - "csstype": "3.1.0", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", + "csstype": "3.1.1", "graphql": "16.6.0", - "next": "13.0.3", + "next": "13.0.4", "next-auth": "4.16.4", "next-mdx-remote": "3.0.8", "react": "18.2.0", "react-dom": "18.2.0", "reading-time": "1.5.0", - "typescript": "4.8.4", + "typescript": "4.9.3", "urql": "3.0.3" }, "publishConfig": { diff --git a/packages/ui/package.json b/packages/ui/package.json index c806f88d9..56213d797 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -39,11 +39,11 @@ "datamaps": "0.5.9", "dayjs": "1.11.6", "debounce-promise": "3.1.2", - "framer-motion": "7.6.6", + "framer-motion": "7.6.7", "graphql": "16.6.0", "graphql-tag": "2.12.6", "graphql-ws": "5.11.2", - "next": "13.0.3", + "next": "13.0.4", "next-auth": "4.16.4", "next-axiom": "0.15.1", "next-mdx-remote": "3.0.8", @@ -58,7 +58,7 @@ "urql": "3.0.3" }, "devDependencies": { - "@babel/core": "7.18.13", + "@babel/core": "7.20.2", "@chirpy-dev/eslint-config": "workspace:*", "@chirpy-dev/graphql": "workspace:*", "@chirpy-dev/tsconfigs": "workspace:*", @@ -74,43 +74,43 @@ "@testing-library/jest-dom": "5.16.5", "@testing-library/react": "13.4.0", "@testing-library/user-event": "14.4.3", - "@types/canvas-confetti": "1.4.3", + "@types/canvas-confetti": "1.6.0", "@types/d3": "3.5.47", - "@types/debounce-promise": "3.1.4", - "@types/jest": "29.2.2", + "@types/debounce-promise": "3.1.5", + "@types/jest": "29.2.3", "@types/node": "16.11.45", - "@types/react": "18.0.24", - "@types/react-dom": "18.0.8", - "@types/react-flatpickr": "3.8.7", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", + "@types/react-flatpickr": "3.8.8", "@urql/storybook-addon": "2.0.1", "autoprefixer": "10.4.13", "babel-loader": "8.2.5", - "chromatic": "6.7.0", + "chromatic": "6.11.4", "concurrently": "7.5.0", "configs": "workspace:*", "css-loader": "6.7.1", - "csstype": "3.1.0", + "csstype": "3.1.1", "downshift": "6.1.9", "eslint": "8.27.0", "fake-indexeddb": "4.0.0", "html-loader": "4.2.0", "intersection-observer": "0.12.2", - "jest": "29.2.2", - "jest-environment-jsdom": "29.2.2", + "jest": "29.3.1", + "jest-environment-jsdom": "29.3.1", "msw": "0.47.4", "msw-storybook-addon": "1.6.3", - "postcss": "8.4.18", + "postcss": "8.4.19", "postcss-loader": "7.0.1", "require-from-string": "2.0.2", "resolve-url-loader": "5.0.0", - "sass": "1.56.0", - "sass-loader": "13.1.0", + "sass": "1.56.1", + "sass-loader": "13.2.0", "storybook-addon-next": "1.6.10", "style-loader": "3.3.1", "tailwindcss": "3.2.4", "type-fest": "3.2.0", - "typescript": "4.8.4", - "webpack": "5.74.0", + "typescript": "4.9.3", + "webpack": "5.75.0", "whatwg-fetch": "3.6.2" }, "modules": "./src/index.ts", diff --git a/packages/ui/src/blocks/notification-hub/__tests__/notification-hub.test.tsx b/packages/ui/src/blocks/notification-hub/__tests__/notification-hub.test.tsx index 9d491b0ac..12ca79692 100644 --- a/packages/ui/src/blocks/notification-hub/__tests__/notification-hub.test.tsx +++ b/packages/ui/src/blocks/notification-hub/__tests__/notification-hub.test.tsx @@ -30,7 +30,6 @@ describe('NotificationHub', () => { it('should render the messages', async () => { await renderDefaultNotificationHub(); expect(screen.getAllByAltText(/avatar/)).toHaveLength(3); - expect(screen.getAllByLabelText('Comment content')).toHaveLength(2); }); it('Should mark the clicked message as read', async () => { @@ -51,9 +50,7 @@ describe('NotificationHub', () => { .mockReturnValue([{} as any, deleteNotificationMessage]); await renderDefaultNotificationHub(); - await userEvent.click( - screen.getAllByLabelText('Delete the notification message')[0], - ); + await userEvent.click(screen.getAllByLabelText('Delete the message')[0]); expect(deleteNotificationMessage).toHaveBeenCalledTimes(1); }); }); diff --git a/packages/ui/src/blocks/notification-hub/notification-hub.module.scss b/packages/ui/src/blocks/notification-hub/notification-hub.module.scss index 92f30fc17..edd4c3ad8 100644 --- a/packages/ui/src/blocks/notification-hub/notification-hub.module.scss +++ b/packages/ui/src/blocks/notification-hub/notification-hub.module.scss @@ -1,6 +1,3 @@ -.menuItems { -} - .menuButton { @apply flex items-center justify-center; & > button { diff --git a/packages/ui/src/blocks/notification-hub/notification-hub.tsx b/packages/ui/src/blocks/notification-hub/notification-hub.tsx index 5a30382c7..854ce1585 100644 --- a/packages/ui/src/blocks/notification-hub/notification-hub.tsx +++ b/packages/ui/src/blocks/notification-hub/notification-hub.tsx @@ -45,7 +45,7 @@ export function NotificationHub(): JSX.Element { )} - + Notifications diff --git a/packages/ui/src/blocks/notification-hub/notification-item.tsx b/packages/ui/src/blocks/notification-hub/notification-item.tsx index 6f1bed1ae..ac80f6007 100644 --- a/packages/ui/src/blocks/notification-hub/notification-item.tsx +++ b/packages/ui/src/blocks/notification-hub/notification-item.tsx @@ -41,7 +41,7 @@ export function NotificationItem({ { @@ -55,38 +55,39 @@ export function NotificationItem({ + {ICON_MAP[message.type]}
-
- - -
+ - + {message.triggeredBy.name} - {TITLE_MAP[message.type]} + {TITLE_MAP[message.type]} {message.content} @@ -136,7 +136,7 @@ const TITLE_MAP: Record = { const ICON_SIZE = 24; const COMMENT_ICON = ( - + ); diff --git a/packages/ui/src/components/link/link.tsx b/packages/ui/src/components/link/link.tsx index 1276b02a4..fe8a7d751 100644 --- a/packages/ui/src/components/link/link.tsx +++ b/packages/ui/src/components/link/link.tsx @@ -96,16 +96,17 @@ export const Link = React.forwardRef(function Link( return ( <> {variant === 'plain' ? ( - - - {children} - + + {children} ) : ( setIsHovering(false)} onClick={handler} ref={ref} + className={clsx( + `relative !no-underline transition duration-150 ease-in-out`, + size && sizeStyles[size], + highlight && `font-bold`, + variantStyles[variant], + disabled && disabledStyle, + className, + )} > - - {children} - {!hideUnderline && ['primary', 'secondary'].includes(variant) && ( - - - - )} - + {children} + {!hideUnderline && ['primary', 'secondary'].includes(variant) && ( + + + + )} )} diff --git a/packages/utils/package.json b/packages/utils/package.json index 38e6ce435..2c8ba5425 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -11,11 +11,11 @@ "@tiptap/core": "2.0.0-beta.202", "@tiptap/react": "2.0.0-beta.202", "@types/node": "16.11.45", - "@types/react": "18.0.24", - "@types/react-dom": "18.0.8", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", "react": "18.2.0", "react-dom": "18.2.0", - "typescript": "4.8.4" + "typescript": "4.9.3" }, "publishConfig": { "access": "public" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cca3dde18..f7fb1a841 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,9 +14,9 @@ importers: '@chirpy-dev/eslint-config': workspace:* '@chirpy-dev/prettier-config': workspace:* eslint: 8.27.0 - husky: 8.0.1 + husky: 8.0.2 lint-staged: 13.0.3 - next: 13.0.3 + next: 13.0.4 prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0 @@ -27,9 +27,9 @@ importers: '@chirpy-dev/eslint-config': link:packages/eslint-config '@chirpy-dev/prettier-config': link:packages/prettier-config eslint: 8.27.0 - husky: 8.0.1 + husky: 8.0.2 lint-staged: 13.0.3 - next: 13.0.3_biqbaboplfbrettd7655fr4n2y + next: 13.0.4_biqbaboplfbrettd7655fr4n2y prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -41,36 +41,36 @@ importers: '@chirpy-dev/tsconfigs': workspace:* '@chirpy-dev/utils': workspace:* '@testing-library/react': 13.4.0 - '@types/jest': 29.2.2 + '@types/jest': 29.2.3 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - jest: 29.2.2 + jest: 29.3.1 react: 18.2.0 react-dom: 18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 vite: 2.9.14 devDependencies: '@chirpy-dev/eslint-config': link:../../packages/eslint-config '@chirpy-dev/tsconfigs': link:../../packages/tsconfigs '@chirpy-dev/utils': link:../../packages/utils '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y - '@types/jest': 29.2.2 + '@types/jest': 29.2.3 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - jest: 29.2.2_@types+node@16.11.45 + jest: 29.3.1_@types+node@16.11.45 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 vite: 2.9.14 apps/e2e: @@ -80,22 +80,22 @@ importers: '@testing-library/cypress': 8.0.3 '@types/node': 16.11.45 cypress: 10.11.0 - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 dependencies: '@chirpy-dev/eslint-config': link:../../packages/eslint-config '@chirpy-dev/tsconfigs': link:../../packages/tsconfigs '@testing-library/cypress': 8.0.3_cypress@10.11.0 '@types/node': 16.11.45 cypress: 10.11.0 - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 apps/emails: specifiers: @@ -103,7 +103,7 @@ importers: '@maizzle/framework': 4.3.0 autoprefixer: 10.4.13 glob: 8.0.3 - postcss: 8.4.18 + postcss: 8.4.19 tailwindcss: 3.2.4 tailwindcss-box-shadow: 2.0.0 tailwindcss-email-variants: 2.0.0 @@ -111,10 +111,10 @@ importers: dependencies: '@maizzle/cli': 1.5.1 '@maizzle/framework': 4.3.0_glob@8.0.3 - autoprefixer: 10.4.13_postcss@8.4.18 + autoprefixer: 10.4.13_postcss@8.4.19 glob: 8.0.3 - postcss: 8.4.18 - tailwindcss: 3.2.4_postcss@8.4.18 + postcss: 8.4.19 + tailwindcss: 3.2.4_postcss@8.4.19 tailwindcss-box-shadow: 2.0.0_tailwindcss@3.2.4 tailwindcss-email-variants: 2.0.0_tailwindcss@3.2.4 tailwindcss-mso: 1.3.0_tailwindcss@3.2.4 @@ -130,7 +130,7 @@ importers: '@chirpy-dev/types': workspace:* '@chirpy-dev/ui': workspace:* '@chirpy-dev/utils': workspace:* - '@next/bundle-analyzer': 13.0.3 + '@next/bundle-analyzer': 13.0.4 '@radix-ui/colors': 0.1.8 '@relative-ci/agent': 4.1.1 '@sendinblue/client': 3.2.2 @@ -140,20 +140,20 @@ importers: '@tensorflow/tfjs-core': 3.18.0 '@types/cors': 2.8.12 '@types/github-slugger': 1.3.0 - '@types/jest': 29.2.2 + '@types/jest': 29.2.3 '@types/jsonwebtoken': 8.5.9 - '@types/lodash': 4.14.187 + '@types/lodash': 4.14.189 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - '@types/requestidlecallback': 0.3.4 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + '@types/requestidlecallback': 0.3.5 '@types/web-push': 3.3.2 '@types/ws': 8.5.3 configs: workspace:* cors: 2.8.5 - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 eta: 1.12.3 github-slugger: 1.5.0 @@ -162,10 +162,10 @@ importers: graphql-ws: 5.11.2 gray-matter: 4.0.3 html-loader: 4.2.0 - jest: 29.2.2 + jest: 29.3.1 jsonwebtoken: 8.5.1 lodash: 4.17.21 - next: 13.0.3 + next: 13.0.4 next-auth: 4.16.4 next-axiom: 0.15.1 next-connect: 0.13.0 @@ -174,7 +174,7 @@ importers: next-themes: 0.2.1 next-urql: 4.0.0 nodemailer: 6.7.8 - postcss: 8.4.18 + postcss: 8.4.19 react: 18.2.0 react-dom: 18.2.0 reading-time: 1.5.0 @@ -183,14 +183,14 @@ importers: rehype-pretty-code: 0.4.0 rehype-slug: 5.1.0 shiki: 0.11.1 - stellate: 1.17.0 - superjson: 1.9.1 + stellate: 1.17.1 + superjson: 1.11.0 tailwindcss: 3.2.4 type-fest: 3.2.0 - typescript: 4.8.4 + typescript: 4.9.3 urql: 3.0.3 web-push: 3.5.0 - webpack: 5.74.0 + webpack: 5.75.0 wonka: 6.1.1 ws: 8.11.0 dependencies: @@ -211,16 +211,16 @@ importers: graphql-tag: 2.12.6_graphql@16.6.0 graphql-ws: 5.11.2_graphql@16.6.0 gray-matter: 4.0.3 - html-loader: 4.2.0_webpack@5.74.0 + html-loader: 4.2.0_webpack@5.75.0 jsonwebtoken: 8.5.1 lodash: 4.17.21 - next: 13.0.3_biqbaboplfbrettd7655fr4n2y - next-auth: 4.16.4_ylggc6s2b74skgcs4bdumrusoa - next-axiom: 0.15.1_next@13.0.3 + next: 13.0.4_biqbaboplfbrettd7655fr4n2y + next-auth: 4.16.4_wg23sy66rdimfz56mrp5vlofyy + next-axiom: 0.15.1_next@13.0.4 next-connect: 0.13.0 next-mdx-remote: 3.0.8_biqbaboplfbrettd7655fr4n2y - next-plausible: 3.6.4_ogpkrxaz2lg6nectum6dl66tn4 - next-themes: 0.2.1_ogpkrxaz2lg6nectum6dl66tn4 + next-plausible: 3.6.4_dcors23iqtgxrhrwosgnnc4xji + next-themes: 0.2.1_dcors23iqtgxrhrwosgnnc4xji next-urql: 4.0.0_react@18.2.0+urql@3.0.3 nodemailer: 6.7.8 react: 18.2.0 @@ -231,7 +231,7 @@ importers: rehype-pretty-code: 0.4.0_shiki@0.11.1 rehype-slug: 5.1.0 shiki: 0.11.1 - superjson: 1.9.1 + superjson: 1.11.0 type-fest: 3.2.0 urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy web-push: 3.5.0 @@ -243,49 +243,49 @@ importers: '@chirpy-dev/eslint-config': link:../../packages/eslint-config '@chirpy-dev/service-worker': link:../service-worker '@chirpy-dev/tsconfigs': link:../../packages/tsconfigs - '@next/bundle-analyzer': 13.0.3 - '@relative-ci/agent': 4.1.1_webpack@5.74.0 + '@next/bundle-analyzer': 13.0.4 + '@relative-ci/agent': 4.1.1_webpack@5.75.0 '@types/cors': 2.8.12 '@types/github-slugger': 1.3.0 - '@types/jest': 29.2.2 + '@types/jest': 29.2.3 '@types/jsonwebtoken': 8.5.9 - '@types/lodash': 4.14.187 + '@types/lodash': 4.14.189 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - '@types/requestidlecallback': 0.3.4 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + '@types/requestidlecallback': 0.3.5 '@types/web-push': 3.3.2 '@types/ws': 8.5.3 configs: link:../../packages/configs - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - jest: 29.2.2_@types+node@16.11.45 - postcss: 8.4.18 - stellate: 1.17.0 - tailwindcss: 3.2.4_postcss@8.4.18 - typescript: 4.8.4 - webpack: 5.74.0 + jest: 29.3.1_@types+node@16.11.45 + postcss: 8.4.19 + stellate: 1.17.1 + tailwindcss: 3.2.4_postcss@8.4.19 + typescript: 4.9.3 + webpack: 5.75.0 apps/service-worker: specifiers: '@chirpy-dev/eslint-config': workspace:* '@chirpy-dev/tsconfigs': workspace:* - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 vite: 2.9.14 devDependencies: '@chirpy-dev/eslint-config': link:../../packages/eslint-config '@chirpy-dev/tsconfigs': link:../../packages/tsconfigs - dotenv: 16.0.1 - dotenv-cli: 5.1.0 - dotenv-expand: 8.0.3 + dotenv: 16.0.3 + dotenv-cli: 6.0.0 + dotenv-expand: 9.0.0 eslint: 8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 vite: 2.9.14 packages/configs: @@ -295,22 +295,22 @@ importers: '@tailwindcss/line-clamp': 0.4.2 '@tailwindcss/typography': 0.5.8 color-convert: 2.0.1 - postcss: 8.4.18 + postcss: 8.4.19 postcss-flexbugs-fixes: 5.0.2 - postcss-preset-env: 7.8.2 + postcss-preset-env: 7.8.3 tailwindcss: 3.2.4 - typescript: 4.8.4 + typescript: 4.9.3 dependencies: '@chirpy-dev/tsconfigs': link:../tsconfigs '@radix-ui/colors': 0.1.8 '@tailwindcss/line-clamp': 0.4.2_tailwindcss@3.2.4 '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 color-convert: 2.0.1 - postcss: 8.4.18 - postcss-flexbugs-fixes: 5.0.2_postcss@8.4.18 - postcss-preset-env: 7.8.2_postcss@8.4.18 - tailwindcss: 3.2.4_postcss@8.4.18 - typescript: 4.8.4 + postcss: 8.4.19 + postcss-flexbugs-fixes: 5.0.2_postcss@8.4.19 + postcss-preset-env: 7.8.3_postcss@8.4.19 + tailwindcss: 3.2.4_postcss@8.4.19 + typescript: 4.9.3 packages/docker-cli: specifiers: @@ -318,10 +318,10 @@ importers: '@types/web-push': 3.3.2 '@types/which': 2.0.1 '@types/yargs': 17.0.13 - dotenv: 16.0.1 + dotenv: 16.0.3 eta: 1.12.3 ts-node: 10.9.1 - typescript: 4.8.4 + typescript: 4.9.3 web-push: 3.5.0 which: 2.0.2 yaml: 2.1.3 @@ -332,10 +332,10 @@ importers: '@types/web-push': 3.3.2 '@types/which': 2.0.1 '@types/yargs': 17.0.13 - dotenv: 16.0.1 + dotenv: 16.0.3 eta: 1.12.3 - ts-node: 10.9.1_fl6fmxnqtozxypm3ur2kzj6cpy - typescript: 4.8.4 + ts-node: 10.9.1_pldvz6pe3aqb7j6elrti4nlcrm + typescript: 4.9.3 web-push: 3.5.0 which: 2.0.2 yaml: 2.1.3 @@ -345,75 +345,75 @@ importers: packages/eslint-config: specifiers: '@chirpy-dev/prettier-config': workspace:* - '@typescript-eslint/eslint-plugin': 5.42.0 - '@typescript-eslint/parser': 5.42.0 + '@typescript-eslint/eslint-plugin': 5.43.0 + '@typescript-eslint/parser': 5.43.0 eslint: 8.27.0 - eslint-config-next: 13.0.3 + eslint-config-next: 13.0.4 eslint-config-prettier: 8.5.0 eslint-plugin-jest: 27.1.5 eslint-plugin-prettier: 4.2.1 eslint-plugin-storybook: 0.6.7 eslint-plugin-unicorn: 44.0.2 - next: 13.0.3 + next: 13.0.4 prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 dependencies: '@chirpy-dev/prettier-config': link:../prettier-config - '@typescript-eslint/eslint-plugin': 5.42.0_ofgjrzjuekeo7s3hdyz2yuzw34 - '@typescript-eslint/parser': 5.42.0_rmayb2veg2btbq6mbmnyivgasy - eslint-config-next: 13.0.3_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/eslint-plugin': 5.43.0_wze2rj5tow7zwqpgbdx2buoy3m + '@typescript-eslint/parser': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y + eslint-config-next: 13.0.4_e3uo4sehh4zr4i6m57mkkxxv7y eslint-config-prettier: 8.5.0_eslint@8.27.0 - eslint-plugin-jest: 27.1.5_whuowtn6rxwr7ok6amlpayiac4 + eslint-plugin-jest: 27.1.5_zepgltmqngws2pl4a7zw2atiyy eslint-plugin-prettier: 4.2.1_v7o5sx5x3wbs57ifz6wc4f76we - eslint-plugin-storybook: 0.6.7_rmayb2veg2btbq6mbmnyivgasy + eslint-plugin-storybook: 0.6.7_e3uo4sehh4zr4i6m57mkkxxv7y eslint-plugin-unicorn: 44.0.2_eslint@8.27.0 - next: 13.0.3_biqbaboplfbrettd7655fr4n2y + next: 13.0.4_biqbaboplfbrettd7655fr4n2y prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 devDependencies: eslint: 8.27.0 packages/graphql: specifiers: '@chirpy-dev/tsconfigs': workspace:* - '@graphql-codegen/cli': 2.13.11 + '@graphql-codegen/cli': 2.13.12 '@graphql-codegen/introspection': 2.2.1 '@graphql-codegen/near-operation-file-preset': 2.4.4 - '@graphql-codegen/typed-document-node': 2.3.6 - '@graphql-codegen/typescript': 2.8.1 - '@graphql-codegen/typescript-operations': 2.5.6 + '@graphql-codegen/typed-document-node': 2.3.7 + '@graphql-codegen/typescript': 2.8.2 + '@graphql-codegen/typescript-operations': 2.5.7 '@graphql-codegen/typescript-urql': 3.7.3 '@graphql-typed-document-node/core': 3.1.1 '@types/node': 16.11.45 - csstype: 3.1.0 + csstype: 3.1.1 graphql: 16.6.0 graphql-tag: 2.12.6 graphqurl: 1.0.1 react: 18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 urql: 3.0.3 zx: 7.0.8 devDependencies: '@chirpy-dev/tsconfigs': link:../tsconfigs - '@graphql-codegen/cli': 2.13.11_nsi3j6ayd5yqrucye665qn4hse + '@graphql-codegen/cli': 2.13.12_kjbtv7ce7iv4kwcptkge5oq7pm '@graphql-codegen/introspection': 2.2.1_graphql@16.6.0 '@graphql-codegen/near-operation-file-preset': 2.4.4_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.6_graphql@16.6.0 - '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 2.5.6_graphql@16.6.0 + '@graphql-codegen/typed-document-node': 2.3.7_graphql@16.6.0 + '@graphql-codegen/typescript': 2.8.2_graphql@16.6.0 + '@graphql-codegen/typescript-operations': 2.5.7_graphql@16.6.0 '@graphql-codegen/typescript-urql': 3.7.3_sy4knu3obj4ys7pjcqbyfxmqle '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 '@types/node': 16.11.45 - csstype: 3.1.0 + csstype: 3.1.1 graphql: 16.6.0 graphql-tag: 2.12.6_graphql@16.6.0 - graphqurl: 1.0.1_fl6fmxnqtozxypm3ur2kzj6cpy + graphqurl: 1.0.1_pldvz6pe3aqb7j6elrti4nlcrm react: 18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy zx: 7.0.8 @@ -438,17 +438,17 @@ importers: '@tiptap/core': 2.0.0-beta.202 '@tiptap/react': 2.0.0-beta.202 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - csstype: 3.1.0 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + csstype: 3.1.1 graphql: 16.6.0 - next: 13.0.3 + next: 13.0.4 next-auth: 4.16.4 next-mdx-remote: 3.0.8 react: 18.2.0 react-dom: 18.2.0 reading-time: 1.5.0 - typescript: 4.8.4 + typescript: 4.9.3 urql: 3.0.3 devDependencies: '@chirpy-dev/graphql': link:../graphql @@ -456,22 +456,22 @@ importers: '@tiptap/core': 2.0.0-beta.202 '@tiptap/react': 2.0.0-beta.202_b34bfmrzq6nwqs5zwwuhxagzky '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - csstype: 3.1.0 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + csstype: 3.1.1 graphql: 16.6.0 - next: 13.0.3_biqbaboplfbrettd7655fr4n2y - next-auth: 4.16.4_ogpkrxaz2lg6nectum6dl66tn4 + next: 13.0.4_biqbaboplfbrettd7655fr4n2y + next-auth: 4.16.4_dcors23iqtgxrhrwosgnnc4xji next-mdx-remote: 3.0.8_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 reading-time: 1.5.0 - typescript: 4.8.4 + typescript: 4.9.3 urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy packages/ui: specifiers: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@chirpy-dev/eslint-config': workspace:* '@chirpy-dev/graphql': workspace:* '@chirpy-dev/tsconfigs': workspace:* @@ -498,14 +498,14 @@ importers: '@tiptap/extension-underline': 2.0.0-beta.202 '@tiptap/react': 2.0.0-beta.202 '@tiptap/starter-kit': 2.0.0-beta.202 - '@types/canvas-confetti': 1.4.3 + '@types/canvas-confetti': 1.6.0 '@types/d3': 3.5.47 - '@types/debounce-promise': 3.1.4 - '@types/jest': 29.2.2 + '@types/debounce-promise': 3.1.5 + '@types/jest': 29.2.3 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - '@types/react-flatpickr': 3.8.7 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + '@types/react-flatpickr': 3.8.8 '@urql/devtools': 2.0.3 '@urql/exchange-graphcache': 5.0.5 '@urql/exchange-refocus': 1.0.0 @@ -515,13 +515,13 @@ importers: babel-loader: 8.2.5 canvas-confetti: 1.6.0 chart.js: 3.8.0 - chromatic: 6.7.0 + chromatic: 6.11.4 class-variance-authority: 0.3.0 clsx: 1.2.1 concurrently: 7.5.0 configs: workspace:* css-loader: 6.7.1 - csstype: 3.1.0 + csstype: 3.1.1 d3: 3.5.17 datamaps: 0.5.9 dayjs: 1.11.6 @@ -529,23 +529,23 @@ importers: downshift: 6.1.9 eslint: 8.27.0 fake-indexeddb: 4.0.0 - framer-motion: 7.6.6 + framer-motion: 7.6.7 graphql: 16.6.0 graphql-tag: 2.12.6 graphql-ws: 5.11.2 html-loader: 4.2.0 intersection-observer: 0.12.2 - jest: 29.2.2 - jest-environment-jsdom: 29.2.2 + jest: 29.3.1 + jest-environment-jsdom: 29.3.1 msw: 0.47.4 msw-storybook-addon: 1.6.3 - next: 13.0.3 + next: 13.0.4 next-auth: 4.16.4 next-axiom: 0.15.1 next-mdx-remote: 3.0.8 next-plausible: 3.6.4 next-themes: 0.2.1 - postcss: 8.4.18 + postcss: 8.4.19 postcss-loader: 7.0.1 react: 18.2.0 react-dom: 18.2.0 @@ -554,16 +554,16 @@ importers: react-flip-move: 3.0.4 require-from-string: 2.0.2 resolve-url-loader: 5.0.0 - sass: 1.56.0 - sass-loader: 13.1.0 + sass: 1.56.1 + sass-loader: 13.2.0 storybook-addon-next: 1.6.10 style-loader: 3.3.1 super-tiny-icons: 0.4.0 tailwindcss: 3.2.4 type-fest: 3.2.0 - typescript: 4.8.4 + typescript: 4.9.3 urql: 3.0.3 - webpack: 5.74.0 + webpack: 5.75.0 whatwg-fetch: 3.6.2 dependencies: '@chirpy-dev/types': link:../types @@ -581,25 +581,25 @@ importers: '@urql/devtools': 2.0.3_graphql@16.6.0 '@urql/exchange-graphcache': 5.0.5_graphql@16.6.0 '@urql/exchange-refocus': 1.0.0_graphql@16.6.0 - avvvatars-react: 0.4.2_vt6aeitzauirmcdhimiad2yjxy + avvvatars-react: 0.4.2_owo25xnefcwdq3zjgtohz6dbju canvas-confetti: 1.6.0 chart.js: 3.8.0 - class-variance-authority: 0.3.0_typescript@4.8.4 + class-variance-authority: 0.3.0_typescript@4.9.3 clsx: 1.2.1 d3: 3.5.17 datamaps: 0.5.9 dayjs: 1.11.6 debounce-promise: 3.1.2 - framer-motion: 7.6.6_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.7_biqbaboplfbrettd7655fr4n2y graphql: 16.6.0 graphql-tag: 2.12.6_graphql@16.6.0 graphql-ws: 5.11.2_graphql@16.6.0 - next: 13.0.3_36dhtzzjetle2gptjwci3pgnsi - next-auth: 4.16.4_ogpkrxaz2lg6nectum6dl66tn4 - next-axiom: 0.15.1_next@13.0.3 + next: 13.0.4_vgii64pd2ccbnbx2v3ro5gbin4 + next-auth: 4.16.4_dcors23iqtgxrhrwosgnnc4xji + next-axiom: 0.15.1_next@13.0.4 next-mdx-remote: 3.0.8_biqbaboplfbrettd7655fr4n2y - next-plausible: 3.6.4_ogpkrxaz2lg6nectum6dl66tn4 - next-themes: 0.2.1_ogpkrxaz2lg6nectum6dl66tn4 + next-plausible: 3.6.4_dcors23iqtgxrhrwosgnnc4xji + next-themes: 0.2.1_dcors23iqtgxrhrwosgnnc4xji react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-error-boundary: 3.1.4_react@18.2.0 @@ -608,58 +608,58 @@ importers: super-tiny-icons: 0.4.0 urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy devDependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@chirpy-dev/eslint-config': link:../eslint-config '@chirpy-dev/graphql': link:../graphql '@chirpy-dev/tsconfigs': link:../tsconfigs '@storybook/addon-actions': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-essentials': 6.5.13_wdnbicqeh35fsvrp3o6wyyxfee - '@storybook/addon-interactions': 6.5.13_nlqlv6j4mzlxjiia5kzadcwfxu - '@storybook/builder-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/manager-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/react': 6.5.13_oh2bbsy6jam24qn47t3p7fv3ca + '@storybook/addon-essentials': 6.5.13_umcccjscsozh2kacy3kydywx3q + '@storybook/addon-interactions': 6.5.13_vcbktvupb3nrz536jx5pquykfm + '@storybook/builder-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/manager-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/react': 6.5.13_v4jjm24djpoj4yog7pcvrvfzne '@storybook/testing-library': 0.0.13_biqbaboplfbrettd7655fr4n2y '@storybook/testing-react': 1.3.0_ttbexg3pjn2kdvnzqd2hzwfoge '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/user-event': 14.4.3 - '@types/canvas-confetti': 1.4.3 + '@types/canvas-confetti': 1.6.0 '@types/d3': 3.5.47 - '@types/debounce-promise': 3.1.4 - '@types/jest': 29.2.2 + '@types/debounce-promise': 3.1.5 + '@types/jest': 29.2.3 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 - '@types/react-flatpickr': 3.8.7 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 + '@types/react-flatpickr': 3.8.8 '@urql/storybook-addon': 2.0.1_gdcq4dv6opitr3wbfwyjmanyra - autoprefixer: 10.4.13_postcss@8.4.18 - babel-loader: 8.2.5_tb6moc662p5idmcg3l5ipbhpta - chromatic: 6.7.0 + autoprefixer: 10.4.13_postcss@8.4.19 + babel-loader: 8.2.5_npabyccmuonwo2rku4k53xo3hi + chromatic: 6.11.4 concurrently: 7.5.0 configs: link:../configs - css-loader: 6.7.1_webpack@5.74.0 - csstype: 3.1.0 + css-loader: 6.7.1_webpack@5.75.0 + csstype: 3.1.1 downshift: 6.1.9_react@18.2.0 eslint: 8.27.0 fake-indexeddb: 4.0.0 - html-loader: 4.2.0_webpack@5.74.0 + html-loader: 4.2.0_webpack@5.75.0 intersection-observer: 0.12.2 - jest: 29.2.2_@types+node@16.11.45 - jest-environment-jsdom: 29.2.2 - msw: 0.47.4_typescript@4.8.4 + jest: 29.3.1_@types+node@16.11.45 + jest-environment-jsdom: 29.3.1 + msw: 0.47.4_typescript@4.9.3 msw-storybook-addon: 1.6.3_qsb57tqg53ukreau73dz5vfuc4 - postcss: 8.4.18 - postcss-loader: 7.0.1_igyeriywjd4lwzfk4socqbj2qi + postcss: 8.4.19 + postcss-loader: 7.0.1_upg3rk2kpasnbk27hkqapxaxfq require-from-string: 2.0.2 resolve-url-loader: 5.0.0 - sass: 1.56.0 - sass-loader: 13.1.0_sass@1.56.0+webpack@5.74.0 - storybook-addon-next: 1.6.10_l2l4okt3px7rotcwrd4iw4oor4 - style-loader: 3.3.1_webpack@5.74.0 - tailwindcss: 3.2.4_postcss@8.4.18 + sass: 1.56.1 + sass-loader: 13.2.0_sass@1.56.1+webpack@5.75.0 + storybook-addon-next: 1.6.10_gs5cs42cithblp2rzvqgbdw2qm + style-loader: 3.3.1_webpack@5.75.0 + tailwindcss: 3.2.4_postcss@8.4.19 type-fest: 3.2.0 - typescript: 4.8.4 - webpack: 5.74.0 + typescript: 4.9.3 + webpack: 5.75.0 whatwg-fetch: 3.6.2 packages/utils: @@ -669,22 +669,22 @@ importers: '@tiptap/core': 2.0.0-beta.202 '@tiptap/react': 2.0.0-beta.202 '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 react: 18.2.0 react-dom: 18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 devDependencies: '@chirpy-dev/tsconfigs': link:../tsconfigs '@chirpy-dev/types': link:../types '@tiptap/core': 2.0.0-beta.202 '@tiptap/react': 2.0.0-beta.202_b34bfmrzq6nwqs5zwwuhxagzky '@types/node': 16.11.45 - '@types/react': 18.0.24 - '@types/react-dom': 18.0.8 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.8.4 + typescript: 4.9.3 packages: @@ -697,7 +697,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.17 /@ardatan/relay-compiler/12.0.0_graphql@16.6.0: resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} @@ -705,13 +705,13 @@ packages: peerDependencies: graphql: '*' dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/generator': 7.19.6 '@babel/parser': 7.19.6 '@babel/runtime': 7.19.4 '@babel/traverse': 7.19.6 '@babel/types': 7.19.4 - babel-preset-fbjs: 3.4.0_@babel+core@7.19.1 + babel-preset-fbjs: 3.4.0_@babel+core@7.20.2 chalk: 4.1.2 fb-watchman: 2.0.2 fbjs: 3.0.4 @@ -752,10 +752,6 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.19.4: - resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==} - engines: {node: '>=6.9.0'} - /@babel/compat-data/7.20.1: resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} engines: {node: '>=6.9.0'} @@ -765,14 +761,14 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.1 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helpers': 7.19.0 - '@babel/parser': 7.20.1 + '@babel/generator': 7.20.4 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.1 + '@babel/parser': 7.20.3 '@babel/template': 7.18.10 '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 - convert-source-map: 1.8.0 + '@babel/types': 7.20.2 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -783,20 +779,20 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core/7.18.13: - resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==} + /@babel/core/7.19.6: + resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.6 - '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.18.13 + '@babel/generator': 7.20.1 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 '@babel/helper-module-transforms': 7.19.6 - '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.6 + '@babel/helpers': 7.20.1 + '@babel/parser': 7.20.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.6 - '@babel/types': 7.19.4 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.0 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -804,44 +800,22 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: false - /@babel/core/7.19.1: - resolution: {integrity: sha512-1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.6 - '@babel/helper-compilation-targets': 7.19.1_@babel+core@7.19.1 - '@babel/helper-module-transforms': 7.19.0 - '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.6 - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.6 - '@babel/types': 7.19.4 - convert-source-map: 1.8.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/core/7.19.6: - resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} + /@babel/core/7.20.2: + resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.1 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-module-transforms': 7.19.6 + '@babel/generator': 7.20.4 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-module-transforms': 7.20.2 '@babel/helpers': 7.20.1 - '@babel/parser': 7.20.1 + '@babel/parser': 7.20.3 '@babel/template': 7.18.10 '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/types': 7.20.2 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -849,7 +823,6 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: false /@babel/generator/7.19.6: resolution: {integrity: sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==} @@ -867,14 +840,13 @@ packages: '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - /@babel/generator/7.20.2: - resolution: {integrity: sha512-SD75PMIK6i9H8G/tfGvB4KKl4Nw6Ssos9nGgYwxbgyTP0iX/Z55DveoH86rmUB/YHTQQ+ZC0F7xxaY8l2OF44Q==} + /@babel/generator/7.20.4: + resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.2 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 - dev: true /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} @@ -891,95 +863,38 @@ packages: '@babel/types': 7.20.0 dev: true - /@babel/helper-compilation-targets/7.19.1_@babel+core@7.19.1: - resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.19.4 - '@babel/core': 7.19.1 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - semver: 6.3.0 - dev: true - - /@babel/helper-compilation-targets/7.19.3_@babel+core@7.18.13: - resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.19.4 - '@babel/core': 7.18.13 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - semver: 6.3.0 - - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.18.13: - resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.18.13 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - semver: 6.3.0 - dev: true - - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.1: + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.1 + '@babel/core': 7.19.6 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 - dev: true + dev: false - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6: + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.6 + '@babel/core': 7.20.2 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 - dev: false - - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.18.13: - resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.1: + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 @@ -991,24 +906,24 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.18.13: + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.1 dev: true - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.18.13: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.2: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 '@babel/traverse': 7.20.1 @@ -1020,13 +935,13 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.18.13: + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.2: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -1073,8 +988,8 @@ packages: dependencies: '@babel/types': 7.19.4 - /@babel/helper-module-transforms/7.19.0: - resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} + /@babel/helper-module-transforms/7.19.6: + resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 @@ -1087,20 +1002,19 @@ packages: '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color - dev: true - /@babel/helper-module-transforms/7.19.6: - resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==} + /@babel/helper-module-transforms/7.20.2: + resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.19.4 + '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.6 - '@babel/types': 7.19.4 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color @@ -1118,13 +1032,18 @@ packages: resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.13: + /@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.2: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.19.0 @@ -1152,6 +1071,12 @@ packages: dependencies: '@babel/types': 7.19.4 + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + /@babel/helper-skip-transparent-expression-wrappers/7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} @@ -1189,26 +1114,15 @@ packages: - supports-color dev: true - /@babel/helpers/7.19.0: - resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.6 - '@babel/types': 7.19.4 - transitivePeerDependencies: - - supports-color - /@babel/helpers/7.20.1: resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/types': 7.20.2 transitivePeerDependencies: - supports-color - dev: false /@babel/highlight/7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} @@ -1232,182 +1146,168 @@ packages: dependencies: '@babel/types': 7.20.0 - /@babel/parser/7.20.2: - resolution: {integrity: sha512-afk318kh2uKbo7BEj2QtEi8HVCGrwHUffrYDy7dgVcSa2j9lY3LDjPzcyGdpX7xgm35aWqvciZJ4WKmdF/SxYg==} + /@babel/parser/7.20.3: + resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.20.2 - dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.13: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.13: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.18.13: + /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.2: resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.13 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.13 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.1: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.1 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.13 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.20.0_@babel+core@7.18.13: + /@babel/plugin-proposal-decorators/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-vnuRRS20ygSxclEYikHzVrP9nZDFXaSzvJxGLQNAiBX041TmhS4hOUHWNIpq/q4muENuEP9XPJFXTNFejhemkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.18.13 + '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.13 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.18.13: + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.20.2: resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.18.13 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.13: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.13 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.13: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -1420,225 +1320,192 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9 - /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.18.13: - resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.18.13 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.18.13 - dev: true - - /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.1: + /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.20.2: resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.1 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.1 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1 - '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.19.1 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.13: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.13 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.13: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.13: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.13: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.1: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.13: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.18.13: + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.18.13: + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.19.1: + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.18.13: + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.13: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -1650,50 +1517,40 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.1: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.13: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.13: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true @@ -1705,175 +1562,126 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.13: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.1: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.13: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.13: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.18.13: + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.1: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.13 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.1: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.19.1: + /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.20.2: resolution: {integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-block-scoping/7.20.0_@babel+core@7.18.13: + /@babel/plugin-transform-block-scoping/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.18.13: - resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.13 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.1: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.1 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 @@ -1885,204 +1693,141 @@ packages: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.13: - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.1: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.19.1: + /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.20.2: resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.20.0_@babel+core@7.18.13: + /@babel/plugin-transform-destructuring/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.13: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.18.13: + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.13 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.2 dev: true - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.19.1: - resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.1 - dev: true - - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.13: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.2: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.1: - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.13: - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.13 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.1: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.1 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.13: - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.1: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.1: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.18.13: + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-module-transforms': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.18.13: + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-module-transforms': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-simple-access': 7.19.4 @@ -2090,27 +1835,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.19.1: - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.1 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-simple-access': 7.19.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.18.13: + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 @@ -2119,60 +1850,47 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-module-transforms': 7.19.6 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.18.13: + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.2: resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.19.1 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.1: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: @@ -2188,410 +1906,335 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.1: + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.20.2: resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-parameters/7.20.1_@babel+core@7.18.13: - resolution: {integrity: sha512-nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-parameters/7.20.1_@babel+core@7.19.1: + /@babel/plugin-transform-parameters/7.20.1_@babel+core@7.20.2: resolution: {integrity: sha512-nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.1: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.13: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.1: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.18.13 - dev: true - - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.18.13: - resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13 - '@babel/types': 7.20.0 + '@babel/core': 7.20.2 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 dev: true - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.1: + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.1 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 '@babel/types': 7.20.0 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.1: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.18.13: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.1: - resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.1 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - dev: true - - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.13: - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.1: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.1 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.13: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-typescript/7.20.0_@babel+core@7.18.13: + /@babel/plugin-transform-typescript/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-xOAsAFaun3t9hCwZ13Qe7gq423UgMZ6zAgmLxeGGapFqlT/X3L5qT2btjiVLlFn7gWtMaVyceS5VxGAuKbgizw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.18.13 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.13: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.2: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.13: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/preset-env/7.19.4_@babel+core@7.18.13: + /@babel/preset-env/7.19.4_@babel+core@7.20.2: resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.18.13 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.18.13 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.18.13 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.13 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.13 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.13 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.18.13 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.13 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.13 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.18.13 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.18.13 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.18.13 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.13 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.18.13 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.18.13 - '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.18.13 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.18.13 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.18.13 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.18.13 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.13 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.13 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.13 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.2 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.20.2 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.2 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.20.2 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.2 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.2 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.2 '@babel/types': 7.20.0 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.18.13 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.18.13 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.18.13 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.2 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.2 core-js-compat: 3.26.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow/7.18.6_@babel+core@7.18.13: + /@babel/preset-flow/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.18.13 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.2 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.18.13: + /@babel/preset-modules/0.1.5_@babel+core@7.20.2: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.13 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2 '@babel/types': 7.20.0 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.18.13: + /@babel/preset-react/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.18.13 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.13 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.2 dev: true - /@babel/preset-typescript/7.18.6_@babel+core@7.18.13: + /@babel/preset-typescript/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.20.0_@babel+core@7.18.13 + '@babel/plugin-transform-typescript': 7.20.0_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.18.9_@babel+core@7.18.13: + /@babel/register/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -2603,8 +2246,8 @@ packages: resolution: {integrity: sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==} engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.26.0 - regenerator-runtime: 0.13.10 + core-js-pure: 3.26.1 + regenerator-runtime: 0.13.11 dev: false /@babel/runtime/7.18.6: @@ -2710,7 +2353,6 @@ packages: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - dev: true /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} @@ -2971,158 +2613,158 @@ packages: dependencies: '@jridgewell/trace-mapping': 0.3.9 - /@csstools/postcss-cascade-layers/1.1.1_postcss@8.4.18: + /@csstools/postcss-cascade-layers/1.1.1_postcss@8.4.19: resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_dvkg4kkb622mvceygg47xxdz3a - postcss: 8.4.18 + '@csstools/selector-specificity': 2.0.2_45y636a2vqremknoajyxd5nkzy + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /@csstools/postcss-color-function/1.1.1_postcss@8.4.18: + /@csstools/postcss-color-function/1.1.1_postcss@8.4.19: resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.18 - postcss: 8.4.18 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.18: + /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.19: resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.18: + /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.19: resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.18: + /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.19: resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.18 - postcss: 8.4.18 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.18: + /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.19: resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_dvkg4kkb622mvceygg47xxdz3a - postcss: 8.4.18 + '@csstools/selector-specificity': 2.0.2_45y636a2vqremknoajyxd5nkzy + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /@csstools/postcss-nested-calc/1.0.0_postcss@8.4.18: + /@csstools/postcss-nested-calc/1.0.0_postcss@8.4.19: resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.18: + /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.19: resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.18: + /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.19: resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.18 - postcss: 8.4.18 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.18: + /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.19: resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.18: + /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.19: resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-text-decoration-shorthand/1.0.0_postcss@8.4.18: + /@csstools/postcss-text-decoration-shorthand/1.0.0_postcss@8.4.19: resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.18: + /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.19: resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} engines: {node: ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /@csstools/postcss-unset-value/1.0.2_postcss@8.4.18: + /@csstools/postcss-unset-value/1.0.2_postcss@8.4.19: resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /@csstools/selector-specificity/2.0.2_dvkg4kkb622mvceygg47xxdz3a: + /@csstools/selector-specificity/2.0.2_45y636a2vqremknoajyxd5nkzy: resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-selector-parser: ^6.0.10 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false @@ -3159,7 +2801,7 @@ packages: - supports-color dev: false - /@design-systems/utils/2.12.0_knhnagtyfncgg2hpin7s37uixq: + /@design-systems/utils/2.12.0_2zx2umvpluuhvlq44va5bta2da: resolution: {integrity: sha512-Y/d2Zzr+JJfN6u1gbuBUb1ufBuLMJJRZQk+dRmw8GaTpqKx5uf7cGUYGTwN02dIb3I+Tf+cW8jcGBTRiFxdYFg==} peerDependencies: '@types/react': '*' @@ -3167,7 +2809,7 @@ packages: react-dom: '>= 16.8.6 || 18' dependencies: '@babel/runtime': 7.20.1 - '@types/react': 18.0.24 + '@types/react': 18.0.25 clsx: 1.2.1 focus-lock: 0.8.1 react: 18.2.0 @@ -3175,15 +2817,15 @@ packages: react-merge-refs: 1.1.0 dev: true - /@devtools-ds/object-inspector/1.2.0_knhnagtyfncgg2hpin7s37uixq: + /@devtools-ds/object-inspector/1.2.0_2zx2umvpluuhvlq44va5bta2da: resolution: {integrity: sha512-VztcwqVwScSvYdvJVZBJYsVO/2Pew3JPpFV3T9fuCHQLlHcLYOV3aU/kBS2ScuE2O1JN0ZbobLqFLa3vQF54Fw==} peerDependencies: react: '>= 16.8.6 || 18' dependencies: '@babel/runtime': 7.7.2 '@devtools-ds/object-parser': 1.2.0 - '@devtools-ds/themes': 1.2.0_knhnagtyfncgg2hpin7s37uixq - '@devtools-ds/tree': 1.2.0_knhnagtyfncgg2hpin7s37uixq + '@devtools-ds/themes': 1.2.0_2zx2umvpluuhvlq44va5bta2da + '@devtools-ds/tree': 1.2.0_2zx2umvpluuhvlq44va5bta2da clsx: 1.1.0 react: 18.2.0 transitivePeerDependencies: @@ -3197,13 +2839,13 @@ packages: '@babel/runtime': 7.5.5 dev: true - /@devtools-ds/themes/1.2.0_knhnagtyfncgg2hpin7s37uixq: + /@devtools-ds/themes/1.2.0_2zx2umvpluuhvlq44va5bta2da: resolution: {integrity: sha512-LimEITorE6yWZWWuMc6OiBfLQgPrQqWbyMEmfRUDPa3PHXoAY4SpDxczfg31fgyRDUNWnZhjaJH5bBbu8VEbIw==} peerDependencies: react: '>= 16.8.6 || 18' dependencies: '@babel/runtime': 7.5.5 - '@design-systems/utils': 2.12.0_knhnagtyfncgg2hpin7s37uixq + '@design-systems/utils': 2.12.0_2zx2umvpluuhvlq44va5bta2da clsx: 1.1.0 react: 18.2.0 transitivePeerDependencies: @@ -3211,13 +2853,13 @@ packages: - react-dom dev: true - /@devtools-ds/tree/1.2.0_knhnagtyfncgg2hpin7s37uixq: + /@devtools-ds/tree/1.2.0_2zx2umvpluuhvlq44va5bta2da: resolution: {integrity: sha512-hC4g4ocuo2eg7jsnzKdauxH0sDQiPW3KSM2+uK3kRgcmr9PzpBD5Kob+Y/WFSVKswFleftOGKL4BQLuRv0sPxA==} peerDependencies: react: '>= 16.8.6 || 18' dependencies: '@babel/runtime': 7.7.2 - '@devtools-ds/themes': 1.2.0_knhnagtyfncgg2hpin7s37uixq + '@devtools-ds/themes': 1.2.0_2zx2umvpluuhvlq44va5bta2da clsx: 1.1.0 react: 18.2.0 transitivePeerDependencies: @@ -3285,37 +2927,37 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/cli/2.13.11_nsi3j6ayd5yqrucye665qn4hse: - resolution: {integrity: sha512-PJF36a1i6M7Btj1kB4PWWzBUO3u2BJzsd/6KXxRmEugcxrbaCnbTDDktopy0CZYKdqaFbXaowwbRY8Tk8DV99Q==} + /@graphql-codegen/cli/2.13.12_kjbtv7ce7iv4kwcptkge5oq7pm: + resolution: {integrity: sha512-9pr39oseKQyQvm1tRFvW/2kt8c5JmT8u+5X6FZVBqWE18l1g4hB+XOeUNg/oEBdeDfiP7bvYjtQYOZaToXz9IQ==} hasBin: true peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: - '@babel/generator': 7.20.2 + '@babel/generator': 7.20.4 '@babel/template': 7.18.10 '@babel/types': 7.20.2 - '@graphql-codegen/core': 2.6.5_graphql@16.6.0 + '@graphql-codegen/core': 2.6.6_graphql@16.6.0 '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/apollo-engine-loader': 7.3.17_graphql@16.6.0 - '@graphql-tools/code-file-loader': 7.3.10_graphql@16.6.0 - '@graphql-tools/git-loader': 7.2.10_graphql@16.6.0 - '@graphql-tools/github-loader': 7.3.17_graphql@16.6.0 - '@graphql-tools/graphql-file-loader': 7.5.9_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.10_graphql@16.6.0 + '@graphql-tools/apollo-engine-loader': 7.3.19_graphql@16.6.0 + '@graphql-tools/code-file-loader': 7.3.12_graphql@16.6.0 + '@graphql-tools/git-loader': 7.2.12_graphql@16.6.0 + '@graphql-tools/github-loader': 7.3.19_graphql@16.6.0 + '@graphql-tools/graphql-file-loader': 7.5.11_graphql@16.6.0 + '@graphql-tools/json-file-loader': 7.4.12_graphql@16.6.0 '@graphql-tools/load': 7.8.0_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.30_hdfzlaxoqhmrmmanxrg2npeypa - '@graphql-tools/url-loader': 7.16.10_hdfzlaxoqhmrmmanxrg2npeypa + '@graphql-tools/prisma-loader': 7.2.39_hdfzlaxoqhmrmmanxrg2npeypa + '@graphql-tools/url-loader': 7.16.19_hdfzlaxoqhmrmmanxrg2npeypa '@graphql-tools/utils': 8.13.1_graphql@16.6.0 '@whatwg-node/fetch': 0.3.2 ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 - cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 4.1.1_33nptz4dsyeuavehbqt3phku5m + cosmiconfig: 7.1.0 + cosmiconfig-typescript-loader: 4.1.1_vj3f3ugxect2v22njqgy3g2gxq debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.6.0 - graphql-config: 4.3.6_nsi3j6ayd5yqrucye665qn4hse + graphql-config: 4.3.6_kjbtv7ce7iv4kwcptkge5oq7pm inquirer: 8.2.5 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -3341,14 +2983,14 @@ packages: - utf-8-validate dev: true - /@graphql-codegen/core/2.6.5_graphql@16.6.0: - resolution: {integrity: sha512-oSbM8vINFxcV1GUasJTDIemMpEG1t6NkBG8odQCt/3ZExCYmoviHhG9vJB89QqJeU5W06qQB6SJn/dg/gv5Aqg==} + /@graphql-codegen/core/2.6.6_graphql@16.6.0: + resolution: {integrity: sha512-gU2FUxoLGw2GfcPWfBVXuiN3aDODbZ6Z9I+IGxa2u1Rzxlacw4TMmcwr4/IjC6mkiYJEKTvdVspHaby+brhuAg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-tools/schema': 9.0.8_graphql@16.6.0 - '@graphql-tools/utils': 9.0.0_graphql@16.6.0 + '@graphql-tools/schema': 9.0.10_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 dev: true @@ -3423,13 +3065,13 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/typed-document-node/2.3.6_graphql@16.6.0: - resolution: {integrity: sha512-uJqBNj9z/5iIUgLwXsyWmnBaCzRtK+OiZsknTQmjzx/BzKTXK5lrbn06n4KK690wqkelpdZplTtww34ExmHG9Q==} + /@graphql-codegen/typed-document-node/2.3.7_graphql@16.6.0: + resolution: {integrity: sha512-9raCw2n2gGfdK4gFZaY/fbrUH/ADpZOhlNZ/l6iEzdEEGJbAIAIsovnt9LBnpJ+VCmUBfmjhpn1QQBEwyceVlw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 2.13.2_graphql@16.6.0 auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 16.6.0 @@ -3439,14 +3081,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-operations/2.5.6_graphql@16.6.0: - resolution: {integrity: sha512-7WqOsVMTUXf+tdt0jGOBuQINLYjPIGlcsnkzXQSPJ7rSGVj99VobVuwgmAeFmJctZ3lgwx3gjPZ0dyCIOBc2/A==} + /@graphql-codegen/typescript-operations/2.5.7_graphql@16.6.0: + resolution: {integrity: sha512-4TRyQy/GizcjkZsvN176C5O5bULyGB/lMXDWqg58A9AGf/P0n5n4QjgrMd2EG6tA3Xzg1tiBWhxYEFSmlPVETQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@graphql-codegen/typescript': 2.8.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0 + '@graphql-codegen/typescript': 2.8.2_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 2.13.2_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3472,14 +3114,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript/2.8.1_graphql@16.6.0: - resolution: {integrity: sha512-kweV1DOOH2blvMheVL55TT0s9bxkmF/zijN9mdk9pRD20i/rI/46qbh8fNKqy/PV12vZOmZGNL6tigdghG2bqg==} + /@graphql-codegen/typescript/2.8.2_graphql@16.6.0: + resolution: {integrity: sha512-FWyEcJTHSxkImNgDRfsg4yBMJ11qPA6sPJ7v8Kviv5MaOFybclVSZ8WWfp7D8Dc6ix4zWfMd4dIl9ZIL/AJu8A==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 '@graphql-codegen/schema-ast': 2.5.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0 + '@graphql-codegen/visitor-plugin-common': 2.13.2_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3530,26 +3172,47 @@ packages: - supports-color dev: true - /@graphql-tools/apollo-engine-loader/7.3.17_graphql@16.6.0: - resolution: {integrity: sha512-h8rSDQDjtSElYc1vWZPIx6ZWMozSFyIN9hfGSY8kHIESU9O0ShEzs1lzRhmMmaAO75e7GxNwAjrBv/OCrxpETg==} + /@graphql-codegen/visitor-plugin-common/2.13.2_graphql@16.6.0: + resolution: {integrity: sha512-qCZ4nfI1YjDuPz4lqGi0s4/5lOqHxdiQPFSwrXDENjHW+Z0oAiNYj6CFqob9ai2tLtXXKSUzMh/eeZDPmTrfhQ==} + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 + dependencies: + '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 + '@graphql-tools/optimize': 1.3.1_graphql@16.6.0 + '@graphql-tools/relay-operation-optimizer': 6.5.12_graphql@16.6.0 + '@graphql-tools/utils': 8.13.1_graphql@16.6.0 + auto-bind: 4.0.0 + change-case-all: 1.0.14 + dependency-graph: 0.11.0 + graphql: 16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 + parse-filepath: 1.0.2 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-tools/apollo-engine-loader/7.3.19_graphql@16.6.0: + resolution: {integrity: sha512-at5VaqSVGZDc3Fjr63vWhrKXTb5YdopCuvpRGeC9PALIWAMOLXNdkdPYiFe8crLAz60qhcpADqFoNFR+G2+NIg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.5.1 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@whatwg-node/fetch': 0.5.3 graphql: 16.6.0 tslib: 2.4.1 transitivePeerDependencies: - encoding dev: true - /@graphql-tools/batch-execute/8.5.10_graphql@16.6.0: - resolution: {integrity: sha512-f3b/UPvscQ4NaSmSQIeZPNFhpZ9xb3AftKKSn9NzsUp3vxz0d8tymBVn28f51oqiqN9BMDpCH9P8TZrKpH1//Q==} + /@graphql-tools/batch-execute/8.5.12_graphql@16.6.0: + resolution: {integrity: sha512-eNdN5CirW3ILoBaVyy4GI6JpLoJELeH0A7+uLRjwZuMFxpe4cljSrY8P+id28m43+uvBzB3rvNTv0+mnRjrMRw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 dataloader: 2.1.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3580,13 +3243,13 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/code-file-loader/7.3.10_graphql@16.6.0: - resolution: {integrity: sha512-UbEbuzhL01CvNhlesWMAo2ffRoyPRffTDlnUnkyvb6RuJkZhgY5A0k1RJYjt1uJQOkzPQLkkVKdSYqhHRkoH7g==} + /@graphql-tools/code-file-loader/7.3.12_graphql@16.6.0: + resolution: {integrity: sha512-XflxElA2FNPDgicUZr4UF6NVlvPHFOKd1u8KAb/nHSlUT70qcvIPFfRASSuEvLMGYuW/lrFZfgi2z0BV6P5Vqw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.3.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 globby: 11.1.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3595,15 +3258,15 @@ packages: - supports-color dev: true - /@graphql-tools/delegate/9.0.14_graphql@16.6.0: - resolution: {integrity: sha512-yKwNQl10fOdKxSk5yBoKnSjq1oumf4QYVinV9niD9KVow6j0dONtaiAYvhzaQwN/Xwwi7oADFACmKRtphlhFTw==} + /@graphql-tools/delegate/9.0.17_graphql@16.6.0: + resolution: {integrity: sha512-y7h5H+hOhQWEkG67A4wurlphHMYJuMlQIEY7wZPVpmViuV6TuSPB7qkLITsM99XiNQhX+v1VayN2cuaP/8nIhw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/batch-execute': 8.5.10_graphql@16.6.0 - '@graphql-tools/executor': 0.0.6_graphql@16.6.0 - '@graphql-tools/schema': 9.0.8_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/batch-execute': 8.5.12_graphql@16.6.0 + '@graphql-tools/executor': 0.0.9_graphql@16.6.0 + '@graphql-tools/schema': 9.0.10_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 dataloader: 2.1.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3640,6 +3303,59 @@ packages: value-or-promise: 1.0.11 dev: true + /@graphql-tools/executor-graphql-ws/0.0.3_graphql@16.6.0: + resolution: {integrity: sha512-8VATDf82lTaYRE4/BrFm8v6Cz6UHoNTlSkQjPcGtDX4nxbBUYLDfN+Z8ZXl0eZc3tCwsIHkYQunJO0OjmcrP5Q==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@repeaterjs/repeater': 3.0.4 + '@types/ws': 8.5.3 + graphql: 16.6.0 + graphql-ws: 5.11.2_graphql@16.6.0 + isomorphic-ws: 5.0.0_ws@8.11.0 + tslib: 2.4.1 + ws: 8.11.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: true + + /@graphql-tools/executor-http/0.0.3_hdfzlaxoqhmrmmanxrg2npeypa: + resolution: {integrity: sha512-dtZzdcoc7tnctSGCQhcbOQPnVidn4DakgkyrBAWf0O3GTP9NFKlA+T9+I1N4gPHupQOZdJ1gmNXfnJZyswzCkA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@repeaterjs/repeater': 3.0.4 + '@whatwg-node/fetch': 0.5.1 + dset: 3.1.2 + extract-files: 11.0.0 + graphql: 16.6.0 + meros: 1.2.1_@types+node@16.11.45 + tslib: 2.4.1 + value-or-promise: 1.0.11 + transitivePeerDependencies: + - '@types/node' + - encoding + dev: true + + /@graphql-tools/executor-legacy-ws/0.0.3_graphql@16.6.0: + resolution: {integrity: sha512-ulQ3IsxQ9VRA2S+afJefFpMZHedoUDRd8ylz+9DjqAoykYz6CDD2s3pi6Fud52VCq3DP79dRM7a6hjWgt+YPWw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@types/ws': 8.5.3 + graphql: 16.6.0 + isomorphic-ws: 5.0.0_ws@8.11.0 + tslib: 2.4.1 + ws: 8.11.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: true + /@graphql-tools/executor/0.0.1_graphql@15.4.0: resolution: {integrity: sha512-+li0brhr6NdViS/pyaDCRTUKf9/lCgaNcfrE4p1yjubwKFoqc5dhwiB3kQ0lOIso2ipAKk08kJ4sBLqJz3osWg==} peerDependencies: @@ -3660,12 +3376,12 @@ packages: graphql: 16.6.0 dev: true - /@graphql-tools/executor/0.0.6_graphql@16.6.0: - resolution: {integrity: sha512-2KIj1grRb1Lni97xgX1ryekcjU/WTMC1ZdPpnd0nYrBWs/C4Nv4UMNP7E/Tr8za8zlrsESvEUbpLHsBRiQsGxA==} + /@graphql-tools/executor/0.0.9_graphql@16.6.0: + resolution: {integrity: sha512-qLhQWXTxTS6gbL9INAQa4FJIqTd2tccnbs4HswOx35KnyLaLtREuQ8uTfU+5qMrRIBhuzpGdkP2ssqxLyOJ5rA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 @@ -3673,13 +3389,13 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/git-loader/7.2.10_graphql@16.6.0: - resolution: {integrity: sha512-y27w+7I5LmOXzz4EI3XHR+ZM2rZJquHnPAiEXLIt5Nh+9Z0frqtb4AJma3gAeRKROcKg5VN/Bx/ehp68S48lHw==} + /@graphql-tools/git-loader/7.2.12_graphql@16.6.0: + resolution: {integrity: sha512-9YnkOikUTPMMlFw2F8Uvd1lPzbciwVo3E5WRsAN4bLeGnVcDAuf0QxElvpcAEhD5ctQR/VKlhuzm/5DyzgTBww==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.3.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 graphql: 16.6.0 is-glob: 4.0.3 micromatch: 4.0.5 @@ -3689,20 +3405,33 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader/7.3.17_graphql@16.6.0: - resolution: {integrity: sha512-JstgZUnifz2lQAk/mw7gq1uPSr5bG+7nw3IXZmUKOU+8zBjmFugRVWxLtJ1/bxZzqnhmYlC7nBqt1Ej1Tn5qKA==} + /@graphql-tools/github-loader/7.3.19_graphql@16.6.0: + resolution: {integrity: sha512-/IAe1zmtMFaxx2fiEWXXsExWn5akjjhBn06mfcewo1o27E+Pkg1E0H8QHwsmSN7wqXNUzph7V/C9jlA8kO3pvg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/graphql-tag-pluck': 7.3.10_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.5.1 + '@graphql-tools/graphql-tag-pluck': 7.3.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@whatwg-node/fetch': 0.5.3 + graphql: 16.6.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-tools/graphql-file-loader/7.5.11_graphql@16.6.0: + resolution: {integrity: sha512-E4/YYLlM/T/VDYJ3MfQzJSkCpnHck+xMv2R6QTjO3khUeTCWJY4qsLDPFjAWE0+Mbe9NanXi/yL8Bz0yS/usDw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + '@graphql-tools/import': 6.7.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + globby: 11.1.0 graphql: 16.6.0 tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color + unixify: 1.0.0 dev: true /@graphql-tools/graphql-file-loader/7.5.6_graphql@15.4.0: @@ -3731,40 +3460,27 @@ packages: unixify: 1.0.0 dev: true - /@graphql-tools/graphql-file-loader/7.5.9_graphql@16.6.0: - resolution: {integrity: sha512-hEvWFLOG8JGsguWWdHqaFvj0xqwQu4KhqAKEjmIBq4vipVKLcmcjvOM56S0fv/dtn5pcKp9ZOZAxgncYVJ1hzw==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 - dependencies: - '@graphql-tools/import': 6.7.10_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 - globby: 11.1.0 - graphql: 16.6.0 - tslib: 2.4.1 - unixify: 1.0.0 - dev: true - - /@graphql-tools/graphql-tag-pluck/7.3.10_graphql@16.6.0: - resolution: {integrity: sha512-A3FHMbi90NHWTIzrwnbI0kHwCWfSL8j7zXuuIZKL009V+M8K0DPg/+ZCy/4SQB14yl/NTz5ZQ/0GXffD3qvMDg==} + /@graphql-tools/graphql-tag-pluck/7.3.12_graphql@16.6.0: + resolution: {integrity: sha512-B92+Q6xPgAKj4z+06vVWdx/7KPlh6vHgIkCg+9hJ2duYBUyEGn39YNdjjWvsGgl3N2G5/BOVFJRmdgLG1k79Xg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@babel/parser': 7.20.2 + '@babel/parser': 7.20.3 '@babel/traverse': 7.20.1 '@babel/types': 7.20.2 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/import/6.7.10_graphql@16.6.0: - resolution: {integrity: sha512-6L19Ep0pP5wWywq9/jwCt2FdCJnEnyrxkmRkSRdYoTEmOFz5xrsfhyUfWl8ibx34gWzVYhCDOX1bN43zsLCbDA==} + /@graphql-tools/import/6.7.12_graphql@16.6.0: + resolution: {integrity: sha512-3+IV3RHqnpQz0o+0Liw3jkr0HL8LppvsFROKdfXihbnCGO7cIq4S9QYdczZ2DAJ7AosyzSu8m36X5dEmOYY6WA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 graphql: 16.6.0 resolve-from: 5.0.0 tslib: 2.4.1 @@ -3792,12 +3508,12 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/json-file-loader/7.4.10_graphql@16.6.0: - resolution: {integrity: sha512-/njUvIW/zdSr70eWDfDQNDXp2UQLe+YKFRLMZkpuISrw5cdvGaMepwpr0Yz6kFnHGwB6wSYLH25LkRAzpiKz+g==} + /@graphql-tools/json-file-loader/7.4.12_graphql@16.6.0: + resolution: {integrity: sha512-KuOBJg9ZVrgDsYUaolSXJI90HpwkNiPJviWSc5aqNYSkE+C9DwelBOaKBVQNk1ecEnktqx6Nd+KVsF3m+dupRQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 globby: 11.1.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3872,12 +3588,12 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/merge/8.3.10_graphql@16.6.0: - resolution: {integrity: sha512-/hSg69JwqEA+t01wQmMGKPuaJ9VJBSz6uAXhbNNrTBJu8bmXljw305NVXM49pCwDKFVUGtbTqYrBeLcfT3RoYw==} + /@graphql-tools/merge/8.3.12_graphql@16.6.0: + resolution: {integrity: sha512-BFL8r4+FrqecPnIW0H8UJCBRQ4Y8Ep60aujw9c/sQuFmQTiqgWgpphswMGfaosP2zUinDE3ojU5wwcS2IJnumA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 dev: true @@ -3940,13 +3656,13 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/prisma-loader/7.2.30_hdfzlaxoqhmrmmanxrg2npeypa: - resolution: {integrity: sha512-EmYC6ltX2TxOKPgiqdVZctm3uyXdwo53GBwWNyOTIx+8hczrF9LO59LGwNtuy+GsT5A1ZK93og7F+8zztkCFIw==} + /@graphql-tools/prisma-loader/7.2.39_hdfzlaxoqhmrmmanxrg2npeypa: + resolution: {integrity: sha512-WcLOFFDmLjxcE3Lp0qdX7vD0KkJqAh3af1sVQnpFQLptWLoRHru44AbhECGs3XigICMBKrHO9MV+qtg7FAzhvA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: - '@graphql-tools/url-loader': 7.16.10_hdfzlaxoqhmrmmanxrg2npeypa - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 + '@graphql-tools/url-loader': 7.16.19_hdfzlaxoqhmrmmanxrg2npeypa + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.34 '@types/jsonwebtoken': 8.5.9 @@ -3959,7 +3675,7 @@ packages: https-proxy-agent: 5.0.1 isomorphic-fetch: 3.0.0 js-yaml: 4.1.0 - json-stable-stringify: 1.0.1 + json-stable-stringify: 1.0.2 jsonwebtoken: 8.5.1 lodash: 4.17.21 scuid: 1.1.0 @@ -4001,6 +3717,32 @@ packages: - supports-color dev: true + /@graphql-tools/relay-operation-optimizer/6.5.12_graphql@16.6.0: + resolution: {integrity: sha512-jwcgNK1S8fqDI612uhbZSZTmQ0aJrLjtOSEcelwZ6Ec7o29I3NlOMBGnjvnBr4Y2tUFWZhBKfx0aEn6EJlhiGA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + '@ardatan/relay-compiler': 12.0.0_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@graphql-tools/schema/9.0.10_graphql@16.6.0: + resolution: {integrity: sha512-lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + '@graphql-tools/merge': 8.3.12_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + graphql: 16.6.0 + tslib: 2.4.1 + value-or-promise: 1.0.11 + dev: true + /@graphql-tools/schema/9.0.4_graphql@15.4.0: resolution: {integrity: sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==} peerDependencies: @@ -4049,38 +3791,25 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/schema/9.0.8_graphql@16.6.0: - resolution: {integrity: sha512-PnES7sNkhQ/FdPQhP7cup0OIzwzQh+nfjklilU7YJzE209ACIyEQtxoNCfvPW5eV6hc9bWsBQeI3Jm4mMtwxNA==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 - dependencies: - '@graphql-tools/merge': 8.3.10_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.4.1 - value-or-promise: 1.0.11 - dev: true - - /@graphql-tools/url-loader/7.16.10_hdfzlaxoqhmrmmanxrg2npeypa: - resolution: {integrity: sha512-VFf0lKZpPSFtUl3cNycBEWlB8NzJhXFfas0PYsFmzzOmtGcHeY3rY2KMUfBr4wq7chPfBbGpcuAwjiI3x9MZzg==} + /@graphql-tools/url-loader/7.16.19_hdfzlaxoqhmrmmanxrg2npeypa: + resolution: {integrity: sha512-vFHstaANoojDCXUb/a25mTubteTUV8b7XVLHbbSvAQvwGUne6d+Upg5MeGrKBeHl2Wpn240cJnaa4A1mrwivWA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 9.0.14_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 - '@graphql-tools/wrap': 9.2.9_graphql@16.6.0 + '@graphql-tools/delegate': 9.0.17_graphql@16.6.0 + '@graphql-tools/executor-graphql-ws': 0.0.3_graphql@16.6.0 + '@graphql-tools/executor-http': 0.0.3_hdfzlaxoqhmrmmanxrg2npeypa + '@graphql-tools/executor-legacy-ws': 0.0.3_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-tools/wrap': 9.2.16_graphql@16.6.0 '@types/ws': 8.5.3 - '@whatwg-node/fetch': 0.5.1 - dset: 3.1.2 - extract-files: 11.0.0 + '@whatwg-node/fetch': 0.5.3 graphql: 16.6.0 - graphql-ws: 5.11.2_graphql@16.6.0 - isomorphic-ws: 5.0.0_ws@8.10.0 - meros: 1.2.1_@types+node@16.11.45 + isomorphic-ws: 5.0.0_ws@8.11.0 tslib: 2.4.1 value-or-promise: 1.0.11 - ws: 8.10.0 + ws: 8.11.0 transitivePeerDependencies: - '@types/node' - bufferutil @@ -4205,8 +3934,8 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/utils/9.0.0_graphql@16.6.0: - resolution: {integrity: sha512-kaCwyWnURxMsYbxzkfylLqFFelu83jKk3BJOOy0GIuxEtgXVS9v7Y/tojljo69Q+jaZ2YxAi3+d8IpM+hx768A==} + /@graphql-tools/utils/9.0.1_graphql@16.6.0: + resolution: {integrity: sha512-z6FimVa5E44bHKmqK0/uMp9hHvHo2Tkt9A5rlLb40ReD/8IFKehSXLzM4b2N1vcP7mSsbXIdDK9Aoc8jT/he1Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: @@ -4214,13 +3943,26 @@ packages: tslib: 2.4.1 dev: true - /@graphql-tools/utils/9.0.1_graphql@16.6.0: - resolution: {integrity: sha512-z6FimVa5E44bHKmqK0/uMp9hHvHo2Tkt9A5rlLb40ReD/8IFKehSXLzM4b2N1vcP7mSsbXIdDK9Aoc8jT/he1Q==} + /@graphql-tools/utils/9.1.1_graphql@16.6.0: + resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 + dependencies: + graphql: 16.6.0 + tslib: 2.4.1 + dev: true + + /@graphql-tools/wrap/9.2.16_graphql@16.6.0: + resolution: {integrity: sha512-fWTvGytllPq0IVrRcEAc6VuVUInfCEpOUhSAo1ocsSe0HZMoyrQkS1ST0jmCpEWeGWuUd/S2zBLS2yjH8fYfhA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 dependencies: + '@graphql-tools/delegate': 9.0.17_graphql@16.6.0 + '@graphql-tools/schema': 9.0.10_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 + value-or-promise: 1.0.11 dev: true /@graphql-tools/wrap/9.2.4_graphql@15.4.0: @@ -4249,19 +3991,6 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/wrap/9.2.9_graphql@16.6.0: - resolution: {integrity: sha512-GiEMy7VJIKxdgb9E8ZkaAPhePsDbBP5rOj07tr6jzcDY+ZhLcjmD9UuiPGVFgBSu6AzRyoviEJgI0hjksqfl1A==} - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 16 - dependencies: - '@graphql-tools/delegate': 9.0.14_graphql@16.6.0 - '@graphql-tools/schema': 9.0.8_graphql@16.6.0 - '@graphql-tools/utils': 9.0.1_graphql@16.6.0 - graphql: 16.6.0 - tslib: 2.4.1 - value-or-promise: 1.0.11 - dev: true - /@graphql-typed-document-node/core/3.1.1_graphql@15.4.0: resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} peerDependencies: @@ -4348,20 +4077,20 @@ packages: engines: {node: '>=8'} dev: true - /@jest/console/29.2.1: - resolution: {integrity: sha512-MF8Adcw+WPLZGBiNxn76DOuczG3BhODTcMlDCA4+cFi41OkaY/lyI0XUUhi73F88Y+7IHoGmD80pN5CtxQUdSw==} + /@jest/console/29.3.1: + resolution: {integrity: sha512-IRE6GD47KwcqA09RIWrabKdHPiKDGgtAL31xDxbi/RjQMsr+lY+ppxmHwY0dUEV3qvvxZzoe5Hl0RXZJOjQNUg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.2.1 - '@types/node': 18.11.5 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 chalk: 4.1.2 - jest-message-util: 29.2.1 - jest-util: 29.2.1 + jest-message-util: 29.3.1 + jest-util: 29.3.1 slash: 3.0.0 dev: true - /@jest/core/29.2.2: - resolution: {integrity: sha512-susVl8o2KYLcZhhkvSB+b7xX575CX3TmSvxfeDjpRko7KmT89rHkXj6XkDkNpSeFMBzIENw5qIchO9HC9Sem+A==} + /@jest/core/29.3.1: + resolution: {integrity: sha512-0ohVjjRex985w5MmO5L3u5GR1O30DexhBSpuwx2P+9ftyqHdJXnk7IUWiP80oHMvt7ubHCJHxV0a0vlKVuZirw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -4369,32 +4098,32 @@ packages: node-notifier: optional: true dependencies: - '@jest/console': 29.2.1 - '@jest/reporters': 29.2.2 - '@jest/test-result': 29.2.1 - '@jest/transform': 29.2.2 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 + '@jest/console': 29.3.1 + '@jest/reporters': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.5.0 + ci-info: 3.6.1 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.2.0 - jest-config: 29.2.2_@types+node@18.11.5 - jest-haste-map: 29.2.1 - jest-message-util: 29.2.1 + jest-config: 29.3.1_@types+node@16.11.45 + jest-haste-map: 29.3.1 + jest-message-util: 29.3.1 jest-regex-util: 29.2.0 - jest-resolve: 29.2.2 - jest-resolve-dependencies: 29.2.2 - jest-runner: 29.2.2 - jest-runtime: 29.2.2 - jest-snapshot: 29.2.2 - jest-util: 29.2.1 - jest-validate: 29.2.2 - jest-watcher: 29.2.2 + jest-resolve: 29.3.1 + jest-resolve-dependencies: 29.3.1 + jest-runner: 29.3.1 + jest-runtime: 29.3.1 + jest-snapshot: 29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 + jest-watcher: 29.3.1 micromatch: 4.0.5 - pretty-format: 29.2.1 + pretty-format: 29.3.1 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: @@ -4402,21 +4131,14 @@ packages: - ts-node dev: true - /@jest/environment/29.2.2: - resolution: {integrity: sha512-OWn+Vhu0I1yxuGBJEFFekMYc8aGBGrY4rt47SOh/IFaI+D7ZHCk7pKRiSoZ2/Ml7b0Ony3ydmEHRx/tEOC7H1A==} + /@jest/environment/29.3.1: + resolution: {integrity: sha512-pMmvfOPmoa1c1QpfFW0nXYtNLpofqo4BrCIk6f2kW4JFeNlHV2t3vd+3iDLf31e2ot2Mec0uqZfmI+U0K2CFag==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 29.2.2 - '@jest/types': 29.2.1 + '@jest/fake-timers': 29.3.1 + '@jest/types': 29.3.1 '@types/node': 18.11.5 - jest-mock: 29.2.2 - dev: true - - /@jest/expect-utils/29.2.2: - resolution: {integrity: sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.2.0 + jest-mock: 29.3.1 dev: true /@jest/expect-utils/29.3.1: @@ -4426,42 +4148,42 @@ packages: jest-get-type: 29.2.0 dev: true - /@jest/expect/29.2.2: - resolution: {integrity: sha512-zwblIZnrIVt8z/SiEeJ7Q9wKKuB+/GS4yZe9zw7gMqfGf4C5hBLGrVyxu1SzDbVSqyMSlprKl3WL1r80cBNkgg==} + /@jest/expect/29.3.1: + resolution: {integrity: sha512-QivM7GlSHSsIAWzgfyP8dgeExPRZ9BIe2LsdPyEhCGkZkoyA+kGsoIzbKAfZCvvRzfZioKwPtCZIt5SaoxYCvg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - expect: 29.2.2 - jest-snapshot: 29.2.2 + expect: 29.3.1 + jest-snapshot: 29.3.1 transitivePeerDependencies: - supports-color dev: true - /@jest/fake-timers/29.2.2: - resolution: {integrity: sha512-nqaW3y2aSyZDl7zQ7t1XogsxeavNpH6kkdq+EpXncIDvAkjvFD7hmhcIs1nWloengEWUoWqkqSA6MSbf9w6DgA==} + /@jest/fake-timers/29.3.1: + resolution: {integrity: sha512-iHTL/XpnDlFki9Tq0Q1GGuVeQ8BHZGIYsvCO5eN/O/oJaRzofG9Xndd9HuSDBI/0ZS79pg0iwn07OMTQ7ngF2A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.2.1 + '@jest/types': 29.3.1 '@sinonjs/fake-timers': 9.1.2 '@types/node': 18.11.5 - jest-message-util: 29.2.1 - jest-mock: 29.2.2 - jest-util: 29.2.1 + jest-message-util: 29.3.1 + jest-mock: 29.3.1 + jest-util: 29.3.1 dev: true - /@jest/globals/29.2.2: - resolution: {integrity: sha512-/nt+5YMh65kYcfBhj38B3Hm0Trk4IsuMXNDGKE/swp36yydBWfz3OXkLqkSvoAtPW8IJMSJDFCbTM2oj5SNprw==} + /@jest/globals/29.3.1: + resolution: {integrity: sha512-cTicd134vOcwO59OPaB6AmdHQMCtWOe+/DitpTZVxWgMJ+YvXL1HNAmPyiGbSHmF/mXVBkvlm8YYtQhyHPnV6Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.2.2 - '@jest/expect': 29.2.2 - '@jest/types': 29.2.1 - jest-mock: 29.2.2 + '@jest/environment': 29.3.1 + '@jest/expect': 29.3.1 + '@jest/types': 29.3.1 + jest-mock: 29.3.1 transitivePeerDependencies: - supports-color dev: true - /@jest/reporters/29.2.2: - resolution: {integrity: sha512-AzjL2rl2zJC0njIzcooBvjA4sJjvdoq98sDuuNs4aNugtLPSQ+91nysGKRF0uY1to5k0MdGMdOBggUsPqvBcpA==} + /@jest/reporters/29.3.1: + resolution: {integrity: sha512-GhBu3YFuDrcAYW/UESz1JphEAbvUjaY2vShRZRoRY1mxpCMB3yGSJ4j9n0GxVlEOdCf7qjvUfBCrTUUqhVfbRA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -4470,12 +4192,12 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.2.1 - '@jest/test-result': 29.2.1 - '@jest/transform': 29.2.2 - '@jest/types': 29.2.1 + '@jest/console': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 18.11.5 + '@types/node': 16.11.45 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -4486,9 +4208,9 @@ packages: istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 - jest-message-util: 29.2.1 - jest-util: 29.2.1 - jest-worker: 29.2.1 + jest-message-util: 29.3.1 + jest-util: 29.3.1 + jest-worker: 29.3.1 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 @@ -4513,23 +4235,23 @@ packages: graceful-fs: 4.2.10 dev: true - /@jest/test-result/29.2.1: - resolution: {integrity: sha512-lS4+H+VkhbX6z64tZP7PAUwPqhwj3kbuEHcaLuaBuB+riyaX7oa1txe0tXgrFj5hRWvZKvqO7LZDlNWeJ7VTPA==} + /@jest/test-result/29.3.1: + resolution: {integrity: sha512-qeLa6qc0ddB0kuOZyZIhfN5q0e2htngokyTWsGriedsDhItisW7SDYZ7ceOe57Ii03sL988/03wAcBh3TChMGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.2.1 - '@jest/types': 29.2.1 + '@jest/console': 29.3.1 + '@jest/types': 29.3.1 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/29.2.2: - resolution: {integrity: sha512-Cuc1znc1pl4v9REgmmLf0jBd3Y65UXJpioGYtMr/JNpQEIGEzkmHhy6W6DLbSsXeUA13TDzymPv0ZGZ9jH3eIw==} + /@jest/test-sequencer/29.3.1: + resolution: {integrity: sha512-IqYvLbieTv20ArgKoAMyhLHNrVHJfzO6ARZAbQRlY4UGWfdDnLlZEF0BvKOMd77uIiIjSZRwq3Jb3Fa3I8+2UA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.2.1 + '@jest/test-result': 29.3.1 graceful-fs: 4.2.10 - jest-haste-map: 29.2.1 + jest-haste-map: 29.3.1 slash: 3.0.0 dev: true @@ -4537,7 +4259,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -4556,21 +4278,21 @@ packages: - supports-color dev: true - /@jest/transform/29.2.2: - resolution: {integrity: sha512-aPe6rrletyuEIt2axxgdtxljmzH8O/nrov4byy6pDw9S8inIrTV+2PnjyP/oFHMSynzGxJ2s6OHowBNMXp/Jzg==} + /@jest/transform/29.3.1: + resolution: {integrity: sha512-8wmCFBTVGYqFNLWfcOWoVuMuKYPUBTnTMDkdvFtAYELwDOl9RGwOsvQWGPFxDJ8AWY9xM/8xCXdqmPK3+Q5Lug==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.18.13 - '@jest/types': 29.2.1 + '@babel/core': 7.20.2 + '@jest/types': 29.3.1 '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.9.0 + convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 29.2.1 + jest-haste-map: 29.3.1 jest-regex-util: 29.2.0 - jest-util: 29.2.1 + jest-util: 29.3.1 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 @@ -4601,18 +4323,6 @@ packages: chalk: 4.1.2 dev: true - /@jest/types/29.2.1: - resolution: {integrity: sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.0.0 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.5 - '@types/yargs': 17.0.13 - chalk: 4.1.2 - dev: true - /@jest/types/29.3.1: resolution: {integrity: sha512-d0S0jmmTpjnhCmNpApgX3jrUZgZ22ivKJRvL2lli5hpCRoNnp1f85r2/wpKfXuYu8E7Jjh1hGfhPyup1NM5AmA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4620,7 +4330,7 @@ packages: '@jest/schemas': 29.0.0 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.5 + '@types/node': 16.11.45 '@types/yargs': 17.0.13 chalk: 4.1.2 dev: true @@ -4668,7 +4378,6 @@ packages: dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - dev: true /@jridgewell/trace-mapping/0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} @@ -4700,7 +4409,7 @@ packages: hasBin: true dependencies: '@maizzle/cli': 1.5.1 - autoprefixer: 10.4.13_postcss@8.4.18 + autoprefixer: 10.4.13_postcss@8.4.19 browser-sync: 2.27.10 color-shorthand-hex-to-six-digit: 3.1.0 email-comb: 5.2.1 @@ -4712,9 +4421,9 @@ packages: juice: 8.1.0 lodash: 4.17.21 ora: 5.4.1 - postcss: 8.4.18 - postcss-import: 15.0.0_postcss@8.4.18 - postcss-merge-longhand: 5.1.7_postcss@8.4.18 + postcss: 8.4.19 + postcss-import: 15.0.0_postcss@8.4.19 + postcss-merge-longhand: 5.1.7_postcss@8.4.19 posthtml: 0.16.6 posthtml-attrs-parser: 0.1.1 posthtml-base-url: 1.1.0 @@ -4734,7 +4443,7 @@ packages: query-string: 7.1.1 string-remove-widows: 2.1.0 string-strip-html: 8.3.0 - tailwindcss: 3.2.4_postcss@8.4.18 + tailwindcss: 3.2.4_postcss@8.4.19 transitivePeerDependencies: - bufferutil - debug @@ -4881,122 +4590,122 @@ packages: - supports-color dev: true - /@next/bundle-analyzer/13.0.3: - resolution: {integrity: sha512-GPZqpXJImCq1LvKX6+pE+V5W5llBNFk/X1G2+qJh5tvLSy1teBzXz90W4yI1BX7ruc7lYufJouky0V3CnqKyLg==} + /@next/bundle-analyzer/13.0.4: + resolution: {integrity: sha512-GFbr0HX75Fv/S+R7NOXOUX7YBtg+snE3a/4ikEfouXVHzPakluIQL8ojYJTcR5Q6mBospGaldT19AdfuqRmPqQ==} dependencies: - webpack-bundle-analyzer: 4.3.0 + webpack-bundle-analyzer: 4.7.0 transitivePeerDependencies: - bufferutil - utf-8-validate dev: true - /@next/env/13.0.3: - resolution: {integrity: sha512-/4WzeG61Ot/PxsghXkSqQJ6UohFfwXoZ3dtsypmR9EBP+OIax9JRq0trq8Z/LCT9Aq4JbihVkaazRWguORjTAw==} + /@next/env/13.0.4: + resolution: {integrity: sha512-N5Z3bdxBzoxrC5bwykDFITzdWuwDteOdZ+7nxixY+I1XpRX8/iQYbw2wuXMdqdfBGm2NNUpAqg8YF2e4oAC2UQ==} - /@next/eslint-plugin-next/13.0.3: - resolution: {integrity: sha512-slmTAHNKDyc7jhx4VF8lFbmOPWJ3PShtUUWpb6x9+ga59CyOxgP6AdcDhxfapnWYACKe/TwYiaveufu7LqXgZg==} + /@next/eslint-plugin-next/13.0.4: + resolution: {integrity: sha512-jZ4urKT+aO9QHm3ttihrIQscQISDSKK8isAom750+EySn9o3LCSkTdPGBtvBqY7Yku+NqhfQempR5J58DqTaVg==} dependencies: glob: 7.1.7 dev: false - /@next/swc-android-arm-eabi/13.0.3: - resolution: {integrity: sha512-uxfUoj65CdFc1gX2q7GtBX3DhKv9Kn343LMqGNvXyuTpYTGMmIiVY7b9yF8oLWRV0gVKqhZBZifUmoPE8SJU6Q==} + /@next/swc-android-arm-eabi/13.0.4: + resolution: {integrity: sha512-SD9H+/zuV3L0oHIhsDdFkDqFtg6pIHtqRUPlsrNdOsmWXgMlSzxBmwt2ta4kyrazS62BQu7XRUG++ZyODS7AWg==} engines: {node: '>= 10'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@next/swc-android-arm64/13.0.3: - resolution: {integrity: sha512-t2k+WDfg7Cq2z/EnalKGsd/9E5F4Hdo1xu+UzZXYDpKUI9zgE6Bz8ajQb8m8txv3qOaWdKuDa5j5ziq9Acd1Xw==} + /@next/swc-android-arm64/13.0.4: + resolution: {integrity: sha512-F8W5WcBbdn/zBoy32/mQiefs9DNsT12CTSSVCsO8GvQR7GjJU+uduQ4drKcSDoDLuAFULc2jDN06Circq4vuQg==} engines: {node: '>= 10'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@next/swc-darwin-arm64/13.0.3: - resolution: {integrity: sha512-wV6j6SZ1bc/YHOLCLk9JVqaZTCCey6HBV7inl2DriHsHqIcO6F3+QiYf0KXwRP9BE0GSZZrYd5mZQm2JPTHdJA==} + /@next/swc-darwin-arm64/13.0.4: + resolution: {integrity: sha512-/lajev+9GSie+rRTl5z8skW9RJwZ+TwMKLzzM24TbDk8lUjqPTyJZ/cU0NDj8J7VQAZ6EehACSh9rcJeBRtLuA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@next/swc-darwin-x64/13.0.3: - resolution: {integrity: sha512-jaI2CMuYWvUtRixV3AIjUhnxUDU1FKOR+8hADMhYt3Yz+pCKuj4RZ0n0nY5qUf3qT1AtvnJXEgyatSFJhSp/wQ==} + /@next/swc-darwin-x64/13.0.4: + resolution: {integrity: sha512-HK4b2rFiju8d40GTL/jH9U6OQ7BYA2MeEHs7Dm7Rp7kwQtLzP3z6osdQS8er20tIFHDE4b+oVBy03ZUQkHf0Pg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@next/swc-freebsd-x64/13.0.3: - resolution: {integrity: sha512-nbyT0toBTJrcj5TCB9pVnQpGJ3utGyQj4CWegZs1ulaeUQ5Z7CS/qt8nRyYyOKYHtOdSCJ9Nw5F/RgKNkdpOdw==} + /@next/swc-freebsd-x64/13.0.4: + resolution: {integrity: sha512-xBvIGLaGzZtgJfRRJ2DBN82DQCJ/O7jkXyBp8X/vHefPWyVXVqF6C68Rv8ADp11thPpf8WpjkvDDLb9AuWHQUA==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@next/swc-linux-arm-gnueabihf/13.0.3: - resolution: {integrity: sha512-1naLxYvRUQCoFCU1nMkcQueRc0Iux9xBv1L5pzH2ejtIWFg8BrSgyuluJG4nyAhFCx4WG863IEIkAaefOowVdA==} + /@next/swc-linux-arm-gnueabihf/13.0.4: + resolution: {integrity: sha512-s13pxNp9deKmmxEGTp1MoL1e4nf4wbEymEaHgFxUlhoR1OD9tK8oTNrQphQePJgVjzcWmRGH/dX7O9mVkHbU/g==} engines: {node: '>= 10'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-gnu/13.0.3: - resolution: {integrity: sha512-3Z4A8JkuGWpMVbUhUPQInK/SLY+kijTT78Q/NZCrhLlyvwrVxaQALJNlXzxDLraUgv4oVH0Wz/FIw1W9PUUhxA==} + /@next/swc-linux-arm64-gnu/13.0.4: + resolution: {integrity: sha512-Lklo65usNzoYwjX51CpDKOepWVZBdwO49/Jz3djxiYUr2lRtpDVnlfwCvzN+47j3BMVMWtC2ndIi8Q4s3J0v4g==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-musl/13.0.3: - resolution: {integrity: sha512-MoYe9SM40UaunTjC+01c9OILLH3uSoeri58kDMu3KF/EFEvn1LZ6ODeDj+SLGlAc95wn46hrRJS2BPmDDE+jFQ==} + /@next/swc-linux-arm64-musl/13.0.4: + resolution: {integrity: sha512-+3BXtXBwjVhd5lahDe5nKZ7EwD6hE/oLFQkITCvgxymU5qYHGlLFyF52/lyw8qhyxoCr7mMVsUFhlCzVwCfNjg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-gnu/13.0.3: - resolution: {integrity: sha512-z22T5WGnRanjLMXdF0NaNjSpBlEzzY43t5Ysp3nW1oI6gOkub6WdQNZeHIY7A2JwkgSWZmtjLtf+Fzzz38LHeQ==} + /@next/swc-linux-x64-gnu/13.0.4: + resolution: {integrity: sha512-QB8qoZrvHhZsz62nUrTKlp5IiZ8I7KZsaa6437H/W/NOZHLGJjCxROnhUjLvKVe/T5P86pjya2SUOUqWAjz4Pg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-musl/13.0.3: - resolution: {integrity: sha512-ZOMT7zjBFmkusAtr47k8xs/oTLsNlTH6xvYb+iux7yly2hZGwhfBLzPGBsbeMZukZ96IphJTagT+C033s6LNVA==} + /@next/swc-linux-x64-musl/13.0.4: + resolution: {integrity: sha512-WaahF6DYUQRg1QqIMcuOu2ZsFhS3aC5iWeQyeptMHklP9wb4FfTNmBArKHknX/GXD8P9gI38WTAHJ25cc0zVwg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-win32-arm64-msvc/13.0.3: - resolution: {integrity: sha512-Q4BM16Djl+Oah9UdGrvjFYgoftYB2jNd+rtRGPX5Mmxo09Ry/KiLbOZnoUyoIxKc1xPyfqMXuaVsAFQLYs0KEQ==} + /@next/swc-win32-arm64-msvc/13.0.4: + resolution: {integrity: sha512-FD+k1j2jeY0aKcqcpzFKfTsv55PPmIZ5GKDyPjjV5AO6XvQ4nALwWl4JwizjH2426TfLXObb+C3MH0bl9Ok1Kw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-ia32-msvc/13.0.3: - resolution: {integrity: sha512-Sa8yGkNeRUsic8Qjf7MLIAfP0p0+einK/wIqJ8UO1y76j+8rRQu42AMs5H4Ax1fm9GEYq6I8njHtY59TVpTtGQ==} + /@next/swc-win32-ia32-msvc/13.0.4: + resolution: {integrity: sha512-+Q/Q8Ydvz3X3U84CyZdNv1HC7fE43k+xB8C6b3IFmWGa5Tu2tfskQ2FsUNBrYreZjhFC/894J3rVQ6Vj6Auugg==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-x64-msvc/13.0.3: - resolution: {integrity: sha512-IAptmSqA7k4tQzaw2NAkoEjj3+Dz9ceuvlEHwYh770MMDL4V0ku2m+UHrmn5HUCEDHhgwwjg2nyf6728q2jr1w==} + /@next/swc-win32-x64-msvc/13.0.4: + resolution: {integrity: sha512-vXtbo9N1FdtZZRcv4BliU28tTYrkb1EnVpUiiFFe88I6kS9aZVTMY9Z/OtDR52rl1JF1hgs9sL/59D/TQqSATQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -5143,6 +4852,14 @@ packages: tslib: 2.4.1 dev: true + /@peculiar/asn1-schema/2.3.3: + resolution: {integrity: sha512-6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ==} + dependencies: + asn1js: 3.0.5 + pvtsutils: 1.3.2 + tslib: 2.4.1 + dev: true + /@peculiar/json-schema/1.1.12: resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} engines: {node: '>=8.0.0'} @@ -5165,14 +4882,26 @@ packages: resolution: {integrity: sha512-eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==} engines: {node: '>=10.12.0'} dependencies: - '@peculiar/asn1-schema': 2.3.0 + '@peculiar/asn1-schema': 2.3.3 '@peculiar/json-schema': 1.1.12 pvtsutils: 1.3.2 tslib: 2.4.1 webcrypto-core: 1.7.5 dev: true - /@pmmmwh/react-refresh-webpack-plugin/0.5.8_w6xnjb7so4vmkxdr5nwkt3eje4: + /@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.0 + picocolors: 1.0.0 + tiny-glob: 0.2.9 + tslib: 2.4.1 + dev: false + + /@pmmmwh/react-refresh-webpack-plugin/0.5.8_b55igmbf5xgiivp6m2jrxoxcxm: resolution: {integrity: sha512-wxXRwf+IQ6zvHSJZ+5T2RQNEsq+kx4jKRXfFvdt3nBIUzJUAvXEFsUeoaohDe/Kr84MTjGwcuIUPNcstNJORsA==} engines: {node: '>= 10.13'} peerDependencies: @@ -5209,7 +4938,7 @@ packages: schema-utils: 3.1.1 source-map: 0.7.4 type-fest: 3.2.0 - webpack: 5.74.0 + webpack: 5.75.0 dev: true /@polka/url/1.0.0-next.21: @@ -5223,7 +4952,7 @@ packages: resolution: {integrity: sha512-jwRMXYwC0hUo0mv6wGpuw254Pd9p/R6Td5xsRpOmaWkUHlooNWqVcadgyzlRumMq3xfOTXwJReU0Jv+EIy4Jbw==} dev: false - /@relative-ci/agent/4.1.1_webpack@5.74.0: + /@relative-ci/agent/4.1.1_webpack@5.75.0: resolution: {integrity: sha512-J+ec6c5xQQW3S/ZF9EaN1Eit48s3xJbr9WjcHLO9lXpt3XAY7Wunptv0j2he9rRrO+hhSsGNQyjh9dlSrIYSQg==} engines: {node: '>= 14.0'} hasBin: true @@ -5240,7 +4969,7 @@ packages: fs-extra: 10.1.0 isomorphic-fetch: 3.0.0 lodash: 4.17.21 - webpack: 5.74.0 + webpack: 5.75.0 yargs: 17.6.0 transitivePeerDependencies: - encoding @@ -5316,8 +5045,8 @@ packages: lodash.deburr: 4.1.0 dev: true - /@sinonjs/commons/1.8.3: - resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==} + /@sinonjs/commons/1.8.5: + resolution: {integrity: sha512-rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA==} dependencies: type-detect: 4.0.8 dev: true @@ -5325,7 +5054,7 @@ packages: /@sinonjs/fake-timers/9.1.2: resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} dependencies: - '@sinonjs/commons': 1.8.3 + '@sinonjs/commons': 1.8.5 dev: true /@socket.io/component-emitter/3.1.0: @@ -5394,7 +5123,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/addon-controls/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-lYq3uf2mlVevm0bi6ueL3H6TpUMRYW9s/pTNTVJT225l27kLdFR9wEKxAkCBrlKaTgDLJmzzDRsJE3NLZlR/5Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -5409,7 +5138,7 @@ packages: '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.13 '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.13 '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y @@ -5428,7 +5157,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.13_vvutoryxyiuhis4stf7aznp4ka: + /@storybook/addon-docs/6.5.13_6orvhpp2bicuudsf4btokp7lou: resolution: {integrity: sha512-RG/NjsheD9FixZ789RJlNyNccaR2Cuy7CtAwph4oUNi3aDFjtOI8Oe9L+FOT7qtVnZLw/YMjF+pZxoDqJNKLPw==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 @@ -5442,25 +5171,25 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.18.13 - '@babel/preset-env': 7.19.4_@babel+core@7.18.13 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 + '@babel/preset-env': 7.19.4_@babel+core@7.20.2 '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22_react@18.2.0 '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/core-events': 6.5.13 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.13 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.2 '@storybook/node-logger': 6.5.13 '@storybook/postinstall': 6.5.13 '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/source-loader': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y - babel-loader: 8.2.5_tb6moc662p5idmcg3l5ipbhpta + babel-loader: 8.2.5_npabyccmuonwo2rku4k53xo3hi core-js: 3.26.0 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -5483,7 +5212,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.13_wdnbicqeh35fsvrp3o6wyyxfee: + /@storybook/addon-essentials/6.5.13_umcccjscsozh2kacy3kydywx3q: resolution: {integrity: sha512-G9FVAWV7ixjVLWeLgIX+VT90tcAk6yQxfZQegfg5ucRilGysJCDaNnoab4xuuvm1R40TfFhba3iAGZtQYsddmw==} peerDependencies: '@babel/core': ^7.9.6 @@ -5540,26 +5269,26 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@storybook/addon-actions': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-backgrounds': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-controls': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/addon-docs': 6.5.13_vvutoryxyiuhis4stf7aznp4ka + '@storybook/addon-controls': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/addon-docs': 6.5.13_6orvhpp2bicuudsf4btokp7lou '@storybook/addon-measure': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-outline': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-toolbars': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-viewport': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/builder-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/node-logger': 6.5.13 core-js: 3.26.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - webpack: 5.74.0 + webpack: 5.75.0 transitivePeerDependencies: - '@storybook/mdx2-csf' - eslint @@ -5570,7 +5299,7 @@ packages: - webpack-command dev: true - /@storybook/addon-interactions/6.5.13_nlqlv6j4mzlxjiia5kzadcwfxu: + /@storybook/addon-interactions/6.5.13_vcbktvupb3nrz536jx5pquykfm: resolution: {integrity: sha512-FPOeS7AT/Odxl6z7E0qYI4F0Sh06jFRttRvSgpKC5P2lYUWUstLP5TC8N+F5ijBeLfIdIsf5zBK7l5Y/cluueg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -5581,12 +5310,12 @@ packages: react-dom: optional: true dependencies: - '@devtools-ds/object-inspector': 1.2.0_knhnagtyfncgg2hpin7s37uixq + '@devtools-ds/object-inspector': 1.2.0_2zx2umvpluuhvlq44va5bta2da '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.13 '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/core-events': 6.5.13 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/instrumenter': 6.5.13_biqbaboplfbrettd7655fr4n2y @@ -5850,7 +5579,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/builder-webpack4/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-Agqy3IKPv3Nl8QqdS7PjtqLp+c0BD8+/3A2ki/YfKqVz+F+J34EpbZlh3uU053avm1EoNQHSmhZok3ZlWH6O7A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -5860,7 +5589,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/channel-postmessage': 6.5.13 @@ -5868,7 +5597,7 @@ packages: '@storybook/client-api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.13 '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/core-events': 6.5.13 '@storybook/node-logger': 6.5.13 '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y @@ -5880,18 +5609,18 @@ packages: '@types/node': 16.11.45 '@types/webpack': 4.41.33 autoprefixer: 9.8.8 - babel-loader: 8.2.5_li4tts7salxwv3rbqjnooz7t7e + babel-loader: 8.2.5_tktscwi5cl3qcx6vcfwkvrwn6i case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.26.0 css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_zrjoh7bg5rkacdtuk7dq2uvknu + fork-ts-checker-webpack-plugin: 4.1.6_nh7kisgxcfib7qeetfrkne66xa glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.8.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.3 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -5902,7 +5631,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -5919,7 +5648,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack5/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/builder-webpack5/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-juNH31ZljWbaoBD6Yx2/iQ4G66UBkwq+cFUqLzgVROKMXmYaT0AJYbfyY8CgGqcXkc+sqNA63yWaLWd8/K9vTg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -5929,7 +5658,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/channel-postmessage': 6.5.13 @@ -5937,7 +5666,7 @@ packages: '@storybook/client-api': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.13 '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/core-events': 6.5.13 '@storybook/node-logger': 6.5.13 '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y @@ -5946,28 +5675,28 @@ packages: '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y '@types/node': 16.11.45 - babel-loader: 8.2.5_tb6moc662p5idmcg3l5ipbhpta + babel-loader: 8.2.5_npabyccmuonwo2rku4k53xo3hi babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.26.0 - css-loader: 5.2.7_webpack@5.74.0 - fork-ts-checker-webpack-plugin: 6.5.2_pengxvf7uion7dp4c66otdblte + css-loader: 5.2.7_webpack@5.75.0 + fork-ts-checker-webpack-plugin: 6.5.2_bhjilrwoi7zg2tms4gfledt524 glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 - html-webpack-plugin: 5.5.0_webpack@5.74.0 + html-webpack-plugin: 5.5.0_webpack@5.75.0 path-browserify: 1.0.1 process: 0.11.10 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 stable: 0.1.8 - style-loader: 2.0.0_webpack@5.74.0 - terser-webpack-plugin: 5.3.6_webpack@5.74.0 + style-loader: 2.0.0_webpack@5.75.0 + terser-webpack-plugin: 5.3.6_webpack@5.75.0 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 util-deprecate: 1.0.2 - webpack: 5.74.0 - webpack-dev-middleware: 4.3.0_webpack@5.74.0 + webpack: 5.75.0 + webpack-dev-middleware: 4.3.0_webpack@5.75.0 webpack-hot-middleware: 2.25.2 webpack-virtual-modules: 0.4.6 transitivePeerDependencies: @@ -6096,7 +5825,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.13_glstf7nzdgkpv4airl4j7svpo4: + /@storybook/core-client/6.5.13_5ey2xofmun3swml4ceosmuhnmq: resolution: {integrity: sha512-YuELbRokTBdqjbx/R4/7O4rou9kvbBIOJjlUkor9hdLLuJ3P0yGianERGNkZFfvcfMBAxU0p52o7QvDldSR3kA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6127,13 +5856,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.74.0 + webpack: 4.46.0 dev: true - /@storybook/core-client/6.5.13_vknrbelhugdkckamahrfl2bl2m: + /@storybook/core-client/6.5.13_ep3nicfz4qcahezcs7kmkfeniq: resolution: {integrity: sha512-YuELbRokTBdqjbx/R4/7O4rou9kvbBIOJjlUkor9hdLLuJ3P0yGianERGNkZFfvcfMBAxU0p52o7QvDldSR3kA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6164,13 +5893,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 + webpack: 5.75.0 dev: true - /@storybook/core-common/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/core-common/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-+DVZrRsteE9pw0X5MNffkdBgejQnbnL+UOG3qXkE9xxUamQALnuqS/w1BzpHE9WmOHuf7RWMKflyQEW3OLKAJg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6180,41 +5909,41 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.13 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-decorators': 7.20.0_@babel+core@7.18.13 - '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.18.13 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.18.13 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.13 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.18.13 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.18.13 - '@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.18.13 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.13 - '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.18.13 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.18.13 - '@babel/preset-env': 7.19.4_@babel+core@7.18.13 - '@babel/preset-react': 7.18.6_@babel+core@7.18.13 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.13 - '@babel/register': 7.18.9_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-decorators': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.2 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.20.2 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.20.2 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2 + '@babel/preset-env': 7.19.4_@babel+core@7.20.2 + '@babel/preset-react': 7.18.6_@babel+core@7.20.2 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2 + '@babel/register': 7.18.9_@babel+core@7.20.2 '@storybook/node-logger': 6.5.13 '@storybook/semver': 7.3.2 '@types/node': 16.11.45 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_li4tts7salxwv3rbqjnooz7t7e + babel-loader: 8.2.5_tktscwi5cl3qcx6vcfwkvrwn6i babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.13 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.2 chalk: 4.1.2 core-js: 3.26.0 express: 4.18.2 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_zrjoh7bg5rkacdtuk7dq2uvknu + fork-ts-checker-webpack-plugin: 6.5.2_nh7kisgxcfib7qeetfrkne66xa fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.7 @@ -6230,7 +5959,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -6259,7 +5988,7 @@ packages: core-js: 3.26.0 dev: true - /@storybook/core-server/6.5.13_n7pez7brw2hfqh5q3ov2ap5tcy: + /@storybook/core-server/6.5.13_lrb4rharc5yx4sekeajplmwyz4: resolution: {integrity: sha512-vs7tu3kAnFwuINio1p87WyqDNlFyZESmeh9s7vvrZVbe/xS/ElqDscr9DT5seW+jbtxufAaHsx+JUTver1dheQ==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -6276,19 +6005,19 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/builder-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/core-client': 6.5.13_vknrbelhugdkckamahrfl2bl2m - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/builder-webpack4': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/builder-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/core-client': 6.5.13_5ey2xofmun3swml4ceosmuhnmq + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/core-events': 6.5.13 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.13 - '@storybook/manager-webpack4': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/manager-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/manager-webpack4': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/manager-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/node-logger': 6.5.13 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/telemetry': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/telemetry': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@types/node': 16.11.45 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 @@ -6319,7 +6048,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -6338,7 +6067,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.13_5mvfbir4e5iltm2mvu7rk5yq4m: + /@storybook/core/6.5.13_b76jomymgzscf2ddakwqnbje5i: resolution: {integrity: sha512-kw1lCgbsxzUimGww6t5rmuWJmFPe9kGGyzIqvj4RC4BBcEsP40LEu9XhSfvnb8vTOLIULFZeZpdRFfJs4TYbUw==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -6355,14 +6084,14 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae - '@storybook/core-client': 6.5.13_glstf7nzdgkpv4airl4j7svpo4 - '@storybook/core-server': 6.5.13_n7pez7brw2hfqh5q3ov2ap5tcy - '@storybook/manager-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/builder-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi + '@storybook/core-client': 6.5.13_ep3nicfz4qcahezcs7kmkfeniq + '@storybook/core-server': 6.5.13_lrb4rharc5yx4sekeajplmwyz4 + '@storybook/manager-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.8.4 - webpack: 5.74.0 + typescript: 4.9.3 + webpack: 5.75.0 transitivePeerDependencies: - '@storybook/mdx2-csf' - bluebird @@ -6384,15 +6113,15 @@ packages: '@storybook/mdx2-csf': optional: true dependencies: - '@babel/core': 7.18.13 - '@babel/generator': 7.20.1 - '@babel/parser': 7.20.1 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.18.13 - '@babel/preset-env': 7.19.4_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 + '@babel/parser': 7.20.3 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 + '@babel/preset-env': 7.19.4_@babel+core@7.20.2 '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/types': 7.20.2 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.13 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.2 core-js: 3.26.0 fs-extra: 9.1.0 global: 4.4.0 @@ -6423,7 +6152,7 @@ packages: /@storybook/docs-tools/6.5.13_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-hB+hk+895ny4SW84j3X5iV55DHs3bCfTOp7cDdcZJdQrlm0wuDb4A6d4ffNC7ZLh9VkUjU6ST4VEV5Bb0Cptow==} dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y core-js: 3.26.0 @@ -6462,7 +6191,7 @@ packages: - react-dom dev: true - /@storybook/manager-webpack4/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/manager-webpack4/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-pURzS5W3XM0F7bCBWzpl7TRsuy+OXFwLXiWLaexuvo0POZe31Ueo2A1R4rx3MT5Iee8O9mYvG2XTmvK9MlLefQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6472,18 +6201,18 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.13 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.13 - '@babel/preset-react': 7.18.6_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 + '@babel/preset-react': 7.18.6_@babel+core@7.20.2 '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.13_vknrbelhugdkckamahrfl2bl2m - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-client': 6.5.13_5ey2xofmun3swml4ceosmuhnmq + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/node-logger': 6.5.13 '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.13_biqbaboplfbrettd7655fr4n2y '@types/node': 16.11.45 '@types/webpack': 4.41.33 - babel-loader: 8.2.5_li4tts7salxwv3rbqjnooz7t7e + babel-loader: 8.2.5_tktscwi5cl3qcx6vcfwkvrwn6i case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.26.0 @@ -6494,7 +6223,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.8.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 @@ -6504,7 +6233,7 @@ packages: telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -6520,7 +6249,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack5/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/manager-webpack5/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-lQEZacSfeRsbqfJE7TVk35Hm1vkr0I2i1pyYqM+4862gRbMh1nJQXbJ5GqZ+Fo/bf0ZfyFZ32jGDIJAFdlpkuQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 @@ -6530,25 +6259,25 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.13 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.13 - '@babel/preset-react': 7.18.6_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 + '@babel/preset-react': 7.18.6_@babel+core@7.20.2 '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.13_glstf7nzdgkpv4airl4j7svpo4 - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-client': 6.5.13_ep3nicfz4qcahezcs7kmkfeniq + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/node-logger': 6.5.13 '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.13_biqbaboplfbrettd7655fr4n2y '@types/node': 16.11.45 - babel-loader: 8.2.5_tb6moc662p5idmcg3l5ipbhpta + babel-loader: 8.2.5_npabyccmuonwo2rku4k53xo3hi case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.26.0 - css-loader: 5.2.7_webpack@5.74.0 + css-loader: 5.2.7_webpack@5.75.0 express: 4.18.2 find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.5.0_webpack@5.74.0 + html-webpack-plugin: 5.5.0_webpack@5.75.0 node-fetch: 2.6.7 process: 0.11.10 react: 18.2.0 @@ -6556,14 +6285,14 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.10 resolve-from: 5.0.0 - style-loader: 2.0.0_webpack@5.74.0 + style-loader: 2.0.0_webpack@5.75.0 telejson: 6.0.8 - terser-webpack-plugin: 5.3.6_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.75.0 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 util-deprecate: 1.0.2 - webpack: 5.74.0 - webpack-dev-middleware: 4.3.0_webpack@5.74.0 + webpack: 5.75.0 + webpack-dev-middleware: 4.3.0_webpack@5.75.0 webpack-virtual-modules: 0.4.6 transitivePeerDependencies: - '@swc/core' @@ -6577,15 +6306,15 @@ packages: - webpack-command dev: true - /@storybook/mdx1-csf/0.0.1_@babel+core@7.18.13: + /@storybook/mdx1-csf/0.0.1_@babel+core@7.20.2: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: '@babel/generator': 7.20.1 '@babel/parser': 7.20.1 - '@babel/preset-env': 7.19.4_@babel+core@7.18.13 + '@babel/preset-env': 7.19.4_@babel+core@7.20.2 '@babel/types': 7.20.0 '@mdx-js/mdx': 1.6.22 - '@types/lodash': 4.14.187 + '@types/lodash': 4.14.189 js-string-escape: 1.0.1 loader-utils: 2.0.3 lodash: 4.17.21 @@ -6638,7 +6367,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_qqxisngxjbp7lstdk7boexbu3e: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_vfotqvx6lgcbf3upbs6hgaza4q: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -6649,15 +6378,15 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.8.4 + react-docgen-typescript: 2.2.2_typescript@4.9.3 tslib: 2.4.1 - typescript: 4.8.4 - webpack: 5.74.0 + typescript: 4.9.3 + webpack: 5.75.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.13_oh2bbsy6jam24qn47t3p7fv3ca: + /@storybook/react/6.5.13_v4jjm24djpoj4yog7pcvrvfzne: resolution: {integrity: sha512-4gO8qihEkVZ8RNm9iQd7G2iZz4rRAHizJ6T5m58Sn21fxfyg9zAMzhgd0JzXuPXR8lTTj4AvRyPv1Qx7b43smg==} engines: {node: '>=10.13.0'} hasBin: true @@ -6685,20 +6414,20 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.18.13 - '@babel/preset-flow': 7.18.6_@babel+core@7.18.13 - '@babel/preset-react': 7.18.6_@babel+core@7.18.13 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.8_w6xnjb7so4vmkxdr5nwkt3eje4 + '@babel/core': 7.20.2 + '@babel/preset-flow': 7.18.6_@babel+core@7.20.2 + '@babel/preset-react': 7.18.6_@babel+core@7.20.2 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.8_b55igmbf5xgiivp6m2jrxoxcxm '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/builder-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/client-logger': 6.5.13 - '@storybook/core': 6.5.13_5mvfbir4e5iltm2mvu7rk5yq4m - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core': 6.5.13_b76jomymgzscf2ddakwqnbje5i + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/manager-webpack5': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/manager-webpack5': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi '@storybook/node-logger': 6.5.13 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_qqxisngxjbp7lstdk7boexbu3e + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_vfotqvx6lgcbf3upbs6hgaza4q '@storybook/semver': 7.3.2 '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 @@ -6724,9 +6453,9 @@ packages: regenerator-runtime: 0.13.10 require-from-string: 2.0.2 ts-dedent: 2.2.0 - typescript: 4.8.4 + typescript: 4.9.3 util-deprecate: 1.0.2 - webpack: 5.74.0 + webpack: 5.75.0 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -6848,11 +6577,11 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.13_5msx5wgifzd2n7nm3paor5omae: + /@storybook/telemetry/6.5.13_s4hqsayxgev7dbmg6rfftu2eyi: resolution: {integrity: sha512-PFJEfGbunmfFWabD3rdCF8EHH+45578OHOkMPpXJjqXl94vPQxUH2XTVKQgEQJbYrgX0Vx9Z4tSkdMHuzYDbWQ==} dependencies: '@storybook/client-logger': 6.5.13 - '@storybook/core-common': 6.5.13_5msx5wgifzd2n7nm3paor5omae + '@storybook/core-common': 6.5.13_s4hqsayxgev7dbmg6rfftu2eyi chalk: 4.1.2 core-js: 3.26.0 detect-package-manager: 2.0.1 @@ -6906,7 +6635,7 @@ packages: optional: true dependencies: '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/react': 6.5.13_oh2bbsy6jam24qn47t3p7fv3ca + '@storybook/react': 6.5.13_v4jjm24djpoj4yog7pcvrvfzne react: 18.2.0 dev: true @@ -7000,7 +6729,7 @@ packages: peerDependencies: tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' dependencies: - tailwindcss: 3.2.4_postcss@8.4.18 + tailwindcss: 3.2.4_postcss@8.4.19 dev: false /@tailwindcss/typography/0.5.8_tailwindcss@3.2.4: @@ -7012,7 +6741,7 @@ packages: lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.2.4_postcss@8.4.18 + tailwindcss: 3.2.4_postcss@8.4.19 dev: false /@tensorflow-models/toxicity/1.2.2_ce7e77rhh6oipcy6kxvkentnmi: @@ -7192,7 +6921,7 @@ packages: dependencies: '@babel/runtime': 7.20.1 '@testing-library/dom': 8.19.0 - '@types/react-dom': 18.0.8 + '@types/react-dom': 18.0.9 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true @@ -7496,11 +7225,11 @@ packages: /@types/aria-query/4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - /@types/babel__core/7.1.19: - resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} + /@types/babel__core/7.1.20: + resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==} dependencies: - '@babel/parser': 7.20.1 - '@babel/types': 7.20.0 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.2 @@ -7509,20 +7238,20 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.2 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.20.1 - '@babel/types': 7.20.0 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 dev: true /@types/babel__traverse/7.18.2: resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.2 dev: true /@types/cacheable-request/6.0.2: @@ -7534,8 +7263,8 @@ packages: '@types/responselike': 1.0.0 dev: false - /@types/canvas-confetti/1.4.3: - resolution: {integrity: sha512-UwFPTsW1ZwVyo/ETp4hPSikSD7yl2V42E3VWBF5P/0+DHO4iajyceWv7hfNdZ2AX5tkZnuViiBWOqyCPohU2FQ==} + /@types/canvas-confetti/1.6.0: + resolution: {integrity: sha512-Yq6rIccwcco0TLD5SMUrIM7Fk7Fe/C0jmNRxJJCLtAF6gebDkPuUjK5EHedxecm69Pi/aA+It39Ux4OHmFhjRw==} dev: true /@types/cookie/0.4.1: @@ -7552,8 +7281,8 @@ packages: resolution: {integrity: sha512-VkWIQoZXLFdcBGe5pdBKJmTU3fmpXvo/KV6ixvTzOMl1yJ2hbTXpfvsziag0kcaerPDwas2T0vxojwQG3YwivQ==} dev: true - /@types/debounce-promise/3.1.4: - resolution: {integrity: sha512-9SEVY3nsz+uMN2DwDocftB5TAgZe7D0cOzxxRhpotWs6T4QFqRaTXpXbOSzbk31/7iYcfCkJJPwWGzTxyuGhCg==} + /@types/debounce-promise/3.1.5: + resolution: {integrity: sha512-fOoAIu7qusGngVHLjZEo3pgEaaAqL9XkYHe8WCjwtBGygn+mk7WkW1xke4ZiKEr7pj3lz3jykUVOsLymZvljUw==} dev: true /@types/debug/4.1.7: @@ -7565,11 +7294,11 @@ packages: /@types/eslint-scope/3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: - '@types/eslint': 8.4.6 + '@types/eslint': 8.4.10 '@types/estree': 0.0.51 - /@types/eslint/8.4.6: - resolution: {integrity: sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==} + /@types/eslint/8.4.10: + resolution: {integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 @@ -7625,7 +7354,7 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 18.11.5 + '@types/node': 18.7.16 dev: true /@types/is-ci/3.0.0: @@ -7654,8 +7383,8 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/29.2.2: - resolution: {integrity: sha512-og1wAmdxKoS71K2ZwSVqWPX6OVn3ihZ6ZT2qvZvZQm90lJVDyXIjYcu4Khx2CNIeaFv12rOU/YObOsI3VOkzog==} + /@types/jest/29.2.3: + resolution: {integrity: sha512-6XwoEbmatfyoCjWRX7z0fKMmgYKe9+/HrviJ5k0X/tjJWHGAezZOfYaxqQKuzG/TvQyr+ktjm4jgbk0s4/oF2w==} dependencies: expect: 29.3.1 pretty-format: 29.3.1 @@ -7673,8 +7402,8 @@ packages: resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} dev: true - /@types/jsdom/20.0.0: - resolution: {integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA==} + /@types/jsdom/20.0.1: + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: '@types/node': 18.11.5 '@types/tough-cookie': 4.0.2 @@ -7712,8 +7441,8 @@ packages: '@types/node': 18.11.5 dev: false - /@types/lodash/4.14.187: - resolution: {integrity: sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==} + /@types/lodash/4.14.189: + resolution: {integrity: sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA==} dev: true /@types/long/4.0.2: @@ -7803,29 +7532,29 @@ packages: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} dev: true - /@types/react-dom/18.0.8: - resolution: {integrity: sha512-C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw==} + /@types/react-dom/18.0.9: + resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==} dependencies: - '@types/react': 18.0.24 + '@types/react': 18.0.25 dev: true - /@types/react-flatpickr/3.8.7: - resolution: {integrity: sha512-sIRN1WxcVjPjlYdqhDqWjdznFIb21Z1ab0prETuzW6j/xpOXMDCBI6/xtxTgaWF0hhKTqO7U1RRbaxbjyS3e5w==} + /@types/react-flatpickr/3.8.8: + resolution: {integrity: sha512-wxpSvmO23Qj6Ig0grw+nLAf2CzJZsS6WljXm6PiljSIZPAZrXLH1ggJPShi/uZZ1BPWIIRLJcehH685NiSFjzw==} dependencies: - '@types/react': 18.0.24 + '@types/react': 18.0.25 flatpickr: 4.6.13 dev: true - /@types/react/18.0.24: - resolution: {integrity: sha512-wRJWT6ouziGUy+9uX0aW4YOJxAY0bG6/AOk5AW5QSvZqI7dk6VBIbXvcVgIw/W5Jrl24f77df98GEKTJGOLx7Q==} + /@types/react/18.0.25: + resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.1.0 + csstype: 3.1.1 dev: true - /@types/requestidlecallback/0.3.4: - resolution: {integrity: sha512-aTSyiZuRemRLTQkJPb25L7A4/eR2Teo5l4yJ1V6P3+MFxEZckTDkNKNtr/V1zEOMzS6H8DgxF22U6jPAPrzQvw==} + /@types/requestidlecallback/0.3.5: + resolution: {integrity: sha512-Uh49VrVTPfU0y/qIvXXYuRmd/sKLfVgQWZU1t8FWH22AIJyQbCei1aSmXdMDAijwGUFhBDpJmksiHEDsfiE/cg==} dev: true /@types/responselike/1.0.0: @@ -7879,7 +7608,7 @@ packages: /@types/testing-library__jest-dom/5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: - '@types/jest': 29.2.2 + '@types/jest': 29.2.3 dev: true /@types/tough-cookie/4.0.2: @@ -7968,8 +7697,8 @@ packages: dev: false optional: true - /@typescript-eslint/eslint-plugin/5.42.0_ofgjrzjuekeo7s3hdyz2yuzw34: - resolution: {integrity: sha512-5TJh2AgL6+wpL8H/GTSjNb4WrjKoR2rqvFxR/DDTqYNk6uXn8BJMEcncLSpMbf/XV1aS0jAjYwn98uvVCiAywQ==} + /@typescript-eslint/eslint-plugin/5.43.0_wze2rj5tow7zwqpgbdx2buoy3m: + resolution: {integrity: sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -7979,37 +7708,37 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.42.0_rmayb2veg2btbq6mbmnyivgasy - '@typescript-eslint/scope-manager': 5.42.0 - '@typescript-eslint/type-utils': 5.42.0_rmayb2veg2btbq6mbmnyivgasy - '@typescript-eslint/utils': 5.42.0_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/parser': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/type-utils': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y + '@typescript-eslint/utils': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y debug: 4.3.4 eslint: 8.27.0 ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/experimental-utils/5.30.6_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/experimental-utils/5.30.6_e3uo4sehh4zr4i6m57mkkxxv7y: resolution: {integrity: sha512-bqvT+0L8IjtW7MCrMgm9oVNxs4g7mESro1mm5c1/SNfTnHuFTf9OUX1WzVkTz75M9cp//UrTrSmGvK48NEKshQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.30.6_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/utils': 5.30.6_e3uo4sehh4zr4i6m57mkkxxv7y eslint: 8.27.0 transitivePeerDependencies: - supports-color - typescript dev: false - /@typescript-eslint/parser/5.42.0_rmayb2veg2btbq6mbmnyivgasy: - resolution: {integrity: sha512-Ixh9qrOTDRctFg3yIwrLkgf33AHyEIn6lhyf5cCfwwiGtkWhNpVKlEZApi3inGQR/barWnY7qY8FbGKBO7p3JA==} + /@typescript-eslint/parser/5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y: + resolution: {integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8018,12 +7747,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.42.0 - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/typescript-estree': 5.42.0_typescript@4.8.4 + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.9.3 debug: 4.3.4 eslint: 8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false @@ -8036,14 +7765,6 @@ packages: '@typescript-eslint/visitor-keys': 5.30.6 dev: false - /@typescript-eslint/scope-manager/5.42.0: - resolution: {integrity: sha512-l5/3IBHLH0Bv04y+H+zlcLiEMEMjWGaCX6WyHE5Uk2YkSGAMlgdUPsT/ywTSKgu9D1dmmKMYgYZijObfA39Wow==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/visitor-keys': 5.42.0 - dev: false - /@typescript-eslint/scope-manager/5.42.1: resolution: {integrity: sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8052,8 +7773,16 @@ packages: '@typescript-eslint/visitor-keys': 5.42.1 dev: false - /@typescript-eslint/type-utils/5.42.0_rmayb2veg2btbq6mbmnyivgasy: - resolution: {integrity: sha512-HW14TXC45dFVZxnVW8rnUGnvYyRC0E/vxXShFCthcC9VhVTmjqOmtqj6H5rm9Zxv+ORxKA/1aLGD7vmlLsdlOg==} + /@typescript-eslint/scope-manager/5.43.0: + resolution: {integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/visitor-keys': 5.43.0 + dev: false + + /@typescript-eslint/type-utils/5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y: + resolution: {integrity: sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8062,12 +7791,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.42.0_typescript@4.8.4 - '@typescript-eslint/utils': 5.42.0_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.9.3 + '@typescript-eslint/utils': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y debug: 4.3.4 eslint: 8.27.0 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false @@ -8077,17 +7806,17 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false - /@typescript-eslint/types/5.42.0: - resolution: {integrity: sha512-t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw==} + /@typescript-eslint/types/5.42.1: + resolution: {integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false - /@typescript-eslint/types/5.42.1: - resolution: {integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==} + /@typescript-eslint/types/5.43.0: + resolution: {integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false - /@typescript-eslint/typescript-estree/5.30.6_typescript@4.8.4: + /@typescript-eslint/typescript-estree/5.30.6_typescript@4.9.3: resolution: {integrity: sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -8102,14 +7831,14 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/typescript-estree/5.42.0_typescript@4.8.4: - resolution: {integrity: sha512-2O3vSq794x3kZGtV7i4SCWZWCwjEtkWfVqX4m5fbUBomOsEOyd6OAD1qU2lbvV5S8tgy/luJnOYluNyYVeOTTg==} + /@typescript-eslint/typescript-estree/5.42.1_typescript@4.9.3: + resolution: {integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8117,20 +7846,20 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/visitor-keys': 5.42.0 + '@typescript-eslint/types': 5.42.1 + '@typescript-eslint/visitor-keys': 5.42.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/typescript-estree/5.42.1_typescript@4.8.4: - resolution: {integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==} + /@typescript-eslint/typescript-estree/5.43.0_typescript@4.9.3: + resolution: {integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8138,19 +7867,19 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.42.1 - '@typescript-eslint/visitor-keys': 5.42.1 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/visitor-keys': 5.43.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/utils/5.30.6_rmayb2veg2btbq6mbmnyivgasy: + /@typescript-eslint/utils/5.30.6_e3uo4sehh4zr4i6m57mkkxxv7y: resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -8159,7 +7888,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.8.4 + '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.9.3 eslint: 8.27.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.27.0 @@ -8168,17 +7897,17 @@ packages: - typescript dev: false - /@typescript-eslint/utils/5.42.0_rmayb2veg2btbq6mbmnyivgasy: - resolution: {integrity: sha512-JZ++3+h1vbeG1NUECXQZE3hg0kias9kOtcQr3+JVQ3whnjvKuMyktJAAIj6743OeNPnGBmjj7KEmiDL7qsdnCQ==} + /@typescript-eslint/utils/5.42.1_e3uo4sehh4zr4i6m57mkkxxv7y: + resolution: {integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==} 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.42.0 - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/typescript-estree': 5.42.0_typescript@4.8.4 + '@typescript-eslint/scope-manager': 5.42.1 + '@typescript-eslint/types': 5.42.1 + '@typescript-eslint/typescript-estree': 5.42.1_typescript@4.9.3 eslint: 8.27.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.27.0 @@ -8188,17 +7917,17 @@ packages: - typescript dev: false - /@typescript-eslint/utils/5.42.1_rmayb2veg2btbq6mbmnyivgasy: - resolution: {integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==} + /@typescript-eslint/utils/5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y: + resolution: {integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==} 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.42.1 - '@typescript-eslint/types': 5.42.1 - '@typescript-eslint/typescript-estree': 5.42.1_typescript@4.8.4 + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.9.3 eslint: 8.27.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.27.0 @@ -8216,19 +7945,19 @@ packages: eslint-visitor-keys: 3.3.0 dev: false - /@typescript-eslint/visitor-keys/5.42.0: - resolution: {integrity: sha512-QHbu5Hf/2lOEOwy+IUw0GoSCuAzByTAWWrOTKzTzsotiUnWFpuKnXcAhC9YztAf2EElQ0VvIK+pHJUPkM0q7jg==} + /@typescript-eslint/visitor-keys/5.42.1: + resolution: {integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.42.0 + '@typescript-eslint/types': 5.42.1 eslint-visitor-keys: 3.3.0 dev: false - /@typescript-eslint/visitor-keys/5.42.1: - resolution: {integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==} + /@typescript-eslint/visitor-keys/5.43.0: + resolution: {integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.42.1 + '@typescript-eslint/types': 5.43.0 eslint-visitor-keys: 3.3.0 dev: false @@ -8566,6 +8295,21 @@ packages: - encoding dev: true + /@whatwg-node/fetch/0.5.3: + resolution: {integrity: sha512-cuAKL3Z7lrJJuUrfF1wxkQTb24Qd1QO/lsjJpM5ZSZZzUMms5TPnbGeGUKWA3hVKNHh30lVfr2MyRCT5Jfkucw==} + dependencies: + '@peculiar/webcrypto': 1.4.1 + abort-controller: 3.0.0 + busboy: 1.6.0 + form-data-encoder: 1.7.2 + formdata-node: 4.4.1 + node-fetch: 2.6.7 + undici: 5.12.0 + web-streams-polyfill: 3.2.1 + transitivePeerDependencies: + - encoding + dev: true + /@xmldom/xmldom/0.8.3: resolution: {integrity: sha512-Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==} engines: {node: '>=10.0.0'} @@ -8612,12 +8356,12 @@ packages: acorn-walk: 8.2.0 dev: true - /acorn-import-assertions/1.8.0_acorn@8.8.0: + /acorn-import-assertions/1.8.0_acorn@8.8.1: resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.8.0 + acorn: 8.8.1 /acorn-jsx/5.3.2_acorn@7.4.1: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -9191,7 +8935,7 @@ packages: engines: {node: '>=8'} dev: true - /autoprefixer/10.4.13_postcss@8.4.18: + /autoprefixer/10.4.13_postcss@8.4.19: resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -9203,7 +8947,7 @@ packages: fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 /autoprefixer/9.8.8: @@ -9211,7 +8955,7 @@ packages: hasBin: true dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001430 + caniuse-lite: 1.0.30001431 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9223,13 +8967,13 @@ packages: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - /avvvatars-react/0.4.2_vt6aeitzauirmcdhimiad2yjxy: + /avvvatars-react/0.4.2_owo25xnefcwdq3zjgtohz6dbju: resolution: {integrity: sha512-D/bnSM+P6pQi71dFeFVqQsqmv+ct5XG7uO2lvJoiksALpXLd6kPgpRR1SUQxFZJkJNrkmg0NPgbhIgJgOsDYRQ==} peerDependencies: react: '>= 16 || 18' react-dom: '>= 16 || 18' dependencies: - goober: 2.1.10_csstype@3.1.0 + goober: 2.1.10_csstype@3.1.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: @@ -9244,8 +8988,8 @@ packages: resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} dev: false - /axe-core/4.5.1: - resolution: {integrity: sha512-1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ==} + /axe-core/4.5.2: + resolution: {integrity: sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA==} engines: {node: '>=4'} dev: false @@ -9261,17 +9005,17 @@ packages: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: false - /babel-jest/29.2.2_@babel+core@7.18.13: - resolution: {integrity: sha512-kkq2QSDIuvpgfoac3WZ1OOcHsQQDU5xYk2Ql7tLdJ8BVAYbefEXal+NfS45Y5LVZA7cxC8KYcQMObpCt1J025w==} + /babel-jest/29.3.1_@babel+core@7.20.2: + resolution: {integrity: sha512-aard+xnMoxgjwV70t0L6wkW/3HQQtV+O0PEimxKgzNqCJnbYmroPojdP2tqKSOAt8QAKV/uSZU8851M7B5+fcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.13 - '@jest/transform': 29.2.2 - '@types/babel__core': 7.1.19 + '@babel/core': 7.20.2 + '@jest/transform': 29.3.1 + '@types/babel__core': 7.1.20 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.2.0_@babel+core@7.18.13 + babel-preset-jest: 29.2.0_@babel+core@7.20.2 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9279,34 +9023,34 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_li4tts7salxwv3rbqjnooz7t7e: + /babel-loader/8.2.5_npabyccmuonwo2rku4k53xo3hi: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 find-cache-dir: 3.3.2 loader-utils: 2.0.3 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 4.46.0 + webpack: 5.75.0 dev: true - /babel-loader/8.2.5_tb6moc662p5idmcg3l5ipbhpta: + /babel-loader/8.2.5_tktscwi5cl3qcx6vcfwkvrwn6i: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 find-cache-dir: 3.3.2 loader-utils: 2.0.3 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.74.0 + webpack: 4.46.0 dev: true /babel-plugin-add-react-displayname/0.0.5: @@ -9345,8 +9089,8 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.20.0 - '@types/babel__core': 7.1.19 + '@babel/types': 7.20.2 + '@types/babel__core': 7.1.20 '@types/babel__traverse': 7.18.2 dev: true @@ -9355,7 +9099,7 @@ packages: engines: {node: '>=10', npm: '>=6'} dependencies: '@babel/runtime': 7.20.1 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 resolve: 1.22.1 dev: true @@ -9363,50 +9107,50 @@ packages: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.18.13: + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.2: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.1 - '@babel/core': 7.18.13 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.18.13: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.2: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.2 core-js-compat: 3.26.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.18.13: + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.2: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 core-js-compat: 3.26.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.18.13: + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.2: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true @@ -9425,72 +9169,72 @@ packages: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.13: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.2: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.13 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.13 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.13 - dev: true - - /babel-preset-fbjs/3.4.0_@babel+core@7.19.1: + '@babel/core': 7.20.2 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 + dev: true + + /babel-preset-fbjs/3.4.0_@babel+core@7.20.2: resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.1 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.1 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.1 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.1 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.1 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.1 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.1 - '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.1 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.19.1 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.1 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.1 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.1 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.19.1 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.1 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.1 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.1 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.1 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.1 + '@babel/core': 7.20.2 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.20.2 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.20.2 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.20.2 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.20.2 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color dev: true - /babel-preset-jest/29.2.0_@babel+core@7.18.13: + /babel-preset-jest/29.2.0_@babel+core@7.20.2: resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.20.2 babel-plugin-jest-hoist: 29.2.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.13 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 dev: true /backo2/1.0.2: @@ -9624,26 +9368,6 @@ packages: - supports-color dev: true - /body-parser/1.20.0: - resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dependencies: - bytes: 3.1.2 - content-type: 1.0.4 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.10.3 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /body-parser/1.20.1: resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -9755,7 +9479,7 @@ packages: fresh: 0.5.2 mitt: 1.2.0 rxjs: 5.5.12 - typescript: 4.8.4 + typescript: 4.9.3 dev: false /browser-sync-ui/2.27.10: @@ -10371,10 +10095,11 @@ packages: resolution: {integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==} dev: true - /chromatic/6.7.0: - resolution: {integrity: sha512-kLpvVBKHp1uh7v14N0gPoejILsepS2OI8a4cJgM4Na0Du5GbZ0Iq7Yq/QknCuNiztlalSpBYHuD9SuVdBxL9vg==} + /chromatic/6.11.4: + resolution: {integrity: sha512-f1TcuIXKjGUuOjPuwFF44kzbuEcESFcDxHzrzWPLmHuC90dV8HLxbufqYaTOBYMO/rJ32Zftb7S9pXuF/Rhfog==} hasBin: true dependencies: + '@discoveryjs/json-ext': 0.5.7 '@types/webpack-env': 1.18.0 dev: true @@ -10391,6 +10116,11 @@ packages: /ci-info/3.5.0: resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==} + /ci-info/3.6.1: + resolution: {integrity: sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==} + engines: {node: '>=8'} + dev: true + /cipher-base/1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} dependencies: @@ -10412,7 +10142,7 @@ packages: static-extend: 0.1.2 dev: true - /class-variance-authority/0.3.0_typescript@4.8.4: + /class-variance-authority/0.3.0_typescript@4.9.3: resolution: {integrity: sha512-TFO+pzY9Gedqv8crPhprd647wxhvfpKevPPjiMcteEWsnkHX9yZrD1xMY3ZhRZnLwHUHCCP0LYO6KZIVag/5wQ==} peerDependencies: typescript: '>= 4.5.5 < 5' @@ -10420,7 +10150,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.8.4 + typescript: 4.9.3 dev: false /clean-css/4.2.4: @@ -10702,6 +10432,11 @@ packages: resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} engines: {node: '>= 6'} + /commander/7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + dev: true + /commander/8.3.0: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} @@ -10881,14 +10616,13 @@ packages: engines: {node: '>= 0.6'} dev: true - /convert-source-map/1.8.0: - resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} - dependencies: - safe-buffer: 5.1.2 - /convert-source-map/1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + /convert-source-map/2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + dev: true + /cookie-signature/1.0.6: resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} dev: true @@ -10938,6 +10672,12 @@ packages: /core-js-pure/3.26.0: resolution: {integrity: sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==} requiresBuild: true + dev: true + + /core-js-pure/3.26.1: + resolution: {integrity: sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==} + requiresBuild: true + dev: false /core-js/3.25.1: resolution: {integrity: sha512-sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==} @@ -10974,7 +10714,7 @@ packages: '@iarna/toml': 2.2.5 dev: true - /cosmiconfig-typescript-loader/4.1.1_33nptz4dsyeuavehbqt3phku5m: + /cosmiconfig-typescript-loader/4.1.1_hqkwlvhnlapr436diaz6e6f55i: resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -10988,10 +10728,11 @@ packages: dependencies: '@types/node': 16.11.45 cosmiconfig: 7.0.1 - typescript: 4.8.4 + ts-node: 10.9.1_pldvz6pe3aqb7j6elrti4nlcrm + typescript: 4.9.3 dev: true - /cosmiconfig-typescript-loader/4.1.1_ai4mojnfxe5oyvmrhfq237cqti: + /cosmiconfig-typescript-loader/4.1.1_vj3f3ugxect2v22njqgy3g2gxq: resolution: {integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -11004,9 +10745,8 @@ packages: optional: true dependencies: '@types/node': 16.11.45 - cosmiconfig: 7.0.1 - ts-node: 10.9.1_fl6fmxnqtozxypm3ur2kzj6cpy - typescript: 4.8.4 + cosmiconfig: 7.1.0 + typescript: 4.9.3 dev: true /cosmiconfig/6.0.0: @@ -11030,6 +10770,17 @@ packages: path-type: 4.0.0 yaml: 1.10.2 + /cosmiconfig/7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + /cp-file/7.0.0: resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} engines: {node: '>=8'} @@ -11144,14 +10895,14 @@ packages: engines: {node: '>=8'} dev: false - /css-blank-pseudo/3.0.3_postcss@8.4.18: + /css-blank-pseudo/3.0.3_postcss@8.4.19: resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false @@ -11159,14 +10910,14 @@ packages: resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==} dev: false - /css-has-pseudo/3.0.4_postcss@8.4.18: + /css-has-pseudo/3.0.4_postcss@8.4.19: resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false @@ -11192,50 +10943,50 @@ packages: webpack: 4.46.0 dev: true - /css-loader/5.2.7_webpack@5.74.0: + /css-loader/5.2.7_webpack@5.75.0: resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 + icss-utils: 5.1.0_postcss@8.4.19 loader-utils: 2.0.3 - postcss: 8.4.18 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 - postcss-modules-scope: 3.0.0_postcss@8.4.18 - postcss-modules-values: 4.0.0_postcss@8.4.18 + postcss: 8.4.19 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.19 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.19 + postcss-modules-scope: 3.0.0_postcss@8.4.19 + postcss-modules-values: 4.0.0_postcss@8.4.19 postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.8 - webpack: 5.74.0 + webpack: 5.75.0 dev: true - /css-loader/6.7.1_webpack@5.74.0: + /css-loader/6.7.1_webpack@5.75.0: resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 - postcss-modules-scope: 3.0.0_postcss@8.4.18 - postcss-modules-values: 4.0.0_postcss@8.4.18 + icss-utils: 5.1.0_postcss@8.4.19 + postcss: 8.4.19 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.19 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.19 + postcss-modules-scope: 3.0.0_postcss@8.4.19 + postcss-modules-values: 4.0.0_postcss@8.4.19 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.74.0 + webpack: 5.75.0 dev: true - /css-prefers-color-scheme/6.0.3_postcss@8.4.18: + /css-prefers-color-scheme/6.0.3_postcss@8.4.19: resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false /css-select/4.3.0: @@ -11254,8 +11005,8 @@ packages: /css.escape/1.5.1: resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - /cssdb/7.0.2: - resolution: {integrity: sha512-Vm4b6P/PifADu0a76H0DKRNVWq3Rq9xa/Nx6oEMUBJlwTUuZoZ3dkZxo8Gob3UEL53Cq+Ma1GBgISed6XEBs3w==} + /cssdb/7.1.0: + resolution: {integrity: sha512-Sd99PrFgx28ez4GHu8yoQIufc/70h9oYowDf4EjeIKi8mac9whxRjhM3IaMr6EllP6KKKWtJrMfN6C7T9tIWvQ==} dev: false /cssesc/3.0.0: @@ -11278,8 +11029,8 @@ packages: cssom: 0.3.8 dev: true - /csstype/3.1.0: - resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} + /csstype/3.1.1: + resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} /csv-generate/3.4.3: resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} @@ -11636,7 +11387,6 @@ packages: /define-lazy-prop/2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} - dev: true /define-properties/1.1.4: resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} @@ -11775,11 +11525,6 @@ packages: /didyoumean/1.2.2: resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - /diff-sequences/29.2.0: - resolution: {integrity: sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dev: true - /diff-sequences/29.3.1: resolution: {integrity: sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -11907,14 +11652,14 @@ packages: is-obj: 2.0.0 dev: false - /dotenv-cli/5.1.0: - resolution: {integrity: sha512-NoEZAlKo9WVrG0b3i9mBxdD6INdDuGqdgR74t68t8084QcI077/1MnPerRW1odl+9uULhcdnQp2U0pYVppKHOA==} + /dotenv-cli/6.0.0: + resolution: {integrity: sha512-qXlCOi3UMDhCWFKe0yq5sg3X+pJAz+RQDiFN38AMSbUrnY3uZshSfDJUAge951OS7J9gwLZGfsBlWRSOYz/TRg==} hasBin: true dependencies: cross-spawn: 7.0.3 - dotenv: 16.0.1 + dotenv: 16.0.3 dotenv-expand: 8.0.3 - minimist: 1.2.6 + minimist: 1.2.7 /dotenv-expand/5.1.0: resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} @@ -11924,14 +11669,13 @@ packages: resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==} engines: {node: '>=12'} - /dotenv/16.0.1: - resolution: {integrity: sha512-1K6hR6wtk2FviQ4kEiSjFiH5rpzEVi8WW0x96aztHVMhEspNpc4DVOUTEHtEva5VThQ8IaBX1Pe4gSzpVVUsKQ==} + /dotenv-expand/9.0.0: + resolution: {integrity: sha512-uW8Hrhp5ammm9x7kBLR6jDfujgaDarNA02tprvZdyrJ7MpdzD1KyrIHG4l+YoC2fJ2UcdFdNWNWIjt+sexBHJw==} engines: {node: '>=12'} /dotenv/16.0.3: resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} engines: {node: '>=12'} - dev: true /dotenv/8.6.0: resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} @@ -12560,8 +12304,8 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-next/13.0.3_rmayb2veg2btbq6mbmnyivgasy: - resolution: {integrity: sha512-i2JoQP8gGv303GjXTonA27fm1ckRRkRoAP1WYEQgN0D2DDoFeBPqlJgHlMHnXKWjmNct/sW8jQEvy9am2juc8g==} + /eslint-config-next/13.0.4_e3uo4sehh4zr4i6m57mkkxxv7y: + resolution: {integrity: sha512-moEC7BW2TK7JKq3QfnaauqRjWzVcEf71gp5DbClpFPHM6QXE0u0uVvSTiHlmOgtCe1vyWAO+AhF87ZITd8mIDw==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -12569,17 +12313,17 @@ packages: typescript: optional: true dependencies: - '@next/eslint-plugin-next': 13.0.3 + '@next/eslint-plugin-next': 13.0.4 '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/parser': 5.42.0_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/parser': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_dcpv4nbdr5ks2h5677xdltrk6e - eslint-plugin-import: 2.26.0_romlmcqxgn73as23be7rkr3tde + eslint-import-resolver-typescript: 3.5.2_dcpv4nbdr5ks2h5677xdltrk6e + eslint-plugin-import: 2.26.0_bbzxof3vtngyannf3l4jlcflvy eslint-plugin-jsx-a11y: 6.6.1_eslint@8.27.0 eslint-plugin-react: 7.31.10_eslint@8.27.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.27.0 - typescript: 4.8.4 + typescript: 4.9.3 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color @@ -12603,25 +12347,27 @@ packages: - supports-color dev: false - /eslint-import-resolver-typescript/2.7.1_dcpv4nbdr5ks2h5677xdltrk6e: - resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==} - engines: {node: '>=4'} + /eslint-import-resolver-typescript/3.5.2_dcpv4nbdr5ks2h5677xdltrk6e: + resolution: {integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' dependencies: debug: 4.3.4 + enhanced-resolve: 5.10.0 eslint: 8.27.0 - eslint-plugin-import: 2.26.0_romlmcqxgn73as23be7rkr3tde - glob: 7.2.3 + eslint-plugin-import: 2.26.0_bbzxof3vtngyannf3l4jlcflvy + get-tsconfig: 4.2.0 + globby: 13.1.2 + is-core-module: 2.11.0 is-glob: 4.0.3 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 + synckit: 0.8.4 transitivePeerDependencies: - supports-color dev: false - /eslint-module-utils/2.7.4_gjt6ri6vwpha2jnz4uezuf4qlq: + /eslint-module-utils/2.7.4_algk2ee5wzunqscd2r3nujqfhi: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -12642,16 +12388,16 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.42.0_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/parser': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y debug: 3.2.7 eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_dcpv4nbdr5ks2h5677xdltrk6e + eslint-import-resolver-typescript: 3.5.2_dcpv4nbdr5ks2h5677xdltrk6e transitivePeerDependencies: - supports-color dev: false - /eslint-plugin-import/2.26.0_romlmcqxgn73as23be7rkr3tde: + /eslint-plugin-import/2.26.0_bbzxof3vtngyannf3l4jlcflvy: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -12661,14 +12407,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.42.0_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/parser': 5.43.0_e3uo4sehh4zr4i6m57mkkxxv7y array-includes: 3.1.6 array.prototype.flat: 1.3.1 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.4_gjt6ri6vwpha2jnz4uezuf4qlq + eslint-module-utils: 2.7.4_algk2ee5wzunqscd2r3nujqfhi has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -12682,7 +12428,7 @@ packages: - supports-color dev: false - /eslint-plugin-jest/27.1.5_whuowtn6rxwr7ok6amlpayiac4: + /eslint-plugin-jest/27.1.5_zepgltmqngws2pl4a7zw2atiyy: resolution: {integrity: sha512-CK2dekZ5VBdzsOSOH5Fc1rwC+cWXjkcyrmf1RV714nDUDKu+o73TTJiDxpbILG8PtPPpAAl3ywzh5QA7Ft0mjA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -12695,8 +12441,8 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.42.0_ofgjrzjuekeo7s3hdyz2yuzw34 - '@typescript-eslint/utils': 5.42.1_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/eslint-plugin': 5.43.0_wze2rj5tow7zwqpgbdx2buoy3m + '@typescript-eslint/utils': 5.42.1_e3uo4sehh4zr4i6m57mkkxxv7y eslint: 8.27.0 transitivePeerDependencies: - supports-color @@ -12713,7 +12459,7 @@ packages: aria-query: 4.2.2 array-includes: 3.1.6 ast-types-flow: 0.0.7 - axe-core: 4.5.1 + axe-core: 4.5.2 axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 @@ -12774,14 +12520,14 @@ packages: string.prototype.matchall: 4.0.8 dev: false - /eslint-plugin-storybook/0.6.7_rmayb2veg2btbq6mbmnyivgasy: + /eslint-plugin-storybook/0.6.7_e3uo4sehh4zr4i6m57mkkxxv7y: resolution: {integrity: sha512-lcUsB+3PesKWXwwEHGSTCijKWDXuQ4ITVbnsSDMXRCR/cjGtHZIEcy2pp/Eh7nfWA/GZrDPpK97DsTWEzyN6Bw==} engines: {node: 12.x || 14.x || >= 16} peerDependencies: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/experimental-utils': 5.30.6_rmayb2veg2btbq6mbmnyivgasy + '@typescript-eslint/experimental-utils': 5.30.6_e3uo4sehh4zr4i6m57mkkxxv7y eslint: 8.27.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -12943,7 +12689,7 @@ packages: engines: {node: '>=8.3.0'} dependencies: '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/types': 7.20.2 c8: 7.12.0 transitivePeerDependencies: - supports-color @@ -13092,17 +12838,6 @@ packages: - supports-color dev: true - /expect/29.2.2: - resolution: {integrity: sha512-hE09QerxZ5wXiOhqkXy5d2G9ar+EqOyifnCXCpMNu+vZ6DG9TJ6CO2c2kPDSLqERTTWrO7OZj8EkYHQqSd78Yw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/expect-utils': 29.2.2 - jest-get-type: 29.2.0 - jest-matcher-utils: 29.2.2 - jest-message-util: 29.2.1 - jest-util: 29.2.1 - dev: true - /expect/29.3.1: resolution: {integrity: sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -13152,45 +12887,6 @@ packages: - supports-color dev: true - /express/4.18.1: - resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} - engines: {node: '>= 0.10.0'} - dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.0 - content-disposition: 0.5.4 - content-type: 1.0.4 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.10.3 - range-parser: 1.2.1 - safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - dev: true - /express/4.18.2: resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} engines: {node: '>= 0.10.0'} @@ -13665,7 +13361,7 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: false - /fork-ts-checker-webpack-plugin/4.1.6_zrjoh7bg5rkacdtuk7dq2uvknu: + /fork-ts-checker-webpack-plugin/4.1.6_nh7kisgxcfib7qeetfrkne66xa: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -13686,14 +13382,14 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.8.4 + typescript: 4.9.3 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_pengxvf7uion7dp4c66otdblte: + /fork-ts-checker-webpack-plugin/6.5.2_bhjilrwoi7zg2tms4gfledt524: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -13721,11 +13417,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.8.4 - webpack: 5.74.0 + typescript: 4.9.3 + webpack: 5.75.0 dev: true - /fork-ts-checker-webpack-plugin/6.5.2_zrjoh7bg5rkacdtuk7dq2uvknu: + /fork-ts-checker-webpack-plugin/6.5.2_nh7kisgxcfib7qeetfrkne66xa: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -13753,7 +13449,7 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.8.4 + typescript: 4.9.3 webpack: 4.46.0 dev: true @@ -13825,8 +13521,8 @@ packages: map-cache: 0.2.2 dev: true - /framer-motion/7.6.6_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-7ti5mEzhTRBFCMlKs8Zxu9dWtVattpj2jPCNc4jaz4d7bDFekClALaBzmi1pGOKzsOWJsKMeV5ckIkD1DLI9lw==} + /framer-motion/7.6.7_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-vEGsjXygf4qSmgXXsCT1FC56DjiZau9tSQTCchwAP2mOHnYHUy5gbthc4RXFWJh4Z/gFtqE8bzEmjahwOrfT7w==} peerDependencies: react: ^18.0.0 || 18 react-dom: ^18.0.0 || 18 @@ -14038,6 +13734,10 @@ packages: call-bind: 1.0.2 get-intrinsic: 1.1.3 + /get-tsconfig/4.2.0: + resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==} + dev: false + /get-value/2.0.6: resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} engines: {node: '>=0.10.0'} @@ -14182,6 +13882,10 @@ packages: define-properties: 1.1.4 dev: true + /globalyzer/0.1.0: + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + dev: false + /globby/11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -14214,7 +13918,6 @@ packages: ignore: 5.2.0 merge2: 1.4.1 slash: 4.0.0 - dev: true /globby/9.2.0: resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} @@ -14232,12 +13935,16 @@ packages: - supports-color dev: true - /goober/2.1.10_csstype@3.1.0: + /globrex/0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + dev: false + + /goober/2.1.10_csstype@3.1.1: resolution: {integrity: sha512-7PpuQMH10jaTWm33sQgBQvz45pHR8N4l3Cu3WMGEWmHShAcTuuP7I+5/DwKo39fwti5A80WAjvqgz6SSlgWmGA==} peerDependencies: csstype: ^3.0.10 dependencies: - csstype: 3.1.0 + csstype: 3.1.1 dev: false /gopd/1.0.1: @@ -14310,25 +14017,25 @@ packages: /grapheme-splitter/1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - /graphql-config/4.3.6_nsi3j6ayd5yqrucye665qn4hse: + /graphql-config/4.3.6_6edx573jnzbjjsfdxhfko4hxwq: resolution: {integrity: sha512-i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA==} engines: {node: '>= 10.0.0'} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: - '@graphql-tools/graphql-file-loader': 7.5.6_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.7_graphql@16.6.0 - '@graphql-tools/load': 7.8.0_graphql@16.6.0 - '@graphql-tools/merge': 8.3.0_graphql@16.6.0 - '@graphql-tools/url-loader': 7.16.5_hdfzlaxoqhmrmmanxrg2npeypa - '@graphql-tools/utils': 8.13.0_graphql@16.6.0 + '@graphql-tools/graphql-file-loader': 7.5.6_graphql@15.4.0 + '@graphql-tools/json-file-loader': 7.4.7_graphql@15.4.0 + '@graphql-tools/load': 7.8.0_graphql@15.4.0 + '@graphql-tools/merge': 8.3.0_graphql@15.4.0 + '@graphql-tools/url-loader': 7.16.5_5bj44e3bqhgvwkviw5qgosvp3i + '@graphql-tools/utils': 8.13.0_graphql@15.4.0 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 - cosmiconfig-typescript-loader: 4.1.1_ai4mojnfxe5oyvmrhfq237cqti - graphql: 16.6.0 + cosmiconfig-typescript-loader: 4.1.1_hqkwlvhnlapr436diaz6e6f55i + graphql: 15.4.0 minimatch: 4.2.1 string-env-interpolation: 1.0.1 - ts-node: 10.9.1_fl6fmxnqtozxypm3ur2kzj6cpy + ts-node: 10.9.1_pldvz6pe3aqb7j6elrti4nlcrm tslib: 2.4.1 transitivePeerDependencies: - '@swc/core' @@ -14340,25 +14047,25 @@ packages: - utf-8-validate dev: true - /graphql-config/4.3.6_um4qhpthkrve4jovfdwncxwnky: + /graphql-config/4.3.6_kjbtv7ce7iv4kwcptkge5oq7pm: resolution: {integrity: sha512-i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA==} engines: {node: '>= 10.0.0'} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || 16 dependencies: - '@graphql-tools/graphql-file-loader': 7.5.6_graphql@15.4.0 - '@graphql-tools/json-file-loader': 7.4.7_graphql@15.4.0 - '@graphql-tools/load': 7.8.0_graphql@15.4.0 - '@graphql-tools/merge': 8.3.0_graphql@15.4.0 - '@graphql-tools/url-loader': 7.16.5_5bj44e3bqhgvwkviw5qgosvp3i - '@graphql-tools/utils': 8.13.0_graphql@15.4.0 + '@graphql-tools/graphql-file-loader': 7.5.6_graphql@16.6.0 + '@graphql-tools/json-file-loader': 7.4.7_graphql@16.6.0 + '@graphql-tools/load': 7.8.0_graphql@16.6.0 + '@graphql-tools/merge': 8.3.0_graphql@16.6.0 + '@graphql-tools/url-loader': 7.16.5_hdfzlaxoqhmrmmanxrg2npeypa + '@graphql-tools/utils': 8.13.0_graphql@16.6.0 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 - cosmiconfig-typescript-loader: 4.1.1_ai4mojnfxe5oyvmrhfq237cqti - graphql: 15.4.0 + cosmiconfig-typescript-loader: 4.1.1_hqkwlvhnlapr436diaz6e6f55i + graphql: 16.6.0 minimatch: 4.2.1 string-env-interpolation: 1.0.1 - ts-node: 10.9.1_fl6fmxnqtozxypm3ur2kzj6cpy + ts-node: 10.9.1_pldvz6pe3aqb7j6elrti4nlcrm tslib: 2.4.1 transitivePeerDependencies: - '@swc/core' @@ -14370,16 +14077,16 @@ packages: - utf-8-validate dev: true - /graphql-language-service-interface/2.10.2_um4qhpthkrve4jovfdwncxwnky: + /graphql-language-service-interface/2.10.2_6edx573jnzbjjsfdxhfko4hxwq: resolution: {integrity: sha512-RKIEBPhRMWdXY3fxRs99XysTDnEgAvNbu8ov/5iOlnkZsWQNzitjtd0O0l1CutQOQt3iXoHde7w8uhCnKL4tcg==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 || 16 dependencies: graphql: 15.4.0 - graphql-config: 4.3.6_um4qhpthkrve4jovfdwncxwnky - graphql-language-service-parser: 1.10.4_um4qhpthkrve4jovfdwncxwnky - graphql-language-service-types: 1.8.7_um4qhpthkrve4jovfdwncxwnky - graphql-language-service-utils: 2.7.1_um4qhpthkrve4jovfdwncxwnky + graphql-config: 4.3.6_6edx573jnzbjjsfdxhfko4hxwq + graphql-language-service-parser: 1.10.4_6edx573jnzbjjsfdxhfko4hxwq + graphql-language-service-types: 1.8.7_6edx573jnzbjjsfdxhfko4hxwq + graphql-language-service-utils: 2.7.1_6edx573jnzbjjsfdxhfko4hxwq vscode-languageserver-types: 3.17.2 transitivePeerDependencies: - '@swc/core' @@ -14391,13 +14098,13 @@ packages: - utf-8-validate dev: true - /graphql-language-service-parser/1.10.4_um4qhpthkrve4jovfdwncxwnky: + /graphql-language-service-parser/1.10.4_6edx573jnzbjjsfdxhfko4hxwq: resolution: {integrity: sha512-duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 || 16 dependencies: graphql: 15.4.0 - graphql-language-service-types: 1.8.7_um4qhpthkrve4jovfdwncxwnky + graphql-language-service-types: 1.8.7_6edx573jnzbjjsfdxhfko4hxwq transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -14408,13 +14115,13 @@ packages: - utf-8-validate dev: true - /graphql-language-service-types/1.8.7_um4qhpthkrve4jovfdwncxwnky: + /graphql-language-service-types/1.8.7_6edx573jnzbjjsfdxhfko4hxwq: resolution: {integrity: sha512-LP/Mx0nFBshYEyD0Ny6EVGfacJAGVx+qXtlJP4hLzUdBNOGimfDNtMVIdZANBXHXcM41MDgMHTnyEx2g6/Ttbw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 || 16 dependencies: graphql: 15.4.0 - graphql-config: 4.3.6_um4qhpthkrve4jovfdwncxwnky + graphql-config: 4.3.6_6edx573jnzbjjsfdxhfko4hxwq vscode-languageserver-types: 3.17.2 transitivePeerDependencies: - '@swc/core' @@ -14426,13 +14133,13 @@ packages: - utf-8-validate dev: true - /graphql-language-service-utils/2.5.1_um4qhpthkrve4jovfdwncxwnky: + /graphql-language-service-utils/2.5.1_6edx573jnzbjjsfdxhfko4hxwq: resolution: {integrity: sha512-Lzz723cYrYlVN4WVzIyFGg3ogoe+QYAIBfdtDboiIILoy0FTmqbyC2TOErqbmWKqO4NK9xDA95cSRFbWiHYj0g==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || 16 dependencies: graphql: 15.4.0 - graphql-language-service-types: 1.8.7_um4qhpthkrve4jovfdwncxwnky + graphql-language-service-types: 1.8.7_6edx573jnzbjjsfdxhfko4hxwq nullthrows: 1.1.1 transitivePeerDependencies: - '@swc/core' @@ -14444,14 +14151,14 @@ packages: - utf-8-validate dev: true - /graphql-language-service-utils/2.7.1_um4qhpthkrve4jovfdwncxwnky: + /graphql-language-service-utils/2.7.1_6edx573jnzbjjsfdxhfko4hxwq: resolution: {integrity: sha512-Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 || 16 dependencies: '@types/json-schema': 7.0.9 graphql: 15.4.0 - graphql-language-service-types: 1.8.7_um4qhpthkrve4jovfdwncxwnky + graphql-language-service-types: 1.8.7_6edx573jnzbjjsfdxhfko4hxwq nullthrows: 1.1.1 transitivePeerDependencies: - '@swc/core' @@ -14512,7 +14219,7 @@ packages: resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} - /graphqurl/1.0.1_fl6fmxnqtozxypm3ur2kzj6cpy: + /graphqurl/1.0.1_pldvz6pe3aqb7j6elrti4nlcrm: resolution: {integrity: sha512-97Chda90OBIHCpH6iQHNYc9qTTADN0LOFbiMcRws3V5SottC/0yTDIQDgBzncZYVCkttyjAnT6YmVuNId7ymQA==} engines: {node: '>=8.0.0'} hasBin: true @@ -14524,8 +14231,8 @@ packages: cli-ux: 4.9.3 express: 4.16.3 graphql: 15.4.0 - graphql-language-service-interface: 2.10.2_um4qhpthkrve4jovfdwncxwnky - graphql-language-service-utils: 2.5.1_um4qhpthkrve4jovfdwncxwnky + graphql-language-service-interface: 2.10.2_6edx573jnzbjjsfdxhfko4hxwq + graphql-language-service-utils: 2.5.1_6edx573jnzbjjsfdxhfko4hxwq isomorphic-fetch: 3.0.0 isomorphic-ws: 4.0.1_ws@7.4.2 open: 7.3.1 @@ -14900,7 +14607,7 @@ packages: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /html-loader/4.2.0_webpack@5.74.0: + /html-loader/4.2.0_webpack@5.75.0: resolution: {integrity: sha512-OxCHD3yt+qwqng2vvcaPApCEvbx+nXWu+v69TYHx1FO8bffHn/JjHtE3TTQZmHjwvnJe4xxzuecetDVBrQR1Zg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -14908,7 +14615,7 @@ packages: dependencies: html-minifier-terser: 7.0.0 parse5: 7.1.1 - webpack: 5.74.0 + webpack: 5.75.0 /html-minifier-terser/5.1.1: resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} @@ -14981,7 +14688,7 @@ packages: webpack: 4.46.0 dev: true - /html-webpack-plugin/5.5.0_webpack@5.74.0: + /html-webpack-plugin/5.5.0_webpack@5.75.0: resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -14992,7 +14699,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.74.0 + webpack: 5.75.0 dev: true /htmlparser2/5.0.1: @@ -15157,8 +14864,8 @@ packages: engines: {node: '>=12.20.0'} dev: true - /husky/8.0.1: - resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==} + /husky/8.0.2: + resolution: {integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==} engines: {node: '>=14'} hasBin: true dev: true @@ -15198,13 +14905,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils/5.1.0_postcss@8.4.18: + /icss-utils/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: true /ieee754/1.2.1: @@ -16069,12 +15776,12 @@ packages: ws: 7.4.2 dev: true - /isomorphic-ws/5.0.0_ws@8.10.0: + /isomorphic-ws/5.0.0_ws@8.11.0: resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} peerDependencies: ws: '*' dependencies: - ws: 8.10.0 + ws: 8.11.0 dev: true /isomorphic-ws/5.0.0_ws@8.8.1: @@ -16103,8 +15810,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.13 - '@babel/parser': 7.20.1 + '@babel/core': 7.20.2 + '@babel/parser': 7.20.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -16172,35 +15879,35 @@ packages: p-limit: 3.1.0 dev: true - /jest-circus/29.2.2: - resolution: {integrity: sha512-upSdWxx+Mh4DV7oueuZndJ1NVdgtTsqM4YgywHEx05UMH5nxxA2Qu9T9T9XVuR021XxqSoaKvSmmpAbjwwwxMw==} + /jest-circus/29.3.1: + resolution: {integrity: sha512-wpr26sEvwb3qQQbdlmei+gzp6yoSSoSL6GsLPxnuayZSMrSd5Ka7IjAvatpIernBvT2+Ic6RLTg+jSebScmasg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.2.2 - '@jest/expect': 29.2.2 - '@jest/test-result': 29.2.1 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 + '@jest/environment': 29.3.1 + '@jest/expect': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 is-generator-fn: 2.1.0 - jest-each: 29.2.1 - jest-matcher-utils: 29.2.2 - jest-message-util: 29.2.1 - jest-runtime: 29.2.2 - jest-snapshot: 29.2.2 - jest-util: 29.2.1 + jest-each: 29.3.1 + jest-matcher-utils: 29.3.1 + jest-message-util: 29.3.1 + jest-runtime: 29.3.1 + jest-snapshot: 29.3.1 + jest-util: 29.3.1 p-limit: 3.1.0 - pretty-format: 29.2.1 + pretty-format: 29.3.1 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 transitivePeerDependencies: - supports-color dev: true - /jest-cli/29.2.2_@types+node@16.11.45: - resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + /jest-cli/29.3.1_@types+node@16.11.45: + resolution: {integrity: sha512-TO/ewvwyvPOiBBuWZ0gm04z3WWP8TIK8acgPzE4IxgsLKQgb377NYGrQLc3Wl/7ndWzIH2CDNNsUjGxwLL43VQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -16209,16 +15916,16 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.2.2 - '@jest/test-result': 29.2.1 - '@jest/types': 29.2.1 + '@jest/core': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/types': 29.3.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.2.2_@types+node@16.11.45 - jest-util: 29.2.1 - jest-validate: 29.2.2 + jest-config: 29.3.1_@types+node@16.11.45 + jest-util: 29.3.1 + jest-validate: 29.3.1 prompts: 2.4.2 yargs: 17.6.2 transitivePeerDependencies: @@ -16227,8 +15934,8 @@ packages: - ts-node dev: true - /jest-config/29.2.2_@types+node@16.11.45: - resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + /jest-config/29.3.1_@types+node@16.11.45: + resolution: {integrity: sha512-y0tFHdj2WnTEhxmGUK1T7fgLen7YK4RtfvpLFBXfQkh2eMJAQq24Vx9472lvn5wg0MAO6B+iPfJfzdR9hJYalg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@types/node': '*' @@ -16239,82 +15946,33 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.13 - '@jest/test-sequencer': 29.2.2 - '@jest/types': 29.2.1 + '@babel/core': 7.20.2 + '@jest/test-sequencer': 29.3.1 + '@jest/types': 29.3.1 '@types/node': 16.11.45 - babel-jest: 29.2.2_@babel+core@7.18.13 - chalk: 4.1.2 - ci-info: 3.5.0 - deepmerge: 4.2.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-circus: 29.2.2 - jest-environment-node: 29.2.2 - jest-get-type: 29.2.0 - jest-regex-util: 29.2.0 - jest-resolve: 29.2.2 - jest-runner: 29.2.2 - jest-util: 29.2.1 - jest-validate: 29.2.2 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.2.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-config/29.2.2_@types+node@18.11.5: - resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - dependencies: - '@babel/core': 7.18.13 - '@jest/test-sequencer': 29.2.2 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 - babel-jest: 29.2.2_@babel+core@7.18.13 + babel-jest: 29.3.1_@babel+core@7.20.2 chalk: 4.1.2 - ci-info: 3.5.0 + ci-info: 3.6.1 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 29.2.2 - jest-environment-node: 29.2.2 + jest-circus: 29.3.1 + jest-environment-node: 29.3.1 jest-get-type: 29.2.0 jest-regex-util: 29.2.0 - jest-resolve: 29.2.2 - jest-runner: 29.2.2 - jest-util: 29.2.1 - jest-validate: 29.2.2 + jest-resolve: 29.3.1 + jest-runner: 29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.2.1 + pretty-format: 29.3.1 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color dev: true - /jest-diff/29.2.1: - resolution: {integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - chalk: 4.1.2 - diff-sequences: 29.2.0 - jest-get-type: 29.2.0 - pretty-format: 29.2.1 - dev: true - /jest-diff/29.3.1: resolution: {integrity: sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -16332,19 +15990,19 @@ packages: detect-newline: 3.1.0 dev: true - /jest-each/29.2.1: - resolution: {integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw==} + /jest-each/29.3.1: + resolution: {integrity: sha512-qrZH7PmFB9rEzCSl00BWjZYuS1BSOH8lLuC0azQE9lQrAx3PWGKHTDudQiOSwIy5dGAJh7KA0ScYlCP7JxvFYA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.2.1 + '@jest/types': 29.3.1 chalk: 4.1.2 jest-get-type: 29.2.0 - jest-util: 29.2.1 - pretty-format: 29.2.1 + jest-util: 29.3.1 + pretty-format: 29.3.1 dev: true - /jest-environment-jsdom/29.2.2: - resolution: {integrity: sha512-5mNtTcky1+RYv9kxkwMwt7fkzyX4EJUarV7iI+NQLigpV4Hz4sgfOdP4kOpCHXbkRWErV7tgXoXLm2CKtucr+A==} + /jest-environment-jsdom/29.3.1: + resolution: {integrity: sha512-G46nKgiez2Gy4zvYNhayfMEAFlVHhWfncqvqS6yCd0i+a4NsSUD2WtrKSaYQrYiLQaupHXxCRi8xxVL2M9PbhA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: canvas: ^2.5.0 @@ -16352,13 +16010,13 @@ packages: canvas: optional: true dependencies: - '@jest/environment': 29.2.2 - '@jest/fake-timers': 29.2.2 - '@jest/types': 29.2.1 - '@types/jsdom': 20.0.0 + '@jest/environment': 29.3.1 + '@jest/fake-timers': 29.3.1 + '@jest/types': 29.3.1 + '@types/jsdom': 20.0.1 '@types/node': 18.11.5 - jest-mock: 29.2.2 - jest-util: 29.2.1 + jest-mock: 29.3.1 + jest-util: 29.3.1 jsdom: 20.0.2 transitivePeerDependencies: - bufferutil @@ -16366,16 +16024,16 @@ packages: - utf-8-validate dev: true - /jest-environment-node/29.2.2: - resolution: {integrity: sha512-B7qDxQjkIakQf+YyrqV5dICNs7tlCO55WJ4OMSXsqz1lpI/0PmeuXdx2F7eU8rnPbRkUR/fItSSUh0jvE2y/tw==} + /jest-environment-node/29.3.1: + resolution: {integrity: sha512-xm2THL18Xf5sIHoU7OThBPtuH6Lerd+Y1NLYiZJlkE3hbE+7N7r8uvHIl/FkZ5ymKXJe/11SQuf3fv4v6rUMag==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.2.2 - '@jest/fake-timers': 29.2.2 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 - jest-mock: 29.2.2 - jest-util: 29.2.1 + '@jest/environment': 29.3.1 + '@jest/fake-timers': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 + jest-mock: 29.3.1 + jest-util: 29.3.1 dev: true /jest-get-type/29.2.0: @@ -16406,41 +16064,31 @@ packages: - supports-color dev: true - /jest-haste-map/29.2.1: - resolution: {integrity: sha512-wF460rAFmYc6ARcCFNw4MbGYQjYkvjovb9GBT+W10Um8q5nHq98jD6fHZMDMO3tA56S8XnmNkM8GcA8diSZfnA==} + /jest-haste-map/29.3.1: + resolution: {integrity: sha512-/FFtvoG1xjbbPXQLFef+WSU4yrc0fc0Dds6aRPBojUid7qlPqZvxdUBA03HW0fnVHXVCnCdkuoghYItKNzc/0A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.2.1 + '@jest/types': 29.3.1 '@types/graceful-fs': 4.1.5 - '@types/node': 18.11.5 + '@types/node': 16.11.45 anymatch: 3.1.2 fb-watchman: 2.0.2 graceful-fs: 4.2.10 jest-regex-util: 29.2.0 - jest-util: 29.2.1 - jest-worker: 29.2.1 + jest-util: 29.3.1 + jest-worker: 29.3.1 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 dev: true - /jest-leak-detector/29.2.1: - resolution: {integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.2.0 - pretty-format: 29.2.1 - dev: true - - /jest-matcher-utils/29.2.2: - resolution: {integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==} + /jest-leak-detector/29.3.1: + resolution: {integrity: sha512-3DA/VVXj4zFOPagGkuqHnSQf1GZBmmlagpguxEERO6Pla2g84Q1MaVIB3YMxgUaFIaYag8ZnTyQgiZ35YEqAQA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - chalk: 4.1.2 - jest-diff: 29.2.1 jest-get-type: 29.2.0 - pretty-format: 29.2.1 + pretty-format: 29.3.1 dev: true /jest-matcher-utils/29.3.1: @@ -16453,21 +16101,6 @@ packages: pretty-format: 29.3.1 dev: true - /jest-message-util/29.2.1: - resolution: {integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@babel/code-frame': 7.18.6 - '@jest/types': 29.2.1 - '@types/stack-utils': 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.10 - micromatch: 4.0.5 - pretty-format: 29.2.1 - slash: 3.0.0 - stack-utils: 2.0.5 - dev: true - /jest-message-util/29.3.1: resolution: {integrity: sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -16491,17 +16124,17 @@ packages: '@types/node': 18.11.5 dev: true - /jest-mock/29.2.2: - resolution: {integrity: sha512-1leySQxNAnivvbcx0sCB37itu8f4OX2S/+gxLAV4Z62shT4r4dTG9tACDywUAEZoLSr36aYUTsVp3WKwWt4PMQ==} + /jest-mock/29.3.1: + resolution: {integrity: sha512-H8/qFDtDVMFvFP4X8NuOT3XRDzOUTz+FeACjufHzsOIBAxivLqkB1PoLCaJx9iPPQ8dZThHPp/G3WRWyMgA3JA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.2.1 + '@jest/types': 29.3.1 '@types/node': 18.11.5 - jest-util: 29.2.1 + jest-util: 29.3.1 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@29.2.2: - resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} + /jest-pnp-resolver/1.2.3_jest-resolve@29.3.1: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: jest-resolve: '*' @@ -16509,7 +16142,7 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 29.2.2 + jest-resolve: 29.3.1 dev: true /jest-regex-util/26.0.0: @@ -16522,84 +16155,84 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /jest-resolve-dependencies/29.2.2: - resolution: {integrity: sha512-wWOmgbkbIC2NmFsq8Lb+3EkHuW5oZfctffTGvwsA4JcJ1IRk8b2tg+hz44f0lngvRTeHvp3Kyix9ACgudHH9aQ==} + /jest-resolve-dependencies/29.3.1: + resolution: {integrity: sha512-Vk0cYq0byRw2WluNmNWGqPeRnZ3p3hHmjJMp2dyyZeYIfiBskwq4rpiuGFR6QGAdbj58WC7HN4hQHjf2mpvrLA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-regex-util: 29.2.0 - jest-snapshot: 29.2.2 + jest-snapshot: 29.3.1 transitivePeerDependencies: - supports-color dev: true - /jest-resolve/29.2.2: - resolution: {integrity: sha512-3gaLpiC3kr14rJR3w7vWh0CBX2QAhfpfiQTwrFPvVrcHe5VUBtIXaR004aWE/X9B2CFrITOQAp5gxLONGrk6GA==} + /jest-resolve/29.3.1: + resolution: {integrity: sha512-amXJgH/Ng712w3Uz5gqzFBBjxV8WFLSmNjoreBGMqxgCz5cH7swmBZzgBaCIOsvb0NbpJ0vgaSFdJqMdT+rADw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 29.2.1 - jest-pnp-resolver: 1.2.2_jest-resolve@29.2.2 - jest-util: 29.2.1 - jest-validate: 29.2.2 + jest-haste-map: 29.3.1 + jest-pnp-resolver: 1.2.3_jest-resolve@29.3.1 + jest-util: 29.3.1 + jest-validate: 29.3.1 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true - /jest-runner/29.2.2: - resolution: {integrity: sha512-1CpUxXDrbsfy9Hr9/1zCUUhT813kGGK//58HeIw/t8fa/DmkecEwZSWlb1N/xDKXg3uCFHQp1GCvlSClfImMxg==} + /jest-runner/29.3.1: + resolution: {integrity: sha512-oFvcwRNrKMtE6u9+AQPMATxFcTySyKfLhvso7Sdk/rNpbhg4g2GAGCopiInk1OP4q6gz3n6MajW4+fnHWlU3bA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.2.1 - '@jest/environment': 29.2.2 - '@jest/test-result': 29.2.1 - '@jest/transform': 29.2.2 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 + '@jest/console': 29.3.1 + '@jest/environment': 29.3.1 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.10 jest-docblock: 29.2.0 - jest-environment-node: 29.2.2 - jest-haste-map: 29.2.1 - jest-leak-detector: 29.2.1 - jest-message-util: 29.2.1 - jest-resolve: 29.2.2 - jest-runtime: 29.2.2 - jest-util: 29.2.1 - jest-watcher: 29.2.2 - jest-worker: 29.2.1 + jest-environment-node: 29.3.1 + jest-haste-map: 29.3.1 + jest-leak-detector: 29.3.1 + jest-message-util: 29.3.1 + jest-resolve: 29.3.1 + jest-runtime: 29.3.1 + jest-util: 29.3.1 + jest-watcher: 29.3.1 + jest-worker: 29.3.1 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: - supports-color dev: true - /jest-runtime/29.2.2: - resolution: {integrity: sha512-TpR1V6zRdLynckKDIQaY41od4o0xWL+KOPUCZvJK2bu5P1UXhjobt5nJ2ICNeIxgyj9NGkO0aWgDqYPVhDNKjA==} + /jest-runtime/29.3.1: + resolution: {integrity: sha512-jLzkIxIqXwBEOZx7wx9OO9sxoZmgT2NhmQKzHQm1xwR1kNW/dn0OjxR424VwHHf1SPN6Qwlb5pp1oGCeFTQ62A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.2.2 - '@jest/fake-timers': 29.2.2 - '@jest/globals': 29.2.2 + '@jest/environment': 29.3.1 + '@jest/fake-timers': 29.3.1 + '@jest/globals': 29.3.1 '@jest/source-map': 29.2.0 - '@jest/test-result': 29.2.1 - '@jest/transform': 29.2.2 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 + '@jest/test-result': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 glob: 7.2.3 graceful-fs: 4.2.10 - jest-haste-map: 29.2.1 - jest-message-util: 29.2.1 - jest-mock: 29.2.2 + jest-haste-map: 29.3.1 + jest-message-util: 29.3.1 + jest-mock: 29.3.1 jest-regex-util: 29.2.0 - jest-resolve: 29.2.2 - jest-snapshot: 29.2.2 - jest-util: 29.2.1 + jest-resolve: 29.3.1 + jest-snapshot: 29.3.1 + jest-util: 29.3.1 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: @@ -16614,33 +16247,33 @@ packages: graceful-fs: 4.2.10 dev: true - /jest-snapshot/29.2.2: - resolution: {integrity: sha512-GfKJrpZ5SMqhli3NJ+mOspDqtZfJBryGA8RIBxF+G+WbDoC7HCqKaeAss4Z/Sab6bAW11ffasx8/vGsj83jyjA==} + /jest-snapshot/29.3.1: + resolution: {integrity: sha512-+3JOc+s28upYLI2OJM4PWRGK9AgpsMs/ekNryUV0yMBClT9B1DF2u2qay8YxcQd338PPYSFNb0lsar1B49sLDA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.18.13 - '@babel/generator': 7.20.1 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.18.13 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 - '@jest/expect-utils': 29.2.2 - '@jest/transform': 29.2.2 - '@jest/types': 29.2.1 + '@babel/types': 7.20.2 + '@jest/expect-utils': 29.3.1 + '@jest/transform': 29.3.1 + '@jest/types': 29.3.1 '@types/babel__traverse': 7.18.2 '@types/prettier': 2.7.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.13 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 chalk: 4.1.2 - expect: 29.2.2 + expect: 29.3.1 graceful-fs: 4.2.10 - jest-diff: 29.2.1 + jest-diff: 29.3.1 jest-get-type: 29.2.0 - jest-haste-map: 29.2.1 - jest-matcher-utils: 29.2.2 - jest-message-util: 29.2.1 - jest-util: 29.2.1 + jest-haste-map: 29.3.1 + jest-matcher-utils: 29.3.1 + jest-message-util: 29.3.1 + jest-util: 29.3.1 natural-compare: 1.4.0 - pretty-format: 29.2.1 + pretty-format: 29.3.1 semver: 7.3.8 transitivePeerDependencies: - supports-color @@ -16658,18 +16291,6 @@ packages: micromatch: 4.0.5 dev: true - /jest-util/29.2.1: - resolution: {integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.2.1 - '@types/node': 18.11.5 - chalk: 4.1.2 - ci-info: 3.5.0 - graceful-fs: 4.2.10 - picomatch: 2.3.1 - dev: true - /jest-util/29.3.1: resolution: {integrity: sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -16677,34 +16298,34 @@ packages: '@jest/types': 29.3.1 '@types/node': 18.11.5 chalk: 4.1.2 - ci-info: 3.5.0 + ci-info: 3.6.1 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true - /jest-validate/29.2.2: - resolution: {integrity: sha512-eJXATaKaSnOuxNfs8CLHgdABFgUrd0TtWS8QckiJ4L/QVDF4KVbZFBBOwCBZHOS0Rc5fOxqngXeGXE3nGQkpQA==} + /jest-validate/29.3.1: + resolution: {integrity: sha512-N9Lr3oYR2Mpzuelp1F8negJR3YE+L1ebk1rYA5qYo9TTY3f9OWdptLoNSPP9itOCBIRBqjt/S5XHlzYglLN67g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.2.1 + '@jest/types': 29.3.1 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 29.2.0 leven: 3.1.0 - pretty-format: 29.2.1 + pretty-format: 29.3.1 dev: true - /jest-watcher/29.2.2: - resolution: {integrity: sha512-j2otfqh7mOvMgN2WlJ0n7gIx9XCMWntheYGlBK7+5g3b1Su13/UAK7pdKGyd4kDlrLwtH2QPvRv5oNIxWvsJ1w==} + /jest-watcher/29.3.1: + resolution: {integrity: sha512-RspXG2BQFDsZSRKGCT/NiNa8RkQ1iKAjrO0//soTMWx/QUt+OcxMqMSBxz23PYGqUuWm2+m2mNNsmj0eIoOaFg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.2.1 - '@jest/types': 29.2.1 - '@types/node': 18.11.5 + '@jest/test-result': 29.3.1 + '@jest/types': 29.3.1 + '@types/node': 16.11.45 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 29.2.1 + jest-util: 29.3.1 string-length: 4.0.2 dev: true @@ -16725,18 +16346,18 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker/29.2.1: - resolution: {integrity: sha512-ROHTZ+oj7sBrgtv46zZ84uWky71AoYi0vEV9CdEtc1FQunsoAGe5HbQmW76nI5QWdvECVPrSi1MCVUmizSavMg==} + /jest-worker/29.3.1: + resolution: {integrity: sha512-lY4AnnmsEWeiXirAIA0c9SDPbuCBq8IYuDVL8PMm0MZ2PEs2yPvRA/J64QBXuZp7CYKrDM/rmNrc9/i3KJQncw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 18.11.5 - jest-util: 29.2.1 + '@types/node': 16.11.45 + jest-util: 29.3.1 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/29.2.2_@types+node@16.11.45: - resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + /jest/29.3.1_@types+node@16.11.45: + resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -16745,10 +16366,10 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.2.2 - '@jest/types': 29.2.1 + '@jest/core': 29.3.1 + '@jest/types': 29.3.1 import-local: 3.1.0 - jest-cli: 29.2.2_@types+node@16.11.45 + jest-cli: 29.3.1_@types+node@16.11.45 transitivePeerDependencies: - '@types/node' - supports-color @@ -16882,8 +16503,8 @@ packages: /json-stable-stringify-without-jsonify/1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - /json-stable-stringify/1.0.1: - resolution: {integrity: sha512-i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg==} + /json-stable-stringify/1.0.2: + resolution: {integrity: sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==} dependencies: jsonify: 0.0.1 dev: true @@ -18103,13 +17724,13 @@ packages: dependencies: '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y is-node-process: 1.0.1 - msw: 0.47.4_typescript@4.8.4 + msw: 0.47.4_typescript@4.9.3 transitivePeerDependencies: - react - react-dom dev: true - /msw/0.47.4_typescript@4.8.4: + /msw/0.47.4_typescript@4.9.3: resolution: {integrity: sha512-Psftt8Yfl0+l+qqg9OlmKEsxF8S/vtda0CmlR6y8wTaWrMMzuCDa55n2hEGC0ZRDwuV6FFWc/4CjoDsBpATKBw==} engines: {node: '>=14'} hasBin: true @@ -18139,7 +17760,7 @@ packages: statuses: 2.0.1 strict-event-emitter: 0.2.8 type-fest: 2.19.0 - typescript: 4.8.4 + typescript: 4.9.3 yargs: 17.6.2 transitivePeerDependencies: - encoding @@ -18222,7 +17843,7 @@ packages: type-fest: 0.4.1 dev: false - /next-auth/4.16.4_ogpkrxaz2lg6nectum6dl66tn4: + /next-auth/4.16.4_dcors23iqtgxrhrwosgnnc4xji: resolution: {integrity: sha512-KXW578+ER1u5RcWLwCHMdb/RIBIO6JM8r6xlf9RIPSKzkvDcX9FHiZfJS2vOq/SurHXPJZc4J3OS4IDJpF74Dw==} engines: {node: ^12.19.0 || ^14.15.0 || ^16.13.0 || ^18.12.0} peerDependencies: @@ -18238,7 +17859,7 @@ packages: '@panva/hkdf': 1.0.2 cookie: 0.5.0 jose: 4.11.0 - next: 13.0.3_biqbaboplfbrettd7655fr4n2y + next: 13.0.4_biqbaboplfbrettd7655fr4n2y oauth: 0.9.15 openid-client: 5.3.0 preact: 10.11.2 @@ -18247,7 +17868,7 @@ packages: react-dom: 18.2.0_react@18.2.0 uuid: 8.3.2 - /next-auth/4.16.4_ylggc6s2b74skgcs4bdumrusoa: + /next-auth/4.16.4_wg23sy66rdimfz56mrp5vlofyy: resolution: {integrity: sha512-KXW578+ER1u5RcWLwCHMdb/RIBIO6JM8r6xlf9RIPSKzkvDcX9FHiZfJS2vOq/SurHXPJZc4J3OS4IDJpF74Dw==} engines: {node: ^12.19.0 || ^14.15.0 || ^16.13.0 || ^18.12.0} peerDependencies: @@ -18263,7 +17884,7 @@ packages: '@panva/hkdf': 1.0.2 cookie: 0.5.0 jose: 4.11.0 - next: 13.0.3_biqbaboplfbrettd7655fr4n2y + next: 13.0.4_biqbaboplfbrettd7655fr4n2y nodemailer: 6.7.8 oauth: 0.9.15 openid-client: 5.3.0 @@ -18274,13 +17895,13 @@ packages: uuid: 8.3.2 dev: false - /next-axiom/0.15.1_next@13.0.3: + /next-axiom/0.15.1_next@13.0.4: resolution: {integrity: sha512-5leWEoW6LugxLGFilmJPCVmG8cfZio6sXtVw+/7dqQvEbX5T1dwvoOSfmLh2NjocP/i/R2jpdrtgFl+ZrkOl1Q==} engines: {node: '>=15'} peerDependencies: next: ^12.1.4 || ^13 dependencies: - next: 13.0.3_36dhtzzjetle2gptjwci3pgnsi + next: 13.0.4_vgii64pd2ccbnbx2v3ro5gbin4 whatwg-fetch: 3.6.2 dev: false @@ -18305,26 +17926,26 @@ packages: transitivePeerDependencies: - supports-color - /next-plausible/3.6.4_ogpkrxaz2lg6nectum6dl66tn4: + /next-plausible/3.6.4_dcors23iqtgxrhrwosgnnc4xji: resolution: {integrity: sha512-aHL4IL+gkkjs5ScB18LZ3LMEWXKR5VTvnMDs/fHNFHadOh23i37fD+VP5oAQLALR8Mde63l9JJljrw9DkvjWjQ==} peerDependencies: next: ^11.1.0 || ^12.0.0 || ^13.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - next: 13.0.3_36dhtzzjetle2gptjwci3pgnsi + next: 13.0.4_vgii64pd2ccbnbx2v3ro5gbin4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /next-themes/0.2.1_ogpkrxaz2lg6nectum6dl66tn4: + /next-themes/0.2.1_dcors23iqtgxrhrwosgnnc4xji: resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} peerDependencies: next: '*' react: '*' react-dom: '*' dependencies: - next: 13.0.3_36dhtzzjetle2gptjwci3pgnsi + next: 13.0.4_vgii64pd2ccbnbx2v3ro5gbin4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false @@ -18340,8 +17961,8 @@ packages: urql: 3.0.3_onqnqwb3ubg5opvemcqf7c2qhy dev: false - /next/13.0.3_36dhtzzjetle2gptjwci3pgnsi: - resolution: {integrity: sha512-rFQeepcenRxKzeKlh1CsmEnxsJwhIERtbUjmYnKZyDInZsU06lvaGw5DT44rlNp1Rv2MT/e9vffZ8vK+ytwXHA==} + /next/13.0.4_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-4P0MvbjPCI1E/UPL1GrTXtYlgFnbBbY3JQ+AMY8jYE2SwyvCWctEJySoRjveznAHjrl6TIjuAJeB8u1c2StYUQ==} engines: {node: '>=14.6.0'} hasBin: true peerDependencies: @@ -18358,35 +17979,34 @@ packages: sass: optional: true dependencies: - '@next/env': 13.0.3 + '@next/env': 13.0.4 '@swc/helpers': 0.4.11 caniuse-lite: 1.0.30001431 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - sass: 1.56.0 - styled-jsx: 5.1.0_ucuhn75irpsvlf3yq3xnib3jky + styled-jsx: 5.1.0_react@18.2.0 use-sync-external-store: 1.2.0_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 13.0.3 - '@next/swc-android-arm64': 13.0.3 - '@next/swc-darwin-arm64': 13.0.3 - '@next/swc-darwin-x64': 13.0.3 - '@next/swc-freebsd-x64': 13.0.3 - '@next/swc-linux-arm-gnueabihf': 13.0.3 - '@next/swc-linux-arm64-gnu': 13.0.3 - '@next/swc-linux-arm64-musl': 13.0.3 - '@next/swc-linux-x64-gnu': 13.0.3 - '@next/swc-linux-x64-musl': 13.0.3 - '@next/swc-win32-arm64-msvc': 13.0.3 - '@next/swc-win32-ia32-msvc': 13.0.3 - '@next/swc-win32-x64-msvc': 13.0.3 + '@next/swc-android-arm-eabi': 13.0.4 + '@next/swc-android-arm64': 13.0.4 + '@next/swc-darwin-arm64': 13.0.4 + '@next/swc-darwin-x64': 13.0.4 + '@next/swc-freebsd-x64': 13.0.4 + '@next/swc-linux-arm-gnueabihf': 13.0.4 + '@next/swc-linux-arm64-gnu': 13.0.4 + '@next/swc-linux-arm64-musl': 13.0.4 + '@next/swc-linux-x64-gnu': 13.0.4 + '@next/swc-linux-x64-musl': 13.0.4 + '@next/swc-win32-arm64-msvc': 13.0.4 + '@next/swc-win32-ia32-msvc': 13.0.4 + '@next/swc-win32-x64-msvc': 13.0.4 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - /next/13.0.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-rFQeepcenRxKzeKlh1CsmEnxsJwhIERtbUjmYnKZyDInZsU06lvaGw5DT44rlNp1Rv2MT/e9vffZ8vK+ytwXHA==} + /next/13.0.4_vgii64pd2ccbnbx2v3ro5gbin4: + resolution: {integrity: sha512-4P0MvbjPCI1E/UPL1GrTXtYlgFnbBbY3JQ+AMY8jYE2SwyvCWctEJySoRjveznAHjrl6TIjuAJeB8u1c2StYUQ==} engines: {node: '>=14.6.0'} hasBin: true peerDependencies: @@ -18403,28 +18023,29 @@ packages: sass: optional: true dependencies: - '@next/env': 13.0.3 + '@next/env': 13.0.4 '@swc/helpers': 0.4.11 caniuse-lite: 1.0.30001431 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.1.0_react@18.2.0 + sass: 1.56.1 + styled-jsx: 5.1.0_3lzqd2prgnu7gkxqqdmtvzna5u use-sync-external-store: 1.2.0_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 13.0.3 - '@next/swc-android-arm64': 13.0.3 - '@next/swc-darwin-arm64': 13.0.3 - '@next/swc-darwin-x64': 13.0.3 - '@next/swc-freebsd-x64': 13.0.3 - '@next/swc-linux-arm-gnueabihf': 13.0.3 - '@next/swc-linux-arm64-gnu': 13.0.3 - '@next/swc-linux-arm64-musl': 13.0.3 - '@next/swc-linux-x64-gnu': 13.0.3 - '@next/swc-linux-x64-musl': 13.0.3 - '@next/swc-win32-arm64-msvc': 13.0.3 - '@next/swc-win32-ia32-msvc': 13.0.3 - '@next/swc-win32-x64-msvc': 13.0.3 + '@next/swc-android-arm-eabi': 13.0.4 + '@next/swc-android-arm64': 13.0.4 + '@next/swc-darwin-arm64': 13.0.4 + '@next/swc-darwin-x64': 13.0.4 + '@next/swc-freebsd-x64': 13.0.4 + '@next/swc-linux-arm-gnueabihf': 13.0.4 + '@next/swc-linux-arm64-gnu': 13.0.4 + '@next/swc-linux-arm64-musl': 13.0.4 + '@next/swc-linux-x64-gnu': 13.0.4 + '@next/swc-linux-x64-musl': 13.0.4 + '@next/swc-win32-arm64-msvc': 13.0.4 + '@next/swc-win32-ia32-msvc': 13.0.4 + '@next/swc-win32-x64-msvc': 13.0.4 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -18914,7 +18535,6 @@ packages: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true /opencollective-postinstall/2.0.3: resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} @@ -19475,11 +19095,11 @@ packages: engines: {node: '>=12.13.0'} dev: true - /pnp-webpack-plugin/1.6.4_typescript@4.8.4: + /pnp-webpack-plugin/1.6.4_typescript@4.9.3: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.8.4 + ts-pnp: 1.2.0_typescript@4.9.3 transitivePeerDependencies: - typescript dev: true @@ -19513,114 +19133,114 @@ packages: engines: {node: '>=0.10.0'} dev: true - /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.18: + /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.19: resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /postcss-clamp/4.1.0_postcss@8.4.18: + /postcss-clamp/4.1.0_postcss@8.4.19: resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: postcss: ^8.4.6 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-color-functional-notation/4.2.4_postcss@8.4.18: + /postcss-color-functional-notation/4.2.4_postcss@8.4.19: resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-color-hex-alpha/8.0.4_postcss@8.4.18: + /postcss-color-hex-alpha/8.0.4_postcss@8.4.19: resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-color-rebeccapurple/7.1.1_postcss@8.4.18: + /postcss-color-rebeccapurple/7.1.1_postcss@8.4.19: resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-custom-media/8.0.2_postcss@8.4.18: + /postcss-custom-media/8.0.2_postcss@8.4.19: resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-custom-properties/12.1.10_postcss@8.4.18: + /postcss-custom-properties/12.1.10_postcss@8.4.19: resolution: {integrity: sha512-U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-custom-selectors/6.0.3_postcss@8.4.18: + /postcss-custom-selectors/6.0.3_postcss@8.4.19: resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /postcss-dir-pseudo-class/6.0.5_postcss@8.4.18: + /postcss-dir-pseudo-class/6.0.5_postcss@8.4.19: resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /postcss-double-position-gradients/3.1.2_postcss@8.4.18: + /postcss-double-position-gradients/3.1.2_postcss@8.4.19: resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.18 - postcss: 8.4.18 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-env-function/4.0.6_postcss@8.4.18: + /postcss-env-function/4.0.6_postcss@8.4.19: resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false @@ -19630,113 +19250,113 @@ packages: postcss: 7.0.39 dev: true - /postcss-flexbugs-fixes/5.0.2_postcss@8.4.18: + /postcss-flexbugs-fixes/5.0.2_postcss@8.4.19: resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: postcss: ^8.1.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-focus-visible/6.0.4_postcss@8.4.18: + /postcss-focus-visible/6.0.4_postcss@8.4.19: resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /postcss-focus-within/5.0.4_postcss@8.4.18: + /postcss-focus-within/5.0.4_postcss@8.4.19: resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /postcss-font-variant/5.0.0_postcss@8.4.18: + /postcss-font-variant/5.0.0_postcss@8.4.19: resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-gap-properties/3.0.5_postcss@8.4.18: + /postcss-gap-properties/3.0.5_postcss@8.4.19: resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-image-set-function/4.0.7_postcss@8.4.18: + /postcss-image-set-function/4.0.7_postcss@8.4.19: resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-import/14.1.0_postcss@8.4.18: + /postcss-import/14.1.0_postcss@8.4.19: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 - /postcss-import/15.0.0_postcss@8.4.18: + /postcss-import/15.0.0_postcss@8.4.19: resolution: {integrity: sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 dev: false - /postcss-initial/4.0.1_postcss@8.4.18: + /postcss-initial/4.0.1_postcss@8.4.19: resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-js/4.0.0_postcss@8.4.18: + /postcss-js/4.0.0_postcss@8.4.19: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.18 + postcss: 8.4.19 - /postcss-lab-function/4.2.1_postcss@8.4.18: + /postcss-lab-function/4.2.1_postcss@8.4.19: resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.18 - postcss: 8.4.18 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-load-config/3.1.4_postcss@8.4.18: + /postcss-load-config/3.1.4_postcss@8.4.19: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -19749,7 +19369,7 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.18 + postcss: 8.4.19 yaml: 1.10.2 /postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe: @@ -19759,7 +19379,7 @@ packages: postcss: ^7.0.0 || ^8.0.1 webpack: ^4.0.0 || ^5.0.0 dependencies: - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 klona: 2.0.5 loader-utils: 2.0.3 postcss: 7.0.39 @@ -19768,21 +19388,21 @@ packages: webpack: 4.46.0 dev: true - /postcss-loader/6.2.1_igyeriywjd4lwzfk4socqbj2qi: + /postcss-loader/6.2.1_upg3rk2kpasnbk27hkqapxaxfq: resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 dependencies: - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 klona: 2.0.5 - postcss: 8.4.18 + postcss: 8.4.19 semver: 7.3.8 - webpack: 5.74.0 + webpack: 5.75.0 dev: true - /postcss-loader/7.0.1_igyeriywjd4lwzfk4socqbj2qi: + /postcss-loader/7.0.1_upg3rk2kpasnbk27hkqapxaxfq: resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -19791,27 +19411,27 @@ packages: dependencies: cosmiconfig: 7.0.1 klona: 2.0.5 - postcss: 8.4.18 + postcss: 8.4.19 semver: 7.3.8 - webpack: 5.74.0 + webpack: 5.75.0 dev: true - /postcss-logical/5.0.4_postcss@8.4.18: + /postcss-logical/5.0.4_postcss@8.4.19: resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-media-minmax/5.0.0_postcss@8.4.18: + /postcss-media-minmax/5.0.0_postcss@8.4.19: resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false /postcss-merge-longhand/4.0.11: @@ -19824,15 +19444,15 @@ packages: stylehacks: 4.0.3 dev: false - /postcss-merge-longhand/5.1.7_postcss@8.4.18: + /postcss-merge-longhand/5.1.7_postcss@8.4.19: resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.18 + stylehacks: 5.1.1_postcss@8.4.19 dev: false /postcss-modules-extract-imports/2.0.0: @@ -19842,13 +19462,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.18: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.19: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: true /postcss-modules-local-by-default/3.0.3: @@ -19861,14 +19481,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.18: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.19: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 - postcss: 8.4.18 + icss-utils: 5.1.0_postcss@8.4.19 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true @@ -19881,13 +19501,13 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.18: + /postcss-modules-scope/3.0.0_postcss@8.4.19: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: true @@ -19898,33 +19518,33 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.18: + /postcss-modules-values/4.0.0_postcss@8.4.19: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 - postcss: 8.4.18 + icss-utils: 5.1.0_postcss@8.4.19 + postcss: 8.4.19 dev: true - /postcss-nested/6.0.0_postcss@8.4.18: + /postcss-nested/6.0.0_postcss@8.4.19: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 - /postcss-nesting/10.2.0_postcss@8.4.18: + /postcss-nesting/10.2.0_postcss@8.4.19: resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.2_dvkg4kkb622mvceygg47xxdz3a - postcss: 8.4.18 + '@csstools/selector-specificity': 2.0.2_45y636a2vqremknoajyxd5nkzy + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false @@ -19933,126 +19553,126 @@ packages: engines: {node: ^12 || ^14 || >=16} dev: false - /postcss-overflow-shorthand/3.0.4_postcss@8.4.18: + /postcss-overflow-shorthand/3.0.4_postcss@8.4.19: resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-page-break/3.0.4_postcss@8.4.18: + /postcss-page-break/3.0.4_postcss@8.4.19: resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-place/7.0.5_postcss@8.4.18: + /postcss-place/7.0.5_postcss@8.4.19: resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-preset-env/7.8.2_postcss@8.4.18: - resolution: {integrity: sha512-rSMUEaOCnovKnwc5LvBDHUDzpGP+nrUeWZGWt9M72fBvckCi45JmnJigUr4QG4zZeOHmOCNCZnd2LKDvP++ZuQ==} + /postcss-preset-env/7.8.3_postcss@8.4.19: + resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-cascade-layers': 1.1.1_postcss@8.4.18 - '@csstools/postcss-color-function': 1.1.1_postcss@8.4.18 - '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.18 - '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.18 - '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.18 - '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.18 - '@csstools/postcss-nested-calc': 1.0.0_postcss@8.4.18 - '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.18 - '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.18 - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.18 - '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.18 - '@csstools/postcss-text-decoration-shorthand': 1.0.0_postcss@8.4.18 - '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.18 - '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.18 - autoprefixer: 10.4.13_postcss@8.4.18 + '@csstools/postcss-cascade-layers': 1.1.1_postcss@8.4.19 + '@csstools/postcss-color-function': 1.1.1_postcss@8.4.19 + '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.19 + '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.19 + '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.19 + '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.19 + '@csstools/postcss-nested-calc': 1.0.0_postcss@8.4.19 + '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.19 + '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.19 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.19 + '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.19 + '@csstools/postcss-text-decoration-shorthand': 1.0.0_postcss@8.4.19 + '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.19 + '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.19 + autoprefixer: 10.4.13_postcss@8.4.19 browserslist: 4.21.4 - css-blank-pseudo: 3.0.3_postcss@8.4.18 - css-has-pseudo: 3.0.4_postcss@8.4.18 - css-prefers-color-scheme: 6.0.3_postcss@8.4.18 - cssdb: 7.0.2 - postcss: 8.4.18 - postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.18 - postcss-clamp: 4.1.0_postcss@8.4.18 - postcss-color-functional-notation: 4.2.4_postcss@8.4.18 - postcss-color-hex-alpha: 8.0.4_postcss@8.4.18 - postcss-color-rebeccapurple: 7.1.1_postcss@8.4.18 - postcss-custom-media: 8.0.2_postcss@8.4.18 - postcss-custom-properties: 12.1.10_postcss@8.4.18 - postcss-custom-selectors: 6.0.3_postcss@8.4.18 - postcss-dir-pseudo-class: 6.0.5_postcss@8.4.18 - postcss-double-position-gradients: 3.1.2_postcss@8.4.18 - postcss-env-function: 4.0.6_postcss@8.4.18 - postcss-focus-visible: 6.0.4_postcss@8.4.18 - postcss-focus-within: 5.0.4_postcss@8.4.18 - postcss-font-variant: 5.0.0_postcss@8.4.18 - postcss-gap-properties: 3.0.5_postcss@8.4.18 - postcss-image-set-function: 4.0.7_postcss@8.4.18 - postcss-initial: 4.0.1_postcss@8.4.18 - postcss-lab-function: 4.2.1_postcss@8.4.18 - postcss-logical: 5.0.4_postcss@8.4.18 - postcss-media-minmax: 5.0.0_postcss@8.4.18 - postcss-nesting: 10.2.0_postcss@8.4.18 + css-blank-pseudo: 3.0.3_postcss@8.4.19 + css-has-pseudo: 3.0.4_postcss@8.4.19 + css-prefers-color-scheme: 6.0.3_postcss@8.4.19 + cssdb: 7.1.0 + postcss: 8.4.19 + postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.19 + postcss-clamp: 4.1.0_postcss@8.4.19 + postcss-color-functional-notation: 4.2.4_postcss@8.4.19 + postcss-color-hex-alpha: 8.0.4_postcss@8.4.19 + postcss-color-rebeccapurple: 7.1.1_postcss@8.4.19 + postcss-custom-media: 8.0.2_postcss@8.4.19 + postcss-custom-properties: 12.1.10_postcss@8.4.19 + postcss-custom-selectors: 6.0.3_postcss@8.4.19 + postcss-dir-pseudo-class: 6.0.5_postcss@8.4.19 + postcss-double-position-gradients: 3.1.2_postcss@8.4.19 + postcss-env-function: 4.0.6_postcss@8.4.19 + postcss-focus-visible: 6.0.4_postcss@8.4.19 + postcss-focus-within: 5.0.4_postcss@8.4.19 + postcss-font-variant: 5.0.0_postcss@8.4.19 + postcss-gap-properties: 3.0.5_postcss@8.4.19 + postcss-image-set-function: 4.0.7_postcss@8.4.19 + postcss-initial: 4.0.1_postcss@8.4.19 + postcss-lab-function: 4.2.1_postcss@8.4.19 + postcss-logical: 5.0.4_postcss@8.4.19 + postcss-media-minmax: 5.0.0_postcss@8.4.19 + postcss-nesting: 10.2.0_postcss@8.4.19 postcss-opacity-percentage: 1.1.2 - postcss-overflow-shorthand: 3.0.4_postcss@8.4.18 - postcss-page-break: 3.0.4_postcss@8.4.18 - postcss-place: 7.0.5_postcss@8.4.18 - postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.18 - postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.18 - postcss-selector-not: 6.0.1_postcss@8.4.18 + postcss-overflow-shorthand: 3.0.4_postcss@8.4.19 + postcss-page-break: 3.0.4_postcss@8.4.19 + postcss-place: 7.0.5_postcss@8.4.19 + postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.19 + postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.19 + postcss-selector-not: 6.0.1_postcss@8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.18: + /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.19: resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false - /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.18: + /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.19: resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-safe-parser/6.0.0_postcss@8.4.18: + /postcss-safe-parser/6.0.0_postcss@8.4.19: resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-selector-not/6.0.1_postcss@8.4.18: + /postcss-selector-not/6.0.1_postcss@8.4.19: resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false @@ -20094,8 +19714,8 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss/8.4.18: - resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==} + /postcss/8.4.19: + resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -20114,7 +19734,7 @@ packages: dependencies: is-url-superb: 5.0.0 lodash.merge: 4.6.2 - postcss: 8.4.18 + postcss: 8.4.19 srcset: 4.0.0 dev: false @@ -20239,7 +19859,7 @@ packages: resolution: {integrity: sha512-8V/jQ1lkCdvnbwnpvMu0Nopv+yql2Pdc2Fh6tN6Pa/FqpPUhDeRm5TI/rQx9LsOwhjR67n2rbkrKeclYJfsMsA==} engines: {node: '>=10'} dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-merge-longhand: 4.0.11 posthtml: 0.15.2 dev: false @@ -20261,8 +19881,8 @@ packages: engines: {node: '>=12.22.0'} dependencies: css.escape: 1.5.1 - postcss: 8.4.18 - postcss-safe-parser: 6.0.0_postcss@8.4.18 + postcss: 8.4.19 + postcss-safe-parser: 6.0.0_postcss@8.4.19 postcss-selector-parser: 6.0.10 posthtml: 0.16.6 dev: false @@ -20381,15 +20001,6 @@ packages: ansi-styles: 5.2.0 react-is: 17.0.2 - /pretty-format/29.2.1: - resolution: {integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.0.0 - ansi-styles: 5.2.0 - react-is: 18.2.0 - dev: true - /pretty-format/29.3.1: resolution: {integrity: sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -20664,13 +20275,6 @@ packages: engines: {node: '>=6.0.0'} dev: true - /qs/6.10.3: - resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} - engines: {node: '>=0.6'} - dependencies: - side-channel: 1.0.4 - dev: true - /qs/6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} @@ -20838,12 +20442,12 @@ packages: strip-json-comments: 2.0.1 dev: false - /react-docgen-typescript/2.2.2_typescript@4.8.4: + /react-docgen-typescript/2.2.2_typescript@4.9.3: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.8.4 + typescript: 4.9.3 dev: true /react-docgen/5.4.3: @@ -20851,8 +20455,8 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.18.13 - '@babel/generator': 7.20.1 + '@babel/core': 7.20.2 + '@babel/generator': 7.20.4 '@babel/runtime': 7.20.1 ast-types: 0.14.2 commander: 2.20.3 @@ -21097,6 +20701,10 @@ packages: /regenerator-runtime/0.13.10: resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} + /regenerator-runtime/0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + dev: false + /regenerator-runtime/0.13.9: resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} @@ -21445,7 +21053,7 @@ packages: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.3 - postcss: 8.4.18 + postcss: 8.4.19 source-map: 0.6.1 dev: true @@ -21661,7 +21269,7 @@ packages: - supports-color dev: true - /sass-loader/12.6.0_sass@1.56.0+webpack@5.74.0: + /sass-loader/12.6.0_sass@1.56.1+webpack@5.75.0: resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -21682,16 +21290,16 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - sass: 1.56.0 - webpack: 5.74.0 + sass: 1.56.1 + webpack: 5.75.0 dev: true - /sass-loader/13.1.0_sass@1.56.0+webpack@5.74.0: - resolution: {integrity: sha512-tZS1RJQ2n2+QNyf3CCAo1H562WjL/5AM6Gi8YcPVVoNxQX8d19mx8E+8fRrMWsyc93ZL6Q8vZDSM0FHVTJaVnQ==} + /sass-loader/13.2.0_sass@1.56.1+webpack@5.75.0: + resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} engines: {node: '>= 14.15.0'} peerDependencies: fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 sass: ^1.3.0 sass-embedded: '*' webpack: ^5.0.0 @@ -21707,12 +21315,12 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - sass: 1.56.0 - webpack: 5.74.0 + sass: 1.56.1 + webpack: 5.75.0 dev: true - /sass/1.56.0: - resolution: {integrity: sha512-WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw==} + /sass/1.56.1: + resolution: {integrity: sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -22373,13 +21981,6 @@ packages: deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' dev: true - /stack-utils/2.0.5: - resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} - engines: {node: '>=10'} - dependencies: - escape-string-regexp: 2.0.0 - dev: true - /stack-utils/2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -22440,20 +22041,20 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - /stellate/1.17.0: - resolution: {integrity: sha512-BTI1hE69M0bVa0W6pTwB+iLtYJlKc8Her+JpKyceCZtbtXCjVjV1URLhLvau7oQn98Uk0VRPo4K3t92tDNoWLg==} + /stellate/1.17.1: + resolution: {integrity: sha512-5O5V2KV5QDxhScjcIDLj5t0nTK2ZfBscnwqf+xBpQTTxOMRl/hp8Dq7Y5BXGkFVZ5Ds1UrzIqxQ4/tRPpb8PMg==} hasBin: true dependencies: '@atomist/yaml-updater': 1.0.2 '@sindresorhus/slugify': 1.1.2 esbuild: 0.8.57 execa: 5.1.1 - express: 4.18.1 + express: 4.18.2 http-proxy-middleware: 2.0.6 is-ci: 3.0.1 random-words: 1.2.0 slugify: 1.6.5 - zod: 3.18.0 + zod: 3.19.1 transitivePeerDependencies: - '@types/express' - debug @@ -22464,7 +22065,7 @@ packages: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} dev: true - /storybook-addon-next/1.6.10_l2l4okt3px7rotcwrd4iw4oor4: + /storybook-addon-next/1.6.10_gs5cs42cithblp2rzvqgbdw2qm: resolution: {integrity: sha512-BYs2B5dHIfk5EXVKGC91LZJ5/z+fUjhG7mDfuZvSA0igCm7AZFbe2LJz8NxtIKJpQwiqsqSr62suAcggMRkBNg==} peerDependencies: '@storybook/addon-actions': ^6.0.0 @@ -22479,12 +22080,12 @@ packages: '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y image-size: 1.0.2 loader-utils: 3.2.0 - next: 13.0.3_36dhtzzjetle2gptjwci3pgnsi - postcss-loader: 6.2.1_igyeriywjd4lwzfk4socqbj2qi + next: 13.0.4_vgii64pd2ccbnbx2v3ro5gbin4 + postcss-loader: 6.2.1_upg3rk2kpasnbk27hkqapxaxfq react: 18.2.0 react-dom: 18.2.0_react@18.2.0 resolve-url-loader: 5.0.0 - sass-loader: 12.6.0_sass@1.56.0+webpack@5.74.0 + sass-loader: 12.6.0_sass@1.56.1+webpack@5.75.0 semver: 7.3.8 tsconfig-paths: 4.1.0 tsconfig-paths-webpack-plugin: 4.0.0 @@ -22870,7 +22471,7 @@ packages: webpack: 4.46.0 dev: true - /style-loader/2.0.0_webpack@5.74.0: + /style-loader/2.0.0_webpack@5.75.0: resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -22878,16 +22479,16 @@ packages: dependencies: loader-utils: 2.0.3 schema-utils: 3.1.1 - webpack: 5.74.0 + webpack: 5.75.0 dev: true - /style-loader/3.3.1_webpack@5.74.0: + /style-loader/3.3.1_webpack@5.75.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.74.0 + webpack: 5.75.0 dev: true /style-to-object/0.3.0: @@ -22902,7 +22503,7 @@ packages: tslib: 2.4.0 dev: false - /styled-jsx/5.1.0_react@18.2.0: + /styled-jsx/5.1.0_3lzqd2prgnu7gkxqqdmtvzna5u: resolution: {integrity: sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -22915,10 +22516,11 @@ packages: babel-plugin-macros: optional: true dependencies: + '@babel/core': 7.20.2 client-only: 0.0.1 react: 18.2.0 - /styled-jsx/5.1.0_ucuhn75irpsvlf3yq3xnib3jky: + /styled-jsx/5.1.0_react@18.2.0: resolution: {integrity: sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -22931,7 +22533,6 @@ packages: babel-plugin-macros: optional: true dependencies: - '@babel/core': 7.18.13 client-only: 0.0.1 react: 18.2.0 @@ -22944,14 +22545,14 @@ packages: postcss-selector-parser: 3.1.2 dev: false - /stylehacks/5.1.1_postcss@8.4.18: + /stylehacks/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 + postcss: 8.4.19 postcss-selector-parser: 6.0.10 dev: false @@ -22979,8 +22580,8 @@ packages: opencollective-postinstall: 2.0.3 dev: false - /superjson/1.9.1: - resolution: {integrity: sha512-oT3HA2nPKlU1+5taFgz/HDy+GEaY+CWEbLzaRJVD4gZ7zMVVC4GDNFdgvAZt6/VuIk6D2R7RtPAiCHwmdzlMmg==} + /superjson/1.11.0: + resolution: {integrity: sha512-6PfAg1FKhqkwWvPb2uXhH4MkMttdc17eJ91+Aoz4s1XUEDZFmLfFx/xVA3wgkPxAGy5dpozgGdK6V/n20Wj9yg==} engines: {node: '>=10'} dependencies: copy-anything: 3.0.2 @@ -23072,12 +22673,20 @@ packages: resolution: {integrity: sha512-qImOD23aDfnIDNqlG1NOehdB9IYsn1V9oByPjKY1nakv2MQYCEMyX033/q+aEtYCpmYK1cv2+NTmlH+ra6GA5A==} dev: true + /synckit/0.8.4: + resolution: {integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==} + engines: {node: ^14.18.0 || >=16.0.0} + dependencies: + '@pkgr/utils': 2.3.1 + tslib: 2.4.1 + dev: false + /tailwindcss-box-shadow/2.0.0_tailwindcss@3.2.4: resolution: {integrity: sha512-RZdePEMzIpiTG0FmbncVlY6Zkqp3tBhpyCoVpc8UQBZEdGY8TqVcIrE75Si4vIz/oGDAIFRKGeKFt2HLLbLHHQ==} peerDependencies: tailwindcss: '>=3.0.0' dependencies: - tailwindcss: 3.2.4_postcss@8.4.18 + tailwindcss: 3.2.4_postcss@8.4.19 dev: false /tailwindcss-email-variants/2.0.0_tailwindcss@3.2.4: @@ -23086,7 +22695,7 @@ packages: tailwindcss: '>=3.1.0' dependencies: lodash.get: 4.4.2 - tailwindcss: 3.2.4_postcss@8.4.18 + tailwindcss: 3.2.4_postcss@8.4.19 dev: false /tailwindcss-mso/1.3.0_tailwindcss@3.2.4: @@ -23094,10 +22703,10 @@ packages: peerDependencies: tailwindcss: '>=3.0.0' dependencies: - tailwindcss: 3.2.4_postcss@8.4.18 + tailwindcss: 3.2.4_postcss@8.4.19 dev: false - /tailwindcss/3.2.4_postcss@8.4.18: + /tailwindcss/3.2.4_postcss@8.4.19: resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} engines: {node: '>=12.13.0'} hasBin: true @@ -23118,11 +22727,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.18 - postcss-import: 14.1.0_postcss@8.4.18 - postcss-js: 4.0.0_postcss@8.4.18 - postcss-load-config: 3.1.4_postcss@8.4.18 - postcss-nested: 6.0.0_postcss@8.4.18 + postcss: 8.4.19 + postcss-import: 14.1.0_postcss@8.4.19 + postcss-js: 4.0.0_postcss@8.4.19 + postcss-load-config: 3.1.4_postcss@8.4.19 + postcss-nested: 6.0.0_postcss@8.4.19 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -23229,7 +22838,7 @@ packages: - bluebird dev: true - /terser-webpack-plugin/5.3.6_webpack@5.74.0: + /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'} peerDependencies: @@ -23250,7 +22859,7 @@ packages: schema-utils: 3.1.1 serialize-javascript: 6.0.0 terser: 5.15.0 - webpack: 5.74.0 + webpack: 5.75.0 /terser/4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} @@ -23330,6 +22939,13 @@ packages: setimmediate: 1.0.5 dev: true + /tiny-glob/0.2.9: + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + dependencies: + globalyzer: 0.1.0 + globrex: 0.1.2 + dev: false + /tippy.js/6.3.7: resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} dependencies: @@ -23516,7 +23132,7 @@ packages: resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==} dev: true - /ts-node/10.9.1_fl6fmxnqtozxypm3ur2kzj6cpy: + /ts-node/10.9.1_pldvz6pe3aqb7j6elrti4nlcrm: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -23542,11 +23158,11 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.8.4 + typescript: 4.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /ts-pnp/1.2.0_typescript@4.8.4: + /ts-pnp/1.2.0_typescript@4.9.3: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -23555,7 +23171,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.8.4 + typescript: 4.9.3 dev: true /tsconfig-paths-webpack-plugin/4.0.0: @@ -23594,14 +23210,14 @@ packages: /tslib/2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - /tsutils/3.21.0_typescript@4.8.4: + /tsutils/3.21.0_typescript@4.9.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.8.4 + typescript: 4.9.3 dev: false /tty-browserify/0.0.0: @@ -23771,8 +23387,8 @@ packages: /typedarray/0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typescript/4.8.4: - resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} + /typescript/4.9.3: + resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} engines: {node: '>=4.2.0'} hasBin: true @@ -24328,7 +23944,7 @@ packages: optional: true dependencies: esbuild: 0.14.48 - postcss: 8.4.18 + postcss: 8.4.19 resolve: 1.22.1 rollup: 2.75.7 optionalDependencies: @@ -24491,15 +24107,15 @@ packages: engines: {node: '>=12'} dev: true - /webpack-bundle-analyzer/4.3.0: - resolution: {integrity: sha512-J3TPm54bPARx6QG8z4cKBszahnUglcv70+N+8gUqv2I5KOFHJbzBiLx+pAp606so0X004fxM7hqRu10MLjJifA==} + /webpack-bundle-analyzer/4.7.0: + resolution: {integrity: sha512-j9b8ynpJS4K+zfO5GGwsAcQX4ZHpWV+yRiHDiL+bE0XHJ8NiPYLTNVQdlFYWxtpg9lfAQNlwJg16J9AJtFSXRg==} engines: {node: '>= 10.13.0'} hasBin: true dependencies: acorn: 8.8.1 acorn-walk: 8.2.0 chalk: 4.1.2 - commander: 6.2.1 + commander: 7.2.0 gzip-size: 6.0.0 lodash: 4.17.21 opener: 1.5.2 @@ -24524,7 +24140,7 @@ packages: webpack-log: 2.0.0 dev: true - /webpack-dev-middleware/4.3.0_webpack@5.74.0: + /webpack-dev-middleware/4.3.0_webpack@5.75.0: resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} engines: {node: '>= v10.23.3'} peerDependencies: @@ -24536,7 +24152,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 - webpack: 5.74.0 + webpack: 5.75.0 dev: true /webpack-filter-warnings-plugin/1.2.1_webpack@4.46.0: @@ -24627,8 +24243,8 @@ packages: - supports-color dev: true - /webpack/5.74.0: - resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==} + /webpack/5.75.0: + resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -24642,8 +24258,8 @@ packages: '@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 + acorn: 8.8.1 + acorn-import-assertions: 1.8.0_acorn@8.8.1 browserslist: 4.21.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 @@ -24658,7 +24274,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.75.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -24909,19 +24525,6 @@ packages: optional: true dev: true - /ws/8.10.0: - resolution: {integrity: sha512-+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - dev: true - /ws/8.11.0: resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} engines: {node: '>=10.0.0'} @@ -25118,8 +24721,8 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - /zod/3.18.0: - resolution: {integrity: sha512-gwTm8RfUCe8l9rDwN5r2A17DkAa8Ez4Yl4yXqc5VqeGaXaJahzYYXbTwvhroZi0SNBqTwh/bKm2N0mpCzuw4bA==} + /zod/3.19.1: + resolution: {integrity: sha512-LYjZsEDhCdYET9ikFu6dVPGp2YH9DegXjdJToSzD9rO6fy4qiRYFoyEYwps88OseJlPyl2NOe2iJuhEhL7IpEA==} dev: true /zwitch/1.0.5: