diff --git a/packages/db/index.ts b/packages/db/index.ts index 1357ed531a..243a52ab3a 100644 --- a/packages/db/index.ts +++ b/packages/db/index.ts @@ -6,10 +6,10 @@ declare global { var prisma: PrismaClient | undefined } -export const prisma: PrismaClient = +export const prisma = global.prisma || new PrismaClient({ - // log: process.env.NODE_ENV === 'development' ? ['query', 'error', 'warn'] : ['error'], + log: process.env.NODE_ENV === 'development' ? ['query', 'error', 'warn'] : ['error'], }) if (process.env.NODE_ENV !== 'production') { diff --git a/packages/db/package.json b/packages/db/package.json index eb3cd14828..717a4b9340 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -33,7 +33,7 @@ "with-env": "dotenv -e ../../.env --" }, "dependencies": { - "@prisma/client": "4.7.0", + "@prisma/client": "4.7.1", "prisma-docs-generator": "0.5.0", "zod": "3.19.1" }, @@ -65,7 +65,7 @@ "listr2": "5.0.5", "luxon": "3.1.0", "mongoback": "3.0.3", - "prisma": "4.7.0", + "prisma": "4.7.1", "prisma-dbml-generator": "0.10.0", "quicktype-core": "6.1.0", "recursive-readdir": "2.2.3", diff --git a/packages/db/prisma/schema.prisma b/packages/db/prisma/schema.prisma index 2c9f04e115..d38e2a7256 100644 --- a/packages/db/prisma/schema.prisma +++ b/packages/db/prisma/schema.prisma @@ -1,9 +1,10 @@ generator client { provider = "prisma-client-js" - previewFeatures = ["fieldReference", "postgresqlExtensions", "clientExtensions", "filteredRelationCount", "multiSchema"] - // output = "../../../node_modules/.prisma/client" - // output = "../node_modules/.prisma/client" - binaryTargets = ["native", "rhel-openssl-1.0.x"] + // clientExtensions causing error + // previewFeatures = ["fieldReference", "postgresqlExtensions", "filteredRelationCount", "multiSchema", "clientExtensions"] + previewFeatures = ["fieldReference", "postgresqlExtensions", "filteredRelationCount", "multiSchema"] + + binaryTargets = ["native", "rhel-openssl-1.0.x"] } // generator docs { diff --git a/packages/db/seed/data/03-ethnicity.ts b/packages/db/seed/data/03-ethnicity.ts index 1d9e791a6a..4fc1bba222 100644 --- a/packages/db/seed/data/03-ethnicity.ts +++ b/packages/db/seed/data/03-ethnicity.ts @@ -1,10 +1,8 @@ -import { Prisma, UserEthnicity } from '~/client' import { prisma } from '~/index' import { logFile } from '../logger' import { ListrTask } from '../starterData' -import { keySlug } from './00-namespaces' -import { translationNamespace } from './01-user' +import { keySlug, namespaces } from './00-namespaces' type EthnicityData = string[] @@ -23,46 +21,39 @@ const ethnicityData: EthnicityData = [ ] export const generateEthnicityRecords = (task: ListrTask) => { - const queue: Prisma.Prisma__UserEthnicityClient>[] = [] - let i = 1 - for (const item of ethnicityData) { - const transaction: Prisma.Prisma__UserEthnicityClient> = - prisma.userEthnicity.upsert({ - where: { - ethnicity: item, - }, - create: { - ethnicity: item, - key: { - create: { - key: `eth-${keySlug(item)}`, - text: item, - namespace: { - connect: { - name: translationNamespace, - }, + const queue = ethnicityData.map((item, i) => { + const logMessage = `(${i}/${ethnicityData.length}) Added Ethnicity transaction to queue: ${item}` + logFile.log(logMessage) + task.output = logMessage + + return prisma.userEthnicity.upsert({ + where: { + ethnicity: item, + }, + create: { + ethnicity: item, + key: { + create: { + key: `eth-${keySlug(item)}`, + text: item, + namespace: { + connect: { + name: namespaces.user, }, }, }, }, - update: { - key: { - update: { - key: `eth-${keySlug(item)}`, - text: item, - }, + }, + update: { + key: { + update: { + key: `eth-${keySlug(item)}`, + text: item, }, }, - select: { - id: true, - }, - }) + }, + }) + }) - queue.push(transaction) - const logMessage = `(${i}/${ethnicityData.length}) Added Ethnicity transaction to queue: ${item}` - logFile.log(logMessage) - task.output = logMessage - i++ - } return queue } diff --git a/packages/db/seed/starter/01-user.ts b/packages/db/seed/starter/01-user.ts index 797850fb4b..d114786046 100644 --- a/packages/db/seed/starter/01-user.ts +++ b/packages/db/seed/starter/01-user.ts @@ -1,12 +1,10 @@ -import { UserRole } from '@prisma/client' import slugify from 'slugify' -import { Prisma } from '~/client' import { prisma } from '~/index' import { namespaces } from '~/seed/data' import { ListrTask } from '~/seed/starterData' -import { seedUser, userEmail, userRoleList } from '../data/01-user' +import { seedUser, userEmail, userRoleList } from '../data' import { logFile } from '../logger' export const seedSystemUser = async (task: ListrTask) => { @@ -77,7 +75,7 @@ export const seedUserTypes = async (task: ListrTask) => { export const seedUserRoles = async (task: ListrTask) => { let logMessage = `` let countA = 1 - const bulkTransactions: Prisma.Prisma__UserRoleClient[] = userRoleList.map((role) => { + const bulkTransactions = userRoleList.map((role) => { logMessage = `(${countA}/${userRoleList.length}) Upserting User Role: ${role.name}` logFile.info(logMessage) task.output = logMessage diff --git a/packages/db/seed/starter/12-geodata.ts b/packages/db/seed/starter/12-geodata.ts index 44f174a0e8..d9cd093171 100644 --- a/packages/db/seed/starter/12-geodata.ts +++ b/packages/db/seed/starter/12-geodata.ts @@ -202,9 +202,6 @@ const countryUS = async (task: ListrTask) => { parent: connectTo(stateId), key, }, - select: { - id: true, - }, }) ) countA++ diff --git a/packages/db/tsconfig.json b/packages/db/tsconfig.json index b41d98970c..1cc4ae60df 100644 --- a/packages/db/tsconfig.json +++ b/packages/db/tsconfig.json @@ -6,8 +6,7 @@ "baseUrl": ".", "paths": { "~/*": ["./*"] - }, - "declaration": true + } }, - "include": ["index.ts", "data-transfer", "seed", "zod-schemas", "zod-util"] + "include": ["index.ts", "datastore", "seed", "zod-schemas", "zod-util"] } diff --git a/packages/db/tsup.config.ts b/packages/db/tsup.config.ts deleted file mode 100644 index fdccea8cb2..0000000000 --- a/packages/db/tsup.config.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { defineConfig } from 'tsup' - -const isProduction = process.env.NODE_ENV === 'production' - -export default defineConfig({ - clean: true, - dts: true, - entry: ['src/index.ts'], - format: ['cjs', 'esm'], - minify: isProduction, - sourcemap: true, -}) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 308092952b..b079281a0c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -59,7 +59,7 @@ importers: '@trivago/prettier-plugin-sort-imports': 4.0.0_7iityaylzhqoyd5ur2ge4d7l24 '@types/eslint': 8.4.10 '@types/prettier': 2.7.1 - '@typescript-eslint/eslint-plugin': 5.44.0_fnsv2sbzcckq65bwfk7a5xwslu + '@typescript-eslint/eslint-plugin': 5.44.0_czs5uoqkd3podpy6vgtsxfc7au '@weareinreach/config': link:packages/config '@weareinreach/eslint-config': link:packages/eslint-config cypress: 11.1.0 @@ -67,7 +67,7 @@ importers: eslint-import-resolver-typescript: 3.5.2_ktrec6dplf4now6nlbc6d67jee eslint-plugin-codegen: 0.16.1 eslint-plugin-i18next: 6.0.0-6 - eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 + eslint-plugin-import: 2.26.0_xmouedd5rhgbah4737x2hltudq eslint-plugin-prettier: 4.2.1_bqvntwytoepwmeyeh2xeb7vzue eslint-plugin-react: 7.31.11_eslint@8.28.0 eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 @@ -137,7 +137,7 @@ importers: '@weareinreach/db': link:../../packages/db '@weareinreach/ui': link:../../packages/ui i18next: 22.0.6 - next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a + next: 13.0.5_672uxklweod7ene3nqtsh262ca next-auth: 4.17.0_7iuvftg57tblwyxclfkwku5xo4 next-i18next: 13.0.0_sqrilzjmqdbnpr3f23fvxycbtm next-transpile-modules: 10.0.0 @@ -162,7 +162,7 @@ importers: eslint-plugin-codegen: 0.16.1 eslint-plugin-i18next: 6.0.0-6 eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 - eslint-plugin-prettier: 4.2.1_bqvntwytoepwmeyeh2xeb7vzue + eslint-plugin-prettier: 4.2.1_5qrnzwqb344w6up62gv3safeoi eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 listr2: 5.0.5 typescript: 4.9.3 @@ -229,7 +229,7 @@ importers: eslint-import-resolver-typescript: 3.5.2_ktrec6dplf4now6nlbc6d67jee eslint-plugin-codegen: 0.16.1 eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 - eslint-plugin-prettier: 4.2.1_bqvntwytoepwmeyeh2xeb7vzue + eslint-plugin-prettier: 4.2.1_5qrnzwqb344w6up62gv3safeoi eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 typescript: 4.9.3 @@ -252,21 +252,21 @@ importers: react-dom: 18.2.0 typescript: 4.9.3 dependencies: - '@next-auth/prisma-adapter': 1.0.5_shvya3vkjwvqcakop4qe7lit3y + '@next-auth/prisma-adapter': 1.0.5_w3qkztkwfy6eylhe7n5itugygy '@weareinreach/config': link:../config '@weareinreach/db': link:../db '@weareinreach/eslint-config': link:../eslint-config - next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a + next: 13.0.5_672uxklweod7ene3nqtsh262ca next-auth: 4.17.0_7iuvftg57tblwyxclfkwku5xo4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: - '@typescript-eslint/eslint-plugin': 5.44.0_fnsv2sbzcckq65bwfk7a5xwslu + '@typescript-eslint/eslint-plugin': 5.44.0_czs5uoqkd3podpy6vgtsxfc7au eslint: 8.28.0 eslint-import-resolver-typescript: 3.5.2_ktrec6dplf4now6nlbc6d67jee eslint-plugin-codegen: 0.16.1 - eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 - eslint-plugin-prettier: 4.2.1_bqvntwytoepwmeyeh2xeb7vzue + eslint-plugin-import: 2.26.0_xmouedd5rhgbah4737x2hltudq + eslint-plugin-prettier: 4.2.1_5qrnzwqb344w6up62gv3safeoi eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 typescript: 4.9.3 @@ -304,7 +304,7 @@ importers: typescript: 4.9.3 devDependencies: '@weareinreach/eslint-config': link:../eslint-config - next-i18next: 13.0.0_sqrilzjmqdbnpr3f23fvxycbtm + next-i18next: 13.0.0_v45ngicqsnc2kfmiosh7h2lq44 typescript: 4.9.3 packages/db: @@ -312,7 +312,7 @@ importers: '@faker-js/faker': 7.6.0 '@nuskin/mexico-state-lookup': 2.1.0 '@placemarkio/check-geojson': 0.1.12 - '@prisma/client': 4.7.0 + '@prisma/client': 4.7.1 '@types/luxon': 3.1.0 '@types/node': 16.18.3 '@types/recursive-readdir': 2.2.1 @@ -337,7 +337,7 @@ importers: listr2: 5.0.5 luxon: 3.1.0 mongoback: 3.0.3 - prisma: 4.7.0 + prisma: 4.7.1 prisma-dbml-generator: 0.10.0 prisma-docs-generator: 0.5.0 quicktype-core: 6.1.0 @@ -351,7 +351,7 @@ importers: zod: 3.19.1 zod-prisma: 0.5.4 dependencies: - '@prisma/client': 4.7.0_prisma@4.7.0 + '@prisma/client': 4.7.1_prisma@4.7.1 prisma-docs-generator: 0.5.0 zod: 3.19.1 devDependencies: @@ -361,7 +361,7 @@ importers: '@types/luxon': 3.1.0 '@types/node': 16.18.3 '@types/recursive-readdir': 2.2.1 - '@typescript-eslint/eslint-plugin': 5.44.0_fnsv2sbzcckq65bwfk7a5xwslu + '@typescript-eslint/eslint-plugin': 5.44.0_czs5uoqkd3podpy6vgtsxfc7au '@weareinreach/config': link:../config '@weareinreach/eslint-config': link:../eslint-config '@zerodep/geo.stateiso': 0.1.4 @@ -372,8 +372,8 @@ importers: eslint: 8.28.0 eslint-import-resolver-typescript: 3.5.2_ktrec6dplf4now6nlbc6d67jee eslint-plugin-codegen: 0.16.1 - eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 - eslint-plugin-prettier: 4.2.1_bqvntwytoepwmeyeh2xeb7vzue + eslint-plugin-import: 2.26.0_xmouedd5rhgbah4737x2hltudq + eslint-plugin-prettier: 4.2.1_5qrnzwqb344w6up62gv3safeoi eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 eslint-plugin-turbo: 0.0.4_eslint@8.28.0 inquirer: 9.1.4 @@ -382,7 +382,7 @@ importers: listr2: 5.0.5 luxon: 3.1.0 mongoback: 3.0.3 - prisma: 4.7.0 + prisma: 4.7.1 prisma-dbml-generator: 0.10.0 quicktype-core: 6.1.0 recursive-readdir: 2.2.3 @@ -392,7 +392,7 @@ importers: tsup: 6.5.0_typescript@4.9.3 tsx: 3.12.1 typescript: 4.9.3 - zod-prisma: 0.5.4_sgyu4cerrvputcbquvozfdvpkm_prisma@4.7.0+zod@3.19.1 + zod-prisma: 0.5.4_sgyu4cerrvputcbquvozfdvpkm_prisma@4.7.1+zod@3.19.1 packages/eslint-config: specifiers: @@ -427,12 +427,12 @@ importers: eslint-plugin-codegen: 0.16.1 eslint-plugin-i18next: 6.0.0-6 eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 - eslint-plugin-prettier: 4.2.1_pgxuib4rd7wiymfktharf5ydt4 + eslint-plugin-prettier: 4.2.1_cwlo2dingkvfydnaculr42urve eslint-plugin-react: 7.31.11_eslint@8.28.0 eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 eslint-plugin-storybook: 0.6.7_hsf322ms6xhhd4b5ne6lb74y4a eslint-plugin-turbo: 0.0.4_eslint@8.28.0 - next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a + next: 13.0.5_672uxklweod7ene3nqtsh262ca typescript: 4.9.3 packages/types: @@ -554,8 +554,8 @@ importers: '@mantine/spotlight': 5.8.2_mg4am4smyspjkl6dnttcswxx6a '@mantine/tiptap': 5.8.2_rpdii6eeyt5hlwlx3r4rmgsomy '@tabler/icons': 1.112.0_biqbaboplfbrettd7655fr4n2y - '@tiptap/extension-link': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/react': 2.0.0-beta.202_b34bfmrzq6nwqs5zwwuhxagzky + '@tiptap/extension-link': 2.0.0-beta.202_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/react': 2.0.0-beta.202_z5f4pk2xasrno4tu55p73jy46e '@tiptap/starter-kit': 2.0.0-beta.202 dayjs: 1.11.6 embla-carousel-react: 7.0.5_react@18.2.0 @@ -572,13 +572,13 @@ importers: '@storybook/addon-a11y': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-actions': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-console': 1.2.3_iko6cgwlotu65qv3holbkifd64 - '@storybook/addon-essentials': 6.5.13_mkvqu4dpcolj4gx2fwxsmvgdzm + '@storybook/addon-essentials': 6.5.13_nak4rpspbnlvsomoybt5x36ojq '@storybook/addon-interactions': 6.5.13_ivdudmvvzzsf6tsttamhsg5viq '@storybook/addon-links': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addon-viewport': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq - '@storybook/manager-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq - '@storybook/react': 6.5.13_au32duyi3m4ybju6hwbawtuyhy + '@storybook/builder-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra + '@storybook/manager-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra + '@storybook/react': 6.5.13_kngzsb3kxr3jz3r3kxbxnuc6zi '@storybook/testing-library': 0.0.13_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y '@tomfreudenberg/next-auth-mock': 0.5.5_7tjtr4gwc27uhst4gumlj2abwq @@ -586,7 +586,7 @@ importers: '@types/node': 16.18.3 '@types/react': 18.0.25 '@types/react-dom': 18.0.9 - '@typescript-eslint/eslint-plugin': 5.44.0_fnsv2sbzcckq65bwfk7a5xwslu + '@typescript-eslint/eslint-plugin': 5.44.0_czs5uoqkd3podpy6vgtsxfc7au '@weareinreach/config': link:../config '@weareinreach/eslint-config': link:../eslint-config babel-loader: 9.1.0_npabyccmuonwo2rku4k53xo3hi @@ -596,8 +596,8 @@ importers: eslint-import-resolver-typescript: 3.5.2_ktrec6dplf4now6nlbc6d67jee eslint-plugin-codegen: 0.16.1 eslint-plugin-i18next: 6.0.0-6 - eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 - eslint-plugin-prettier: 4.2.1_bqvntwytoepwmeyeh2xeb7vzue + eslint-plugin-import: 2.26.0_xmouedd5rhgbah4737x2hltudq + eslint-plugin-prettier: 4.2.1_5qrnzwqb344w6up62gv3safeoi eslint-plugin-react: 7.31.11_eslint@8.28.0 eslint-plugin-simple-import-sort: 8.0.0_eslint@8.28.0 eslint-plugin-storybook: 0.6.7_hsf322ms6xhhd4b5ne6lb74y4a @@ -616,17 +616,17 @@ importers: resolve-url-loader: 5.0.0 sb: 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu storybook-addon-designs: 6.3.1_react@18.2.0 - storybook-addon-mantine: 1.2.0_kxryx5xabwyhguur6rzvcl3qou - storybook-addon-next: 1.6.10_cjg66g6fneesfs7tbdkcqzaiym + storybook-addon-mantine: 1.2.0_57olb5elduasqxzzm7quc5o75u + storybook-addon-next: 1.6.10_7ez7knh5odcvi2ucx2npve4sea storybook-addon-swc: 1.1.9_webpack@5.75.0 storybook-addon-turbo-build: 1.1.0_webpack@5.75.0 storybook-dark-mode: 1.1.2_biqbaboplfbrettd7655fr4n2y storybook-mobile: 1.0.0_7i5myeigehqah43i5u7wbekgba - storybook-react-i18next: 1.1.2_aunqird6f4wx7xy2oxa7qkvlea + storybook-react-i18next: 1.1.2_s2dywop7cx7xoblnhnjuv5c55q style-loader: 3.3.1_webpack@5.75.0 type-fest: 3.2.0 typescript: 4.9.3 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 packages: @@ -651,7 +651,7 @@ packages: '@aws-crypto/sha256-js': 2.0.0 '@aws-crypto/supports-web-crypto': 2.0.2 '@aws-crypto/util': 2.0.2 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-locate-window': 3.208.0 '@aws-sdk/util-utf8-browser': 3.188.0 tslib: 1.14.1 @@ -662,7 +662,7 @@ packages: resolution: {integrity: sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==} dependencies: '@aws-crypto/util': 2.0.2 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 1.14.1 dev: true optional: true @@ -677,57 +677,58 @@ packages: /@aws-crypto/util/2.0.2: resolution: {integrity: sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-utf8-browser': 3.188.0 tslib: 1.14.1 dev: true optional: true - /@aws-sdk/abort-controller/3.212.0: - resolution: {integrity: sha512-mXeBSuDi0Fpul4zk9VH2z0VKN+/+6hyJ9SXSRhn3LpMcyj3GeZtXyTB2wCsfxXYGxeGbV+bIzbPbhZza6wNfWg==} + /@aws-sdk/abort-controller/3.222.0: + resolution: {integrity: sha512-Ric2vJQEWrzz915wBeZlYLWAnIsnywOcZpzroPVTY/TNKRvM0GcSPVuD9vv1lOwybVnDHsipukzwQBAZXkNWVA==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/client-cognito-identity/3.213.0: - resolution: {integrity: sha512-S2vYT+g8F/t55/6cMwmLxJr3hkv85SGKMONqmQJPxvxQbrYV54NNPdFylkrey9+xbY3VYHmTh2dZ7znjXrkJsw==} + /@aws-sdk/client-cognito-identity/3.222.0: + resolution: {integrity: sha512-MGjs8UC+lX5k/LCGf6lHdGQVITQMh8vCRgCxGnlegQ/LldTbkzNWfeSZufvNvwJ9uAsOKDScVEaPrYRqGXkJzg==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/client-sts': 3.213.0 - '@aws-sdk/config-resolver': 3.212.0 - '@aws-sdk/credential-provider-node': 3.212.0 - '@aws-sdk/fetch-http-handler': 3.212.0 - '@aws-sdk/hash-node': 3.212.0 - '@aws-sdk/invalid-dependency': 3.212.0 - '@aws-sdk/middleware-content-length': 3.212.0 - '@aws-sdk/middleware-endpoint': 3.212.0 - '@aws-sdk/middleware-host-header': 3.212.0 - '@aws-sdk/middleware-logger': 3.212.0 - '@aws-sdk/middleware-recursion-detection': 3.212.0 - '@aws-sdk/middleware-retry': 3.212.0 - '@aws-sdk/middleware-serde': 3.212.0 - '@aws-sdk/middleware-signing': 3.212.0 - '@aws-sdk/middleware-stack': 3.212.0 - '@aws-sdk/middleware-user-agent': 3.212.0 - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/node-http-handler': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/smithy-client': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/url-parser': 3.212.0 + '@aws-sdk/client-sts': 3.222.0 + '@aws-sdk/config-resolver': 3.222.0 + '@aws-sdk/credential-provider-node': 3.222.0 + '@aws-sdk/fetch-http-handler': 3.222.0 + '@aws-sdk/hash-node': 3.222.0 + '@aws-sdk/invalid-dependency': 3.222.0 + '@aws-sdk/middleware-content-length': 3.222.0 + '@aws-sdk/middleware-endpoint': 3.222.0 + '@aws-sdk/middleware-host-header': 3.222.0 + '@aws-sdk/middleware-logger': 3.222.0 + '@aws-sdk/middleware-recursion-detection': 3.222.0 + '@aws-sdk/middleware-retry': 3.222.0 + '@aws-sdk/middleware-serde': 3.222.0 + '@aws-sdk/middleware-signing': 3.222.0 + '@aws-sdk/middleware-stack': 3.222.0 + '@aws-sdk/middleware-user-agent': 3.222.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/node-http-handler': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/smithy-client': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/url-parser': 3.222.0 '@aws-sdk/util-base64': 3.208.0 '@aws-sdk/util-body-length-browser': 3.188.0 '@aws-sdk/util-body-length-node': 3.208.0 - '@aws-sdk/util-defaults-mode-browser': 3.212.0 - '@aws-sdk/util-defaults-mode-node': 3.212.0 - '@aws-sdk/util-endpoints': 3.212.0 - '@aws-sdk/util-user-agent-browser': 3.212.0 - '@aws-sdk/util-user-agent-node': 3.212.0 + '@aws-sdk/util-defaults-mode-browser': 3.222.0 + '@aws-sdk/util-defaults-mode-node': 3.222.0 + '@aws-sdk/util-endpoints': 3.222.0 + '@aws-sdk/util-retry': 3.222.0 + '@aws-sdk/util-user-agent-browser': 3.222.0 + '@aws-sdk/util-user-agent-node': 3.222.0 '@aws-sdk/util-utf8-browser': 3.188.0 '@aws-sdk/util-utf8-node': 3.208.0 tslib: 2.4.1 @@ -736,39 +737,40 @@ packages: dev: true optional: true - /@aws-sdk/client-sso-oidc/3.212.0: - resolution: {integrity: sha512-Co0AU+y9KEAZUraT36ttFZlmwARsr82q2nQji5E8zg3zlUHtqGvMJqxArudz3iOb2E9WRi75MwAQmLO2xEk45A==} + /@aws-sdk/client-sso-oidc/3.222.0: + resolution: {integrity: sha512-qC4SOKojOWCixvtma3/pwumRzkqHd19FL17ImR+p3C6J0CsSIzjBsKOxLjQMfaE0usAdqStxjULxJDAvWLElJA==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/config-resolver': 3.212.0 - '@aws-sdk/fetch-http-handler': 3.212.0 - '@aws-sdk/hash-node': 3.212.0 - '@aws-sdk/invalid-dependency': 3.212.0 - '@aws-sdk/middleware-content-length': 3.212.0 - '@aws-sdk/middleware-endpoint': 3.212.0 - '@aws-sdk/middleware-host-header': 3.212.0 - '@aws-sdk/middleware-logger': 3.212.0 - '@aws-sdk/middleware-recursion-detection': 3.212.0 - '@aws-sdk/middleware-retry': 3.212.0 - '@aws-sdk/middleware-serde': 3.212.0 - '@aws-sdk/middleware-stack': 3.212.0 - '@aws-sdk/middleware-user-agent': 3.212.0 - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/node-http-handler': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/smithy-client': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/url-parser': 3.212.0 + '@aws-sdk/config-resolver': 3.222.0 + '@aws-sdk/fetch-http-handler': 3.222.0 + '@aws-sdk/hash-node': 3.222.0 + '@aws-sdk/invalid-dependency': 3.222.0 + '@aws-sdk/middleware-content-length': 3.222.0 + '@aws-sdk/middleware-endpoint': 3.222.0 + '@aws-sdk/middleware-host-header': 3.222.0 + '@aws-sdk/middleware-logger': 3.222.0 + '@aws-sdk/middleware-recursion-detection': 3.222.0 + '@aws-sdk/middleware-retry': 3.222.0 + '@aws-sdk/middleware-serde': 3.222.0 + '@aws-sdk/middleware-stack': 3.222.0 + '@aws-sdk/middleware-user-agent': 3.222.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/node-http-handler': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/smithy-client': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/url-parser': 3.222.0 '@aws-sdk/util-base64': 3.208.0 '@aws-sdk/util-body-length-browser': 3.188.0 '@aws-sdk/util-body-length-node': 3.208.0 - '@aws-sdk/util-defaults-mode-browser': 3.212.0 - '@aws-sdk/util-defaults-mode-node': 3.212.0 - '@aws-sdk/util-endpoints': 3.212.0 - '@aws-sdk/util-user-agent-browser': 3.212.0 - '@aws-sdk/util-user-agent-node': 3.212.0 + '@aws-sdk/util-defaults-mode-browser': 3.222.0 + '@aws-sdk/util-defaults-mode-node': 3.222.0 + '@aws-sdk/util-endpoints': 3.222.0 + '@aws-sdk/util-retry': 3.222.0 + '@aws-sdk/util-user-agent-browser': 3.222.0 + '@aws-sdk/util-user-agent-node': 3.222.0 '@aws-sdk/util-utf8-browser': 3.188.0 '@aws-sdk/util-utf8-node': 3.208.0 tslib: 2.4.1 @@ -777,39 +779,40 @@ packages: dev: true optional: true - /@aws-sdk/client-sso/3.212.0: - resolution: {integrity: sha512-b9lFI8Uz6YxIzAlS2uq62y5fX097lwcdkiq2N8YN2U7YgHQaKMIFnV8ZqkDdhZi2eUKwhSdUZzQy0tF6en2Ubg==} + /@aws-sdk/client-sso/3.222.0: + resolution: {integrity: sha512-ISJRxT7DLaBwUJSdQoLS/7rWLoYGv6b3C7vTm4hQwDz83+JcdfDODir4iR0REhZfisce8Er6S06WtwAIyokzpQ==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/config-resolver': 3.212.0 - '@aws-sdk/fetch-http-handler': 3.212.0 - '@aws-sdk/hash-node': 3.212.0 - '@aws-sdk/invalid-dependency': 3.212.0 - '@aws-sdk/middleware-content-length': 3.212.0 - '@aws-sdk/middleware-endpoint': 3.212.0 - '@aws-sdk/middleware-host-header': 3.212.0 - '@aws-sdk/middleware-logger': 3.212.0 - '@aws-sdk/middleware-recursion-detection': 3.212.0 - '@aws-sdk/middleware-retry': 3.212.0 - '@aws-sdk/middleware-serde': 3.212.0 - '@aws-sdk/middleware-stack': 3.212.0 - '@aws-sdk/middleware-user-agent': 3.212.0 - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/node-http-handler': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/smithy-client': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/url-parser': 3.212.0 + '@aws-sdk/config-resolver': 3.222.0 + '@aws-sdk/fetch-http-handler': 3.222.0 + '@aws-sdk/hash-node': 3.222.0 + '@aws-sdk/invalid-dependency': 3.222.0 + '@aws-sdk/middleware-content-length': 3.222.0 + '@aws-sdk/middleware-endpoint': 3.222.0 + '@aws-sdk/middleware-host-header': 3.222.0 + '@aws-sdk/middleware-logger': 3.222.0 + '@aws-sdk/middleware-recursion-detection': 3.222.0 + '@aws-sdk/middleware-retry': 3.222.0 + '@aws-sdk/middleware-serde': 3.222.0 + '@aws-sdk/middleware-stack': 3.222.0 + '@aws-sdk/middleware-user-agent': 3.222.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/node-http-handler': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/smithy-client': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/url-parser': 3.222.0 '@aws-sdk/util-base64': 3.208.0 '@aws-sdk/util-body-length-browser': 3.188.0 '@aws-sdk/util-body-length-node': 3.208.0 - '@aws-sdk/util-defaults-mode-browser': 3.212.0 - '@aws-sdk/util-defaults-mode-node': 3.212.0 - '@aws-sdk/util-endpoints': 3.212.0 - '@aws-sdk/util-user-agent-browser': 3.212.0 - '@aws-sdk/util-user-agent-node': 3.212.0 + '@aws-sdk/util-defaults-mode-browser': 3.222.0 + '@aws-sdk/util-defaults-mode-node': 3.222.0 + '@aws-sdk/util-endpoints': 3.222.0 + '@aws-sdk/util-retry': 3.222.0 + '@aws-sdk/util-user-agent-browser': 3.222.0 + '@aws-sdk/util-user-agent-node': 3.222.0 '@aws-sdk/util-utf8-browser': 3.188.0 '@aws-sdk/util-utf8-node': 3.208.0 tslib: 2.4.1 @@ -818,42 +821,43 @@ packages: dev: true optional: true - /@aws-sdk/client-sts/3.213.0: - resolution: {integrity: sha512-MCjtLaYVQJLIMeLubDc4yRjSyVVTOebKxhY4ix4cfpSA6X4jMc4gRY2eu4eja3qoISfHq/Ikrkxx9DD1+n1azg==} + /@aws-sdk/client-sts/3.222.0: + resolution: {integrity: sha512-CZ2eY6aM5YnMzNIvy8t03tr2/iMljkWA4YbMV4lc8HN9qGEh/zUQcNQU2og8nVuo8KjL/4fXXllyUCS8odPnDQ==} engines: {node: '>=14.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/config-resolver': 3.212.0 - '@aws-sdk/credential-provider-node': 3.212.0 - '@aws-sdk/fetch-http-handler': 3.212.0 - '@aws-sdk/hash-node': 3.212.0 - '@aws-sdk/invalid-dependency': 3.212.0 - '@aws-sdk/middleware-content-length': 3.212.0 - '@aws-sdk/middleware-endpoint': 3.212.0 - '@aws-sdk/middleware-host-header': 3.212.0 - '@aws-sdk/middleware-logger': 3.212.0 - '@aws-sdk/middleware-recursion-detection': 3.212.0 - '@aws-sdk/middleware-retry': 3.212.0 - '@aws-sdk/middleware-sdk-sts': 3.212.0 - '@aws-sdk/middleware-serde': 3.212.0 - '@aws-sdk/middleware-signing': 3.212.0 - '@aws-sdk/middleware-stack': 3.212.0 - '@aws-sdk/middleware-user-agent': 3.212.0 - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/node-http-handler': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/smithy-client': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/url-parser': 3.212.0 + '@aws-sdk/config-resolver': 3.222.0 + '@aws-sdk/credential-provider-node': 3.222.0 + '@aws-sdk/fetch-http-handler': 3.222.0 + '@aws-sdk/hash-node': 3.222.0 + '@aws-sdk/invalid-dependency': 3.222.0 + '@aws-sdk/middleware-content-length': 3.222.0 + '@aws-sdk/middleware-endpoint': 3.222.0 + '@aws-sdk/middleware-host-header': 3.222.0 + '@aws-sdk/middleware-logger': 3.222.0 + '@aws-sdk/middleware-recursion-detection': 3.222.0 + '@aws-sdk/middleware-retry': 3.222.0 + '@aws-sdk/middleware-sdk-sts': 3.222.0 + '@aws-sdk/middleware-serde': 3.222.0 + '@aws-sdk/middleware-signing': 3.222.0 + '@aws-sdk/middleware-stack': 3.222.0 + '@aws-sdk/middleware-user-agent': 3.222.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/node-http-handler': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/smithy-client': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/url-parser': 3.222.0 '@aws-sdk/util-base64': 3.208.0 '@aws-sdk/util-body-length-browser': 3.188.0 '@aws-sdk/util-body-length-node': 3.208.0 - '@aws-sdk/util-defaults-mode-browser': 3.212.0 - '@aws-sdk/util-defaults-mode-node': 3.212.0 - '@aws-sdk/util-endpoints': 3.212.0 - '@aws-sdk/util-user-agent-browser': 3.212.0 - '@aws-sdk/util-user-agent-node': 3.212.0 + '@aws-sdk/util-defaults-mode-browser': 3.222.0 + '@aws-sdk/util-defaults-mode-node': 3.222.0 + '@aws-sdk/util-endpoints': 3.222.0 + '@aws-sdk/util-retry': 3.222.0 + '@aws-sdk/util-user-agent-browser': 3.222.0 + '@aws-sdk/util-user-agent-node': 3.222.0 '@aws-sdk/util-utf8-browser': 3.188.0 '@aws-sdk/util-utf8-node': 3.208.0 fast-xml-parser: 4.0.11 @@ -863,175 +867,175 @@ packages: dev: true optional: true - /@aws-sdk/config-resolver/3.212.0: - resolution: {integrity: sha512-hIP/Izpv6GCsDTnHCd/X9Ro7Mw5le+gr2VbkZHWR0c8+3xZWp8N5S0QnUBogF3Dv2KwPbmHP+bs/vqqo3miUjQ==} + /@aws-sdk/config-resolver/3.222.0: + resolution: {integrity: sha512-rG/Yh0R+GQe86ofEb24QAjQ19tHb4HMCyCuMZUZCsIdgNmUfcaH21Ug5s7pJrAfEy/F2gwxs+VfBeXKjT0MqSQ==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/signature-v4': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/signature-v4': 3.222.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-config-provider': 3.208.0 - '@aws-sdk/util-middleware': 3.212.0 + '@aws-sdk/util-middleware': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/credential-provider-cognito-identity/3.213.0: - resolution: {integrity: sha512-gc7KSAFXvHlThemCoP/OawA1u7kwSjbLzePIRR7o6svgA6oUsvHMcOtE3fGW698qlr8aWMxYTuL99MaJotSVpQ==} + /@aws-sdk/credential-provider-cognito-identity/3.222.0: + resolution: {integrity: sha512-ehEmhY3+s+ZlyPSP5BaFvJAkVIiJVNtjOjmXvbhI7+zFJW9UmChkAEwtF28ySZaFlflkEub9nO5tbkYKUyEjlQ==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/client-cognito-identity': 3.213.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/client-cognito-identity': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 transitivePeerDependencies: - aws-crt dev: true optional: true - /@aws-sdk/credential-provider-env/3.212.0: - resolution: {integrity: sha512-HNYoqetLqTxwl0Grl4ez8Dx3I3hJfskxH2PTHYI1/iAqrY/gSB2oBOusvBeksbYrScnQM2IGqEcMJ4lzGLOH+w==} + /@aws-sdk/credential-provider-env/3.222.0: + resolution: {integrity: sha512-xV6cmJ9zMi8nWySqBv1ze/EFlzXEfazu3i/T/5MpOufPvuGpXTQ3/PDEbC6mKBtvomoQ0fonc/cZrix7YcJV0Q==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/credential-provider-imds/3.212.0: - resolution: {integrity: sha512-Bg7cX2N5pJ//ft3Y8HWtpDSEMMgRTNMaNlIvTlDbAKYp7HBZRWSf9ZJnz2slT7qbyaJyRP5pSJC4XRm83g4leA==} + /@aws-sdk/credential-provider-imds/3.222.0: + resolution: {integrity: sha512-n090ouw5AFhb0EfzRElUTmqCNOQ1zjlxau30oVM7+qKtXH85hEGMQOoRQAl9ch/pXcbjKLh1mbUhmonR97/Kvw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/url-parser': 3.212.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/url-parser': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/credential-provider-ini/3.212.0: - resolution: {integrity: sha512-H7qRIP8qV7tRrCSJx2p5oQVMJASQWZUmi4l699hDMejmCO/m4pUMQFmWn2FXtZv8gTfzlkmp3wMixD5jnfL7pw==} + /@aws-sdk/credential-provider-ini/3.222.0: + resolution: {integrity: sha512-KtOYx0nGwu8466G7oWtFU2u3uKZziwV14xeoYNysnMn77nPE7PtlC3WOzE2p3tSGwfVnaGlmYqWEN4+QrY1zpQ==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/credential-provider-env': 3.212.0 - '@aws-sdk/credential-provider-imds': 3.212.0 - '@aws-sdk/credential-provider-sso': 3.212.0 - '@aws-sdk/credential-provider-web-identity': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/credential-provider-env': 3.222.0 + '@aws-sdk/credential-provider-imds': 3.222.0 + '@aws-sdk/credential-provider-sso': 3.222.0 + '@aws-sdk/credential-provider-web-identity': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 transitivePeerDependencies: - aws-crt dev: true optional: true - /@aws-sdk/credential-provider-node/3.212.0: - resolution: {integrity: sha512-T44hoU3GCYHS+4GDVs7S/v2bBHmmYpnPayQsYXhDElQKXP0cFzQ78F8et4IU5lM94hwK+ISRQPrKaq4p77evkw==} + /@aws-sdk/credential-provider-node/3.222.0: + resolution: {integrity: sha512-aWolcqDLgxL7ugyF5954/DrqcAl81PzwZ+ik2IMPCHOGWmsIWoecxMmXXbukrhzIegmVc7DwmN1qmT8KsURj0Q==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/credential-provider-env': 3.212.0 - '@aws-sdk/credential-provider-imds': 3.212.0 - '@aws-sdk/credential-provider-ini': 3.212.0 - '@aws-sdk/credential-provider-process': 3.212.0 - '@aws-sdk/credential-provider-sso': 3.212.0 - '@aws-sdk/credential-provider-web-identity': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/credential-provider-env': 3.222.0 + '@aws-sdk/credential-provider-imds': 3.222.0 + '@aws-sdk/credential-provider-ini': 3.222.0 + '@aws-sdk/credential-provider-process': 3.222.0 + '@aws-sdk/credential-provider-sso': 3.222.0 + '@aws-sdk/credential-provider-web-identity': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 transitivePeerDependencies: - aws-crt dev: true optional: true - /@aws-sdk/credential-provider-process/3.212.0: - resolution: {integrity: sha512-bGaVKSm5Tf5VZtlM2V6k+M9nSKzlb14ldCcH0PGGMaK/dqnEJDVSxXPu3fWyomaxbLt7Is3AUMh6L2bq3kuXyA==} + /@aws-sdk/credential-provider-process/3.222.0: + resolution: {integrity: sha512-IgEk8Tne1b2v2k/wVjuddKi+HEAFJWUoEcvLCnYRdlVX5l+Nnatw8vGYb+gTi9X7nKNqEGfMbifKCFoePKjC0Q==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/credential-provider-sso/3.212.0: - resolution: {integrity: sha512-OGatVUnWLp7PePs2H2RyYmTrwurl0tAfW+LWfVAPgYyvi2RQgTmSK5LJ3pXKxz3TvaSHkCvsT0NWNqdWY+iKWQ==} + /@aws-sdk/credential-provider-sso/3.222.0: + resolution: {integrity: sha512-2bl4lapUNDk95tVyTvbaYYSczxpC5WCFW7mmf8HGxTau4a6oELRsFaKeNzyuaL/IQ8hYhaVWR7nUCxIEqVngWw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/client-sso': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/token-providers': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/client-sso': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/token-providers': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 transitivePeerDependencies: - aws-crt dev: true optional: true - /@aws-sdk/credential-provider-web-identity/3.212.0: - resolution: {integrity: sha512-zPF3KiVT14aeu4cRyEUelAJEAzFp++9ULLigQXhKBbFYaiOZMAHKRASO/WUK1ixYBC+ax4G1rbihLfQimXMtVA==} + /@aws-sdk/credential-provider-web-identity/3.222.0: + resolution: {integrity: sha512-dImqTEWt38nVcDe/wQqHWJ+R2zyNqVKwejfslgbH2YilUnDU43xq2KJhNe4s+YhCB6tHOTkbNnpZo7vPV5Zxog==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/credential-providers/3.213.0: - resolution: {integrity: sha512-ksmJ+YPNbDceLskeBbTAuDvSRXK6jeY0XO1QUZ15yO8GRm90P85J7ouAsdNIKwZfeG1tkfFSSq/IaTTlIWFkbQ==} + /@aws-sdk/credential-providers/3.222.0: + resolution: {integrity: sha512-oPWtoUwE83N729gmo8LydVR9EnHulpaUmYQohIbPVLRfTSY3kX7eCjOyWx7CdLnLXGJSFn54WTEwqRswcQt+hA==} engines: {node: '>=14.0.0'} requiresBuild: true dependencies: - '@aws-sdk/client-cognito-identity': 3.213.0 - '@aws-sdk/client-sso': 3.212.0 - '@aws-sdk/client-sts': 3.213.0 - '@aws-sdk/credential-provider-cognito-identity': 3.213.0 - '@aws-sdk/credential-provider-env': 3.212.0 - '@aws-sdk/credential-provider-imds': 3.212.0 - '@aws-sdk/credential-provider-ini': 3.212.0 - '@aws-sdk/credential-provider-node': 3.212.0 - '@aws-sdk/credential-provider-process': 3.212.0 - '@aws-sdk/credential-provider-sso': 3.212.0 - '@aws-sdk/credential-provider-web-identity': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/client-cognito-identity': 3.222.0 + '@aws-sdk/client-sso': 3.222.0 + '@aws-sdk/client-sts': 3.222.0 + '@aws-sdk/credential-provider-cognito-identity': 3.222.0 + '@aws-sdk/credential-provider-env': 3.222.0 + '@aws-sdk/credential-provider-imds': 3.222.0 + '@aws-sdk/credential-provider-ini': 3.222.0 + '@aws-sdk/credential-provider-node': 3.222.0 + '@aws-sdk/credential-provider-process': 3.222.0 + '@aws-sdk/credential-provider-sso': 3.222.0 + '@aws-sdk/credential-provider-web-identity': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 transitivePeerDependencies: - aws-crt dev: true optional: true - /@aws-sdk/fetch-http-handler/3.212.0: - resolution: {integrity: sha512-u7ehnpAVN8D0asWhyQitNVf1j5LdzCuxP/14Dx8+PvrUdZxQNVq2FVB+tkQvOs9pDHE/oROjVo7GNO42bmkitA==} + /@aws-sdk/fetch-http-handler/3.222.0: + resolution: {integrity: sha512-0PWnOp47mNfwBFEZhuBpz5A+66jbvb2ySidnM5vWHRxu5yN7rCJEdEMSJKDzR6nH3GLZ9dHoOxTzQy21NoDTtA==} dependencies: - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/querystring-builder': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/querystring-builder': 3.222.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-base64': 3.208.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/hash-node/3.212.0: - resolution: {integrity: sha512-pwZkz83EvXHGURBYjBYS7Cr+gSr6pi23RDlP/aXREjJGs9QUQyixBh78oX5a3p6bB8JeizPcZS1dXKJ9OKCHAw==} + /@aws-sdk/hash-node/3.222.0: + resolution: {integrity: sha512-Fw0acblG0LQT9tfD2/4j98QHNq+Crotig/M1/zPDcVoGb8OBHd2442zpeA0fYYjGnGGhy9psRHdJrjZGj1vDUw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-buffer-from': 3.208.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/invalid-dependency/3.212.0: - resolution: {integrity: sha512-zKVx+4Silmsr5Nvv9aGL5FmuHvdP9Dcvy/22fmWa3RRvCSNRpvFDeXtcDB5FvNpbWbO+qJyGj/OeqB/XejV13w==} + /@aws-sdk/invalid-dependency/3.222.0: + resolution: {integrity: sha512-tWJWWTcL7DrhFiDmPBvLaw2lopHJMsF4Uj52yIQJskwd2IeBOxjl30zLo/oidmk73IFUB7TCObc85zJrtt/KcQ==} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true @@ -1044,249 +1048,249 @@ packages: dev: true optional: true - /@aws-sdk/middleware-content-length/3.212.0: - resolution: {integrity: sha512-gR6jeKGYNYqNLFRcuX3vv5PN1POLlB/9LDVYl3k/NNaCg8L1EKqqEtG84Gmn1AXH+2s6zMNs+gt5ygeqZQe2Cw==} + /@aws-sdk/middleware-content-length/3.222.0: + resolution: {integrity: sha512-Wlah+nrPhcq5qcwHiK1ymVRAvcKjV2py2RXhJsNZWgYwphdt5RHaZHPDKoodI27alrDJVyBBQWGzIm/Ag1bypQ==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-endpoint/3.212.0: - resolution: {integrity: sha512-6ntKYehjxLun8hPXIPHSI2pGr/pHuQ6jcyO5wBq1kydSIIGiESl8H84DEt+yRvroCiYgbU+I8cACnRE0uv0bLA==} + /@aws-sdk/middleware-endpoint/3.222.0: + resolution: {integrity: sha512-e1bM+CvuUWmBdydQpV5sF8cxZrXQ++0G5s1M7pLimKdWXQvCQ1ZEwA3LLi2IWomXmS9a3BaH3iKAf87RTWjIXw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/middleware-serde': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/signature-v4': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/url-parser': 3.212.0 + '@aws-sdk/middleware-serde': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/signature-v4': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/url-parser': 3.222.0 '@aws-sdk/util-config-provider': 3.208.0 - '@aws-sdk/util-middleware': 3.212.0 + '@aws-sdk/util-middleware': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-host-header/3.212.0: - resolution: {integrity: sha512-W00mxzK2OXy91Ncxri3cZJIxxSBzE72bX8FDa3xgC0ujbj49lw+rol6aV/Fw8Nda3CZ5xxulvJ4sXHt2eOtXSA==} + /@aws-sdk/middleware-host-header/3.222.0: + resolution: {integrity: sha512-R4STwHkWgdxMRqOy6riYfXepsQURR5YhK6psPFZHkBYByIRc9JxJdLA0qZcfLRriQIAGmqEO2WWsqRmr8nkbBw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-logger/3.212.0: - resolution: {integrity: sha512-BSQqzKp4abf2wXvJEstB0zdr68yJMZXA14h53eSvtzykZLfvvFixR1nyVgKq+PKm1VaJ2fuZr10tjWRVQg1pYA==} + /@aws-sdk/middleware-logger/3.222.0: + resolution: {integrity: sha512-eAxGCcNXl1APMOFbkUaAC6pNBPUbajyGqsDf6GLdlrYHrMVAtJdYd988ov6C52h7k6iDZ+OPHwv8dwUz+PRfpw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-recursion-detection/3.212.0: - resolution: {integrity: sha512-ATHPNtnd7nlm0jRXvr/c2xbxcna5ZGXEWTM5tUjIflOK9Rl3PCRce/hoQnHs45kv4l3daC53sPuRvTQ8O7K67A==} + /@aws-sdk/middleware-recursion-detection/3.222.0: + resolution: {integrity: sha512-4JRVs7y5JDXXjc5fkz0FCZJt/0HTP2vh3QyZsWRbCYesw2cWVqQlp/fUXp8w5KGqm5nYkTF4e5SQ7Ca8powJNA==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-retry/3.212.0: - resolution: {integrity: sha512-lIi/JkYXalY6CYw2dJbQ/Xo64Ah3wfJ63BMTFQHQk1htnIDBnLd9a6ng96JgXJQMSO4ZEqRW/709NBlC157hbw==} + /@aws-sdk/middleware-retry/3.222.0: + resolution: {integrity: sha512-8FZpGuJDtntjXZ/mfJ9EdP5mYiUunQHEmk6OERk3h4XW3D/e97denwDAcBBIK8iYYGic5PoWF4KgTFJWs1YOcw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/service-error-classification': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/util-middleware': 3.212.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/service-error-classification': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/util-middleware': 3.222.0 tslib: 2.4.1 uuid: 8.3.2 dev: true optional: true - /@aws-sdk/middleware-sdk-sts/3.212.0: - resolution: {integrity: sha512-IcMfno3RJEXXS1Ch5lY0hgdSkGn9XW9m3XoKu1DjhEqR34ENDzvUmEN2PimIcZnz+9W59CU9UAMs/amRhwhlmw==} + /@aws-sdk/middleware-sdk-sts/3.222.0: + resolution: {integrity: sha512-YbL4lTBFgqyL2Ob+dMyw/UNd5K9IOnZHHxjpwWlYKMrfT+pp2bvrr7XUbRHnxSoDsOg9bf6IyTSRVnVxP4psJg==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/middleware-signing': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/signature-v4': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/middleware-signing': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/signature-v4': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-serde/3.212.0: - resolution: {integrity: sha512-KwRpwi/8vNDV0l8uvu1DPk0q3WR2pnp9VtUNZ6u9zU54hvVL+Z1PtQh/WfzJzNvtCHvtc/gVMs3Daqb/Ecrm5Q==} + /@aws-sdk/middleware-serde/3.222.0: + resolution: {integrity: sha512-UoeLbgCJB07dX8tRByR0KzZaOwCoIyXj/SfFTuOhBUjkpKwqFCam/hofDlK3FR6kvl+xiURv57W/FtKV/9TDHg==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-signing/3.212.0: - resolution: {integrity: sha512-pth95aEsxqQO0lrRAHZNVI5hrMtA14nEUPFjiLaXtOssZrjD6mBzXPRy1nKob6XWXOp/Vy0mnyI/FT/NnMflFw==} + /@aws-sdk/middleware-signing/3.222.0: + resolution: {integrity: sha512-MwMw2Lz7SBOniAc0slWXt65ocqL+E956bdW+LOvBin6OgkVWaLRbWI9nOzA6B2d8b65fCGEc+N15i0UdrEf+MQ==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/signature-v4': 3.212.0 - '@aws-sdk/types': 3.212.0 - '@aws-sdk/util-middleware': 3.212.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/signature-v4': 3.222.0 + '@aws-sdk/types': 3.222.0 + '@aws-sdk/util-middleware': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-stack/3.212.0: - resolution: {integrity: sha512-AZ5f9ChioHsxGUojlzqI57sYyM9oW9SN/7AuiNafXU02j9jw7DKiYRn43lRUhgYnb/REhedHA5SsqIBF5eut/w==} + /@aws-sdk/middleware-stack/3.222.0: + resolution: {integrity: sha512-ASKbstAKbOBUZhFhst6/NCr11x94BDBiQn2zDs2Lvjo89n2efMeb4wEr17VCMZVeKI6ojtPFa1ZVLsH8AOn4Yw==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.4.1 dev: true optional: true - /@aws-sdk/middleware-user-agent/3.212.0: - resolution: {integrity: sha512-CVSY2kt+RaP6CVqSKp+1sPUAQFusTLZLFHVK0YPFzcIySJMqJC0l0/BzLhaIf5Bs3JHa/VGym8oDpp881yimHA==} + /@aws-sdk/middleware-user-agent/3.222.0: + resolution: {integrity: sha512-fjdxCRIAhOTsI9OcEKwJp4lhsvyCSXoeYV49mO/bdG6pFyFRm3Jezx7TNVNeLTGuMHTTTvRrCTF8sgE5t17Pzw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/node-config-provider/3.212.0: - resolution: {integrity: sha512-8AfOEDPe/D9DccUgredYg07GH2jrw07FCTyA1Pug5Hgbas7w14zbhLyQB0l6gcOJEuh34e/7oV9hN3s1hctnJg==} + /@aws-sdk/node-config-provider/3.222.0: + resolution: {integrity: sha512-hrbw90LlVa4xJJc4WiyAfaPMY/sJubSeTwuxTChLsFOavr6hSMCwLASrWmOiKRIj5hKdSfEA87n/q+DnKHlA8A==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/node-http-handler/3.212.0: - resolution: {integrity: sha512-wt4jK8HeYMjuQbWB4+Xt/nGyTvIwtLhm0SHcRgcoTsUjEiaPio/xNanyBWhPSUM87jpyG6bQMCzUtDbPeLqhkA==} + /@aws-sdk/node-http-handler/3.222.0: + resolution: {integrity: sha512-k3WqxUgZzGbiCQt1HyzDGlRzq8muGIOWZs9T3HtCa5LtACvl0qlNmiwCc+C/o7GRLyC9FuWkP3lOW6MiAFQUcA==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/abort-controller': 3.212.0 - '@aws-sdk/protocol-http': 3.212.0 - '@aws-sdk/querystring-builder': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/abort-controller': 3.222.0 + '@aws-sdk/protocol-http': 3.222.0 + '@aws-sdk/querystring-builder': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/property-provider/3.212.0: - resolution: {integrity: sha512-NMCIABfw3VZ7Vtn6iSeZRuSToRLxIHq0eGoUgO7T4fUp3U5vqYt28A5UY65KB9ifUPpNSllEG3EhEqs5qFw5+w==} + /@aws-sdk/property-provider/3.222.0: + resolution: {integrity: sha512-rEqAgQ7itmB7GB+WWLgyT7/YWJkjEBCfggxycccChWAeqg+gjpstIiGX2BjP2K/wnzwE0D91JsozSXcQIDOtNQ==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/protocol-http/3.212.0: - resolution: {integrity: sha512-EhkLPQC2TeqC3RGKfW87zoKj/gsWS4JJlRl5U6KMXejBMKQPzuopUiF9gQJ2iuou9BT8B+RsG2qgSHzrxp6lKw==} + /@aws-sdk/protocol-http/3.222.0: + resolution: {integrity: sha512-Zj+ytEgrOagCE7yczjdDan7W+1a0OL5DPAx69Z00NxGoBI2h0GRZD28dRYb3Pzs5/Ft4KbCedH/RUnyaYjaZxw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/querystring-builder/3.212.0: - resolution: {integrity: sha512-4CaQstj0Aki3vc96Z0d481raNagmy9gnJtIv6yveATJ/57lk/RUv2WtTUOzpFKv/oNx5khix2tpbRqK9nCUxVg==} + /@aws-sdk/querystring-builder/3.222.0: + resolution: {integrity: sha512-qrNUGDyDp9yVQMnBbz1T5YBQkA/u6D5o0PPzSwfZ9azdAcBLjHOEfsBrKhxP+K92L/nilbnmY89KrjMR8+BNtw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-uri-escape': 3.201.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/querystring-parser/3.212.0: - resolution: {integrity: sha512-ttarfAHMOYKgFHeBdgXID9SlNS7erH4gavN3fvf5R1RliCytUnzsTTvqa7CmVBFy0Xc/2yA+/6FFDKlOsS8tRg==} + /@aws-sdk/querystring-parser/3.222.0: + resolution: {integrity: sha512-3KfkCA/753PlF5QqhGuQ7u+NOgLyiBFeV8R8ut/pfBmG8fF6l3RKrkbcu+87QpqXntRzG+RLHDqS7ryT3B2ICg==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/service-error-classification/3.212.0: - resolution: {integrity: sha512-jCv+uuFq4yGjP8FoCmoOGqnKNHHREDOFf7OxVSCluGMg2LXHfGxxqkqNFJlT3p+QdEp323GSWFY+PUsMJy7BLQ==} + /@aws-sdk/service-error-classification/3.222.0: + resolution: {integrity: sha512-Dn/WGtm+v5nney0CaYZjdOtJmdEuI8EQiQ5J3eQ3G0jjT6mr1/tCajsNpq3ZqHXiwLtydwaVvsL3AKXn+oxFVA==} engines: {node: '>=14.0.0'} dev: true optional: true - /@aws-sdk/shared-ini-file-loader/3.212.0: - resolution: {integrity: sha512-wKWqCA1oU57V//D3uAjQKGGj6rm6YKH4pWIU38Ypb/xNafiB7C51KtwpQVsS2HCNfmGrD03sGLKEZCSy9jvIlA==} + /@aws-sdk/shared-ini-file-loader/3.222.0: + resolution: {integrity: sha512-2dowzMXjvIf5gwX5gNCwpv/TzAbbXxrId3zYJgPdEtApsa7NxyFs5MfnHt1zZI6P3YORGheRnNUK9RUYOPKHgA==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/signature-v4/3.212.0: - resolution: {integrity: sha512-tCrzWA60AWGDRmY9OyUrG0BzD+dDbAtHSqcY2LchGHOlMmv501/WXBIvn9fDfKp8GJj6Lb3VcG9cY1jCuKKcmg==} + /@aws-sdk/signature-v4/3.222.0: + resolution: {integrity: sha512-2qQZuKqx56b2uN2rdjdKL6u0Cvk82uTGNtIuetmySY9xPEAljSBdriaxTqNqK9Gs3M4obG22alUK4a85uwqS3g==} engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/is-array-buffer': 3.201.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 '@aws-sdk/util-hex-encoding': 3.201.0 - '@aws-sdk/util-middleware': 3.212.0 + '@aws-sdk/util-middleware': 3.222.0 '@aws-sdk/util-uri-escape': 3.201.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/smithy-client/3.212.0: - resolution: {integrity: sha512-dQUlM/eltp9JVEVQWGxU/6Or8jGQWK5mgmbP+BUHkfDgoMIeOFksIYon211KhE18EjoGgav1mr4/HHlcnekI2w==} + /@aws-sdk/smithy-client/3.222.0: + resolution: {integrity: sha512-4dnU7TvwKxVuOWduvFGClYe0EgNov5Ke1ef7O1bdKaj5MmlH6wBDgGJM4NKREBFapC2dUXkoPtwsihtYBci1Bw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/middleware-stack': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/middleware-stack': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/token-providers/3.212.0: - resolution: {integrity: sha512-pTe4PM14b58nbfvIP9B0zW5dUIxEb/ALVzSLuxpJwJRI51E5QZmXJMT3P77MUd6niqKw0cRrnEHIgznD67JHSg==} + /@aws-sdk/token-providers/3.222.0: + resolution: {integrity: sha512-VlLQDWjwKm6WezheyZ+wxfEw+X05s1NSZLY5N5HYE6+MSPcqllKCp0ArLcK1MUs68s/4TIOVKQrNeeJm/bLEPw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/client-sso-oidc': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/shared-ini-file-loader': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/client-sso-oidc': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/shared-ini-file-loader': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 transitivePeerDependencies: - aws-crt dev: true optional: true - /@aws-sdk/types/3.212.0: - resolution: {integrity: sha512-uXBXB1PBYxfPyIvgmjbGdYBlS7rdeMG58uCaY3Ga5scY2xQnj7HU7knATKuIKk2DH1lLT0inqtsRVJS25zRK5w==} + /@aws-sdk/types/3.222.0: + resolution: {integrity: sha512-yXRYptInkfEFaOvWFxlRXsRh9jWOmQc1sZeKqjfx2UCtzNJ7ebedN0VfCz4SaDotcw9Q4JWuN66qhRMJjDx7/w==} engines: {node: '>=14.0.0'} dev: true optional: true - /@aws-sdk/url-parser/3.212.0: - resolution: {integrity: sha512-mTUQQRcVYqur7aHDuDMDKxN7Yr/5kIZB1RtMjIwtimTcf7TZaskN6sLTPo42YgASM6XQQhJECZaOE7Ow16i6Mg==} + /@aws-sdk/url-parser/3.222.0: + resolution: {integrity: sha512-1+QbVdT/phYDb5JDQRJWoZeCujkXaI5m8z3bIiPxcRRY3NPuluDGrfX3kfnFen5s9QGByLvJxWKWZS+i+iUFRg==} dependencies: - '@aws-sdk/querystring-parser': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/querystring-parser': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true @@ -1332,35 +1336,35 @@ packages: dev: true optional: true - /@aws-sdk/util-defaults-mode-browser/3.212.0: - resolution: {integrity: sha512-tAs9+/lTtil545kyCqy7qjnnCq4S2S+4kBhHXgwRNPT85Nx5XCEEheWH6VZ45YufRaiRNFfX0n+odDwzDaev6g==} + /@aws-sdk/util-defaults-mode-browser/3.222.0: + resolution: {integrity: sha512-+dGsp59lrEkDmK7OO5ecMYasrTGIKacFHjqZ6aqmbn1xtcUd/o3Qe7g5YSRXMGwtZ6xhvBD+NJLkEERI7U7cMw==} engines: {node: '>= 10.0.0'} dependencies: - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 bowser: 2.11.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/util-defaults-mode-node/3.212.0: - resolution: {integrity: sha512-fNl1IDqn1mAoiM2Xv5KGAczXHy2+tPlouunIEePnQKTq0pzT3WqR13qleTfu1EcEz1oyGnDRoK91aP61Jxh3OQ==} + /@aws-sdk/util-defaults-mode-node/3.222.0: + resolution: {integrity: sha512-W/duYMtmCCWdzHP+yscBB6yrARgAqWpFdxgBvMSlT8TjOTrh/F+aj4NPamiNMeUfqfMFGnboYfyWRr1avkcAGQ==} engines: {node: '>= 10.0.0'} dependencies: - '@aws-sdk/config-resolver': 3.212.0 - '@aws-sdk/credential-provider-imds': 3.212.0 - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/property-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/config-resolver': 3.222.0 + '@aws-sdk/credential-provider-imds': 3.222.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/property-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/util-endpoints/3.212.0: - resolution: {integrity: sha512-/ADfvrZwhzUphre3pliO290IFOflvHyBBEaKn9WfRQ5veZxl+CuOEjxkwTJfHUrfWbh+xpCuOewWVLCptmoC4A==} + /@aws-sdk/util-endpoints/3.222.0: + resolution: {integrity: sha512-qujJQv8lFysAr1lOlBTJhz7949NZyq5cj74Q9dR99AcAMXXeI9CQayPKH7477AnXRGOTMahZ3mV0HZ1bCJoNTw==} engines: {node: '>=14.0.0'} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true @@ -1381,14 +1385,23 @@ packages: dev: true optional: true - /@aws-sdk/util-middleware/3.212.0: - resolution: {integrity: sha512-621glUpwVKJRB8QxRG/5cAKIq8LKPdl/l8CS7vDg34f6j9BJmP5YVPcTzzQ6iskQAblkndiBAnSjp7kGujxuGg==} + /@aws-sdk/util-middleware/3.222.0: + resolution: {integrity: sha512-Y4BPtSa+6+qvg6OVW6RrdDx0OADfWa2Uxsxqdozpdnx2OQY0q+1diqsNgFMV+FIvdXqffE147KG7roG+/AfPeA==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.4.1 dev: true optional: true + /@aws-sdk/util-retry/3.222.0: + resolution: {integrity: sha512-poiWqhiTjExUYKxgN5tRAvKNN23lGHn9ZJAGOu8sY2GHb6gatMfj46k31om3KrM3YGRuyXAo8YXRhA+QZ5CX0g==} + engines: {node: '>= 14.0.0'} + dependencies: + '@aws-sdk/service-error-classification': 3.222.0 + tslib: 2.4.1 + dev: true + optional: true + /@aws-sdk/util-uri-escape/3.201.0: resolution: {integrity: sha512-TeTWbGx4LU2c5rx0obHeDFeO9HvwYwQtMh1yniBz00pQb6Qt6YVOETVQikRZ+XRQwEyCg/dA375UplIpiy54mA==} engines: {node: '>=14.0.0'} @@ -1397,17 +1410,17 @@ packages: dev: true optional: true - /@aws-sdk/util-user-agent-browser/3.212.0: - resolution: {integrity: sha512-xXz16ge9NdKCwlD+952rfvgHdDe+pbCavbVMNdR60joHq5KYGR1e02l0LRNVe48/C9dAo2ezeJ+YnTPaw3Yl8Q==} + /@aws-sdk/util-user-agent-browser/3.222.0: + resolution: {integrity: sha512-DREMeL0XHl4QIS2GVSHFwVH4mJZ+Dr04R3U8WfiMktXdA93j5tDMJpU3+PNaCZPeaqz2QNwrVSBWKwbwA357zQ==} dependencies: - '@aws-sdk/types': 3.212.0 + '@aws-sdk/types': 3.222.0 bowser: 2.11.0 tslib: 2.4.1 dev: true optional: true - /@aws-sdk/util-user-agent-node/3.212.0: - resolution: {integrity: sha512-HE8VwtMtTXGkwUjryNpy+qyg7wrQxCGplDP59yo0YVn86B5f9nhRi/2jRAsKo9yf94iP7PXAz65TY9+KJC8UIg==} + /@aws-sdk/util-user-agent-node/3.222.0: + resolution: {integrity: sha512-BMRMrPXL/HS3dSha9vcABkoANluKjB0pH78bc659EY2WUj9wCZdbUNQpACiYx8bwm7xKSxugCkmPd6NLWXUURw==} engines: {node: '>=14.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -1415,8 +1428,8 @@ packages: aws-crt: optional: true dependencies: - '@aws-sdk/node-config-provider': 3.212.0 - '@aws-sdk/types': 3.212.0 + '@aws-sdk/node-config-provider': 3.222.0 + '@aws-sdk/types': 3.222.0 tslib: 2.4.1 dev: true optional: true @@ -1463,8 +1476,8 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.20.1: - resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + /@babel/compat-data/7.20.5: + resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} engines: {node: '>=6.9.0'} /@babel/core/7.12.9: @@ -1472,13 +1485,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.5 '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.1 - '@babel/parser': 7.20.3 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.20.5 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -1497,14 +1510,14 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.17.7 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.17.8 '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.1 - '@babel/parser': 7.20.3 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.18.9 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.17.3 + '@babel/types': 7.17.0 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -1520,14 +1533,36 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.5 '@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.3 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.20.5 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + /@babel/core/7.20.5: + resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.20.5 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -1539,7 +1574,7 @@ packages: /@babel/generator/7.12.17: resolution: {integrity: sha512-DSA7ruZrY4WI8VxuS1jWSRezFnghEoYEFrZcw9BizQRmOZiUsiHl59+qEARGPqPikwA/GPTyRCi7isuCK/oyqg==} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 jsesc: 2.5.2 source-map: 0.5.7 @@ -1547,16 +1582,16 @@ packages: resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.17.0 jsesc: 2.5.2 source-map: 0.5.7 dev: false - /@babel/generator/7.20.4: - resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} + /@babel/generator/7.20.5: + resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 @@ -1564,7 +1599,7 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: @@ -1572,7 +1607,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 dev: true /@babel/helper-compilation-targets/7.20.0_@babel+core@7.17.8: @@ -1581,7 +1616,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.20.1 + '@babel/compat-data': 7.20.5 '@babel/core': 7.17.8 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 @@ -1594,14 +1629,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.20.1 + '@babel/compat-data': 7.20.5 '@babel/core': 7.20.2 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.20.2_@babel+core@7.20.2: - resolution: {integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==} + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.5 + '@babel/core': 7.20.5 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + semver: 6.3.0 + + /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1618,8 +1665,26 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.2: - resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} + /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@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-regexp-features-plugin/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1629,6 +1694,17 @@ packages: regexpu-core: 5.2.2 dev: true + /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.2.2 + dev: true + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.2: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: @@ -1638,7 +1714,25 @@ packages: '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/traverse': 7.20.1 + '@babel/traverse': 7.20.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.5: + resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.20.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -1663,6 +1757,22 @@ packages: - supports-color dev: true + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.5: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-environment-visitor/7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} @@ -1671,7 +1781,7 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 dev: true /@babel/helper-function-name/7.19.0: @@ -1679,26 +1789,26 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 /@babel/helper-member-expression-to-functions/7.18.9: resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 /@babel/helper-module-transforms/7.20.2: resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} @@ -1710,8 +1820,8 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color @@ -1719,7 +1829,7 @@ packages: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 dev: true /@babel/helper-plugin-utils/7.10.4: @@ -1739,8 +1849,23 @@ packages: '@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 - '@babel/types': 7.20.2 + '@babel/helper-wrap-function': 7.20.5 + '@babel/types': 7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color dev: true @@ -1752,8 +1877,8 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color dev: true @@ -1762,20 +1887,20 @@ packages: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 /@babel/helper-skip-transparent-expression-wrappers/7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 /@babel/helper-string-parser/7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} @@ -1789,25 +1914,25 @@ packages: resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function/7.19.0: - resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==} + /@babel/helper-wrap-function/7.20.5: + resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.19.0 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.20.1: - resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + /@babel/helpers/7.20.6: + resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color @@ -1824,15 +1949,15 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.17.0 dev: false - /@babel/parser/7.20.3: - resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==} + /@babel/parser/7.20.5: + resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 /@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==} @@ -1844,6 +1969,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -1856,6 +1991,18 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 dev: true + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 + dev: true + /@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'} @@ -1871,6 +2018,21 @@ packages: - supports-color dev: true + /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.5: + resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@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'} @@ -1878,7 +2040,20 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5: + 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.20.5 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -1891,21 +2066,35 @@ packages: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.20.2 '@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.2_@babel+core@7.20.2: - resolution: {integrity: sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw==} + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-decorators/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 @@ -1914,6 +2103,22 @@ packages: - supports-color dev: true + /@babel/plugin-proposal-decorators/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@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.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@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'} @@ -1925,6 +2130,17 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 + dev: true + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.20.2: resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} @@ -1936,6 +2152,17 @@ packages: '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.20.5: + resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.5 + dev: true + /@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'} @@ -1947,6 +2174,17 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 + dev: true + /@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'} @@ -1958,6 +2196,17 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 + dev: true + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} @@ -1969,6 +2218,17 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 + dev: true + /@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'} @@ -1980,6 +2240,17 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 + dev: true + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -1991,6 +2262,17 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 + dev: true + /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} peerDependencies: @@ -1999,7 +2281,7 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.12.9 dev: true /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.2: @@ -2008,12 +2290,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.1 + '@babel/compat-data': 7.20.5 '@babel/core': 7.20.2 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.2 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.5 + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 dev: true /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.2: @@ -2027,6 +2323,17 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 + dev: true + /@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'} @@ -2039,6 +2346,18 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 dev: true + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + dev: true + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -2046,23 +2365,51 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 transitivePeerDependencies: - supports-color dev: true @@ -2074,7 +2421,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2087,6 +2445,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -2096,6 +2463,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2106,6 +2482,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.5: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} engines: {node: '>=6.9.0'} @@ -2116,6 +2502,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.5: + resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -2125,6 +2521,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2135,6 +2540,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -2144,6 +2559,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} @@ -2164,6 +2588,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.5: + resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -2173,6 +2607,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} peerDependencies: @@ -2191,6 +2634,16 @@ packages: '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -2200,6 +2653,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -2209,6 +2671,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -2218,6 +2689,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -2236,6 +2716,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -2245,6 +2734,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -2254,6 +2752,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2264,6 +2771,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.5: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2274,6 +2791,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.2: resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} @@ -2284,6 +2811,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.5: + resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} @@ -2294,6 +2831,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2308,6 +2855,20 @@ packages: - supports-color dev: true + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -2318,8 +2879,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.2: - resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==} + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2328,6 +2899,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} engines: {node: '>=6.9.0'} @@ -2348,6 +2929,26 @@ packages: - supports-color dev: true + /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@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-computed-properties/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} @@ -2358,6 +2959,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} engines: {node: '>=6.9.0'} @@ -2368,6 +2979,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -2375,7 +2996,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2389,6 +3021,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2400,6 +3042,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.2: resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} @@ -2421,6 +3074,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.5: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -2433,6 +3096,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -2443,6 +3118,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -2453,6 +3138,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} engines: {node: '>=6.9.0'} @@ -2466,6 +3161,19 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.5: + resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} engines: {node: '>=6.9.0'} @@ -2480,6 +3188,20 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.5: + resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.2: resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} engines: {node: '>=6.9.0'} @@ -2495,166 +3217,335 @@ packages: - supports-color dev: true + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.5: + resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-umd/7.18.6_@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.20.2 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.2 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@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.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.5: + 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.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@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.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.12.9: + resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@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.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@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.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5: + 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.20.5 '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.2: - resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} + /@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 + '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/core': 7.20.5 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + /@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.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 + '@babel/types': 7.20.5 dev: true - /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.12.9: - resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5: + resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.12.9 + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 + '@babel/types': 7.20.5 dev: true - /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.2: - resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} + /@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.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.2: + resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 '@babel/helper-plugin-utils': 7.20.2 + regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2: - resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} + /@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.20.2 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/types': 7.20.2 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} + /@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.20.2 '@babel/helper-plugin-utils': 7.20.2 - regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.2: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + /@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.20.2 '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.2: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.5: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: true @@ -2669,6 +3560,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -2679,6 +3580,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -2689,6 +3600,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.2: resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==} engines: {node: '>=6.9.0'} @@ -2696,13 +3617,27 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 transitivePeerDependencies: - supports-color dev: true + /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@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'} @@ -2713,6 +3648,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.5: + 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.20.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + /@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'} @@ -2720,7 +3665,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2730,7 +3686,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.1 + '@babel/compat-data': 7.20.5 '@babel/core': 7.20.2 '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 '@babel/helper-plugin-utils': 7.20.2 @@ -2750,7 +3706,7 @@ packages: '@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-private-property-in-object': 7.20.5_@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 @@ -2770,7 +3726,7 @@ packages: '@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.2_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.2 '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.2 '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2 '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.2 @@ -2785,12 +3741,12 @@ packages: '@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-named-capturing-groups-regex': 7.20.5_@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.3_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.5_@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-regenerator': 7.20.5_@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 @@ -2800,7 +3756,7 @@ packages: '@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.2 + '@babel/types': 7.20.5 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 @@ -2810,6 +3766,92 @@ packages: - supports-color dev: true + /@babel/preset-env/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.5 + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.5 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.5 + '@babel/types': 7.20.5 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5 + core-js-compat: 3.26.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/preset-flow/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} engines: {node: '>=6.9.0'} @@ -2831,7 +3873,20 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@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.2 + '@babel/types': 7.20.5 + esutils: 2.0.3 + dev: true + + /@babel/preset-modules/0.1.5_@babel+core@7.20.5: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 + '@babel/types': 7.20.5 esutils: 2.0.3 dev: true @@ -2850,6 +3905,21 @@ packages: '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.2 dev: true + /@babel/preset-react/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.5 + dev: true + /@babel/preset-typescript/7.18.6_@babel+core@7.20.2: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} @@ -2864,6 +3934,20 @@ packages: - supports-color dev: true + /@babel/preset-typescript/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/register/7.18.9_@babel+core@7.20.2: resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} @@ -2878,15 +3962,29 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/runtime-corejs3/7.20.1: - resolution: {integrity: sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==} + /@babel/register/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.5 + source-map-support: 0.5.21 + dev: true + + /@babel/runtime-corejs3/7.20.6: + resolution: {integrity: sha512-tqeujPiuEfcH067mx+7otTQWROVMKHXEaOQcAeNV5dDdbPWvPcFA8/W9LXw2NfjNmOetqLl03dfnG2WALPlsRQ==} engines: {node: '>=6.9.0'} dependencies: core-js-pure: 3.26.1 regenerator-runtime: 0.13.11 - /@babel/runtime/7.20.1: - resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==} + /@babel/runtime/7.20.6: + resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 @@ -2908,56 +4006,56 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.5 + '@babel/types': 7.20.5 /@babel/traverse/7.17.3: resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.17.7 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.18.9 + '@babel/types': 7.17.0 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: false - /@babel/traverse/7.20.1: - resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} + /@babel/traverse/7.20.5: + resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.5 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.5 + '@babel/types': 7.20.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse/7.20.1_supports-color@5.5.0: - resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} + /@babel/traverse/7.20.5_supports-color@5.5.0: + resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.5 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.5 + '@babel/types': 7.20.5 debug: 4.3.4_supports-color@5.5.0 globals: 11.12.0 transitivePeerDependencies: @@ -2972,8 +4070,8 @@ packages: to-fast-properties: 2.0.0 dev: false - /@babel/types/7.20.2: - resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==} + /@babel/types/7.20.5: + resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.19.4 @@ -2983,7 +4081,7 @@ packages: /@badeball/cypress-configuration/4.2.0: resolution: {integrity: sha512-8Dc6diBW8zUycpCFbr7vqQ8ioNZMvpHV79KGdHVpwpRtkFX6enwG82CKU9DeWys6Ou5dFpXw6NYNYNb46y7UYA==} dependencies: - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.5 debug: 4.3.4 esbuild: 0.14.54 glob: 7.2.3 @@ -3005,7 +4103,7 @@ packages: optional: true dependencies: '@badeball/cypress-configuration': 4.2.0 - '@cucumber/cucumber-expressions': 16.0.1 + '@cucumber/cucumber-expressions': 16.1.0 '@cucumber/gherkin': 24.1.0 '@cucumber/html-formatter': 19.2.0_@cucumber+messages@19.1.4 '@cucumber/message-streams': 4.0.1_@cucumber+messages@19.1.4 @@ -3042,7 +4140,7 @@ packages: /@changesets/apply-release-plan/6.1.2: resolution: {integrity: sha512-H8TV9E/WtJsDfoDVbrDGPXmkZFSv7W2KLqp4xX4MKZXshb0hsQZUNowUa8pnus9qb/5OZrFFRVsUsDCVHNW/AQ==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/config': 2.2.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.5.0 @@ -3060,7 +4158,7 @@ packages: /@changesets/assemble-release-plan/5.2.2: resolution: {integrity: sha512-B1qxErQd85AeZgZFZw2bDKyOfdXHhG+X5S+W3Da2yCem8l/pRy4G/S7iOpEcMwg6lH8q2ZhgbZZwZ817D+aLuQ==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.4 '@changesets/types': 5.2.0 @@ -3078,7 +4176,7 @@ packages: resolution: {integrity: sha512-ACScBJXI3kRyMd2R8n8SzfttDHi4tmKSwVwXBazJOylQItSRSF4cGmej2E4FVf/eNfGy6THkL9GzAahU9ErZrA==} hasBin: true dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/apply-release-plan': 6.1.2 '@changesets/assemble-release-plan': 5.2.2 '@changesets/changelog-git': 0.1.13 @@ -3144,7 +4242,7 @@ packages: /@changesets/get-release-plan/3.0.15: resolution: {integrity: sha512-W1tFwxE178/en+zSj/Nqbc3mvz88mcdqUMJhRzN1jDYqN3QI4ifVaRF9mcWUU+KI0gyYEtYR65tour690PqTcA==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/assemble-release-plan': 5.2.2 '@changesets/config': 2.2.0 '@changesets/pre': 1.0.13 @@ -3160,7 +4258,7 @@ packages: /@changesets/git/1.5.0: resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 @@ -3184,7 +4282,7 @@ packages: /@changesets/pre/1.0.13: resolution: {integrity: sha512-jrZc766+kGZHDukjKhpBXhBJjVQMied4Fu076y9guY1D3H622NOw8AQaLV3oQsDtKBTrT2AUFjt9Z2Y9Qx+GfA==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 @@ -3194,7 +4292,7 @@ packages: /@changesets/read/0.5.8: resolution: {integrity: sha512-eYaNfxemgX7f7ELC58e7yqQICW5FB7V+bd1lKt7g57mxUrTveYME+JPaBPpYx02nP53XI6CQp6YxnR9NfmFPKw==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/git': 1.5.0 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.15 @@ -3215,7 +4313,7 @@ packages: /@changesets/write/0.2.2: resolution: {integrity: sha512-kCYNHyF3xaId1Q/QE+DF3UTrHTyg3Cj/f++T8S8/EkC+jh1uK2LFnM9h+EzV+fsmnZDrs7r0J4LLpeI/VWC5Hg==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/types': 5.2.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -3246,8 +4344,8 @@ packages: - debug dev: false - /@cucumber/cucumber-expressions/16.0.1: - resolution: {integrity: sha512-kYwm6Atet5DzK7+0f5kTPDb4BImXMvD5rBk4KUYHBsHi/nvb+drYx/51UH1Z2L9nHlh2dHgMfEbH2LjJw/T1pQ==} + /@cucumber/cucumber-expressions/16.1.0: + resolution: {integrity: sha512-Q/tKDNje9RrcOXF2TO2NwTW92rzk+RwKkhYYKLxQT26Co8Qbjom0Cz02HsCMA2wjJ8dw6/d2IbWgiOay9RQA+w==} dependencies: regexp-match-indices: 1.0.2 dev: false @@ -3327,9 +4425,9 @@ packages: react: '>= 16.8.6 || >=18' react-dom: '>= 16.8.6 || >=18' dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@types/react': 18.0.25 - clsx: 1.1.1 + clsx: 1.1.0 focus-lock: 0.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -3399,7 +4497,7 @@ packages: '@babel/core': 7.20.2 '@babel/helper-module-imports': 7.18.6 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 '@emotion/serialize': 1.1.1 @@ -3444,7 +4542,7 @@ packages: optional: true dependencies: '@babel/core': 7.20.2 - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@emotion/babel-plugin': 11.10.5_@babel+core@7.20.2 '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 @@ -3504,8 +4602,8 @@ packages: /@emotion/weak-memoize/0.3.0: resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==} - /@esbuild-kit/cjs-loader/2.4.0: - resolution: {integrity: sha512-DBBCiHPgL2B/elUpvCDhNHXnlZQ9sfO2uyt1OJyAXKT41beQEFY4OxZ6gwS+ZesRCbZ6JV8M7GEyOPkjv8kdIw==} + /@esbuild-kit/cjs-loader/2.4.1: + resolution: {integrity: sha512-lhc/XLith28QdW0HpHZvZKkorWgmCNT7sVelMHDj3HFdTfdqkwEKvT+aXVQtNAmCC39VJhunDkWhONWB7335mg==} dependencies: '@esbuild-kit/core-utils': 3.0.0 get-tsconfig: 4.2.0 @@ -3514,19 +4612,19 @@ packages: /@esbuild-kit/core-utils/3.0.0: resolution: {integrity: sha512-TXmwH9EFS3DC2sI2YJWJBgHGhlteK0Xyu1VabwetMULfm3oYhbrsWV5yaSr2NTWZIgDGVLHbRf0inxbjXqAcmQ==} dependencies: - esbuild: 0.15.15 + esbuild: 0.15.16 source-map-support: 0.5.21 dev: true - /@esbuild-kit/esm-loader/2.5.0: - resolution: {integrity: sha512-ySs0qOsiwj+hsgZM9/MniGdvfa9/WzqfFuIia8/5gSUPeIQIX2/tG91QakxPFOR35VFiwTB7wCiHtiS6dc6SkA==} + /@esbuild-kit/esm-loader/2.5.4: + resolution: {integrity: sha512-afmtLf6uqxD5IgwCzomtqCYIgz/sjHzCWZFvfS5+FzeYxOURPUo4QcHtqJxbxWOMOogKriZanN/1bJQE/ZL93A==} dependencies: '@esbuild-kit/core-utils': 3.0.0 get-tsconfig: 4.2.0 dev: true - /@esbuild/android-arm/0.15.15: - resolution: {integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==} + /@esbuild/android-arm/0.15.16: + resolution: {integrity: sha512-nyB6CH++2mSgx3GbnrJsZSxzne5K0HMyNIWafDHqYy7IwxFc4fd/CgHVZXr8Eh+Q3KbIAcAe3vGyqIPhGblvMQ==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -3543,8 +4641,8 @@ packages: dev: false optional: true - /@esbuild/linux-loong64/0.15.15: - resolution: {integrity: sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==} + /@esbuild/linux-loong64/0.15.16: + resolution: {integrity: sha512-SDLfP1uoB0HZ14CdVYgagllgrG7Mdxhkt4jDJOKl/MldKrkQ6vDJMZKl2+5XsEY/Lzz37fjgLQoJBGuAw/x8kQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -3560,7 +4658,7 @@ packages: debug: 4.3.4 espree: 9.4.1 globals: 13.18.0 - ignore: 5.2.0 + ignore: 5.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -3592,8 +4690,8 @@ packages: /@floating-ui/core/1.0.2: resolution: {integrity: sha512-Skfy0YS3NJ5nV9us0uuPN0HDk1Q4edljaOhRBJGDWs9EBa7ZVMYBHRFlhLvvmwEoaIM9BlH6QJFn9/uZg0bACg==} - /@floating-ui/dom/1.0.6: - resolution: {integrity: sha512-kt/tg1oip9OAH1xjCTcx1OpcUpu9rjDw3GKJ/rEhUqhO7QyJWfrHU0DpLTNsH67+JyFL5Kv9X1utsXwKFVtyEQ==} + /@floating-ui/dom/1.0.7: + resolution: {integrity: sha512-6RsqvCYe0AYWtsGvuWqCm7mZytnXAZCjWtsWu1Kg8dI3INvj/DbKlDsZO+mKSaQdPT12uxIW9W2dAWJkPx4Y5g==} dependencies: '@floating-ui/core': 1.0.2 @@ -3616,7 +4714,7 @@ packages: react: '>=16.8.0 || >=18' react-dom: '>=16.8.0 || >=18' dependencies: - '@floating-ui/dom': 1.0.6 + '@floating-ui/dom': 1.0.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -3627,9 +4725,9 @@ packages: /@geometricpanda/storybook-addon-badges/0.2.2: resolution: {integrity: sha512-jnlPw4VKUYc0nDxS3/lPYPxD9y8vpim80Buh8HqvjabMRM7dHKs6frGJbd/0uQIHKevLhFDYdYqAmHblqH4nwA==} dependencies: - '@storybook/addons': 6.5.13_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.13_sfoxds7t5ydpegc3knd667wn6m - '@storybook/components': 6.5.13_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 6.5.14_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.5.14_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.14_sfoxds7t5ydpegc3knd667wn6m '@storybook/theming': 6.5.13_sfoxds7t5ydpegc3knd667wn6m react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -3717,7 +4815,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.9 + '@types/node': 16.18.3 '@types/yargs': 15.0.14 chalk: 4.1.2 @@ -3727,7 +4825,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.9 + '@types/node': 16.18.3 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -3931,11 +5029,11 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - /@mantine/rte/5.8.2_mg4am4smyspjkl6dnttcswxx6a: - resolution: {integrity: sha512-dTg3MS5IpZfEnfyp6E5jv7bE795I88AIRoaiVq6rPiF2VhhP8+muccKfUj/yqiUl9OZOAdMJ8wP+k4SysfgvWQ==} + /@mantine/rte/5.9.0_mg4am4smyspjkl6dnttcswxx6a: + resolution: {integrity: sha512-wg44lXeF5mtEoi+AfS/XSlhQ9xEg6wl+7hkJaQLDXaqi1tw3/eFRhGjZ6q3rtoKRDSAs/zpcV97jjWNCp/eBOQ==} peerDependencies: - '@mantine/core': 5.8.2 - '@mantine/hooks': 5.8.2 + '@mantine/core': 5.9.0 + '@mantine/hooks': 5.9.0 react: '>=16.8.0 || >=18' react-dom: '>=16.8.0 || >=18' dependencies: @@ -4004,8 +5102,8 @@ packages: '@mantine/hooks': 5.8.2_react@18.2.0 '@mantine/utils': 5.8.2_react@18.2.0 '@tabler/icons': 1.112.0_biqbaboplfbrettd7655fr4n2y - '@tiptap/extension-link': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/react': 2.0.0-beta.202_b34bfmrzq6nwqs5zwwuhxagzky + '@tiptap/extension-link': 2.0.0-beta.202_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/react': 2.0.0-beta.202_z5f4pk2xasrno4tu55p73jy46e react: 18.2.0 dev: false @@ -4020,7 +5118,7 @@ packages: resolution: {integrity: sha512-DXx/P1lyunNoFWwOj1MWBucUhaIJljoiAGOpO2fE0GKMBCI6EZBZD0Up1+fQZoXBecKXRgV9mGgLvIB2fOQ0KQ==} hasBin: true dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 detect-indent: 6.1.0 @@ -4039,7 +5137,7 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -4048,7 +5146,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -4109,13 +5207,13 @@ packages: glob-to-regexp: 0.3.0 dev: true - /@next-auth/prisma-adapter/1.0.5_shvya3vkjwvqcakop4qe7lit3y: + /@next-auth/prisma-adapter/1.0.5_w3qkztkwfy6eylhe7n5itugygy: resolution: {integrity: sha512-VqMS11IxPXrPGXw6Oul6jcyS/n8GLOWzRMrPr3EMdtD6eOalM6zz05j08PcNiis8QzkfuYnCv49OvufTuaEwYQ==} peerDependencies: '@prisma/client': '>=2.26.0 || >=3' next-auth: ^4 dependencies: - '@prisma/client': 4.7.0 + '@prisma/client': 4.7.1 next-auth: 4.17.0_7iuvftg57tblwyxclfkwku5xo4 dev: false @@ -4131,6 +5229,10 @@ packages: /@next/env/13.0.5: resolution: {integrity: sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w==} + /@next/env/13.0.6: + resolution: {integrity: sha512-yceT6DCHKqPRS1cAm8DHvDvK74DLIkDQdm5iV+GnIts8h0QbdHvkUIkdOvQoOODgpr6018skbmSQp12z5OWIQQ==} + dev: true + /@next/eslint-plugin-next/13.0.5: resolution: {integrity: sha512-H9U9B1dFnCDmylDZ6/dYt95Ie1Iu+SLBMcO6rkIGIDcj5UK+DNyMiWm83xWBZ1gREM8cfp5Srv1g6wqf8pM4lw==} dependencies: @@ -4148,6 +5250,15 @@ packages: requiresBuild: true optional: true + /@next/swc-android-arm-eabi/13.0.6: + resolution: {integrity: sha512-FGFSj3v2Bluw8fD/X+1eXIEB0PhoJE0zfutsAauRhmNpjjZshLDgoXMWm1jTRL/04K/o9gwwO2+A8+sPVCH1uw==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + /@next/swc-android-arm64/13.0.5: resolution: {integrity: sha512-ugbwffkUmp8cd2afehDC8LtQeFUxElRUBBngfB5UYSWBx18HW4OgzkPFIY8jUBH16zifvGZWXbICXJWDHrOLtw==} engines: {node: '>= 10'} @@ -4156,6 +5267,15 @@ packages: requiresBuild: true optional: true + /@next/swc-android-arm64/13.0.6: + resolution: {integrity: sha512-7MgbtU7kimxuovVsd7jSJWMkIHBDBUsNLmmlkrBRHTvgzx5nDBXogP0hzZm7EImdOPwVMPpUHRQMBP9mbsiJYQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + /@next/swc-darwin-arm64/13.0.5: resolution: {integrity: sha512-mshlh8QOtOalfZbc17uNAftWgqHTKnrv6QUwBe+mpGz04eqsSUzVz1JGZEdIkmuDxOz00cK2NPoc+VHDXh99IQ==} engines: {node: '>= 10'} @@ -4164,6 +5284,15 @@ packages: requiresBuild: true optional: true + /@next/swc-darwin-arm64/13.0.6: + resolution: {integrity: sha512-AUVEpVTxbP/fxdFsjVI9d5a0CFn6NVV7A/RXOb0Y+pXKIIZ1V5rFjPwpYfIfyOo2lrqgehMNQcyMRoTrhq04xg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@next/swc-darwin-x64/13.0.5: resolution: {integrity: sha512-SfigOKW4Z2UB3ruUPyvrlDIkcJq1hiw1wvYApWugD+tQsAkYZKEoz+/8emCmeYZ6Gwgi1WHV+z52Oj8u7bEHPg==} engines: {node: '>= 10'} @@ -4172,6 +5301,15 @@ packages: requiresBuild: true optional: true + /@next/swc-darwin-x64/13.0.6: + resolution: {integrity: sha512-SasCDJlshglsPnbzhWaIF6VEGkQy2NECcAOxPwaPr0cwbbt4aUlZ7QmskNzgolr5eAjFS/xTr7CEeKJtZpAAtQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@next/swc-freebsd-x64/13.0.5: resolution: {integrity: sha512-0NJg8HZr4yG8ynmMGFXQf+Mahvq4ZgBmUwSlLXXymgxEQgH17erH/LoR69uITtW+KTsALgk9axEt5AAabM4ucg==} engines: {node: '>= 10'} @@ -4180,6 +5318,15 @@ packages: requiresBuild: true optional: true + /@next/swc-freebsd-x64/13.0.6: + resolution: {integrity: sha512-6Lbxd9gAdXneTkwHyYW/qtX1Tdw7ND9UbiGsGz/SP43ZInNWnW6q0au4hEVPZ9bOWWRKzcVoeTBdoMpQk9Hx9w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + /@next/swc-linux-arm-gnueabihf/13.0.5: resolution: {integrity: sha512-Cye+h3oDT3NDWjACMlRaolL8fokpKie34FlPj9nfoW7bYKmoMBY1d4IO/GgBF+5xEl7HkH0Ny/qex63vQ0pN+A==} engines: {node: '>= 10'} @@ -4188,6 +5335,15 @@ packages: requiresBuild: true optional: true + /@next/swc-linux-arm-gnueabihf/13.0.6: + resolution: {integrity: sha512-wNdi5A519e1P+ozEuYOhWPzzE6m1y7mkO6NFwn6watUwO0X9nZs7fT9THmnekvmFQpaZ6U+xf2MQ9poQoCh6jQ==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@next/swc-linux-arm64-gnu/13.0.5: resolution: {integrity: sha512-5BfDS/VoRDR5QUGG9oedOCEZGmV2zxUVFYLUJVPMSMeIgqkjxWQBiG2BUHZI6/LGk9yvHmjx7BTvtBCLtRg6IQ==} engines: {node: '>= 10'} @@ -4196,6 +5352,15 @@ packages: requiresBuild: true optional: true + /@next/swc-linux-arm64-gnu/13.0.6: + resolution: {integrity: sha512-e8KTRnleQY1KLk5PwGV5hrmvKksCc74QRpHl5ffWnEEAtL2FE0ave5aIkXqErsPdXkiKuA/owp3LjQrP+/AH7Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@next/swc-linux-arm64-musl/13.0.5: resolution: {integrity: sha512-xenvqlXz+KxVKAB1YR723gnVNszpsCvKZkiFFaAYqDGJ502YuqU2fwLsaSm/ASRizNcBYeo9HPLTyc3r/9cdMQ==} engines: {node: '>= 10'} @@ -4204,20 +5369,47 @@ packages: requiresBuild: true optional: true - /@next/swc-linux-x64-gnu/13.0.5: - resolution: {integrity: sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ==} + /@next/swc-linux-arm64-musl/13.0.6: + resolution: {integrity: sha512-/7RF03C3mhjYpHN+pqOolgME3guiHU5T3TsejuyteqyEyzdEyLHod+jcYH6ft7UZ71a6TdOewvmbLOtzHW2O8A==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@next/swc-linux-x64-gnu/13.0.5: + resolution: {integrity: sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /@next/swc-linux-x64-gnu/13.0.6: + resolution: {integrity: sha512-kxyEXnYHpOEkFnmrlwB1QlzJtjC6sAJytKcceIyFUHbCaD3W/Qb5tnclcnHKTaFccizZRePXvV25Ok/eUSpKTw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@next/swc-linux-x64-musl/13.0.5: + resolution: {integrity: sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-musl/13.0.5: - resolution: {integrity: sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w==} + /@next/swc-linux-x64-musl/13.0.6: + resolution: {integrity: sha512-N0c6gubS3WW1oYYgo02xzZnNatfVQP/CiJq2ax+DJ55ePV62IACbRCU99TZNXXg+Kos6vNW4k+/qgvkvpGDeyA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /@next/swc-win32-arm64-msvc/13.0.5: @@ -4228,6 +5420,15 @@ packages: requiresBuild: true optional: true + /@next/swc-win32-arm64-msvc/13.0.6: + resolution: {integrity: sha512-QjeMB2EBqBFPb/ac0CYr7GytbhUkrG4EwFWbcE0vsRp4H8grt25kYpFQckL4Jak3SUrp7vKfDwZ/SwO7QdO8vw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@next/swc-win32-ia32-msvc/13.0.5: resolution: {integrity: sha512-Q1XQSLEhFuFhkKFdJIGt7cYQ4T3u6P5wrtUNreg5M+7P+fjSiC8+X+Vjcw+oebaacsdl0pWZlK+oACGafush1w==} engines: {node: '>= 10'} @@ -4236,6 +5437,15 @@ packages: requiresBuild: true optional: true + /@next/swc-win32-ia32-msvc/13.0.6: + resolution: {integrity: sha512-EQzXtdqRTcmhT/tCq81rIwE36Y3fNHPInaCuJzM/kftdXfa0F+64y7FAoMO13npX8EG1+SamXgp/emSusKrCXg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@next/swc-win32-x64-msvc/13.0.5: resolution: {integrity: sha512-t5gRblrwwiNZP6cT7NkxlgxrFgHWtv9ei5vUraCLgBqzvIsa7X+PnarZUeQCXqz6Jg9JSGGT9j8lvzD97UqeJQ==} engines: {node: '>= 10'} @@ -4244,6 +5454,15 @@ packages: requiresBuild: true optional: true + /@next/swc-win32-x64-msvc/13.0.6: + resolution: {integrity: sha512-pSkqZ//UP/f2sS9T7IvHLfEWDPTX0vRyXJnAUNisKvO3eF3e1xdhDX7dix/X3Z3lnN4UjSwOzclAI87JFbOwmQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3: resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} requiresBuild: true @@ -4361,8 +5580,8 @@ packages: engines: {node: '>=10'} dev: true - /@pmmmwh/react-refresh-webpack-plugin/0.5.9_b55igmbf5xgiivp6m2jrxoxcxm: - resolution: {integrity: sha512-7QV4cqUwhkDIHpMAZ9mestSJ2DMIotVTbOUwbiudhjCRTAWWKIaBecELiEM2LT3AHFeOAaHIcFu4dbXjX+9GBA==} + /@pmmmwh/react-refresh-webpack-plugin/0.5.10_b55igmbf5xgiivp6m2jrxoxcxm: + resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} engines: {node: '>= 10.13'} peerDependencies: '@types/webpack': 4.x || 5.x @@ -4398,7 +5617,7 @@ packages: schema-utils: 3.1.1 source-map: 0.7.4 type-fest: 3.2.0 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /@polka/url/1.0.0-next.21: @@ -4409,8 +5628,8 @@ packages: resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==} dev: false - /@prisma/client/4.7.0: - resolution: {integrity: sha512-keXMa0oJWJGOzMEFKp+CEgzJPwnOtGSrnTWw6qMYxnypYrRFdNxqyA06EzELZexBhgM4oLooZ1jDJ3iy46wExA==} + /@prisma/client/4.7.1: + resolution: {integrity: sha512-/GbnOwIPtjiveZNUzGXOdp7RxTEkHL4DZP3vBaFNadfr6Sf0RshU5EULFzVaSi9i9PIK9PYd+1Rn7z2B2npb9w==} engines: {node: '>=14.17'} requiresBuild: true peerDependencies: @@ -4419,11 +5638,11 @@ packages: prisma: optional: true dependencies: - '@prisma/engines-version': 4.7.0-74.39190b250ebc338586e25e6da45e5e783bc8a635 + '@prisma/engines-version': 4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c dev: false - /@prisma/client/4.7.0_prisma@4.7.0: - resolution: {integrity: sha512-keXMa0oJWJGOzMEFKp+CEgzJPwnOtGSrnTWw6qMYxnypYrRFdNxqyA06EzELZexBhgM4oLooZ1jDJ3iy46wExA==} + /@prisma/client/4.7.1_prisma@4.7.1: + resolution: {integrity: sha512-/GbnOwIPtjiveZNUzGXOdp7RxTEkHL4DZP3vBaFNadfr6Sf0RshU5EULFzVaSi9i9PIK9PYd+1Rn7z2B2npb9w==} engines: {node: '>=14.17'} requiresBuild: true peerDependencies: @@ -4432,8 +5651,8 @@ packages: prisma: optional: true dependencies: - '@prisma/engines-version': 4.7.0-74.39190b250ebc338586e25e6da45e5e783bc8a635 - prisma: 4.7.0 + '@prisma/engines-version': 4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c + prisma: 4.7.1 dev: false /@prisma/debug/3.14.0: @@ -4486,7 +5705,7 @@ packages: new-github-issue-url: 0.2.1 p-retry: 4.6.2 strip-ansi: 6.0.1 - undici: 5.12.0 + undici: 5.13.0 transitivePeerDependencies: - supports-color dev: false @@ -4512,8 +5731,8 @@ packages: - supports-color dev: true - /@prisma/engines-version/4.7.0-74.39190b250ebc338586e25e6da45e5e783bc8a635: - resolution: {integrity: sha512-ImczGEQ8NS1OUApEeyAGxC4uLTtQp0wI1+2wM4MeQLVwIQbyMHk1vOhWWE8Pwbi3rnzLcPvsIrd9sm6oNXhERw==} + /@prisma/engines-version/4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c: + resolution: {integrity: sha512-Bd4LZ+WAnUHOq31e9X/ihi5zPlr4SzTRwUZZYxvWOxlerIZ7HJlVa9zXpuKTKLpI9O1l8Ec4OYCKsivWCs5a3Q==} dev: false /@prisma/engines/3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e: @@ -4526,8 +5745,8 @@ packages: requiresBuild: true dev: true - /@prisma/engines/4.7.0: - resolution: {integrity: sha512-afKrVFktaZ1pOK12/uFl2hRsBWIJZuC5FdDtacuKk5x/mR+rC5AbA+PlN3ZCZbmYTaeiBMHjcU5wbT5z2N3nSQ==} + /@prisma/engines/4.7.1: + resolution: {integrity: sha512-zWabHosTdLpXXlMefHmnouhXMoTB1+SCbUU3t4FCmdrtIOZcarPKU3Alto7gm/pZ9vHlGOXHCfVZ1G7OIrSbog==} requiresBuild: true /@prisma/fetch-engine/3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e: @@ -4742,19 +5961,19 @@ packages: /@radix-ui/number/1.0.0: resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 /@radix-ui/primitive/1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 /@radix-ui/react-compose-refs/1.0.0_react@18.2.0: resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 react: 18.2.0 /@radix-ui/react-context/1.0.0_react@18.2.0: @@ -4762,7 +5981,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 react: 18.2.0 /@radix-ui/react-direction/1.0.0_react@18.2.0: @@ -4770,7 +5989,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 react: 18.2.0 /@radix-ui/react-presence/1.0.0_biqbaboplfbrettd7655fr4n2y: @@ -4779,7 +5998,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 || >=18 react-dom: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 react: 18.2.0 @@ -4791,7 +6010,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 || >=18 react-dom: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@radix-ui/react-slot': 1.0.0_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4802,7 +6021,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 || >=18 react-dom: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@radix-ui/number': 1.0.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 @@ -4820,7 +6039,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 react: 18.2.0 @@ -4829,7 +6048,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 react: 18.2.0 /@radix-ui/react-use-layout-effect/1.0.0_react@18.2.0: @@ -4837,7 +6056,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 react: 18.2.0 /@rushstack/eslint-patch/1.2.0: @@ -5038,7 +6257,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.13_mkvqu4dpcolj4gx2fwxsmvgdzm: + /@storybook/addon-essentials/6.5.13_nak4rpspbnlvsomoybt5x36ojq: resolution: {integrity: sha512-G9FVAWV7ixjVLWeLgIX+VT90tcAk6yQxfZQegfg5ucRilGysJCDaNnoab4xuuvm1R40TfFhba3iAGZtQYsddmw==} peerDependencies: '@babel/core': ^7.9.6 @@ -5106,8 +6325,8 @@ packages: '@storybook/addon-viewport': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack4': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/builder-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/builder-webpack4': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/builder-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra '@storybook/core-common': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu '@storybook/node-logger': 6.5.13 core-js: 3.26.1 @@ -5115,7 +6334,7 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 transitivePeerDependencies: - '@storybook/mdx2-csf' - eslint @@ -5308,19 +6527,40 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@storybook/addons/6.5.13_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-18CqzNnrGMfeZtiKz+R/3rHtSNnfNwz6y6prIQIbWseK16jY8ELTfIFGviwO5V2OqpbHDQi5+xQQ63QAIb89YA==} + /@storybook/addons/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-8wVy1eDKipj+dmWpVmmPa1p2jYVqDvrkWll4IsP/KU7AYFCiyCiVAd1ZPDv9EhDnwArfYYjrdJjAl6gmP0UMag==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 dependencies: - '@storybook/api': 6.5.13_sfoxds7t5ydpegc3knd667wn6m - '@storybook/channels': 6.5.13 - '@storybook/client-logger': 6.5.13 - '@storybook/core-events': 6.5.13 + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.13_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.13_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@types/webpack-env': 1.18.0 + core-js: 3.26.1 + global: 4.4.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + dev: true + + /@storybook/addons/6.5.14_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-8wVy1eDKipj+dmWpVmmPa1p2jYVqDvrkWll4IsP/KU7AYFCiyCiVAd1ZPDv9EhDnwArfYYjrdJjAl6gmP0UMag==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/api': 6.5.14_sfoxds7t5ydpegc3knd667wn6m + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.14_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.14_sfoxds7t5ydpegc3knd667wn6m '@types/webpack-env': 1.18.0 core-js: 3.26.1 global: 4.4.0 @@ -5356,19 +6596,46 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/api/6.5.13_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-xVSmB7/IuFd6G7eiJjbI2MuS7SZunoUM6d+YCWpjiehfMeX47MXt1gZtOwFrgJC1ShZlefXFahq/dvxwtmWs+w==} + /@storybook/api/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-RpgEWV4mxD1mNsGWkjSNq3+B/LFNIhXZc4OapEEK5u0jgCZKB7OCsRL9NJZB5WfpyN+vx8SwbUTgo8DIkes3qw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 dependencies: - '@storybook/channels': 6.5.13 - '@storybook/client-logger': 6.5.13 - '@storybook/core-events': 6.5.13 + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.13_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.13_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + core-js: 3.26.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + store2: 2.14.2 + telejson: 6.0.8 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/api/6.5.14_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-RpgEWV4mxD1mNsGWkjSNq3+B/LFNIhXZc4OapEEK5u0jgCZKB7OCsRL9NJZB5WfpyN+vx8SwbUTgo8DIkes3qw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.14_sfoxds7t5ydpegc3knd667wn6m + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.14_sfoxds7t5ydpegc3knd667wn6m core-js: 3.26.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -5452,7 +6719,76 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack5/6.5.13_22k5pu2zrwp4lfdccn47xs4ahq: + /@storybook/builder-webpack4/6.5.14_gpshdmfc4w665ax2rx6w5ydgtu: + resolution: {integrity: sha512-0pv8BlsMeiP9VYU2CbCZaa3yXDt1ssb8OeTRDbFC0uFFb3eqslsH68I7XsC8ap/dr0RZR0Edtw0OW3HhkjUXXw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.20.5 + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.14 + '@storybook/channels': 6.5.14 + '@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.14 + '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/core-events': 6.5.14 + '@storybook/node-logger': 6.5.14 + '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.18.3 + '@types/webpack': 4.41.33 + autoprefixer: 9.8.8 + babel-loader: 8.3.0_em3sh5kto35xuanci4cvhzqfay + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.26.1 + 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_2yqjpsxjcwhf26ay4mtn5wajne + 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.9.3 + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe + raw-loader: 4.0.2_webpack@4.46.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + stable: 0.1.8 + 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.9.3 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 + webpack-hot-middleware: 2.25.3 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - bluebird + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/builder-webpack5/6.5.13_xt3n56ubrpl6wol5euqf2ootra: resolution: {integrity: sha512-juNH31ZljWbaoBD6Yx2/iQ4G66UBkwq+cFUqLzgVROKMXmYaT0AJYbfyY8CgGqcXkc+sqNA63yWaLWd8/K9vTg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 @@ -5495,11 +6831,11 @@ packages: react-dom: 18.2.0_react@18.2.0 stable: 0.1.8 style-loader: 2.0.0_webpack@5.75.0 - terser-webpack-plugin: 5.3.6_a7dehehzlg4obffjljtjigk7jq + terser-webpack-plugin: 5.3.6_5x5i6oqvqt377ajd6g3httdbmq ts-dedent: 2.2.0 typescript: 4.9.3 util-deprecate: 1.0.2 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 webpack-dev-middleware: 4.3.0_webpack@5.75.0 webpack-hot-middleware: 2.25.3 webpack-virtual-modules: 0.4.6 @@ -5526,6 +6862,18 @@ packages: telejson: 6.0.8 dev: true + /@storybook/channel-postmessage/6.5.14: + resolution: {integrity: sha512-0Cmdze5G3Qwxf7yYPGlJxGiY+KiEUQ+8GfpohsKGfvrP8cfSrx6VhxupHA7hDNyRh75hqZq5BrkW4HO9Ypbt5A==} + dependencies: + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + core-js: 3.26.1 + global: 4.4.0 + qs: 6.11.0 + telejson: 6.0.8 + dev: true + /@storybook/channel-websocket/6.5.13: resolution: {integrity: sha512-kwh667H+tzCiNvs92GNwYOwVXdj9uHZyieRAN5rJtTBJ7XgLzGkpTEU50mWlbc0nDKhgE0qYvzyr5H393Iy5ug==} dependencies: @@ -5536,6 +6884,16 @@ packages: telejson: 6.0.8 dev: true + /@storybook/channel-websocket/6.5.14: + resolution: {integrity: sha512-ZyDL5PBFWuFQ15NBljhbOaD/3FAijXvLj5oxfNris2khdkqlP6/8JmcIvfohJJcqepGZHUF9H29OaUsRC35ftA==} + dependencies: + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + core-js: 3.26.1 + global: 4.4.0 + telejson: 6.0.8 + dev: true + /@storybook/channels/6.5.13: resolution: {integrity: sha512-sGYSilE30bz0jG+HdHnkv0B4XkAv2hP+KRZr4xmnv+MOOQpRnZpJ5Z3HVU16s17cj/83NWihKj6BuKcEVzyilg==} dependencies: @@ -5544,6 +6902,14 @@ packages: util-deprecate: 1.0.2 dev: true + /@storybook/channels/6.5.14: + resolution: {integrity: sha512-hHpr4Sya6fuEDhy7vnfD2QnL5wy1CaAK9BC0FLupndXnQyKJtygfIaUP4a0B2KntuNPbzPhclb2Hb4yM7CExmQ==} + dependencies: + core-js: 3.26.1 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + /@storybook/cli/6.5.13_gpshdmfc4w665ax2rx6w5ydgtu: resolution: {integrity: sha512-AU8PWJnPJzBwhG9kQZ2frGBf08c6I0VanQOchzM158Txr9at619YrwltosdSVpBNzyNkOeZoQgEJCOK0mQLvow==} hasBin: true @@ -5622,6 +6988,36 @@ packages: util-deprecate: 1.0.2 dev: true + /@storybook/client-api/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-G5mBQCKn8/VqE9XDCL19ixcvu8YhaQZ0AE+EXGYXUsvPpyQ43oGoGJry5IqOzeRlc7dbglFWpMkB6PeeUD7aCw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.14 + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@types/qs': 6.9.7 + '@types/webpack-env': 1.18.0 + core-js: 3.26.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + store2: 2.14.2 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + /@storybook/client-logger/6.5.13: resolution: {integrity: sha512-F2SMW3LWFGXLm2ENTwTitrLWJgmMXRf3CWQXdN2EbkNCIBHy5Zcbt+91K4OX8e2e5h9gjGfrdYbyYDYOoUCEfA==} dependencies: @@ -5629,10 +7025,17 @@ packages: global: 4.4.0 dev: true + /@storybook/client-logger/6.5.14: + resolution: {integrity: sha512-r1pY69DGKzX9/GngkudthaaPxPlka16zjG7Y58psunwcoUuH3riAP1cjqhXt5+S8FKCNI/MGb82PLlCPX2Liuw==} + dependencies: + core-js: 3.26.1 + global: 4.4.0 + dev: true + /@storybook/codemod/6.5.13_@babel+preset-env@7.20.2: resolution: {integrity: sha512-XhCmhUFjYjRa6yYkWfa55/xvLjSLuyDj43symO35ph2zY8rcvJgwXxZFtF9GbWzZMkFq/4/U4j4CATTCF4PBmQ==} dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.13 @@ -5669,15 +7072,33 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/components/6.5.13_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-6Hhx70JK5pGfKCkqMU4yq/BBH+vRTmzj7tZKfPwba+f8VmTMoOr/2ysTQFRtXryiHB6Z15xBYgfq5x2pIwQzLQ==} + /@storybook/components/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-wqB9CF3sjxtgffnDW1G/W5SsKumsFQ0ftn/3PdrsvKULu5LM5bjNEqC2cTCWrk9vQhj+EVQxzdVM/BlPl/lSwg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 dependencies: - '@storybook/client-logger': 6.5.13 + '@storybook/client-logger': 6.5.14 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.13_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + core-js: 3.26.1 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + util-deprecate: 1.0.2 + dev: true + + /@storybook/components/6.5.14_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-wqB9CF3sjxtgffnDW1G/W5SsKumsFQ0ftn/3PdrsvKULu5LM5bjNEqC2cTCWrk9vQhj+EVQxzdVM/BlPl/lSwg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/client-logger': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.14_sfoxds7t5ydpegc3knd667wn6m core-js: 3.26.1 memoizerific: 1.11.3 qs: 6.11.0 @@ -5758,7 +7179,44 @@ packages: typescript: 4.9.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 + dev: true + + /@storybook/core-client/6.5.14_5ey2xofmun3swml4ceosmuhnmq: + resolution: {integrity: sha512-d5mUgz1xSvrAdal8XKI5YOZOM/XUly90vis3DboeZRO58qSp+NH5xFYIBBED5qefDgmGU0Yv4rXHQlph96LSHQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.14 + '@storybook/channel-websocket': 6.5.14 + '@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.26.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + typescript: 4.9.3 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 dev: true /@storybook/core-common/6.5.13_gpshdmfc4w665ax2rx6w5ydgtu: @@ -5773,20 +7231,20 @@ packages: dependencies: '@babel/core': 7.20.2 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-decorators': 7.20.2_@babel+core@7.20.2 + '@babel/plugin-proposal-decorators': 7.20.5_@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.20.2_@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-private-property-in-object': 7.20.5_@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.2_@babel+core@7.20.2 + '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.2 '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.2 '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.2 '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 + '@babel/plugin-transform-parameters': 7.20.5_@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.20.2_@babel+core@7.20.2 @@ -5797,9 +7255,80 @@ packages: '@storybook/semver': 7.3.2 '@types/node': 16.18.3 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.3.0_tktscwi5cl3qcx6vcfwkvrwn6i + babel-loader: 8.3.0_tktscwi5cl3qcx6vcfwkvrwn6i + babel-plugin-macros: 3.1.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.2 + chalk: 4.1.2 + core-js: 3.26.1 + express: 4.18.2 + file-system-cache: 1.1.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.2_2yqjpsxjcwhf26ay4mtn5wajne + fs-extra: 9.1.0 + glob: 7.2.3 + handlebars: 4.7.7 + interpret: 2.2.0 + json5: 2.2.1 + lazy-universal-dotenv: 3.0.1 + picomatch: 2.3.1 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + resolve-from: 5.0.0 + slash: 3.0.0 + telejson: 6.0.8 + ts-dedent: 2.2.0 + typescript: 4.9.3 + util-deprecate: 1.0.2 + webpack: 4.46.0 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-common/6.5.14_gpshdmfc4w665ax2rx6w5ydgtu: + resolution: {integrity: sha512-MrxhYXYrtN6z/+tydjPkCIwDQm5q8Jx+w4TPdLKBZu7vzfp6T3sT12Ym96j9MJ42CvE4vSDl/Njbw6C0D+yEVw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.20.5 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-decorators': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 + '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 + '@babel/preset-env': 7.20.2_@babel+core@7.20.5 + '@babel/preset-react': 7.18.6_@babel+core@7.20.5 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5 + '@babel/register': 7.18.9_@babel+core@7.20.5 + '@storybook/node-logger': 6.5.14 + '@storybook/semver': 7.3.2 + '@types/node': 16.18.3 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.3.0_em3sh5kto35xuanci4cvhzqfay babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.2 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.5 chalk: 4.1.2 core-js: 3.26.1 express: 4.18.2 @@ -5838,6 +7367,12 @@ packages: core-js: 3.26.1 dev: true + /@storybook/core-events/6.5.14: + resolution: {integrity: sha512-PLu0M8Mqt9ruN5RupgcFKHEybiSm3CdWQyylWO5FRGg+WZV3BCm0aI8ujvO1GAm+YEi57Lull+M9d6NUycTpRg==} + dependencies: + core-js: 3.26.1 + dev: true + /@storybook/core-server/6.5.13_bugjgtzxlvoxlp3jfb73mh42oe: resolution: {integrity: sha512-vs7tu3kAnFwuINio1p87WyqDNlFyZESmeh9s7vvrZVbe/xS/ElqDscr9DT5seW+jbtxufAaHsx+JUTver1dheQ==} peerDependencies: @@ -5856,14 +7391,14 @@ packages: dependencies: '@discoveryjs/json-ext': 0.5.7 '@storybook/builder-webpack4': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/builder-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/builder-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra '@storybook/core-client': 6.5.13_5ey2xofmun3swml4ceosmuhnmq '@storybook/core-common': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu '@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_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/manager-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/manager-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra '@storybook/node-logger': 6.5.13 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y @@ -5934,14 +7469,14 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/builder-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra '@storybook/core-client': 6.5.13_ep3nicfz4qcahezcs7kmkfeniq '@storybook/core-server': 6.5.13_bugjgtzxlvoxlp3jfb73mh42oe - '@storybook/manager-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/manager-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra react: 18.2.0 react-dom: 18.2.0_react@18.2.0 typescript: 4.9.3 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 transitivePeerDependencies: - '@storybook/mdx2-csf' - bluebird @@ -5964,12 +7499,12 @@ packages: optional: true dependencies: '@babel/core': 7.20.2 - '@babel/generator': 7.20.4 - '@babel/parser': 7.20.3 + '@babel/generator': 7.20.5 + '@babel/parser': 7.20.5 '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2 '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.2 core-js: 3.26.1 @@ -6021,6 +7556,19 @@ packages: - react-dom dev: true + /@storybook/instrumenter/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-R0yyXObz5j9HWIC33EiqscFt825Q02BNi/m8K+oYNCCqJHKhrB9ZXWfQVBcKj4BSpDttNABtJifngDkkz8J8QA==} + dependencies: + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + core-js: 3.26.1 + global: 4.4.0 + transitivePeerDependencies: + - react + - react-dom + dev: true + /@storybook/manager-webpack4/6.5.13_gpshdmfc4w665ax2rx6w5ydgtu: resolution: {integrity: sha512-pURzS5W3XM0F7bCBWzpl7TRsuy+OXFwLXiWLaexuvo0POZe31Ueo2A1R4rx3MT5Iee8O9mYvG2XTmvK9MlLefQ==} peerDependencies: @@ -6079,7 +7627,65 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack5/6.5.13_22k5pu2zrwp4lfdccn47xs4ahq: + /@storybook/manager-webpack4/6.5.14_gpshdmfc4w665ax2rx6w5ydgtu: + resolution: {integrity: sha512-ixfJuaG0eiOlxn4i+LJNRUZkm+3WMsiaGUm0hw2XHF0pW3cBIA/+HyzkEwVh/fROHbsOERTkjNl0Ygl12Imw9w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.20.5 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 + '@babel/preset-react': 7.18.6_@babel+core@7.20.5 + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.14_5ey2xofmun3swml4ceosmuhnmq + '@storybook/core-common': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/node-logger': 6.5.14 + '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.18.3 + '@types/webpack': 4.41.33 + babel-loader: 8.3.0_em3sh5kto35xuanci4cvhzqfay + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.26.1 + css-loader: 3.6.0_webpack@4.46.0 + express: 4.18.2 + file-loader: 6.2.0_webpack@4.46.0 + find-up: 5.0.0 + 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.9.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.11 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 6.0.8 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.9.3 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - bluebird + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack5/6.5.13_xt3n56ubrpl6wol5euqf2ootra: resolution: {integrity: sha512-lQEZacSfeRsbqfJE7TVk35Hm1vkr0I2i1pyYqM+4862gRbMh1nJQXbJ5GqZ+Fo/bf0ZfyFZ32jGDIJAFdlpkuQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 @@ -6117,11 +7723,11 @@ packages: resolve-from: 5.0.0 style-loader: 2.0.0_webpack@5.75.0 telejson: 6.0.8 - terser-webpack-plugin: 5.3.6_a7dehehzlg4obffjljtjigk7jq + terser-webpack-plugin: 5.3.6_5x5i6oqvqt377ajd6g3httdbmq ts-dedent: 2.2.0 typescript: 4.9.3 util-deprecate: 1.0.2 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 webpack-dev-middleware: 4.3.0_webpack@5.75.0 webpack-virtual-modules: 0.4.6 transitivePeerDependencies: @@ -6139,12 +7745,12 @@ packages: /@storybook/mdx1-csf/0.0.1_@babel+core@7.20.2: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.20.4 - '@babel/parser': 7.20.3 + '@babel/generator': 7.20.5 + '@babel/parser': 7.20.5 '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@babel/types': 7.20.2 + '@babel/types': 7.20.5 '@mdx-js/mdx': 1.6.22 - '@types/lodash': 4.14.189 + '@types/lodash': 4.14.191 js-string-escape: 1.0.1 loader-utils: 2.0.4 lodash: 4.17.21 @@ -6165,6 +7771,16 @@ packages: pretty-hrtime: 1.0.3 dev: true + /@storybook/node-logger/6.5.14: + resolution: {integrity: sha512-MbEEgUEfrDN8Y0vzZJqPcxwWvX0l8zAsXy6d/DORP2AmwuNmnWTy++BE9YhxH6HMdM1ivRDmBbT30+KBUWhnUA==} + dependencies: + '@types/npmlog': 4.1.4 + chalk: 4.1.2 + core-js: 3.26.1 + npmlog: 5.0.1 + pretty-hrtime: 1.0.3 + dev: true + /@storybook/postinstall/6.5.13: resolution: {integrity: sha512-qmqP39FGIP5NdhXC5IpAs9cFoYx9fg1psoQKwb9snYb98eVQU31uHc1W2MBUh3lG4AjAm7pQaXJci7ti4jOh3g==} dependencies: @@ -6197,6 +7813,32 @@ packages: util-deprecate: 1.0.2 dev: true + /@storybook/preview-web/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-ey2E7222xw0itPgCWH7ZIrdgM1yCdYte/QxRvwv/O4us4SUs/RQaL1aoCD+hCRwd0BNyZUk/u1KnqB4y0MnHww==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + ansi-to-html: 0.6.15 + core-js: 3.26.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + dev: true + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_vfotqvx6lgcbf3upbs6hgaza4q: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: @@ -6211,12 +7853,12 @@ packages: react-docgen-typescript: 2.2.2_typescript@4.9.3 tslib: 2.4.1 typescript: 4.9.3 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.13_au32duyi3m4ybju6hwbawtuyhy: + /@storybook/react/6.5.13_kngzsb3kxr3jz3r3kxbxnuc6zi: resolution: {integrity: sha512-4gO8qihEkVZ8RNm9iQd7G2iZz4rRAHizJ6T5m58Sn21fxfyg9zAMzhgd0JzXuPXR8lTTj4AvRyPv1Qx7b43smg==} engines: {node: '>=10.13.0'} hasBin: true @@ -6247,17 +7889,17 @@ packages: '@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.9_b55igmbf5xgiivp6m2jrxoxcxm + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_b55igmbf5xgiivp6m2jrxoxcxm '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack4': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/builder-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/builder-webpack4': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/builder-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra '@storybook/client-logger': 6.5.13 '@storybook/core': 6.5.13_ihynli3r3rvrkbmo2u6ey6cdfq '@storybook/core-common': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/manager-webpack4': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/manager-webpack5': 6.5.13_22k5pu2zrwp4lfdccn47xs4ahq + '@storybook/manager-webpack4': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/manager-webpack5': 6.5.13_xt3n56ubrpl6wol5euqf2ootra '@storybook/node-logger': 6.5.13 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_vfotqvx6lgcbf3upbs6hgaza4q '@storybook/semver': 7.3.2 @@ -6287,7 +7929,7 @@ packages: ts-dedent: 2.2.0 typescript: 4.9.3 util-deprecate: 1.0.2 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -6325,13 +7967,28 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@storybook/router/6.5.13_sfoxds7t5ydpegc3knd667wn6m: - resolution: {integrity: sha512-sf5aogfirH5ucD0d0hc2mKf2iyWsZsvXhr5kjxUQmgkcoflkGUWhc34sbSQVRQ1i8K5lkLIDH/q2s1Zr2SbzhQ==} + /@storybook/router/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-AvHbpRUAHnzm5pmwFPjDR09uPjQITD6kA0QNa2pe+7/Q/b4k40z5dHvHZJ/YhWhwVwGqGBG20KdDOl30wLXAZw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 dependencies: - '@storybook/client-logger': 6.5.13 + '@storybook/client-logger': 6.5.14 + core-js: 3.26.1 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + dev: true + + /@storybook/router/6.5.14_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-AvHbpRUAHnzm5pmwFPjDR09uPjQITD6kA0QNa2pe+7/Q/b4k40z5dHvHZJ/YhWhwVwGqGBG20KdDOl30wLXAZw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/client-logger': 6.5.14 core-js: 3.26.1 memoizerific: 1.11.3 qs: 6.11.0 @@ -6394,6 +8051,31 @@ packages: util-deprecate: 1.0.2 dev: true + /@storybook/store/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-s07Vw4nbShPYwBJmVXzptuyCkrDQD3khcrKB5L7NsHHgWsm2QI0OyiPMuMbSvgipjcMc/oRqdL3tFUeFak9EMg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.14 + '@storybook/core-events': 6.5.14 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.26.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + slash: 3.0.0 + stable: 0.1.8 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + /@storybook/telemetry/6.5.13_gpshdmfc4w665ax2rx6w5ydgtu: resolution: {integrity: sha512-PFJEfGbunmfFWabD3rdCF8EHH+45578OHOkMPpXJjqXl94vPQxUH2XTVKQgEQJbYrgX0Vx9Z4tSkdMHuzYDbWQ==} dependencies: @@ -6424,8 +8106,8 @@ packages: /@storybook/testing-library/0.0.13_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-vRMeIGer4EjJkTgI8sQyK9W431ekPWYCWL//OmSDJ64IT3h7FnW7Xg6p+eqM3oII98/O5pcya5049GxnjaPtxw==} dependencies: - '@storybook/client-logger': 6.5.13 - '@storybook/instrumenter': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.14 + '@storybook/instrumenter': 6.5.14_biqbaboplfbrettd7655fr4n2y '@testing-library/dom': 8.19.0 '@testing-library/user-event': 13.5.0_aaq3sbffpfe3jnxzm2zngsddei ts-dedent: 2.2.0 @@ -6462,6 +8144,34 @@ packages: regenerator-runtime: 0.13.11 dev: true + /@storybook/theming/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-3ff6RLZGaIil/AFJ0/BRlE2hhdPrC5v6wGbRfroZVmGldRCxio/7+KAA3LH6cuHnjK5MeBcCBaHuxzXqGmbEFw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/client-logger': 6.5.14 + core-js: 3.26.1 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + dev: true + + /@storybook/theming/6.5.14_sfoxds7t5ydpegc3knd667wn6m: + resolution: {integrity: sha512-3ff6RLZGaIil/AFJ0/BRlE2hhdPrC5v6wGbRfroZVmGldRCxio/7+KAA3LH6cuHnjK5MeBcCBaHuxzXqGmbEFw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/client-logger': 6.5.14 + core-js: 3.26.1 + memoizerific: 1.11.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + regenerator-runtime: 0.13.11 + dev: true + /@storybook/ui/6.5.13_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-MklJuSg4Bc+MWjwhZVmZhJaucaeEBUMMa2V9oRWbIgZOdRHqdW72S2vCbaarDAYfBQdnfaoq1GkSQiw+EnWOzA==} peerDependencies: @@ -6486,8 +8196,32 @@ packages: resolve-from: 5.0.0 dev: true - /@swc/core-darwin-arm64/1.3.19: - resolution: {integrity: sha512-6xLtmXzS4nNWGQkajbiAjGXspUJfxS2IWoGQ16J9nfOFdttKyoIG5o5+mxUfKeg5bXw9cI+r675kN/irx3z7MQ==} + /@storybook/ui/6.5.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-dXlCIULh8ytgdFrvVoheQLlZjAyyYmGCuw+6m+s+2yF/oUbFREG/5Zo9hDwlJ4ZiAyqNLkuwg2tnMYtjapZSog==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 + dependencies: + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.14 + '@storybook/client-logger': 6.5.14 + '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.14 + '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + core-js: 3.26.1 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.11 + resolve-from: 5.0.0 + dev: true + + /@swc/core-darwin-arm64/1.3.21: + resolution: {integrity: sha512-5dBrJyrCzdHOQ9evS9NBJm2geKcXffIuAvSrnwbMHkfTpl+pOM7crry2tolydFXdOE/Jbx8yyahAIXPne1fTHw==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -6495,8 +8229,8 @@ packages: dev: true optional: true - /@swc/core-darwin-x64/1.3.19: - resolution: {integrity: sha512-qCDQcngYBeWrsNS1kcBslRD0dahKcYKaUUWRC9yHpRcs3SRvnSpJyWQR4y9RCdO9YNmixJ9+5+zPD9qcgL7jBw==} + /@swc/core-darwin-x64/1.3.21: + resolution: {integrity: sha512-CAtzfsRoVZr7DLKOOWPua6npFdj06wRuv1us275CY2QS3mg1bPl9BxA3c94q3mMcu5Bf06+dzUOjJSGrsBD7Ig==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -6504,8 +8238,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf/1.3.19: - resolution: {integrity: sha512-ufbKW6Lhii1+kVCXnsHgqYIpRvXhPjdhMudfP4KKVgJtT6TsdEIr+KRAQIBHLjRUsTKA2DLsGEpu9jfjwFiNEg==} + /@swc/core-linux-arm-gnueabihf/1.3.21: + resolution: {integrity: sha512-oPO7oFr89pjDFlHJ2aZvzGR6hwy5nmQyeiuqpTgfn+RFFLLbipFawJe/2NBWyD35bxuguW6a3/w9I6edKTpLUw==} engines: {node: '>=10'} cpu: [arm] os: [linux] @@ -6513,8 +8247,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-gnu/1.3.19: - resolution: {integrity: sha512-HHhqLRZv9Ss8orJrlEP4XRcLuqLDwFtGgbtHU8kyWBmQEtK42uT18Pf5RJBo5sPJHY8m5EO8C8y3hIbGmKtLyg==} + /@swc/core-linux-arm64-gnu/1.3.21: + resolution: {integrity: sha512-cgPw35T8HO4gB/tvPJMwjJuNNpydmw6U5hkxZ+7jiE+qA8hN8a71i+BBfXeSzlo60t4c44+zK4t+gK7UacZg2w==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -6522,8 +8256,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl/1.3.19: - resolution: {integrity: sha512-vipnF3C6T1368uHQqz8RpdszWxxGh0X8VBK3TdTOSWvI/duNZtZXEOZlB2Nh9w+u09umVw0MsJhvg86Aon39mA==} + /@swc/core-linux-arm64-musl/1.3.21: + resolution: {integrity: sha512-kwH+HHtcakSqR3gF5QJ7N7SPs96ilFiXuauB02Ct3UflaGbVYVoeFYj/VEIJ+ZJvlvvOEDByOiLyrk2bw0bG7A==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -6531,8 +8265,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu/1.3.19: - resolution: {integrity: sha512-dUbq8mnIqBhU7OppfY3ncOvl26691WFGxd97QtnnlfMZrKnaofKFMIxE9sTHOLSbBo16AylnEMiwa45w2UWDEg==} + /@swc/core-linux-x64-gnu/1.3.21: + resolution: {integrity: sha512-/kLQLNxwdX6kO2R751uUrxXZsAhOkA1EeQzAqj+5Y+bzt3hA5asH5evkY0w0Aj1zCofX4p4o/Q35mandUPxMlw==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -6540,8 +8274,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl/1.3.19: - resolution: {integrity: sha512-RiVZrlkNGcj9jZyjF7YFOW3fj9fWPC25AYkknLpWxAmLQcp1piAWj+aSixmMWUC4QJau78VZzcm+kRgIOECALw==} + /@swc/core-linux-x64-musl/1.3.21: + resolution: {integrity: sha512-s+l3LqUzDli6rbmIPR3IfO23IOLYBVxk97CDdcJWrRTVtCwUKFhFVJVZyErveriqLXSGJhy5+UL+aOuxC4dk8g==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -6549,8 +8283,8 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc/1.3.19: - resolution: {integrity: sha512-r2U6GC+go2iiLx5JBZIJswYFiMv0yOsm+pgE1srVvAc8dP02320t9yh0Uj4Sr2hDipTWJ33Y5PMZwEsZSfBVbQ==} + /@swc/core-win32-arm64-msvc/1.3.21: + resolution: {integrity: sha512-59gWcdbZxvmyzh+J50yCCodKDYRUnMwNypzzfamF1Vusa4Np+IGMWEaE2KsZUq50OQIRo0PGHpBPMKVYkuGv8g==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -6558,8 +8292,8 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc/1.3.19: - resolution: {integrity: sha512-SPpESDa4vr0PRvUiqXSi8oZSTmkDOGrZ/pSiLD7ISgjsQ5RQMbPkuEK0ztWljim87q2fO0bGVVhyaVYxdOVS1A==} + /@swc/core-win32-ia32-msvc/1.3.21: + resolution: {integrity: sha512-3gH86ffVAiCmeRy+xSxR5iWSbKy4nUddo4PIahD1zwGJx6LC5ahC/I6EpL1pvoX3KdJKVioUBn0KDfPDUYfqJw==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -6567,8 +8301,8 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc/1.3.19: - resolution: {integrity: sha512-0X5HqFC1wQlheOQDZeF6KNOSURZKkGISNK3aTSmTq9g7dDJ/kTcVjsdKbu2rK4ibCnlC9IS0cLK9FpROnsVPwA==} + /@swc/core-win32-x64-msvc/1.3.21: + resolution: {integrity: sha512-JKWLJdJ3oFc8fGBk4P6mGKhW8n+FmEjLLbsST+h94bZmelrSTeShBt3rr+pMMatFevlu/c9lM3OW2GHsZeZNkg==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -6576,22 +8310,22 @@ packages: dev: true optional: true - /@swc/core/1.3.19: - resolution: {integrity: sha512-KiXUv2vpmOaGhoLCN9Rw7Crsfq1YmOR2ZbajiqNAh/iu0d3CKn5JZhLRs6S7nCk78cwFFac2obQfTWPePLUe/g==} + /@swc/core/1.3.21: + resolution: {integrity: sha512-RTmqkm5e5sb+Q+YbyqiE52xjvX+kcIVDgaSdSD7mNy2opgDfIdFMhExmB8UQStt3TLrlpAslWaFNWNmvaHP9rg==} engines: {node: '>=10'} hasBin: true requiresBuild: true optionalDependencies: - '@swc/core-darwin-arm64': 1.3.19 - '@swc/core-darwin-x64': 1.3.19 - '@swc/core-linux-arm-gnueabihf': 1.3.19 - '@swc/core-linux-arm64-gnu': 1.3.19 - '@swc/core-linux-arm64-musl': 1.3.19 - '@swc/core-linux-x64-gnu': 1.3.19 - '@swc/core-linux-x64-musl': 1.3.19 - '@swc/core-win32-arm64-msvc': 1.3.19 - '@swc/core-win32-ia32-msvc': 1.3.19 - '@swc/core-win32-x64-msvc': 1.3.19 + '@swc/core-darwin-arm64': 1.3.21 + '@swc/core-darwin-x64': 1.3.21 + '@swc/core-linux-arm-gnueabihf': 1.3.21 + '@swc/core-linux-arm64-gnu': 1.3.21 + '@swc/core-linux-arm64-musl': 1.3.21 + '@swc/core-linux-x64-gnu': 1.3.21 + '@swc/core-linux-x64-musl': 1.3.21 + '@swc/core-win32-arm64-msvc': 1.3.21 + '@swc/core-win32-ia32-msvc': 1.3.21 + '@swc/core-win32-x64-msvc': 1.3.21 dev: true /@swc/helpers/0.4.14: @@ -6646,7 +8380,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@types/aria-query': 4.2.2 aria-query: 5.1.3 chalk: 4.1.2 @@ -6661,7 +8395,7 @@ packages: peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@testing-library/dom': 8.19.0 dev: true @@ -6679,10 +8413,10 @@ packages: resolution: {integrity: sha512-cxHYbrXfnCWsklydIHSw5GCMHUPqpJ/enxWSyVHNOgNe61sit/+aOXTTI+VOdWkvVaJsI2vsB9N4+YDNITawOQ==} dev: false - /@tiptap/core/2.0.0-beta.202: - resolution: {integrity: sha512-KnOcZBtkWoDT7EsVLiJr9DyBnQcKJQHI8kOhNIL0snUrksr25q8xBW05iYqw6cGAF7iu1cFM80VikfgefsZUpw==} + /@tiptap/core/2.0.0-beta.204: + resolution: {integrity: sha512-MH4LQE6rvX+DAy83tZH5E6gaA/hO5A6F/w5ZM6En5PcRhNsgpfQl+kjRfeVQYahxouc1mzetayhRe4XQ8PAwng==} dependencies: - prosemirror-commands: 1.3.1 + prosemirror-commands: 1.4.0 prosemirror-keymap: 1.2.0 prosemirror-model: 1.18.3 prosemirror-schema-list: 1.2.2 @@ -6691,198 +8425,198 @@ packages: prosemirror-view: 1.29.1 dev: false - /@tiptap/extension-blockquote/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-weLbMxM7VfI4hJsThw1+mB4jbQnVFizmzRlGU40LKMzEU5yIgIhuaomQ02Z7V0cRgfXsoKX9oc0BYGiO0Ra6/g==} + /@tiptap/extension-blockquote/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-B26qM1rChbanQ4PwCpT8M1OKH27ZDFr2vUwQZosWZMRe9W5ivj9zhMGfWKDmIuKI5KwQ87y7sjcqmNEB61v81w==} peerDependencies: '@tiptap/core': ^2.0.0-beta.1 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-bold/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-AsfoChIleoSbY9gAuhbLF8BAEhHPrRKofmU09xJ62SBkL1rtgci8YzJYhL9leQCM4n1MQZEDeVf0ho75HeTPMA==} + /@tiptap/extension-bold/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-IZh7BXM6we4zwEwsjsyVdb2q/Op/IOAvBBxvD6lhuE/Fmm2tWprRt2Tb9YB+IMLlH5ouiqKG1Jtk7D520ijoFg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-bubble-menu/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-Xa0BO5liIHitaxj70JbbmiC70Yg9+EcF9airfI32uOFNHwgEKyXVb5MRyQadRSmXnwPMPLVGWgf3Kg/5rnDqeg==} + /@tiptap/extension-bubble-menu/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-rDBId9MePh5vuxStCfBQTXMvRy2kaadl76xL5jscqpOlCRVJO77IEZLNI8I/zyguDKdClw1x/zdEXBcBV3YuZQ==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-state: 1.4.2 prosemirror-view: 1.29.1 tippy.js: 6.3.7 dev: false - /@tiptap/extension-bullet-list/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-Su+GvRGyW9FTBtcFjvNkkYwzDRo+1O2YTNOZi1Z/OkDqbg3g89kRue78avs0nHW7HEgdhCap+z8KtAPrie4eBg==} + /@tiptap/extension-bullet-list/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-q8TtC+6wHG5bJ4Fj6h+7rIB5aL+G5214woEKRZNmRpcW4y4ZI2tTwNgxLy9cgEHgV31FwL6j6wpzYxRWwJwbeQ==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-code-block/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-tfK9khIroGjsXQvk2K/9z1/UyQrB4+zghkjyK1xikzRmhgfOeqQzA0TDrFrz7ywFXmSFQ7GnnYAp+RW6r6wyUg==} + /@tiptap/extension-code-block/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-IIkZsBT7rxhK7yHnM2LRQfS6i+HNQxU+E6tRtPYF40YSg1xMZSC/xDy0k+NEU/xM6ZVesRofW3voB6svFPPDtw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-state: 1.4.2 dev: false - /@tiptap/extension-code/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-XwAr7ysSWJVZWHNXDaNBTPH1CTyVxHnPv/PiCWTGhf8Fkx7R7xW2QCUKx4ablwxFlTY7H8xGmCujaewUQBdO5w==} + /@tiptap/extension-code/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-uEirc6xaSRikYFrVPfqIc/q9eSx9ULmHeFIqeFtIb9omX4NSDdEQpiu6D4yylaZV1p+ZsCeBq9tE3zupCKTdlw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-document/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-UsDSe93QtnuDrUo11wYCMtp7XlTIBvL5HNhx+enLRY7B8nUhX+d78u1BzspTpCkMYKcdwDmAGfIYMqqPViPEvA==} + /@tiptap/extension-document/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-1WrL8MWGJ8CCHIg6wZNI6mZ44BNiJYfiZnNPZia/dZlp+B/XxvBHoFuPOGWl7kw0Ow135NUaS8kxfEewtSJUDA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-dropcursor/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-4Q3LnqvMnxP0KdX7tIgCoTCKg949rg351m0wguVb1bo4v9lA0zfJpSgqjQ1Xs2vaYVBwkFjLoqrfhTRn5mnopQ==} + /@tiptap/extension-dropcursor/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-M5XT+JhxYylqYL27Tldtun8RNDa0rrLYlPeMNQECWOl9iOBNM1y37/CnX8X7YGfJu5cXKCpIZ4fuKbmnN4Ekeg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-dropcursor: 1.5.0 dev: false - /@tiptap/extension-floating-menu/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-09liirOFsPDFRLS2FiFdnfzyyOQwwyVXLzI6MzUOw5RZbOsGJ5kB8jZdkXvsAIiOs0YYsH3fyOyWirIwSRhBTQ==} + /@tiptap/extension-floating-menu/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-8CycAaQd3nNq251YO7kmFXDXTjlga0vU+W42K33VzscaiVzowrdfZZ3IN9Ezn3Q5v25sWbu2b9b+yVv2McNm/A==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-state: 1.4.2 prosemirror-view: 1.29.1 tippy.js: 6.3.7 dev: false - /@tiptap/extension-gapcursor/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-jOPMPPnTfVuc5YpFTcQM42/cg1J3+OeHitYb1/vBMpaNinVijuafsK14xDoVP8+sydKVgtBzYkfP/faN82I9iA==} + /@tiptap/extension-gapcursor/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-gqnpGFkMXeFOvmyPy8kJ/i2DrzwdSm1Mwjustl/cASIRcu1Gp4l6pImdW+Gdh6gwhSEsuPctK/L5hSQvKGGKZg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-gapcursor: 1.3.1 dev: false - /@tiptap/extension-hard-break/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-Nr9BXeP+dXS5vLP/C2voTrhl+4YkDHBtPlc+5xm5NPBn04slTGSPO2lgV3YrMsfUOMNXHqeob1lq4qiLF4pybQ==} + /@tiptap/extension-hard-break/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-UIrIlEgcwlPcku6f4QCQZRPjAMwiPyWPT0wnL4QowoX3ddrmmzOW2WCttGulpCCcFSvD/9Vgxd3QGQ0AbjyB4g==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-heading/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-sF271jSWHgtoJLDNFLS7eyUcUStl7mBDQNJIENWVI+lFu2Ax8GmO7AoB74Q6L5Zaw4h73L6TAvaafHIXurz7tA==} + /@tiptap/extension-heading/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-myb3O/IvdZ3E6aQhFUI4NkO8no4jXZGRFqjtPYwX6Vw72iHcy2ubY7EMR4k5hHxAvRbjbccpq8yAkvRHVmh/BQ==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-history/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-BLwaOWmFHBQjOonojYHl1Po27IHxgjSAPw+ijMKtKzqa2msJRJevjC4tBaX5s/YrB7PQ2tFE7rfJED4HLjBm6w==} + /@tiptap/extension-history/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-Dk64Nu2bnPutLV0Fd2H1c5ffGE+bQ2eVyWUrAGodAhZJINouN8EF7T0pZLSo0YaIlLMWsl23fImGtBEyVYQUKw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-history: 1.3.0 dev: false - /@tiptap/extension-horizontal-rule/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-ut2Im/TNQynnuqdoY9yOjMDUKmxn97ERVEpqcQSaIgqBuF6bjk60Wa13ob6oS2g6vqXxwWFrnQVz48A9TcF5FQ==} + /@tiptap/extension-horizontal-rule/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-nluilG/AwPENvZMlCWDYFAI6ZNhKZ9eivItYFt5uKD388rIuXHyhU8N2lqIvVDZWADHyRcTm2Gs2cTM+wV5V7A==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 prosemirror-state: 1.4.2 dev: false - /@tiptap/extension-italic/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-vgSLy4KDp6AmnAHLHXe/nWeNbLnyUXxmf4U4+esebAV5Hu2F7LgceknFt9D8AGEtYUU+/fYKSeE2NGJgTQG9lA==} + /@tiptap/extension-italic/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-aGKJNNbiDc9HGwCgSW4KMWjPPoI4L6RTUqzaGLbetO6WGShaSSPhGE8HiD0kLSfr6H+/cvuX3iwHjWUbgIbbcw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-link/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: + /@tiptap/extension-link/2.0.0-beta.202_bv566pzu4gfcw3675d5jwhi56i: resolution: {integrity: sha512-/9bZd43dMkzmo7SCCDtEscgdFKCat9yZAyAyg+PHYdhI8Lbqv5GfjxzBbx58v7jEP1eDKFnwTDFVwAsxCE9f0w==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 linkifyjs: 3.0.5 prosemirror-model: 1.18.3 prosemirror-state: 1.4.2 dev: false - /@tiptap/extension-list-item/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-15yAsO+CCM8ievdX4oxg8kMBVFqhzVAw7pU6E8KL76kIwWCIIyVW6hU3VZdglyBVnAG0ws5/DaZ4VRFtVPRDvg==} + /@tiptap/extension-list-item/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-L4blRuqQJCwwkqnB0We5SQsWVCIFAFqZyGXuRNLaKYQgxNDkvsq/xpgFf5qyX2jONK32Ke29DKURnrTy/SHDCQ==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-ordered-list/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-PpJn8EtS8MLZ4NN9R3crmrivbjTMHjuSE2Ab3Y9TdeR9x9DIF23O/EkunnkPUiBUx6sNADprEWJIQesgpakrtw==} + /@tiptap/extension-ordered-list/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-5oySkWZq/Qf62Vde6KLGiW0pNnhIShKhvT1W796Hg4BxN6jvr9WT8iQQyrLNqth9ljo00wXd7V5P9qm9YWVmQw==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-paragraph/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-QI86DMUAz5froDJJXpbFV0I+iSFikjhQ8W5clYDbnrP/clRI/FYxklQ3oxSk4VzGBGB5EaBJf+jD7htLKb39UA==} + /@tiptap/extension-paragraph/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-Vdo0qKsD3TjgiJlVUqyV/lkFH2MlmMPt3q0+qHqoQhG/Rirm4vzrStHfZmX6nASbXSiQJvKEVoQ18+Nk739jsA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-strike/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-cs87UI/VTkmSfIwlHpm7nAPXok2bAQvxmNJ1y7UPzTATVl+ixP1F4aIkwiYk+X7rE/Sys+09PGg1Pr1shwUUkQ==} + /@tiptap/extension-strike/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-KwcKmpl4IIiKMlmvxc9+120tTtICwDDI20ExcFfoT0cCjrM8TA88H/xdw9Paj5Eofs7ODa75zPudKwoL3qhRZg==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/extension-text/2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu: - resolution: {integrity: sha512-6UsfU9xvKTxHfZYxVJy5DSQ0ibnhC403KLRQ4ePwpJql0TotBx93/CBfPCVLFEwF86HNhf1fFUCx+j2wuwVxmA==} + /@tiptap/extension-text/2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i: + resolution: {integrity: sha512-YTUlmhdiaTRvsbxTa1VUZ2BNgsaud1OF2nSC6a3kEplREoVzJW+pbJxc1sdM5yhOW3JdXMJVTl56H30Cos4tAA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 dependencies: - '@tiptap/core': 2.0.0-beta.202 + '@tiptap/core': 2.0.0-beta.204 dev: false - /@tiptap/react/2.0.0-beta.202_b34bfmrzq6nwqs5zwwuhxagzky: + /@tiptap/react/2.0.0-beta.202_z5f4pk2xasrno4tu55p73jy46e: resolution: {integrity: sha512-K0vjWOhqBFSN68wdIWvfUOer38GbBdOi80cZH7bafZQbka2gD8l6v0qknwM4KxOiq9FpqGBOVmGQs0ukgWGSDA==} peerDependencies: '@tiptap/core': ^2.0.0-beta.193 react: ^17.0.0 || ^18.0.0 || >=18 react-dom: ^17.0.0 || ^18.0.0 || >=18 dependencies: - '@tiptap/core': 2.0.0-beta.202 - '@tiptap/extension-bubble-menu': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-floating-menu': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu + '@tiptap/core': 2.0.0-beta.204 + '@tiptap/extension-bubble-menu': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-floating-menu': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i prosemirror-view: 1.29.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6891,25 +8625,25 @@ packages: /@tiptap/starter-kit/2.0.0-beta.202: resolution: {integrity: sha512-hmtHgSKMAYtPNA12pa6kPortaKtsz4D6a18KncP26cWkuIwSBZLANls8L7vBISAcbIKRrSizsmqDBoDrFqtQcg==} dependencies: - '@tiptap/core': 2.0.0-beta.202 - '@tiptap/extension-blockquote': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-bold': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-bullet-list': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-code': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-code-block': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-document': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-dropcursor': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-gapcursor': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-hard-break': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-heading': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-history': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-horizontal-rule': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-italic': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-list-item': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-ordered-list': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-paragraph': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-strike': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu - '@tiptap/extension-text': 2.0.0-beta.202_fosglmwb3u6jhi6bbjmnlbdsbu + '@tiptap/core': 2.0.0-beta.204 + '@tiptap/extension-blockquote': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-bold': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-bullet-list': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-code': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-code-block': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-document': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-dropcursor': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-gapcursor': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-hard-break': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-heading': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-history': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-horizontal-rule': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-italic': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-list-item': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-ordered-list': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-paragraph': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-strike': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i + '@tiptap/extension-text': 2.0.0-beta.204_bv566pzu4gfcw3675d5jwhi56i dev: false /@tomfreudenberg/next-auth-mock/0.5.5_7tjtr4gwc27uhst4gumlj2abwq: @@ -6970,7 +8704,7 @@ packages: '@trpc/client': 10.0.0_@trpc+server@10.0.0 '@trpc/react-query': 10.0.0_4552jruvein5zm6wk4q22v5i4u '@trpc/server': 10.0.0 - next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a + next: 13.0.5_672uxklweod7ene3nqtsh262ca react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-ssr-prepass: 1.5.0_react@18.2.0 @@ -7016,7 +8750,7 @@ packages: /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 /@types/debug/4.1.7: resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} @@ -7047,19 +8781,19 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.9 + '@types/node': 18.11.10 /@types/glob/8.0.0: resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.9 + '@types/node': 16.18.3 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 dev: true /@types/hast/2.3.4: @@ -7085,7 +8819,7 @@ packages: /@types/is-ci/3.0.0: resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} dependencies: - ci-info: 3.6.1 + ci-info: 3.7.0 dev: false /@types/is-function/1.0.1: @@ -7114,10 +8848,10 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.10 - /@types/lodash/4.14.189: - resolution: {integrity: sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA==} + /@types/lodash/4.14.191: + resolution: {integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==} dev: true /@types/luxon/3.1.0: @@ -7146,7 +8880,7 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 form-data: 3.0.1 dev: true @@ -7154,15 +8888,15 @@ packages: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: false - /@types/node/14.18.33: - resolution: {integrity: sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==} + /@types/node/14.18.34: + resolution: {integrity: sha512-hcU9AIQVHmPnmjRK+XUUYlILlr9pQrsqSrwov/JK1pnf3GTQowVBhx54FbvM0AU/VXGH4i3+vgXS5EguR7fysA==} dev: false /@types/node/16.18.3: resolution: {integrity: sha512-jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg==} - /@types/node/18.11.9: - resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==} + /@types/node/18.11.10: + resolution: {integrity: sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -7220,7 +8954,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.10 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -7282,7 +9016,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 '@types/source-list-map': 0.1.2 source-map: 0.7.4 dev: true @@ -7290,18 +9024,18 @@ packages: /@types/webpack/4.41.33: resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 '@types/tapable': 1.0.8 '@types/uglify-js': 3.17.1 '@types/webpack-sources': 3.2.0 - anymatch: 3.1.2 + anymatch: 3.1.3 source-map: 0.6.1 dev: true /@types/whatwg-url/8.2.2: resolution: {integrity: sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 '@types/webidl-conversions': 7.0.0 dev: true @@ -7323,10 +9057,36 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 18.11.9 + '@types/node': 14.18.34 dev: false optional: true + /@typescript-eslint/eslint-plugin/5.44.0_czs5uoqkd3podpy6vgtsxfc7au: + resolution: {integrity: sha512-j5ULd7FmmekcyWeArx+i8x7sdRHzAtXTkmDPthE4amxZOWKFK7bomoJ4r7PJ8K7PoMzD16U8MmuZFAonr1ERvw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/scope-manager': 5.44.0 + '@typescript-eslint/type-utils': 5.44.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/utils': 5.44.0_hsf322ms6xhhd4b5ne6lb74y4a + debug: 4.3.4 + eslint: 8.28.0 + ignore: 5.2.1 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color + /@typescript-eslint/eslint-plugin/5.44.0_fnsv2sbzcckq65bwfk7a5xwslu: resolution: {integrity: sha512-j5ULd7FmmekcyWeArx+i8x7sdRHzAtXTkmDPthE4amxZOWKFK7bomoJ4r7PJ8K7PoMzD16U8MmuZFAonr1ERvw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7344,7 +9104,7 @@ packages: '@typescript-eslint/utils': 5.44.0_hsf322ms6xhhd4b5ne6lb74y4a debug: 4.3.4 eslint: 8.28.0 - ignore: 5.2.0 + ignore: 5.2.1 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 @@ -7352,14 +9112,15 @@ packages: typescript: 4.9.3 transitivePeerDependencies: - supports-color + dev: true - /@typescript-eslint/experimental-utils/5.44.0_hsf322ms6xhhd4b5ne6lb74y4a: - resolution: {integrity: sha512-j8GLemAySe8oUCgILdUaT66pemdWSYcwUYG2Pb71O119hCdvkU+4q8sUTbnDg8NhlZEzSWG2N1v4IxT1kEZrGg==} + /@typescript-eslint/experimental-utils/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a: + resolution: {integrity: sha512-DnRQg5+3uHHt/gaifTjwg9OKbg9/TWehfJzYHQIDJboPEbF897BKDE/qoqMhW7nf0jWRV1mwVXTaUvtB1/9Gwg==} 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.44.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a eslint: 8.28.0 transitivePeerDependencies: - supports-color @@ -7384,6 +9145,25 @@ packages: transitivePeerDependencies: - supports-color + /@typescript-eslint/parser/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a: + resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.45.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + debug: 4.3.4 + eslint: 8.28.0 + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color + /@typescript-eslint/scope-manager/5.44.0: resolution: {integrity: sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7391,6 +9171,13 @@ packages: '@typescript-eslint/types': 5.44.0 '@typescript-eslint/visitor-keys': 5.44.0 + /@typescript-eslint/scope-manager/5.45.0: + resolution: {integrity: sha512-noDMjr87Arp/PuVrtvN3dXiJstQR1+XlQ4R1EvzG+NMgXi8CuMCXpb8JqNtFHKceVSQ985BZhfRdowJzbv4yKw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/visitor-keys': 5.45.0 + /@typescript-eslint/type-utils/5.44.0_hsf322ms6xhhd4b5ne6lb74y4a: resolution: {integrity: sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7414,6 +9201,10 @@ packages: resolution: {integrity: sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/types/5.45.0: + resolution: {integrity: sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@typescript-eslint/typescript-estree/5.44.0_typescript@4.9.3: resolution: {integrity: sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7434,6 +9225,26 @@ packages: transitivePeerDependencies: - supports-color + /@typescript-eslint/typescript-estree/5.45.0_typescript@4.9.3: + resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/visitor-keys': 5.45.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 + transitivePeerDependencies: + - supports-color + /@typescript-eslint/utils/5.44.0_hsf322ms6xhhd4b5ne6lb74y4a: resolution: {integrity: sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7453,6 +9264,25 @@ packages: - supports-color - typescript + /@typescript-eslint/utils/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a: + resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} + 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.45.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + eslint: 8.28.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.28.0 + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + /@typescript-eslint/visitor-keys/5.44.0: resolution: {integrity: sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7460,6 +9290,13 @@ packages: '@typescript-eslint/types': 5.44.0 eslint-visitor-keys: 3.3.0 + /@typescript-eslint/visitor-keys/5.45.0: + resolution: {integrity: sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.45.0 + eslint-visitor-keys: 3.3.0 + /@vercel/ncc/0.34.0: resolution: {integrity: sha512-G9h5ZLBJ/V57Ou9vz5hI8pda/YQX5HQszCs3AmIus3XzsmRn/0Ptic5otD3xVST8QLKk7AMk7AqpsyQGN7MZ9A==} hasBin: true @@ -7468,7 +9305,7 @@ packages: /@vue/compiler-core/3.2.45: resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} dependencies: - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.5 '@vue/shared': 3.2.45 estree-walker: 2.0.2 source-map: 0.6.1 @@ -7484,7 +9321,7 @@ packages: /@vue/compiler-sfc/3.2.45: resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} dependencies: - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.5 '@vue/compiler-core': 3.2.45 '@vue/compiler-dom': 3.2.45 '@vue/compiler-ssr': 3.2.45 @@ -7506,7 +9343,7 @@ packages: /@vue/reactivity-transform/3.2.45: resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} dependencies: - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.5 '@vue/compiler-core': 3.2.45 '@vue/shared': 3.2.45 estree-walker: 2.0.2 @@ -7952,7 +9789,7 @@ packages: resolution: {integrity: sha512-IG23inYII3dWlU2EyiAiGj6Bwal5GzsgPMwjYGvc1HPE2dgbj4ZB5ToWBKSquKw74nB3TIuOwaI6/jSULzfgrw==} engines: {node: '>=14.16'} dependencies: - type-fest: 3.2.0 + type-fest: 3.3.0 dev: true /ansi-html-community/0.0.8: @@ -8016,8 +9853,8 @@ packages: - supports-color dev: true - /anymatch/3.1.2: - resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + /anymatch/3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 @@ -8109,8 +9946,8 @@ packages: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.20.1 - '@babel/runtime-corejs3': 7.20.1 + '@babel/runtime': 7.20.6 + '@babel/runtime-corejs3': 7.20.6 /aria-query/5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} @@ -8317,7 +10154,7 @@ packages: hasBin: true dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001434 + caniuse-lite: 1.0.30001435 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -8390,9 +10227,24 @@ packages: /babel-core/7.0.0-bridge.0_@babel+core@7.20.2: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + dev: true + + /babel-loader/8.3.0_em3sh5kto35xuanci4cvhzqfay: + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2 || >=5' dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.5 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 4.46.0 dev: true /babel-loader/8.3.0_npabyccmuonwo2rku4k53xo3hi: @@ -8407,7 +10259,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /babel-loader/8.3.0_tktscwi5cl3qcx6vcfwkvrwn6i: @@ -8435,7 +10287,7 @@ packages: '@babel/core': 7.20.2 find-cache-dir: 3.3.2 schema-utils: 4.0.0 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /babel-plugin-add-react-displayname/0.0.5: @@ -8475,7 +10327,7 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 cosmiconfig: 7.1.0 resolve: 1.22.1 @@ -8488,7 +10340,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.1 + '@babel/compat-data': 7.20.5 '@babel/core': 7.20.2 '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 semver: 6.3.0 @@ -8496,6 +10348,19 @@ packages: - supports-color dev: true + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.5: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.5 + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.2: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: @@ -8508,6 +10373,18 @@ packages: - supports-color dev: true + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.5: + resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.5 + core-js-compat: 3.26.1 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.2: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -8520,6 +10397,18 @@ packages: - supports-color dev: true + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.5: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + core-js-compat: 3.26.1 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.2: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -8531,6 +10420,17 @@ packages: - supports-color dev: true + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.5: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-react-docgen/4.2.1: resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} dependencies: @@ -8632,7 +10532,6 @@ packages: /bindings/1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} - requiresBuild: true dependencies: file-uri-to-path: 1.0.0 dev: true @@ -8840,7 +10739,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001434 + caniuse-lite: 1.0.30001435 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 @@ -8881,7 +10780,7 @@ packages: resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} dependencies: base64-js: 1.5.1 - ieee754: 1.2.1 + ieee754: 1.1.13 isarray: 1.0.0 /buffer/5.7.1: @@ -8905,13 +10804,13 @@ packages: resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} dev: false - /bundle-require/3.1.2_esbuild@0.15.15: + /bundle-require/3.1.2_esbuild@0.15.16: resolution: {integrity: sha512-Of6l6JBAxiyQ5axFxUM6dYeP/W7X2Sozeo/4EYB9sJhL+dqL7TKjg+shwxp6jlu/6ZSERfsYtIpSJ1/x3XkAEA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.13' dependencies: - esbuild: 0.15.15 + esbuild: 0.15.16 load-tsconfig: 0.2.3 dev: true @@ -8985,7 +10884,7 @@ packages: glob: 7.2.3 infer-owner: 1.0.4 lru-cache: 6.0.0 - minipass: 3.3.4 + minipass: 3.3.6 minipass-collect: 1.0.2 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 @@ -9095,8 +10994,8 @@ packages: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} dev: true - /caniuse-lite/1.0.30001434: - resolution: {integrity: sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==} + /caniuse-lite/1.0.30001435: + resolution: {integrity: sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -9201,7 +11100,7 @@ packages: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} dependencies: - anymatch: 3.1.2 + anymatch: 3.1.3 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 @@ -9240,8 +11139,8 @@ packages: /ci-info/3.3.0: resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} - /ci-info/3.6.1: - resolution: {integrity: sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==} + /ci-info/3.7.0: + resolution: {integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==} engines: {node: '>=8'} dev: false @@ -9617,11 +11516,11 @@ packages: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} engines: {node: '>= 0.6'} - /copy-anything/3.0.2: - resolution: {integrity: sha512-CzATjGXzUQ0EvuvgOCI6A4BGOo2bcVx8B+eC2nF862iv9fopnPQwlrbACakNCHRIJbCSBj+J/9JeDf60k64MkA==} + /copy-anything/3.0.3: + resolution: {integrity: sha512-fpW2W/BqEzqPp29QS+MwwfisHCQZtiduTe/m8idFo0xbti9fIZ2WVhAsCv4ggFVH3AgCkVdpoOCtQC6gBrdhjw==} engines: {node: '>=12.13'} dependencies: - is-what: 4.1.7 + is-what: 4.1.8 dev: false /copy-concurrently/1.0.5: @@ -9847,7 +11746,7 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.8 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /css-loader/6.7.2_webpack@5.75.0: @@ -9864,7 +11763,7 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.19 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /css-select/4.3.0: @@ -9944,7 +11843,7 @@ packages: dependencies: '@cypress/request': 2.88.10 '@cypress/xvfb': 1.2.4_supports-color@8.1.1 - '@types/node': 14.18.33 + '@types/node': 14.18.34 '@types/sinonjs__fake-timers': 8.1.1 '@types/sizzle': 2.3.3 arch: 2.2.0 @@ -10091,8 +11990,8 @@ packages: character-entities: 2.0.2 dev: false - /decode-uri-component/0.2.0: - resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} + /decode-uri-component/0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} dev: true @@ -10331,7 +12230,7 @@ packages: /dom-helpers/5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 csstype: 3.1.1 /dom-serializer/1.4.1: @@ -10522,8 +12421,8 @@ packages: tapable: 1.1.3 dev: true - /enhanced-resolve/5.10.0: - resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==} + /enhanced-resolve/5.12.0: + resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.10 @@ -10650,8 +12549,8 @@ packages: dev: false optional: true - /esbuild-android-64/0.15.15: - resolution: {integrity: sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==} + /esbuild-android-64/0.15.16: + resolution: {integrity: sha512-Vwkv/sT0zMSgPSVO3Jlt1pUbnZuOgtOQJkJkyyJFAlLe7BiT8e9ESzo0zQSx4c3wW4T6kGChmKDPMbWTgtliQA==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -10668,8 +12567,8 @@ packages: dev: false optional: true - /esbuild-android-arm64/0.15.15: - resolution: {integrity: sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==} + /esbuild-android-arm64/0.15.16: + resolution: {integrity: sha512-lqfKuofMExL5niNV3gnhMUYacSXfsvzTa/58sDlBET/hCOG99Zmeh+lz6kvdgvGOsImeo6J9SW21rFCogNPLxg==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -10686,8 +12585,8 @@ packages: dev: false optional: true - /esbuild-darwin-64/0.15.15: - resolution: {integrity: sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==} + /esbuild-darwin-64/0.15.16: + resolution: {integrity: sha512-wo2VWk/n/9V2TmqUZ/KpzRjCEcr00n7yahEdmtzlrfQ3lfMCf3Wa+0sqHAbjk3C6CKkR3WKK/whkMq5Gj4Da9g==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -10704,8 +12603,8 @@ packages: dev: false optional: true - /esbuild-darwin-arm64/0.15.15: - resolution: {integrity: sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==} + /esbuild-darwin-arm64/0.15.16: + resolution: {integrity: sha512-fMXaUr5ou0M4WnewBKsspMtX++C1yIa3nJ5R2LSbLCfJT3uFdcRoU/NZjoM4kOMKyOD9Sa/2vlgN8G07K3SJnw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -10722,8 +12621,8 @@ packages: dev: false optional: true - /esbuild-freebsd-64/0.15.15: - resolution: {integrity: sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==} + /esbuild-freebsd-64/0.15.16: + resolution: {integrity: sha512-UzIc0xlRx5x9kRuMr+E3+hlSOxa/aRqfuMfiYBXu2jJ8Mzej4lGL7+o6F5hzhLqWfWm1GWHNakIdlqg1ayaTNQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -10740,8 +12639,8 @@ packages: dev: false optional: true - /esbuild-freebsd-arm64/0.15.15: - resolution: {integrity: sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==} + /esbuild-freebsd-arm64/0.15.16: + resolution: {integrity: sha512-8xyiYuGc0DLZphFQIiYaLHlfoP+hAN9RHbE+Ibh8EUcDNHAqbQgUrQg7pE7Bo00rXmQ5Ap6KFgcR0b4ALZls1g==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -10758,8 +12657,8 @@ packages: dev: false optional: true - /esbuild-linux-32/0.15.15: - resolution: {integrity: sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==} + /esbuild-linux-32/0.15.16: + resolution: {integrity: sha512-iGijUTV+0kIMyUVoynK0v+32Oi8yyp0xwMzX69GX+5+AniNy/C/AL1MjFTsozRp/3xQPl7jVux/PLe2ds10/2w==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -10776,8 +12675,8 @@ packages: dev: false optional: true - /esbuild-linux-64/0.15.15: - resolution: {integrity: sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==} + /esbuild-linux-64/0.15.16: + resolution: {integrity: sha512-tuSOjXdLw7VzaUj89fIdAaQT7zFGbKBcz4YxbWrOiXkwscYgE7HtTxUavreBbnRkGxKwr9iT/gmeJWNm4djy/g==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -10794,8 +12693,8 @@ packages: dev: false optional: true - /esbuild-linux-arm/0.15.15: - resolution: {integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==} + /esbuild-linux-arm/0.15.16: + resolution: {integrity: sha512-XKcrxCEXDTOuoRj5l12tJnkvuxXBMKwEC5j0JISw3ziLf0j4zIwXbKbTmUrKFWbo6ZgvNpa7Y5dnbsjVvH39bQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -10812,8 +12711,8 @@ packages: dev: false optional: true - /esbuild-linux-arm64/0.15.15: - resolution: {integrity: sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==} + /esbuild-linux-arm64/0.15.16: + resolution: {integrity: sha512-mPYksnfHnemNrvjrDhZyixL/AfbJN0Xn9S34ZOHYdh6/jJcNd8iTsv3JwJoEvTJqjMggjMhGUPJAdjnFBHoH8A==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -10830,8 +12729,8 @@ packages: dev: false optional: true - /esbuild-linux-mips64le/0.15.15: - resolution: {integrity: sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==} + /esbuild-linux-mips64le/0.15.16: + resolution: {integrity: sha512-kSJO2PXaxfm0pWY39+YX+QtpFqyyrcp0ZeI8QPTrcFVQoWEPiPVtOfTZeS3ZKedfH+Ga38c4DSzmKMQJocQv6A==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -10848,8 +12747,8 @@ packages: dev: false optional: true - /esbuild-linux-ppc64le/0.15.15: - resolution: {integrity: sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==} + /esbuild-linux-ppc64le/0.15.16: + resolution: {integrity: sha512-NimPikwkBY0yGABw6SlhKrtT35sU4O23xkhlrTT/O6lSxv3Pm5iSc6OYaqVAHWkLdVf31bF4UDVFO+D990WpAA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -10866,8 +12765,8 @@ packages: dev: false optional: true - /esbuild-linux-riscv64/0.15.15: - resolution: {integrity: sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==} + /esbuild-linux-riscv64/0.15.16: + resolution: {integrity: sha512-ty2YUHZlwFOwp7pR+J87M4CVrXJIf5ZZtU/umpxgVJBXvWjhziSLEQxvl30SYfUPq0nzeWKBGw5i/DieiHeKfw==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -10884,8 +12783,8 @@ packages: dev: false optional: true - /esbuild-linux-s390x/0.15.15: - resolution: {integrity: sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==} + /esbuild-linux-s390x/0.15.16: + resolution: {integrity: sha512-VkZaGssvPDQtx4fvVdZ9czezmyWyzpQhEbSNsHZZN0BHvxRLOYAQ7sjay8nMQwYswP6O2KlZluRMNPYefFRs+w==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -10898,12 +12797,12 @@ packages: peerDependencies: webpack: ^4.40.0 || ^5.0.0 || >=5 dependencies: - esbuild: 0.15.15 + esbuild: 0.15.16 joycon: 3.1.1 json5: 2.2.1 loader-utils: 2.0.4 tapable: 2.2.1 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 webpack-sources: 2.3.1 dev: true @@ -10916,8 +12815,8 @@ packages: dev: false optional: true - /esbuild-netbsd-64/0.15.15: - resolution: {integrity: sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==} + /esbuild-netbsd-64/0.15.16: + resolution: {integrity: sha512-ElQ9rhdY51et6MJTWrCPbqOd/YuPowD7Cxx3ee8wlmXQQVW7UvQI6nSprJ9uVFQISqSF5e5EWpwWqXZsECLvXg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -10934,8 +12833,8 @@ packages: dev: false optional: true - /esbuild-openbsd-64/0.15.15: - resolution: {integrity: sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==} + /esbuild-openbsd-64/0.15.16: + resolution: {integrity: sha512-KgxMHyxMCT+NdLQE1zVJEsLSt2QQBAvJfmUGDmgEq8Fvjrf6vSKB00dVHUEDKcJwMID6CdgCpvYNt999tIYhqA==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -10952,8 +12851,8 @@ packages: dev: false optional: true - /esbuild-sunos-64/0.15.15: - resolution: {integrity: sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==} + /esbuild-sunos-64/0.15.16: + resolution: {integrity: sha512-exSAx8Phj7QylXHlMfIyEfNrmqnLxFqLxdQF6MBHPdHAjT7fsKaX6XIJn+aQEFiOcE4X8e7VvdMCJ+WDZxjSRQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -10970,8 +12869,8 @@ packages: dev: false optional: true - /esbuild-windows-32/0.15.15: - resolution: {integrity: sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==} + /esbuild-windows-32/0.15.16: + resolution: {integrity: sha512-zQgWpY5pUCSTOwqKQ6/vOCJfRssTvxFuEkpB4f2VUGPBpdddZfdj8hbZuFRdZRPIVHvN7juGcpgCA/XCF37mAQ==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -10988,8 +12887,8 @@ packages: dev: false optional: true - /esbuild-windows-64/0.15.15: - resolution: {integrity: sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==} + /esbuild-windows-64/0.15.16: + resolution: {integrity: sha512-HjW1hHRLSncnM3MBCP7iquatHVJq9l0S2xxsHHj4yzf4nm9TU4Z7k4NkeMlD/dHQ4jPlQQhwcMvwbJiOefSuZw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -11006,8 +12905,8 @@ packages: dev: false optional: true - /esbuild-windows-arm64/0.15.15: - resolution: {integrity: sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==} + /esbuild-windows-arm64/0.15.16: + resolution: {integrity: sha512-oCcUKrJaMn04Vxy9Ekd8x23O8LoU01+4NOkQ2iBToKgnGj5eo1vU9i27NQZ9qC8NFZgnQQZg5oZWAejmbsppNA==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -11044,34 +12943,34 @@ packages: esbuild-windows-arm64: 0.14.54 dev: false - /esbuild/0.15.15: - resolution: {integrity: sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==} + /esbuild/0.15.16: + resolution: {integrity: sha512-o6iS9zxdHrrojjlj6pNGC2NAg86ECZqIETswTM5KmJitq+R1YmahhWtMumeQp9lHqJaROGnsBi2RLawGnfo5ZQ==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.15.15 - '@esbuild/linux-loong64': 0.15.15 - esbuild-android-64: 0.15.15 - esbuild-android-arm64: 0.15.15 - esbuild-darwin-64: 0.15.15 - esbuild-darwin-arm64: 0.15.15 - esbuild-freebsd-64: 0.15.15 - esbuild-freebsd-arm64: 0.15.15 - esbuild-linux-32: 0.15.15 - esbuild-linux-64: 0.15.15 - esbuild-linux-arm: 0.15.15 - esbuild-linux-arm64: 0.15.15 - esbuild-linux-mips64le: 0.15.15 - esbuild-linux-ppc64le: 0.15.15 - esbuild-linux-riscv64: 0.15.15 - esbuild-linux-s390x: 0.15.15 - esbuild-netbsd-64: 0.15.15 - esbuild-openbsd-64: 0.15.15 - esbuild-sunos-64: 0.15.15 - esbuild-windows-32: 0.15.15 - esbuild-windows-64: 0.15.15 - esbuild-windows-arm64: 0.15.15 + '@esbuild/android-arm': 0.15.16 + '@esbuild/linux-loong64': 0.15.16 + esbuild-android-64: 0.15.16 + esbuild-android-arm64: 0.15.16 + esbuild-darwin-64: 0.15.16 + esbuild-darwin-arm64: 0.15.16 + esbuild-freebsd-64: 0.15.16 + esbuild-freebsd-arm64: 0.15.16 + esbuild-linux-32: 0.15.16 + esbuild-linux-64: 0.15.16 + esbuild-linux-arm: 0.15.16 + esbuild-linux-arm64: 0.15.16 + esbuild-linux-mips64le: 0.15.16 + esbuild-linux-ppc64le: 0.15.16 + esbuild-linux-riscv64: 0.15.16 + esbuild-linux-s390x: 0.15.16 + esbuild-netbsd-64: 0.15.16 + esbuild-openbsd-64: 0.15.16 + esbuild-sunos-64: 0.15.16 + esbuild-windows-32: 0.15.16 + esbuild-windows-64: 0.15.16 + esbuild-windows-arm64: 0.15.16 dev: true /escalade/3.1.1: @@ -11190,7 +13089,7 @@ packages: eslint-plugin-import: '*' dependencies: debug: 4.3.4 - enhanced-resolve: 5.10.0 + enhanced-resolve: 5.12.0 eslint: 8.28.0 eslint-plugin-import: 2.26.0_vc54pluhgv7booofyyjouvuf74 get-tsconfig: 4.2.0 @@ -11230,13 +13129,42 @@ packages: transitivePeerDependencies: - supports-color + /eslint-module-utils/2.7.4_zkfsjkvh2muiaosb2bwsbw52mq: + resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a + debug: 3.2.7 + eslint: 8.28.0 + eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 3.5.2_ktrec6dplf4now6nlbc6d67jee + transitivePeerDependencies: + - supports-color + /eslint-plugin-codegen/0.16.1: resolution: {integrity: sha512-+mKDJezeoziyQOuPicRj6im1GxzxDvv+EgAZAOTIxBwaWTadppgwZGFMeUrWucNM2duJXmvLDcbsmVT69ORgQA==} dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.5 '@babel/generator': 7.12.17 - '@babel/parser': 7.20.3 - '@babel/traverse': 7.20.1 + '@babel/parser': 7.20.5 + '@babel/traverse': 7.20.5 expect: 26.6.2 fp-ts: 2.13.1 glob: 7.2.3 @@ -11286,13 +13214,43 @@ packages: - eslint-import-resolver-webpack - supports-color + /eslint-plugin-import/2.26.0_xmouedd5rhgbah4737x2hltudq: + resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.28.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.4_zkfsjkvh2muiaosb2bwsbw52mq + has: 1.0.3 + is-core-module: 2.11.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + /eslint-plugin-jsx-a11y/6.6.1_eslint@8.28.0: resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 aria-query: 4.2.2 array-includes: 3.1.6 ast-types-flow: 0.0.7 @@ -11303,10 +13261,26 @@ packages: eslint: 8.28.0 has: 1.0.3 jsx-ast-utils: 3.3.3 - language-tags: 1.0.5 + language-tags: 1.0.6 minimatch: 3.1.2 semver: 6.3.0 + /eslint-plugin-prettier/4.2.1_5qrnzwqb344w6up62gv3safeoi: + resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + eslint: '>=7.28.0' + eslint-config-prettier: '*' + prettier: '>=2.0.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.28.0 + prettier: 2.8.0 + prettier-linter-helpers: 1.0.0 + dev: true + /eslint-plugin-prettier/4.2.1_bqvntwytoepwmeyeh2xeb7vzue: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} @@ -11321,8 +13295,9 @@ packages: eslint: 8.28.0 prettier: 2.7.1 prettier-linter-helpers: 1.0.0 + dev: false - /eslint-plugin-prettier/4.2.1_pgxuib4rd7wiymfktharf5ydt4: + /eslint-plugin-prettier/4.2.1_cwlo2dingkvfydnaculr42urve: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -11335,7 +13310,7 @@ packages: dependencies: eslint: 8.28.0 eslint-config-prettier: 8.5.0_eslint@8.28.0 - prettier: 2.7.1 + prettier: 2.8.0 prettier-linter-helpers: 1.0.0 dev: true @@ -11384,7 +13359,7 @@ packages: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/experimental-utils': 5.44.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/experimental-utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a eslint: 8.28.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -11465,7 +13440,7 @@ packages: glob-parent: 6.0.2 globals: 13.18.0 grapheme-splitter: 1.0.4 - ignore: 5.2.0 + ignore: 5.2.1 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 @@ -11528,8 +13503,8 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 c8: 7.12.0 transitivePeerDependencies: - supports-color @@ -11922,7 +13897,6 @@ packages: /file-uri-to-path/1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} - requiresBuild: true dev: true optional: true @@ -12023,8 +13997,8 @@ packages: /flatted/3.2.7: resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - /flow-parser/0.193.0: - resolution: {integrity: sha512-x7ZoArE1UO3Nk2rkq/KK/Tkp714QDMVzEsxIyK2+p7Alx+88LY7KgqmeQZuiAG8TCHucmYuHefbk3KsVFVjouA==} + /flow-parser/0.194.0: + resolution: {integrity: sha512-3dipGWKnXmE4LEE5yCPHJrSlMYOPAYU7wMBecfKiWPQSZp1CvkpJ59dfuuUIeM2TSttKGSatep77vGG9cjkeqg==} engines: {node: '>=0.4.0'} dev: true @@ -12162,7 +14136,7 @@ packages: semver: 7.3.8 tapable: 1.1.3 typescript: 4.9.3 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /form-data/2.3.3: @@ -12277,14 +14251,14 @@ packages: /fs-jetpack/5.1.0: resolution: {integrity: sha512-Xn4fDhLydXkuzepZVsr02jakLlmoARPy+YWIclo4kh0GyNGUHnTqeH/w/qIsVn50dFxtp8otPL2t/HcPJBbxUA==} dependencies: - minimatch: 5.1.0 + minimatch: 5.1.1 dev: true /fs-minipass/2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 /fs-monkey/1.0.3: resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} @@ -12547,7 +14521,7 @@ packages: dir-glob: 3.0.1 fast-glob: 3.2.12 glob: 7.2.3 - ignore: 5.2.0 + ignore: 5.2.1 merge2: 1.4.1 slash: 3.0.0 dev: false @@ -12559,7 +14533,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.1 merge2: 1.4.1 slash: 3.0.0 @@ -12569,7 +14543,7 @@ packages: dependencies: dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.1 merge2: 1.4.1 slash: 4.0.0 @@ -12876,7 +14850,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.15.1 + terser: 5.16.0 dev: true /html-parse-stringify/3.0.1: @@ -12943,7 +14917,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /htmlparser2/6.1.0: @@ -13045,11 +15019,11 @@ packages: /i18next-browser-languagedetector/7.0.1: resolution: {integrity: sha512-Pa5kFwaczXJAeHE56CHG2aWzFBMJNUNghf0Pm4SwSrEMps/PTKqW90EYWlIvhuYStf3Sn1K0vw+gH3+TLdkH1g==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 dev: true - /i18next-fs-backend/2.0.0: - resolution: {integrity: sha512-zlwzcoUKlveoRt/SxgeP8i/6p1rxwxZ+x0w4sfCTY1zgUlhhnoxBSRX3GjVIsDJm5mky8Hpr//UX93UIknK7yQ==} + /i18next-fs-backend/2.0.1: + resolution: {integrity: sha512-fzeiFOXqsMiFAFUnNyC4buERI11vTAuf7JIDWqaiPgBK3R+XJQMSY1LyoXaWspBEFaAkXH/0uMbOv7nttBFztg==} /i18next-http-backend/2.0.1: resolution: {integrity: sha512-kzvSkOT3yhVijumDlp8/TgD1v07lYdFXsf5YYbB7Yu+K2S6PO0lKgZ4c/fyFcAKWiAiTjt9uVecBAbnJjKzhOw==} @@ -13062,7 +15036,7 @@ packages: /i18next/22.0.6: resolution: {integrity: sha512-RlreNGoPIdDP4QG+qSA9PxZKGwlzmcozbI9ObI6+OyUa/Rp0EjZZA9ubyBjw887zVNZsC+7FI3sXX8oiTzAfig==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 /iconv-lite/0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} @@ -13101,8 +15075,8 @@ packages: engines: {node: '>= 4'} dev: true - /ignore/5.2.0: - resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + /ignore/5.2.1: + resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==} engines: {node: '>= 4'} /image-size/1.0.2: @@ -13329,7 +15303,7 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.6.1 + ci-info: 3.7.0 dev: false /is-core-module/2.11.0: @@ -13629,8 +15603,8 @@ packages: get-intrinsic: 1.1.3 dev: true - /is-what/4.1.7: - resolution: {integrity: sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ==} + /is-what/4.1.8: + resolution: {integrity: sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==} engines: {node: '>=12.13'} /is-whitespace-character/1.0.4: @@ -13734,7 +15708,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.20.2 - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -13793,8 +15767,8 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 18.11.9 - anymatch: 3.1.2 + '@types/node': 16.18.3 + anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 jest-regex-util: 26.0.0 @@ -13838,7 +15812,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 18.11.9 + '@types/node': 16.18.3 dev: true /jest-regex-util/26.0.0: @@ -13849,7 +15823,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 graceful-fs: 4.2.10 dev: true @@ -13858,7 +15832,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 18.11.9 + '@types/node': 16.18.3 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 @@ -13869,7 +15843,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -13878,7 +15852,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.9 + '@types/node': 16.18.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -13887,8 +15861,8 @@ packages: resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} engines: {node: '>= 0.6.0'} - /jose/4.11.0: - resolution: {integrity: sha512-wLe+lJHeG8Xt6uEubS4x0LVjS/3kXXu9dGoj9BNnlhYq7Kts0Pbb2pvv5KiI0yaKH/eaiR0LUOBhOVo9ktd05A==} + /jose/4.11.1: + resolution: {integrity: sha512-YRv4Tk/Wlug8qicwqFNFVEZSdbROCHRAC6qu/i0dyNKr5JQdoa2pIGoS04lLO/jXQX7Z9omoNewYIVIxqZBd9Q==} /joycon/3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} @@ -13934,7 +15908,7 @@ packages: '@babel/preset-env': ^7.1.6 dependencies: '@babel/core': 7.20.2 - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.5 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.2 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 @@ -13945,7 +15919,7 @@ packages: '@babel/register': 7.18.9_@babel+core@7.20.2 babel-core: 7.0.0-bridge.0_@babel+core@7.20.2 chalk: 4.1.2 - flow-parser: 0.193.0 + flow-parser: 0.194.0 graceful-fs: 4.2.10 micromatch: 3.1.10 neo-async: 2.6.2 @@ -14085,8 +16059,8 @@ packages: /language-subtag-registry/0.3.22: resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} - /language-tags/1.0.5: - resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} + /language-tags/1.0.6: + resolution: {integrity: sha512-HNkaCgM8wZgE/BZACeotAAgpL9FUjEnhgF0FVQMIgH//zqTPreLYMb3rWYkYAqPoF75Jwuycp1da7uz66cfFQg==} dependencies: language-subtag-registry: 0.3.22 @@ -14106,7 +16080,7 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 app-root-dir: 1.0.2 core-js: 3.26.1 dotenv: 8.6.0 @@ -14698,7 +16672,7 @@ packages: resolution: {integrity: sha512-pMb85+QShjqye+99Dkrg9m6EbTjDXwZFQbPysx/lNkuwjT+UJZlQvpnOy0P8kgGXzUx8iWSoNQel5QJjoyWHmQ==} engines: {node: '>=12.13'} dependencies: - is-what: 4.1.7 + is-what: 4.1.8 dev: true /merge-descriptors/1.0.1: @@ -14999,8 +16973,8 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/5.1.0: - resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} + /minimatch/5.1.1: + resolution: {integrity: sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 @@ -15021,25 +16995,25 @@ packages: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 dev: true /minipass-flush/1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 dev: true /minipass-pipeline/1.2.4: resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} engines: {node: '>=8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 dev: true - /minipass/3.3.4: - resolution: {integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==} + /minipass/3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 @@ -15048,7 +17022,7 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 yallist: 4.0.0 /mississippi/3.0.0: @@ -15099,7 +17073,7 @@ packages: /mongo-scanner/3.0.5: resolution: {integrity: sha512-dav0LH0Co8qD5tFEcJqstaRHrsSz2Q3HSC3C8lTkR+7B2ZLooehH8LlPtbTH1MRjvk1OU2TK0qxjXvNP5aAWKw==} dependencies: - mongodb: 4.12.0 + mongodb: 4.12.1 transitivePeerDependencies: - aws-crt dev: true @@ -15119,22 +17093,22 @@ packages: - aws-crt dev: true - /mongodb-connection-string-url/2.5.4: - resolution: {integrity: sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==} + /mongodb-connection-string-url/2.6.0: + resolution: {integrity: sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==} dependencies: '@types/whatwg-url': 8.2.2 whatwg-url: 11.0.0 dev: true - /mongodb/4.12.0: - resolution: {integrity: sha512-ssWod7DqVE4faluZESdOqYhV1BI5CQA5c31sr+zxDLJDBX9EA5VJLo8RNSItPTwxExmuGn/T6MbETQWjywNehA==} + /mongodb/4.12.1: + resolution: {integrity: sha512-koT87tecZmxPKtxRQD8hCKfn+ockEL2xBiUvx3isQGI6mFmagWt4f4AyCE9J4sKepnLhMacoCTQQA6SLAI2L6w==} engines: {node: '>=12.9.0'} dependencies: bson: 4.7.0 - mongodb-connection-string-url: 2.5.4 + mongodb-connection-string-url: 2.6.0 socks: 2.7.1 optionalDependencies: - '@aws-sdk/credential-providers': 3.213.0 + '@aws-sdk/credential-providers': 3.222.0 saslprep: 1.0.3 transitivePeerDependencies: - aws-crt @@ -15194,7 +17168,6 @@ packages: /nan/2.17.0: resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} - requiresBuild: true dev: true optional: true @@ -15256,13 +17229,13 @@ packages: nodemailer: optional: true dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@panva/hkdf': 1.0.2 cookie: 0.5.0 - jose: 4.11.0 - next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a + jose: 4.11.1 + next: 13.0.5_672uxklweod7ene3nqtsh262ca oauth: 0.9.15 - openid-client: 5.3.0 + openid-client: 5.3.1 preact: 10.11.3 preact-render-to-string: 5.2.6_preact@10.11.3 react: 18.2.0 @@ -15278,22 +17251,85 @@ packages: react: '>= 17.0.2 || >=18' react-i18next: ^12.0.0 || >=12 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 '@types/hoist-non-react-statics': 3.3.1 core-js: 3.26.1 hoist-non-react-statics: 3.3.2 i18next: 22.0.6 - i18next-fs-backend: 2.0.0 - next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a + i18next-fs-backend: 2.0.1 + next: 13.0.5_672uxklweod7ene3nqtsh262ca + react: 18.2.0 + react-i18next: 12.0.0_nger6pvrp5hnzeykouhwqmsdti + + /next-i18next/13.0.0_v45ngicqsnc2kfmiosh7h2lq44: + resolution: {integrity: sha512-XiODAmMdueAIETQKIRPvYEZ5ghLOlzHb6PI4/WzwYkKdC/5q6UROzwIRw7aj3VWRB3xwnuuzEVI9NAjMfXyrkQ==} + engines: {node: '>=14'} + peerDependencies: + i18next: ^22.0.6 + next: '>= 12.0.0 || >=13' + react: '>= 17.0.2 || >=18' + react-i18next: ^12.0.0 || >=12 + dependencies: + '@babel/runtime': 7.20.6 + '@types/hoist-non-react-statics': 3.3.1 + core-js: 3.26.1 + hoist-non-react-statics: 3.3.2 + i18next: 22.0.6 + i18next-fs-backend: 2.0.1 + next: 13.0.6_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-i18next: 12.0.0_nger6pvrp5hnzeykouhwqmsdti + dev: true /next-transpile-modules/10.0.0: resolution: {integrity: sha512-FyeJ++Lm2Fq31gbThiRCrJlYpIY9QaI7A3TjuhQLzOix8ChQrvn5ny4MhfIthS5cy6+uK1AhDRvxVdW17y3Xdw==} dependencies: - enhanced-resolve: 5.10.0 + enhanced-resolve: 5.12.0 dev: false + /next/13.0.5_672uxklweod7ene3nqtsh262ca: + resolution: {integrity: sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg==} + engines: {node: '>=14.6.0'} + hasBin: true + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^6.0.0 || ^7.0.0 + react: ^18.2.0 || >=18 + react-dom: ^18.2.0 || >=18 + sass: ^1.3.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + '@next/env': 13.0.5 + '@swc/helpers': 0.4.14 + caniuse-lite: 1.0.30001435 + postcss: 8.4.14 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + styled-jsx: 5.1.0_zavbqmrropwrojvx6ojaa4s7im + optionalDependencies: + '@next/swc-android-arm-eabi': 13.0.5 + '@next/swc-android-arm64': 13.0.5 + '@next/swc-darwin-arm64': 13.0.5 + '@next/swc-darwin-x64': 13.0.5 + '@next/swc-freebsd-x64': 13.0.5 + '@next/swc-linux-arm-gnueabihf': 13.0.5 + '@next/swc-linux-arm64-gnu': 13.0.5 + '@next/swc-linux-arm64-musl': 13.0.5 + '@next/swc-linux-x64-gnu': 13.0.5 + '@next/swc-linux-x64-musl': 13.0.5 + '@next/swc-win32-arm64-msvc': 13.0.5 + '@next/swc-win32-ia32-msvc': 13.0.5 + '@next/swc-win32-x64-msvc': 13.0.5 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + /next/13.0.5_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg==} engines: {node: '>=14.6.0'} @@ -15314,7 +17350,7 @@ packages: dependencies: '@next/env': 13.0.5 '@swc/helpers': 0.4.14 - caniuse-lite: 1.0.30001434 + caniuse-lite: 1.0.30001435 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -15358,7 +17394,7 @@ packages: dependencies: '@next/env': 13.0.5 '@swc/helpers': 0.4.14 - caniuse-lite: 1.0.30001434 + caniuse-lite: 1.0.30001435 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -15381,6 +17417,50 @@ packages: - '@babel/core' - babel-plugin-macros + /next/13.0.6_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-COvigvms2LRt1rrzfBQcMQ2GZd86Mvk1z+LOLY5pniFtL4VrTmhZ9salrbKfSiXbhsD01TrDdD68ec3ABDyscA==} + engines: {node: '>=14.6.0'} + hasBin: true + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^6.0.0 || ^7.0.0 + react: ^18.2.0 || >=18 + react-dom: ^18.2.0 || >=18 + sass: ^1.3.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + '@next/env': 13.0.6 + '@swc/helpers': 0.4.14 + caniuse-lite: 1.0.30001435 + 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 + optionalDependencies: + '@next/swc-android-arm-eabi': 13.0.6 + '@next/swc-android-arm64': 13.0.6 + '@next/swc-darwin-arm64': 13.0.6 + '@next/swc-darwin-x64': 13.0.6 + '@next/swc-freebsd-x64': 13.0.6 + '@next/swc-linux-arm-gnueabihf': 13.0.6 + '@next/swc-linux-arm64-gnu': 13.0.6 + '@next/swc-linux-arm64-musl': 13.0.6 + '@next/swc-linux-x64-gnu': 13.0.6 + '@next/swc-linux-x64-musl': 13.0.6 + '@next/swc-win32-arm64-msvc': 13.0.6 + '@next/swc-win32-ia32-msvc': 13.0.6 + '@next/swc-win32-x64-msvc': 13.0.6 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + dev: true + /nice-try/1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} dev: true @@ -15702,10 +17782,10 @@ packages: hasBin: true dev: false - /openid-client/5.3.0: - resolution: {integrity: sha512-SykPCeZBZ/SxiBH5AWynvFUIDX3//2pgwc/3265alUmGHeCN03+X8uP+pHOVnCXCKfX/XOhO90qttAQ76XcGxA==} + /openid-client/5.3.1: + resolution: {integrity: sha512-RLfehQiHch9N6tRWNx68cicf3b1WR0x74bJWHRc25uYIbSRwjxYcTFaRnzbbpls5jroLAaB/bFIodTgA5LJMvw==} dependencies: - jose: 4.11.0 + jose: 4.11.1 lru-cache: 6.0.0 object-hash: 2.2.0 oidc-token-hash: 5.0.1 @@ -16178,7 +18258,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 dev: true /posix-character-classes/0.1.1: @@ -16235,7 +18315,7 @@ packages: klona: 2.0.5 postcss: 8.4.19 semver: 7.3.8 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /postcss-loader/7.0.1_upg3rk2kpasnbk27hkqapxaxfq: @@ -16249,7 +18329,7 @@ packages: klona: 2.0.5 postcss: 8.4.19 semver: 7.3.8 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /postcss-modules-extract-imports/2.0.0: @@ -16448,6 +18528,12 @@ packages: engines: {node: '>=10.13.0'} hasBin: true + /prettier/2.8.0: + resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + /pretty-bytes/5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -16532,13 +18618,13 @@ packages: - supports-color dev: false - /prisma/4.7.0: - resolution: {integrity: sha512-VsecNo0Ca3+bDTzSpJqIpdupKVhhQ8aOYeWc09JlUM89knqvhSrlMrg0U8BiOD4tFrY1OPaCcraK8leDBxKMBg==} + /prisma/4.7.1: + resolution: {integrity: sha512-CCQP+m+1qZOGIZlvnL6T3ZwaU0LAleIHYFPN9tFSzjs/KL6vH9rlYbGOkTuG9Q1s6Ki5D0LJlYlW18Z9EBUpGg==} engines: {node: '>=14.17'} hasBin: true requiresBuild: true dependencies: - '@prisma/engines': 4.7.0 + '@prisma/engines': 4.7.1 /prismjs/1.29.0: resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} @@ -16627,8 +18713,8 @@ packages: xtend: 4.0.2 dev: true - /prosemirror-commands/1.3.1: - resolution: {integrity: sha512-XTporPgoECkOQACVw0JTe3RZGi+fls3/byqt+tXwGTkD7qLuB4KdVrJamDMJf4kfKga3uB8hZ+kUUyZ5oWpnfg==} + /prosemirror-commands/1.4.0: + resolution: {integrity: sha512-/4jgtt0nF+RPis40MT81GA4HfqJzjjrGGwsYWICpE6A++2NT1wBqK9M4ROXHpriZaAXn5Uo1A7VbiMh7TNpgPg==} dependencies: prosemirror-model: 1.18.3 prosemirror-state: 1.4.2 @@ -16959,8 +19045,8 @@ packages: hasBin: true dependencies: '@babel/core': 7.20.2 - '@babel/generator': 7.20.4 - '@babel/runtime': 7.20.1 + '@babel/generator': 7.20.5 + '@babel/runtime': 7.20.6 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -17029,7 +19115,7 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 html-parse-stringify: 3.0.1 i18next: 22.0.6 react: 18.2.0 @@ -17040,7 +19126,7 @@ packages: peerDependencies: react: ^16.8.4 || ^17.0.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.2.0 @@ -17104,7 +19190,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 react: 18.2.0 use-composed-ref: 1.3.0_react@18.2.0 use-latest: 1.2.1_fan5qbzahqtxlm5dzefqlqx5ia @@ -17117,7 +19203,7 @@ packages: react: '>=16.6.0 || >=18' react-dom: '>=16.6.0 || >=18' dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -17226,7 +19312,7 @@ packages: /readdir-glob/1.1.2: resolution: {integrity: sha512-6RLVvwJtVwEDfPdn6X6Ille4/lxGl0ATOY4FN/B9nxQcgOazvvI0nodiD19ScKq0PvA/29VpaOQML36o5IzZWA==} dependencies: - minimatch: 5.1.0 + minimatch: 5.1.1 /readdirp/2.2.1: resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} @@ -17319,7 +19405,7 @@ packages: /regenerator-transform/0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.6 dev: true /regex-not/1.0.2: @@ -17657,8 +19743,8 @@ packages: inherits: 2.0.4 dev: true - /rollup/3.3.0: - resolution: {integrity: sha512-wqOV/vUJCYEbWsXvwCkgGWvgaEnsbn4jxBQWKpN816CqsmCimDmCNJI83c6if7QVD4v/zlyRzxN7U2yDT5rfoA==} + /rollup/3.5.1: + resolution: {integrity: sha512-hdQWTvPeiAbM6SUkxV70HdGUVxsgsc+CLy5fuh4KdgUBJ0SowXiix8gANgXoG3wEuLwfoJhCT2V+WwxfWq9Ikw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -17777,7 +19863,7 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /sax/1.2.1: @@ -18183,7 +20269,7 @@ packages: deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 - decode-uri-component: 0.2.0 + decode-uri-component: 0.2.2 resolve-url: 0.2.1 source-map-url: 0.4.1 urix: 0.1.0 @@ -18296,7 +20382,7 @@ packages: resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} engines: {node: '>= 8'} dependencies: - minipass: 3.3.4 + minipass: 3.3.6 dev: true /stable/0.1.8: @@ -18366,7 +20452,7 @@ packages: - react dev: true - /storybook-addon-mantine/1.2.0_kxryx5xabwyhguur6rzvcl3qou: + /storybook-addon-mantine/1.2.0_57olb5elduasqxzzm7quc5o75u: resolution: {integrity: sha512-GuYmjZMNFNMa3lT1M/eH9nVLIxN4l54FLqn1uiJZ11dmbYfdHaO3IwTBrRrSFfwGtK2P8hiNPNIhXZ6+mBZMSQ==} peerDependencies: '@emotion/react': ^11.9.3 @@ -18414,28 +20500,28 @@ packages: '@mantine/notifications': 5.8.2_mg4am4smyspjkl6dnttcswxx6a '@mantine/nprogress': 5.8.2_mg4am4smyspjkl6dnttcswxx6a '@mantine/prism': 5.8.2_mg4am4smyspjkl6dnttcswxx6a - '@mantine/rte': 5.8.2_mg4am4smyspjkl6dnttcswxx6a + '@mantine/rte': 5.9.0_mg4am4smyspjkl6dnttcswxx6a '@mantine/spotlight': 5.8.2_mg4am4smyspjkl6dnttcswxx6a '@storybook/addon-actions': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-essentials': 6.5.13_mkvqu4dpcolj4gx2fwxsmvgdzm + '@storybook/addon-essentials': 6.5.13_nak4rpspbnlvsomoybt5x36ojq '@storybook/addon-interactions': 6.5.13_ivdudmvvzzsf6tsttamhsg5viq '@storybook/addon-links': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack4': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/manager-webpack4': 6.5.13_gpshdmfc4w665ax2rx6w5ydgtu - '@storybook/react': 6.5.13_au32duyi3m4ybju6hwbawtuyhy + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack4': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/manager-webpack4': 6.5.14_gpshdmfc4w665ax2rx6w5ydgtu + '@storybook/react': 6.5.13_kngzsb3kxr3jz3r3kxbxnuc6zi babel-loader: 9.1.0_npabyccmuonwo2rku4k53xo3hi dayjs: 1.11.6 embla-carousel-react: 7.0.5_react@18.2.0 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 transitivePeerDependencies: - supports-color dev: true - /storybook-addon-next/1.6.10_cjg66g6fneesfs7tbdkcqzaiym: + /storybook-addon-next/1.6.10_7ez7knh5odcvi2ucx2npve4sea: resolution: {integrity: sha512-BYs2B5dHIfk5EXVKGC91LZJ5/z+fUjhG7mDfuZvSA0igCm7AZFbe2LJz8NxtIKJpQwiqsqSr62suAcggMRkBNg==} peerDependencies: '@storybook/addon-actions': ^6.0.0 @@ -18445,7 +20531,7 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18 dependencies: '@storybook/addon-actions': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y image-size: 1.0.2 loader-utils: 3.2.1 next: 13.0.5_mqvh5p7ejg4taogoj6tpk3gd5a @@ -18455,7 +20541,7 @@ packages: resolve-url-loader: 5.0.0 sass-loader: 12.6.0_webpack@5.75.0 semver: 7.3.8 - tsconfig-paths: 4.1.0 + tsconfig-paths: 4.1.1 tsconfig-paths-webpack-plugin: 4.0.0 transitivePeerDependencies: - fibers @@ -18477,11 +20563,11 @@ packages: webpack: optional: true dependencies: - '@babel/runtime': 7.20.1 - '@swc/core': 1.3.19 + '@babel/runtime': 7.20.6 + '@swc/core': 1.3.21 deepmerge: 4.2.2 - swc-loader: 0.1.16_a7dehehzlg4obffjljtjigk7jq - webpack: 5.75.0_@swc+core@1.3.19 + swc-loader: 0.1.16_5x5i6oqvqt377ajd6g3httdbmq + webpack: 5.75.0_@swc+core@1.3.21 dev: true /storybook-addon-turbo-build/1.1.0_webpack@5.75.0: @@ -18503,10 +20589,10 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.13 + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.14 '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y fast-deep-equal: 3.1.3 global: 4.4.0 @@ -18515,7 +20601,7 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: true - /storybook-i18n/1.1.4_dkpitajfsp5fdz4pljs74oljo4: + /storybook-i18n/1.1.4_ji64wqyudx2u6gfl6hoiym7fnq: resolution: {integrity: sha512-0xD005aEBWhuDFU9oO5Yf+33MZQa/NWa2CWjkBODhcqC+N5WJhEPGUSQs8o9AqzQoRpIBOMQ3CS0cbRGbBuTxQ==} peerDependencies: '@storybook/addons': '>=6.5.0' @@ -18531,10 +20617,10 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.13 + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.14 '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -18546,10 +20632,10 @@ packages: react: ^17.0.2 || >=18 react-dom: ^17.0.2 || >=18 dependencies: - '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.13 + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.14 '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y lrt: 3.1.1 react: 18.2.0 @@ -18559,7 +20645,7 @@ packages: - react-is dev: true - /storybook-react-i18next/1.1.2_aunqird6f4wx7xy2oxa7qkvlea: + /storybook-react-i18next/1.1.2_s2dywop7cx7xoblnhnjuv5c55q: resolution: {integrity: sha512-7KT/wIpV0C5IfExMZ/vfEpPVdXaHNPYhl3XkaGtLfQjmqS+EsNLbR4LyKcQaB8oKtMWMdEbg9mQ4aBJWPBdK/w==} peerDependencies: '@storybook/addons': '>=6.5.0' @@ -18579,10 +20665,10 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.13 + '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.14 '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y i18next: 22.0.6 i18next-browser-languagedetector: 7.0.1 @@ -18590,7 +20676,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-i18next: 12.0.0_nger6pvrp5hnzeykouhwqmsdti - storybook-i18n: 1.1.4_dkpitajfsp5fdz4pljs74oljo4 + storybook-i18n: 1.1.4_ji64wqyudx2u6gfl6hoiym7fnq dev: true /stream-browserify/2.0.2: @@ -18807,7 +20893,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /style-loader/3.3.1_webpack@5.75.0: @@ -18816,7 +20902,7 @@ packages: peerDependencies: webpack: ^5.0.0 || >=5 dependencies: - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /style-to-js/1.1.0: @@ -18839,7 +20925,7 @@ packages: react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/traverse': 7.20.1_supports-color@5.5.0 + '@babel/traverse': 7.20.5_supports-color@5.5.0 '@emotion/is-prop-valid': 1.2.0 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 @@ -18885,7 +20971,23 @@ packages: dependencies: client-only: 0.0.1 react: 18.2.0 - dev: false + + /styled-jsx/5.1.0_zavbqmrropwrojvx6ojaa4s7im: + resolution: {integrity: sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || >=18' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + dependencies: + '@babel/core': 7.20.5 + client-only: 0.0.1 + react: 18.2.0 /stylis/4.1.3: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} @@ -18907,7 +21009,7 @@ packages: resolution: {integrity: sha512-6PfAg1FKhqkwWvPb2uXhH4MkMttdc17eJ91+Aoz4s1XUEDZFmLfFx/xVA3wgkPxAGy5dpozgGdK6V/n20Wj9yg==} engines: {node: '>=10'} dependencies: - copy-anything: 3.0.2 + copy-anything: 3.0.3 dev: false /supports-color/5.5.0: @@ -18939,14 +21041,14 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /swc-loader/0.1.16_a7dehehzlg4obffjljtjigk7jq: + /swc-loader/0.1.16_5x5i6oqvqt377ajd6g3httdbmq: resolution: {integrity: sha512-NKIm8aJjK/z/yfzk+v7YGwJMjBKaLaUs9ZKI2zoaIGKAjtkwjO92ZLI0fiTZuwzRqVLQl/29fBdSgFCBzquR0w==} peerDependencies: '@swc/core': ^1.2.147 webpack: '>=2 || >=5' dependencies: - '@swc/core': 1.3.19 - webpack: 5.75.0_@swc+core@1.3.19 + '@swc/core': 1.3.21 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /symbol.prototype.description/1.0.5: @@ -18995,7 +21097,7 @@ packages: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 3.3.4 + minipass: 3.3.6 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 @@ -19007,7 +21109,7 @@ packages: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 - minipass: 3.3.4 + minipass: 3.3.6 minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 @@ -19104,14 +21206,14 @@ packages: schema-utils: 3.1.1 serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 5.15.1 + terser: 5.16.0 webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird dev: true - /terser-webpack-plugin/5.3.6_a7dehehzlg4obffjljtjigk7jq: + /terser-webpack-plugin/5.3.6_5x5i6oqvqt377ajd6g3httdbmq: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -19128,12 +21230,12 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.17 - '@swc/core': 1.3.19 + '@swc/core': 1.3.21 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.15.1 - webpack: 5.75.0_@swc+core@1.3.19 + terser: 5.16.0 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /terser/4.8.1: @@ -19147,8 +21249,8 @@ packages: source-map-support: 0.5.21 dev: true - /terser/5.15.1: - resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==} + /terser/5.16.0: + resolution: {integrity: sha512-KjTV81QKStSfwbNiwlBXfcgMcOloyuRdb62/iLFPGBcVNF4EXjhdYBhYHmbJpiBrVxZhDvltE11j+LBQUxEEJg==} engines: {node: '>=10'} hasBin: true dependencies: @@ -19390,8 +21492,8 @@ packages: engines: {node: '>=10.13.0'} dependencies: chalk: 4.1.2 - enhanced-resolve: 5.10.0 - tsconfig-paths: 4.1.0 + enhanced-resolve: 5.12.0 + tsconfig-paths: 4.1.1 dev: true /tsconfig-paths/3.14.1: @@ -19402,8 +21504,8 @@ packages: minimist: 1.2.7 strip-bom: 3.0.0 - /tsconfig-paths/4.1.0: - resolution: {integrity: sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==} + /tsconfig-paths/4.1.1: + resolution: {integrity: sha512-VgPrtLKpRgEAJsMj5Q/I/mXouC6A/7eJ/X4Nuk6o0cRPwBtznYxTCU4FodbexbzH9somBPEXYi0ZkUViUpJ21Q==} engines: {node: '>=6'} dependencies: json5: 2.2.1 @@ -19433,17 +21535,17 @@ packages: typescript: optional: true dependencies: - bundle-require: 3.1.2_esbuild@0.15.15 + bundle-require: 3.1.2_esbuild@0.15.16 cac: 6.7.14 chokidar: 3.5.3 debug: 4.3.4 - esbuild: 0.15.15 + esbuild: 0.15.16 execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 postcss-load-config: 3.1.4 resolve-from: 5.0.0 - rollup: 3.3.0 + rollup: 3.5.1 source-map: 0.8.0-beta.0 sucrase: 3.29.0 tree-kill: 1.2.2 @@ -19466,9 +21568,9 @@ packages: resolution: {integrity: sha512-Rcg1x+rNe7qwlP8j7kx4VjP/pJo/V57k+17hlrn6a7FuQLNwkaw5W4JF75tYornNVCxkXdSUnqlIT8JY/ttvIw==} hasBin: true dependencies: - '@esbuild-kit/cjs-loader': 2.4.0 + '@esbuild-kit/cjs-loader': 2.4.1 '@esbuild-kit/core-utils': 3.0.0 - '@esbuild-kit/esm-loader': 2.5.0 + '@esbuild-kit/esm-loader': 2.5.4 optionalDependencies: fsevents: 2.3.2 dev: true @@ -19610,6 +21712,11 @@ packages: engines: {node: '>=14.16'} dev: true + /type-fest/3.3.0: + resolution: {integrity: sha512-gezeeOIZyQLGW5uuCeEnXF1aXmtt2afKspXz3YqoOcZ3l/YMJq1pujvgT+cz/Nw1O/7q/kSav5fihJHsC/AOUg==} + engines: {node: '>=14.16'} + dev: true + /type-is/1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} @@ -19655,8 +21762,8 @@ packages: busboy: 1.6.0 dev: true - /undici/5.12.0: - resolution: {integrity: sha512-zMLamCG62PGjd9HHMpo05bSLvvwWOZgGeiWlN/vlqu3+lRo3elxktVGEyLMX+IO7c2eflLjcW74AlkhEZm15mg==} + /undici/5.13.0: + resolution: {integrity: sha512-UDZKtwb2k7KRsK4SdXWG7ErXiL7yTGgLWvk2AXO1JMjgjh404nFo6tWSCM2xMpJwMPx3J8i/vfqEh1zOqvj82Q==} engines: {node: '>=12.18'} dependencies: busboy: 1.6.0 @@ -20212,7 +22319,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 - webpack: 5.75.0_@swc+core@1.3.19 + webpack: 5.75.0_@swc+core@1.3.21 dev: true /webpack-filter-warnings-plugin/1.2.1_webpack@4.46.0: @@ -20312,7 +22419,7 @@ packages: - supports-color dev: true - /webpack/5.75.0_@swc+core@1.3.19: + /webpack/5.75.0_@swc+core@1.3.21: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -20331,7 +22438,7 @@ packages: 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 + enhanced-resolve: 5.12.0 es-module-lexer: 0.9.3 eslint-scope: 5.1.1 events: 3.3.0 @@ -20343,7 +22450,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_a7dehehzlg4obffjljtjigk7jq + terser-webpack-plugin: 5.3.6_5x5i6oqvqt377ajd6g3httdbmq watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -20686,7 +22793,7 @@ packages: compress-commons: 4.1.1 readable-stream: 3.6.0 - /zod-prisma/0.5.4_sgyu4cerrvputcbquvozfdvpkm_prisma@4.7.0+zod@3.19.1: + /zod-prisma/0.5.4_sgyu4cerrvputcbquvozfdvpkm_prisma@4.7.1+zod@3.19.1: resolution: {integrity: sha512-5Ca4Qd1a1jy1T/NqCEpbr0c+EsbjJfJ/7euEHob3zDvtUK2rTuD1Rc/vfzH8q8PtaR2TZbysD88NHmrLwpv3Xg==} engines: {node: '>=14'} hasBin: true @@ -20700,7 +22807,7 @@ packages: dependencies: '@prisma/generator-helper': 3.8.1 parenthesis: 3.1.8 - prisma: 4.7.0 + prisma: 4.7.1 ts-morph: 13.0.3 zod: 3.19.1 dev: true