From def1470601702da6b4a1fcd1d302e1b355c1c4a3 Mon Sep 17 00:00:00 2001 From: Wojciech Florczak Date: Wed, 15 Feb 2023 09:21:40 +0000 Subject: [PATCH] feat: SB-802, SB-803 Migrate documentsList mutations, MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SB-802 migrate documentsListCreateMutation, SB-803 migrate documentsDeleteMutation * SB-802 unskip and fix tests, remove relay from tests * SB-802 create getDocumentDeleteMock, fix storybook document and documents stories, update test file to use getDocumentDeleteMock * SB-802 use fragment in documentsListCreateMutation * SB-802 remove deleteMutation mocks from stories, update getDocumentDeleteMock * SB-802 fix redundant var * SB-802 update pnpm lock file Approved-by: MichaƂ Kleszcz --- packages/webapp/.storybook/main.ts | 4 +- .../webapp/src/mocks/factories/document.ts | 25 +- .../__tests__/documents.component.spec.tsx | 75 +- .../documents/document/document.stories.tsx | 38 +- .../routes/documents/documents.component.tsx | 11 +- .../src/routes/documents/documents.graphql.ts | 21 + .../src/routes/documents/documents.hooks.ts | 79 +- .../graphqlApi/__generated/gql/gql.ts | 13 +- .../graphqlApi/__generated/gql/graphql.ts | 20 +- pnpm-lock.yaml | 2701 +++++------------ 10 files changed, 957 insertions(+), 2030 deletions(-) diff --git a/packages/webapp/.storybook/main.ts b/packages/webapp/.storybook/main.ts index 3704e4fab..e8817be90 100644 --- a/packages/webapp/.storybook/main.ts +++ b/packages/webapp/.storybook/main.ts @@ -23,9 +23,9 @@ const config: StorybookViteConfig = { '../src/routes/crudDemoItem/editCrudDemoItem/editCrudDemoItem.stories.tsx', '../src/routes/demoItem/demoItem.stories.tsx', // '../src/routes/demoItems/demoItems.stories.tsx', - // '../src/routes/documents/document/document.stories.tsx', + '../src/routes/documents/document/document.stories.tsx', '../src/routes/documents/document/skeleton/skeleton.stories.tsx', - // '../src/routes/documents/documents.stories.tsx', + '../src/routes/documents/documents.stories.tsx', '../src/routes/finances/cancelSubscription/cancelSubscription.stories.tsx', '../src/routes/finances/editPaymentMethod/editPaymentMethodForm/editPaymentMethodForm.stories.tsx', '../src/routes/finances/editSubscription/editSubscription.stories.tsx', diff --git a/packages/webapp/src/mocks/factories/document.ts b/packages/webapp/src/mocks/factories/document.ts index cbc208eb8..40227a9b1 100644 --- a/packages/webapp/src/mocks/factories/document.ts +++ b/packages/webapp/src/mocks/factories/document.ts @@ -1,10 +1,16 @@ import { times } from 'ramda'; import { MockPayloadGenerator, RelayMockEnvironment } from 'relay-test-utils'; -import { DocumentDemoItemType } from '../../shared/services/graphqlApi'; -import { connectionFromArray, makeId, composeMockedListQueryResult } from '../../tests/utils/fixtures'; import DocumentsListQuery from '../../routes/documents/__generated__/documentsListQuery.graphql'; -import { documentsListQuery } from '../../routes/documents/documents.graphql'; +import { documentsListDeleteMutation, documentsListQuery } from '../../routes/documents/documents.graphql'; +import { DocumentDemoItemType } from '../../shared/services/graphqlApi'; +import { DocumentsDeleteMutationMutation } from '../../shared/services/graphqlApi/__generated/gql/graphql'; +import { + composeMockedListQueryResult, + composeMockedQueryResult, + connectionFromArray, + makeId, +} from '../../tests/utils/fixtures'; import { createDeepFactory } from './factoryCreators'; export const documentFactory = createDeepFactory>(() => ({ @@ -28,3 +34,16 @@ export const fillDocumentsListQuery = (env?: RelayMockEnvironment, data = times( return composeMockedListQueryResult(documentsListQuery, 'allDocumentDemoItems', 'DocumentDemoItemType', { data }); }; + +export const fillDocumentDeleteQuery = (id: string, data: DocumentsDeleteMutationMutation) => { + const deleteMutationMock = composeMockedQueryResult(documentsListDeleteMutation, { + variables: { + input: { + id, + }, + }, + data, + }); + + return deleteMutationMock; +}; diff --git a/packages/webapp/src/routes/documents/__tests__/documents.component.spec.tsx b/packages/webapp/src/routes/documents/__tests__/documents.component.spec.tsx index 1d1e6a6c4..1247adf2f 100644 --- a/packages/webapp/src/routes/documents/__tests__/documents.component.spec.tsx +++ b/packages/webapp/src/routes/documents/__tests__/documents.component.spec.tsx @@ -1,24 +1,19 @@ +import { fireEvent, screen } from '@testing-library/react'; import { times } from 'ramda'; -import { act, fireEvent, screen, waitFor } from '@testing-library/react'; -import { createMockEnvironment, MockPayloadGenerator } from 'relay-test-utils'; -import { Documents } from '../documents.component'; -import { documentFactory, fillDocumentsListQuery } from '../../../mocks/factories'; +import { documentFactory, fillDocumentDeleteQuery, fillDocumentsListQuery } from '../../../mocks/factories'; +import { DocumentsDeleteMutationMutation } from '../../../shared/services/graphqlApi/__generated/gql/graphql'; import { render } from '../../../tests/utils/rendering'; - -const generateRelayEnvironmentDocuments = (documents: any) => { - return createMockEnvironment(); -}; +import { Documents } from '../documents.component'; describe('Documents: Component', () => { const Component = () => ; it('should render list of documents', async () => { - const env = createMockEnvironment(); const documentsLength = 3; const generatedDocs = times(() => documentFactory(), documentsLength); - const mockRequest = fillDocumentsListQuery(env, generatedDocs); + const mockRequest = fillDocumentsListQuery(undefined, generatedDocs); render(, { apolloMocks: (defaultMocks) => defaultMocks.concat(mockRequest) }); expect(await screen.findAllByRole('link')).toHaveLength(documentsLength); @@ -33,52 +28,44 @@ describe('Documents: Component', () => { expect(await screen.findByText('No documents')).toBeInTheDocument(); }); - // TODO: documentsListCreateMutation have to be migrated to apollo - it.skip('should add new item to the list', async () => { + it('should add new item to the list', async () => { const generatedDoc = documentFactory(); - const relayEnvironment = generateRelayEnvironmentDocuments([generatedDoc]); - const mockRequest = fillDocumentsListQuery(relayEnvironment, [generatedDoc]); + const mockRequest = fillDocumentsListQuery(undefined, [generatedDoc]); render(, { apolloMocks: (defaultMocks) => defaultMocks.concat(mockRequest) }); - const file = new File(['content'], 'file.png', { type: 'image/png' }); + const file = new File(['content'], `${generatedDoc.file?.name}`, { type: 'image/png' }); fireEvent.change(await screen.findByTestId('file-input'), { target: { files: [file] }, }); - await waitFor(() => { - relayEnvironment.mock.resolveMostRecentOperation((operation) => - MockPayloadGenerator.generate(operation, { - DocumentDemoItemType: (context, generateId) => ({ - ...documentFactory({ file: { name: file.name } }), - id: `${generateId()}`, - }), - }) - ); - }); - - expect(screen.getByText(file.name)).toBeInTheDocument(); - expect(screen.getAllByRole('listitem')).toHaveLength(2); + expect(await screen.findByText(file.name)).toBeInTheDocument(); + expect(screen.getAllByRole('listitem')).toHaveLength(1); }); -// TODO: documentsDeleteMutation have to be migrated to apollo - it.skip('should remove new item from the list', async () => { - const document = documentFactory(); - const relayEnvironment = generateRelayEnvironmentDocuments([document]); - const mockRequest = fillDocumentsListQuery([document]); - render(, { relayEnvironment, apolloMocks: (defaultMocks) => defaultMocks.concat(mockRequest) }); - - fireEvent.click(await screen.findByRole('button', { name: /delete/i })); - - act(() => { - relayEnvironment.mock.resolveMostRecentOperation((operation) => - MockPayloadGenerator.generate(operation, { - DeleteDocumentDemoItemMutationPayload: () => ({ deletedIds: [document.id] }), - }) - ); + it('should remove new item from the list', async () => { + const generatedDoc = documentFactory(); + const id = generatedDoc.id as string; + const mutationData: DocumentsDeleteMutationMutation = { + deleteDocumentDemoItem: { + deletedIds: [id], + __typename: 'DeleteDocumentDemoItemMutationPayload', + }, + }; + + const deleteMutationMock = fillDocumentDeleteQuery(id, mutationData); + deleteMutationMock.newData = jest.fn(() => ({ + data: mutationData, + })); + + const mockRequest = fillDocumentsListQuery(undefined, [generatedDoc]); + + render(, { + apolloMocks: (defaultMocks) => defaultMocks.concat(mockRequest, deleteMutationMock), }); + fireEvent.click(await screen.findByRole('button', { name: /delete/i })); - expect(screen.queryByRole('listitem')).not.toBeInTheDocument(); + expect(deleteMutationMock.newData).toHaveBeenCalled(); }); }); diff --git a/packages/webapp/src/routes/documents/document/document.stories.tsx b/packages/webapp/src/routes/documents/document/document.stories.tsx index 900ef658e..65135932a 100644 --- a/packages/webapp/src/routes/documents/document/document.stories.tsx +++ b/packages/webapp/src/routes/documents/document/document.stories.tsx @@ -1,13 +1,8 @@ import { Story } from '@storybook/react'; -import graphql from 'babel-plugin-relay/macro'; -import { useLazyLoadQuery } from 'react-relay'; -import { MockPayloadGenerator } from 'relay-test-utils'; import styled from 'styled-components'; import { documentFactory } from '../../../mocks/factories'; -import { withRelay } from '../../../shared/utils/storybook'; -import { connectionFromArray } from '../../../tests/utils/fixtures'; -import { documentListItemStoryQuery } from './__generated__/documentListItemStoryQuery.graphql'; +import { withProviders } from '../../../shared/utils/storybook'; import { Document, DocumentProps } from './document.component'; const Container = styled.div` @@ -16,38 +11,17 @@ const Container = styled.div` `; const Template: Story = (args: DocumentProps) => { - const data = useLazyLoadQuery( - graphql` - query documentListItemStoryQuery @relay_test_operation { - allDocumentDemoItems(first: 1) { - edges { - node { - ...documentListItem - } - } - } - } - `, - {} - ); + const generatedDoc = documentFactory(); + const { file, createdAt } = generatedDoc; + const id = generatedDoc.id as string; - const item = data.allDocumentDemoItems?.edges[0]?.node; - - return {item && }; + return {generatedDoc && }; }; export default { title: 'Routes/Documents/Document', component: Document, - decorators: [ - withRelay((env) => { - env.mock.queueOperationResolver((operation) => - MockPayloadGenerator.generate(operation, { - DocumentDemoItemConnection: () => connectionFromArray([documentFactory()]), - }) - ); - }), - ], + decorators: [withProviders({})], argTypes: { item: { control: { diff --git a/packages/webapp/src/routes/documents/documents.component.tsx b/packages/webapp/src/routes/documents/documents.component.tsx index ed498b495..0f7ff5bc2 100644 --- a/packages/webapp/src/routes/documents/documents.component.tsx +++ b/packages/webapp/src/routes/documents/documents.component.tsx @@ -1,15 +1,16 @@ -import { FormattedMessage } from 'react-intl'; import { useQuery } from '@apollo/client'; import { isEmpty } from 'ramda'; -import { Dropzone } from '../../shared/components/forms/dropzone'; +import { FormattedMessage } from 'react-intl'; + import { EmptyState } from '../../shared/components/emptyState'; +import { Dropzone } from '../../shared/components/forms/dropzone'; import { useMappedConnection } from '../../shared/hooks/useMappedConnection'; import { DocumentsListQueryQuery } from '../../shared/services/graphqlApi/__generated/gql/graphql'; -import { Container, Header, List } from './documents.styles'; import { Document, DocumentSkeleton } from './document'; -import { MAX_FILE_SIZE, MAX_FILES } from './documents.constants'; -import { useHandleDrop } from './documents.hooks'; +import { MAX_FILES, MAX_FILE_SIZE } from './documents.constants'; import { documentsListQuery } from './documents.graphql'; +import { useHandleDrop } from './documents.hooks'; +import { Container, Header, List } from './documents.styles'; type ListContentProps = { data: DocumentsListQueryQuery; diff --git a/packages/webapp/src/routes/documents/documents.graphql.ts b/packages/webapp/src/routes/documents/documents.graphql.ts index 8896b6cb4..f5850d55a 100644 --- a/packages/webapp/src/routes/documents/documents.graphql.ts +++ b/packages/webapp/src/routes/documents/documents.graphql.ts @@ -24,3 +24,24 @@ export const documentsListQuery = gql(/* GraphQL */ ` } } `); + +export const documentsListCreateMutation = gql(/* GraphQL */ ` + mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!) { + createDocumentDemoItem(input: $input) { + documentDemoItemEdge { + node { + createdAt + ...documentListItem + } + } + } + } +`); + +export const documentsListDeleteMutation = gql(/* GraphQL */ ` + mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!) { + deleteDocumentDemoItem(input: $input) { + deletedIds + } + } +`); diff --git a/packages/webapp/src/routes/documents/documents.hooks.ts b/packages/webapp/src/routes/documents/documents.hooks.ts index 6d9e93efa..0387e4204 100644 --- a/packages/webapp/src/routes/documents/documents.hooks.ts +++ b/packages/webapp/src/routes/documents/documents.hooks.ts @@ -1,36 +1,46 @@ -import graphql from 'babel-plugin-relay/macro'; -import { ConnectionHandler } from 'relay-runtime'; -import { usePromiseMutation } from '../../shared/services/graphqlApi/usePromiseMutation'; -import { documentsListCreateMutation } from './__generated__/documentsListCreateMutation.graphql'; +import { useMutation } from '@apollo/client'; + +import { + documentListItemFragment, + documentsListCreateMutation, + documentsListDeleteMutation, +} from './documents.graphql'; export const useHandleDrop = () => { - const [commitDropMutation] = usePromiseMutation( - graphql` - mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!, $connections: [ID!]!) { - createDocumentDemoItem(input: $input) { - documentDemoItemEdge @appendEdge(connections: $connections) { - node { - createdAt - file { - name - url - } - } - } - } - } - ` - ); + const [commitMutation] = useMutation(documentsListCreateMutation, { + update(cache, { data }) { + cache.modify({ + fields: { + allDocumentDemoItems(existingConnection = { edges: [] }) { + const node = data?.createDocumentDemoItem?.documentDemoItemEdge?.node; + if (!node) return existingConnection; + + const normalizedId = cache.identify(node); + + const isAlreadyInStore = existingConnection.edges.some(({ node }) => node.__ref === normalizedId); + if (isAlreadyInStore) return existingConnection; + + const newFile = { + node: cache.writeFragment({ + data: node, + fragment: documentListItemFragment, + }), + }; + + return { ...existingConnection, edges: [...existingConnection.edges, newFile] }; + }, + }, + }); + }, + }); return async (files: File[]) => { for (const file of files) { - await commitDropMutation({ + await commitMutation({ variables: { - input: {}, - connections: [ConnectionHandler.getConnectionID('root', 'documentsList_allDocumentDemoItems')], - }, - uploadables: { - file, + input: { + file, + }, }, }); } @@ -38,13 +48,13 @@ export const useHandleDrop = () => { }; export const useHandleDelete = () => { - const [commitDeleteMutation] = usePromiseMutation(graphql` - mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!, $connections: [ID!]!) { - deleteDocumentDemoItem(input: $input) { - deletedIds @deleteEdge(connections: $connections) - } - } - `); + const [commitDeleteMutation] = useMutation(documentsListDeleteMutation, { + update(cache, { data }) { + const deletedId = data?.deleteDocumentDemoItem?.deletedIds?.[0]; + const normalizedId = cache.identify({ id: deletedId, __typename: 'DocumentDemoItemType' }); + cache.evict({ id: normalizedId }); + }, + }); return async (id: string) => { await commitDeleteMutation({ @@ -52,7 +62,6 @@ export const useHandleDelete = () => { input: { id, }, - connections: [ConnectionHandler.getConnectionID('root', 'documentsList_allDocumentDemoItems')], }, }); }; diff --git a/packages/webapp/src/shared/services/graphqlApi/__generated/gql/gql.ts b/packages/webapp/src/shared/services/graphqlApi/__generated/gql/gql.ts index 7d75d8188..5d941b1ea 100644 --- a/packages/webapp/src/shared/services/graphqlApi/__generated/gql/gql.ts +++ b/packages/webapp/src/shared/services/graphqlApi/__generated/gql/gql.ts @@ -36,11 +36,10 @@ const documents = { "\n query demoItemListItemTestQuery @relay_test_operation {\n testItem: demoItem(id: \"contentful-item-1\") {\n ...demoItemListItem_item\n }\n }\n ": types.DemoItemListItemTestQueryDocument, "\n fragment demoItemListItem_item on DemoItem {\n title\n image {\n title\n url\n }\n }\n": types.DemoItemListItem_ItemFragmentDoc, "\n query demoItemsAllQuery {\n demoItemCollection {\n items {\n sys {\n id\n }\n ...demoItemListItem_item\n }\n }\n }\n": types.DemoItemsAllQueryDocument, - "\n query documentListItemStoryQuery @relay_test_operation {\n allDocumentDemoItems(first: 1) {\n edges {\n node {\n ...documentListItem\n }\n }\n }\n }\n ": types.DocumentListItemStoryQueryDocument, "\n fragment documentListItem on DocumentDemoItemType {\n id\n file {\n url\n name\n }\n createdAt\n }\n": types.DocumentListItemFragmentDoc, "\n query documentsListQuery {\n allDocumentDemoItems(first: 10) {\n edges {\n node {\n id\n createdAt\n ...documentListItem\n }\n }\n }\n }\n": types.DocumentsListQueryDocument, - "\n mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!, $connections: [ID!]!) {\n createDocumentDemoItem(input: $input) {\n documentDemoItemEdge @appendEdge(connections: $connections) {\n node {\n createdAt\n file {\n name\n url\n }\n }\n }\n }\n }\n ": types.DocumentsListCreateMutationDocument, - "\n mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!, $connections: [ID!]!) {\n deleteDocumentDemoItem(input: $input) {\n deletedIds @deleteEdge(connections: $connections)\n }\n }\n ": types.DocumentsDeleteMutationDocument, + "\n mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!) {\n createDocumentDemoItem(input: $input) {\n documentDemoItemEdge {\n node {\n createdAt\n ...documentListItem\n }\n }\n }\n }\n": types.DocumentsListCreateMutationDocument, + "\n mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!) {\n deleteDocumentDemoItem(input: $input) {\n deletedIds\n }\n }\n": types.DocumentsDeleteMutationDocument, "\n mutation subscriptionCancelActiveSubscriptionMutation($input: CancelActiveSubscriptionMutationInput!) {\n cancelActiveSubscription(input: $input) {\n subscriptionSchedule {\n ...subscriptionActiveSubscriptionFragment\n id\n }\n }\n }\n": types.SubscriptionCancelActiveSubscriptionMutationDocument, "\n mutation stripeCreateSetupIntentMutation_($input: CreateSetupIntentMutationInput!) {\n createSetupIntent(input: $input) {\n setupIntent {\n id\n ...stripeSetupIntentFragment\n }\n }\n }\n\n fragment stripeSetupIntentFragment on StripeSetupIntentType {\n id\n clientSecret\n }\n": types.StripeCreateSetupIntentMutation_Document, "\n mutation subscriptionChangeActiveSubscriptionMutation($input: ChangeActiveSubscriptionMutationInput!) {\n changeActiveSubscription(input: $input) {\n subscriptionSchedule {\n ...subscriptionActiveSubscriptionFragment\n id\n }\n }\n }\n": types.SubscriptionChangeActiveSubscriptionMutationDocument, @@ -180,10 +179,6 @@ export function gql(source: "\n fragment demoItemListItem_item on DemoItem {\n * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ export function gql(source: "\n query demoItemsAllQuery {\n demoItemCollection {\n items {\n sys {\n id\n }\n ...demoItemListItem_item\n }\n }\n }\n"): (typeof documents)["\n query demoItemsAllQuery {\n demoItemCollection {\n items {\n sys {\n id\n }\n ...demoItemListItem_item\n }\n }\n }\n"]; -/** - * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function gql(source: "\n query documentListItemStoryQuery @relay_test_operation {\n allDocumentDemoItems(first: 1) {\n edges {\n node {\n ...documentListItem\n }\n }\n }\n }\n "): (typeof documents)["\n query documentListItemStoryQuery @relay_test_operation {\n allDocumentDemoItems(first: 1) {\n edges {\n node {\n ...documentListItem\n }\n }\n }\n }\n "]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -195,11 +190,11 @@ export function gql(source: "\n query documentsListQuery {\n allDocumentDemo /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!, $connections: [ID!]!) {\n createDocumentDemoItem(input: $input) {\n documentDemoItemEdge @appendEdge(connections: $connections) {\n node {\n createdAt\n file {\n name\n url\n }\n }\n }\n }\n }\n "): (typeof documents)["\n mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!, $connections: [ID!]!) {\n createDocumentDemoItem(input: $input) {\n documentDemoItemEdge @appendEdge(connections: $connections) {\n node {\n createdAt\n file {\n name\n url\n }\n }\n }\n }\n }\n "]; +export function gql(source: "\n mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!) {\n createDocumentDemoItem(input: $input) {\n documentDemoItemEdge {\n node {\n createdAt\n ...documentListItem\n }\n }\n }\n }\n"): (typeof documents)["\n mutation documentsListCreateMutation($input: CreateDocumentDemoItemMutationInput!) {\n createDocumentDemoItem(input: $input) {\n documentDemoItemEdge {\n node {\n createdAt\n ...documentListItem\n }\n }\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!, $connections: [ID!]!) {\n deleteDocumentDemoItem(input: $input) {\n deletedIds @deleteEdge(connections: $connections)\n }\n }\n "): (typeof documents)["\n mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!, $connections: [ID!]!) {\n deleteDocumentDemoItem(input: $input) {\n deletedIds @deleteEdge(connections: $connections)\n }\n }\n "]; +export function gql(source: "\n mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!) {\n deleteDocumentDemoItem(input: $input) {\n deletedIds\n }\n }\n"): (typeof documents)["\n mutation documentsDeleteMutation($input: DeleteDocumentDemoItemMutationInput!) {\n deleteDocumentDemoItem(input: $input) {\n deletedIds\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/packages/webapp/src/shared/services/graphqlApi/__generated/gql/graphql.ts b/packages/webapp/src/shared/services/graphqlApi/__generated/gql/graphql.ts index be370fd01..1091ffc4a 100644 --- a/packages/webapp/src/shared/services/graphqlApi/__generated/gql/graphql.ts +++ b/packages/webapp/src/shared/services/graphqlApi/__generated/gql/graphql.ts @@ -2741,14 +2741,6 @@ export type DemoItemsAllQueryQuery = { __typename?: 'Query', demoItemCollection? & { ' $fragmentRefs'?: { 'DemoItemListItem_ItemFragment': DemoItemListItem_ItemFragment } } ) | null> } | null }; -export type DocumentListItemStoryQueryQueryVariables = Exact<{ [key: string]: never; }>; - - -export type DocumentListItemStoryQueryQuery = { __typename?: 'Query', allDocumentDemoItems?: { __typename?: 'DocumentDemoItemConnection', edges: Array<{ __typename?: 'DocumentDemoItemEdge', node?: ( - { __typename?: 'DocumentDemoItemType' } - & { ' $fragmentRefs'?: { 'DocumentListItemFragment': DocumentListItemFragment } } - ) | null } | null> } | null }; - export type DocumentListItemFragment = { __typename?: 'DocumentDemoItemType', id: string, createdAt: any, file?: { __typename?: 'FileFieldType', url?: string | null, name?: string | null } | null } & { ' $fragmentName'?: 'DocumentListItemFragment' }; export type DocumentsListQueryQueryVariables = Exact<{ [key: string]: never; }>; @@ -2761,15 +2753,16 @@ export type DocumentsListQueryQuery = { __typename?: 'Query', allDocumentDemoIte export type DocumentsListCreateMutationMutationVariables = Exact<{ input: CreateDocumentDemoItemMutationInput; - connections: Array | Scalars['ID']; }>; -export type DocumentsListCreateMutationMutation = { __typename?: 'ApiMutation', createDocumentDemoItem?: { __typename?: 'CreateDocumentDemoItemMutationPayload', documentDemoItemEdge?: { __typename?: 'DocumentDemoItemEdge', node?: { __typename?: 'DocumentDemoItemType', createdAt: any, file?: { __typename?: 'FileFieldType', name?: string | null, url?: string | null } | null } | null } | null } | null }; +export type DocumentsListCreateMutationMutation = { __typename?: 'ApiMutation', createDocumentDemoItem?: { __typename?: 'CreateDocumentDemoItemMutationPayload', documentDemoItemEdge?: { __typename?: 'DocumentDemoItemEdge', node?: ( + { __typename?: 'DocumentDemoItemType', createdAt: any } + & { ' $fragmentRefs'?: { 'DocumentListItemFragment': DocumentListItemFragment } } + ) | null } | null } | null }; export type DocumentsDeleteMutationMutationVariables = Exact<{ input: DeleteDocumentDemoItemMutationInput; - connections: Array | Scalars['ID']; }>; @@ -3045,10 +3038,9 @@ export const EditCrudDemoItemContentMutationDocument = {"kind":"Document","defin export const DemoItemQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"demoItemQuery"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"demoItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"id"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"image"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}}]}}]}}]}}]} as unknown as DocumentNode; export const DemoItemListItemTestQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"demoItemListItemTestQuery"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"relay_test_operation"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"testItem"},"name":{"kind":"Name","value":"demoItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"StringValue","value":"contentful-item-1","block":false}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"demoItemListItem_item"}}]}}]}},...DemoItemListItem_ItemFragmentDoc.definitions]} as unknown as DocumentNode; export const DemoItemsAllQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"demoItemsAllQuery"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"demoItemCollection"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"items"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"sys"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"demoItemListItem_item"}}]}}]}}]}},...DemoItemListItem_ItemFragmentDoc.definitions]} as unknown as DocumentNode; -export const DocumentListItemStoryQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"documentListItemStoryQuery"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"relay_test_operation"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allDocumentDemoItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"IntValue","value":"1"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"documentListItem"}}]}}]}}]}}]}},...DocumentListItemFragmentDoc.definitions]} as unknown as DocumentNode; export const DocumentsListQueryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"documentsListQuery"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"allDocumentDemoItems"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"IntValue","value":"10"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"documentListItem"}}]}}]}}]}}]}},...DocumentListItemFragmentDoc.definitions]} as unknown as DocumentNode; -export const DocumentsListCreateMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"documentsListCreateMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateDocumentDemoItemMutationInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"connections"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createDocumentDemoItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"documentDemoItemEdge"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"appendEdge"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"connections"},"value":{"kind":"Variable","name":{"kind":"Name","value":"connections"}}}]}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"Field","name":{"kind":"Name","value":"file"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]}}]}}]}}]} as unknown as DocumentNode; -export const DocumentsDeleteMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"documentsDeleteMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DeleteDocumentDemoItemMutationInput"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"connections"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteDocumentDemoItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deletedIds"},"directives":[{"kind":"Directive","name":{"kind":"Name","value":"deleteEdge"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"connections"},"value":{"kind":"Variable","name":{"kind":"Name","value":"connections"}}}]}]}]}}]}}]} as unknown as DocumentNode; +export const DocumentsListCreateMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"documentsListCreateMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateDocumentDemoItemMutationInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createDocumentDemoItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"documentDemoItemEdge"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createdAt"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"documentListItem"}}]}}]}}]}}]}},...DocumentListItemFragmentDoc.definitions]} as unknown as DocumentNode; +export const DocumentsDeleteMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"documentsDeleteMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"DeleteDocumentDemoItemMutationInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteDocumentDemoItem"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deletedIds"}}]}}]}}]} as unknown as DocumentNode; export const SubscriptionCancelActiveSubscriptionMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"subscriptionCancelActiveSubscriptionMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CancelActiveSubscriptionMutationInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cancelActiveSubscription"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"subscriptionSchedule"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"subscriptionActiveSubscriptionFragment"}},{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},...SubscriptionActiveSubscriptionFragmentFragmentDoc.definitions]} as unknown as DocumentNode; export const StripeCreateSetupIntentMutation_Document = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"stripeCreateSetupIntentMutation_"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateSetupIntentMutationInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createSetupIntent"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"setupIntent"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"FragmentSpread","name":{"kind":"Name","value":"stripeSetupIntentFragment"}}]}}]}}]}},...StripeSetupIntentFragmentFragmentDoc.definitions]} as unknown as DocumentNode; export const SubscriptionChangeActiveSubscriptionMutationDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"subscriptionChangeActiveSubscriptionMutation"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ChangeActiveSubscriptionMutationInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"changeActiveSubscription"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"subscriptionSchedule"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"subscriptionActiveSubscriptionFragment"}},{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]}},...SubscriptionActiveSubscriptionFragmentFragmentDoc.definitions]} as unknown as DocumentNode; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6ab9efbb5..4fa63a895 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -35,24 +35,24 @@ importers: '@nrwl/nx-cloud': 15.0.2 devDependencies: '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@nrwl/eslint-plugin-nx': 15.6.3_34bs5meozamxb5krcvh34ds6ru - '@nrwl/js': 15.6.3_hrbpodth77onzljscxa57aghky - '@nrwl/linter': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@nrwl/node': 15.6.3_nqirjs75d77dyrubmvhigngaky - '@nrwl/nx-plugin': 15.6.3_nqirjs75d77dyrubmvhigngaky + '@nrwl/eslint-plugin-nx': 15.6.3_b43vaxtk5627aaubjepaxoriuq + '@nrwl/js': 15.6.3_hn57nx3bojphcgc2xhjss4eaam + '@nrwl/linter': 15.6.3_5kk75456nkesxysbrk7vosr5mm + '@nrwl/node': 15.6.3_ycay2gjsvalobgybzvoma3w3xa + '@nrwl/nx-plugin': 15.6.3_f2xx6hghbsewkilfp2ca3emkmy '@saas-boilerplate-app/core': link:packages/internal/core '@swc-node/register': 1.5.5_sj45ejzagl3ytkpurcqhbu2wya '@swc/cli': 0.1.59_@swc+core@1.3.27 '@swc/core': 1.3.27 '@swc/helpers': 0.4.14 '@types/node': 16.11.7 - '@typescript-eslint/eslint-plugin': 5.51.0_ppe566fwemafy3kierv4rbnqi4 - '@typescript-eslint/parser': 5.51.0_typescript@4.8.4 + '@typescript-eslint/eslint-plugin': 5.51.0_ponbl6w6y33k5ig7z6jhupknhm + '@typescript-eslint/parser': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki babel-plugin-relay: 14.1.0 env-cmd: 10.1.0 - eslint-config-prettier: 8.6.0 - eslint-import-resolver-typescript: 3.5.3_eslint-plugin-i@2.26.0 - eslint-plugin-import: /eslint-plugin-i/2.26.0_4woqni3yla7wvvtsvqk3qwjtf4 + eslint-config-prettier: 8.6.0_eslint@8.4.1 + eslint-import-resolver-typescript: 3.5.3_2sn4obn2upfnsjgxvp6uivfnqu + eslint-plugin-import: /eslint-plugin-i/2.26.0_57nwz5hpomzbqnulnedruxm7zm jsonc-eslint-parser: 2.1.0 nx: 15.5.3_pys4s3dn6tgpk2ashdi5msvbey prettier: 2.8.3 @@ -142,7 +142,7 @@ importers: '@saas-boilerplate-app/core': link:../internal/core '@saas-boilerplate-app/tools': link:../internal/tools cypress: 8.7.0 - cypress-multi-reporters: 1.6.2 + cypress-multi-reporters: 1.6.2_mocha@10.2.0 cypress-slack-reporter: 1.5.2_mmu7hjyz5fw2xhyhvbuslxq4vq eslint: 7.32.0 eslint-config-airbnb: 18.2.1_6bogsh7g4cu7xduro5xotbeuku @@ -155,7 +155,7 @@ importers: eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0 husky: 4.3.8 lint-staged: 10.5.4 - mochawesome: 6.3.1 + mochawesome: 6.3.1_mocha@10.2.0 mochawesome-merge: 4.2.2 mochawesome-report-generator: 5.2.0 prettier: 2.8.3 @@ -228,8 +228,8 @@ importers: react-router-dom: ^5.2.0 url-loader: ^4.1.1 dependencies: - '@docusaurus/core': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/preset-classic': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu + '@docusaurus/preset-classic': 2.2.0_nr5wtsmgk6hvlgbx546kr3h5ty '@mdx-js/react': 1.6.22_react@16.14.0 clsx: 1.2.1 react: 16.14.0 @@ -243,8 +243,8 @@ importers: '@saas-boilerplate-app/infra-shared': link:../../infra/infra-shared '@saas-boilerplate-app/tools': link:../tools aws-cdk: 2.33.0 - aws-cdk-lib: 2.33.0 - url-loader: 4.1.1 + aws-cdk-lib: 2.33.0_constructs@10.1.228 + url-loader: 4.1.1_p5dl6emkcwslbw72e37w4ug7em packages/internal/local-ws-server: specifiers: @@ -301,18 +301,18 @@ importers: react-redux: 7.2.9_wcqkhtmu7mswc6yz4uyexck3ty redux: 4.2.0 regenerator-runtime: 0.13.11 - styled-components: 5.3.6_wcqkhtmu7mswc6yz4uyexck3ty + styled-components: 5.3.6_gzjxbbqgwmhffys5rngtiuy3yq devDependencies: - '@nrwl/react': 15.5.3 - '@nrwl/web': 15.5.3 - '@nrwl/webpack': 15.5.3 + '@nrwl/react': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/web': 15.5.3_tzgfsir4xtotwnrnwg52thrthi + '@nrwl/webpack': 15.5.3_rowbqdi4blsg66sab7wpyos65i '@saas-boilerplate-app/core': link:../core '@saas-boilerplate-app/infra-core': link:../../infra/infra-core '@saas-boilerplate-app/tools': link:../tools '@svgr/webpack': 6.5.1 '@testing-library/jest-dom': 4.2.4 '@testing-library/react': 9.5.0_wcqkhtmu7mswc6yz4uyexck3ty - '@testing-library/user-event': 7.2.1 + '@testing-library/user-event': 7.2.1_yxlyej73nftwmh2fiao7paxmlm aws-cdk: 2.33.0 aws-cdk-lib: 2.33.0_constructs@10.1.228 babel-plugin-styled-components: 2.0.7_styled-components@5.3.6 @@ -335,7 +335,7 @@ importers: '@types/ramda': 0.28.22 aws-cdk: 2.33.0 plop: 2.7.6 - ts-node: 9.1.1 + ts-node: 9.1.1_typescript@4.9.4 packages/webapp: specifiers: @@ -505,8 +505,8 @@ importers: '@graphql-tools/stitch': 8.7.36_graphql@16.6.0 '@iconify-icons/ion': 1.2.7 '@iconify/react': 4.0.1_react@18.2.0 - '@nrwl/js': 15.6.3 - '@nrwl/react': 15.6.3 + '@nrwl/js': 15.6.3_ow47vzwgogjfxbjywiwfvlnlle + '@nrwl/react': 15.6.3_ow47vzwgogjfxbjywiwfvlnlle '@reduxjs/toolkit': 1.9.1_5a37k65gqjt2goqxmx5aklz43q '@sentry/react': 7.31.1_react@18.2.0 '@stripe/react-stripe-js': 1.16.4_keartrz7uyerl3wkpjpue4xbhy @@ -539,7 +539,7 @@ importers: react-helmet-async: 1.3.0_biqbaboplfbrettd7655fr4n2y react-hook-form: 7.42.1_react@18.2.0 react-infinite-scroll-hook: 4.0.4_react@18.2.0 - react-intl: 6.2.5_react@18.2.0 + react-intl: 6.2.5_o77wnou4wwnegu5woljtklrzru react-is: 18.2.0 react-loading-skeleton: 3.1.0_react@18.2.0 react-markdown: 8.0.5_3stiutgnnbnfnf3uowm5cip22i @@ -558,17 +558,17 @@ importers: tslib: 2.4.1 ua-parser-js: 1.0.33 devDependencies: - '@esbuild-plugins/node-globals-polyfill': 0.2.3 - '@esbuild-plugins/node-modules-polyfill': 0.2.2 - '@formatjs/cli': 5.1.12 + '@esbuild-plugins/node-globals-polyfill': 0.2.3_esbuild@0.16.17 + '@esbuild-plugins/node-modules-polyfill': 0.2.2_esbuild@0.16.17 + '@formatjs/cli': 5.1.12_@vue+compiler-sfc@3.2.47 '@formatjs/intl-getcanonicallocales': 2.0.5 '@formatjs/intl-pluralrules': 5.1.8 '@graphql-codegen/add': 3.2.3_graphql@16.6.0 - '@graphql-codegen/cli': 2.16.4_graphql@16.6.0 + '@graphql-codegen/cli': 2.16.4_iyb5ghflus4uu7lyib6dtiyrwe '@graphql-codegen/client-preset': 1.2.6_graphql@16.6.0 '@graphql-codegen/import-types-preset': 2.2.6_graphql@16.6.0 '@graphql-codegen/typescript': 2.8.7_graphql@16.6.0 - '@graphql-codegen/typescript-graphql-request': 4.5.8_graphql@16.6.0 + '@graphql-codegen/typescript-graphql-request': 4.5.8_f45c35xnr66et7kv43kezet7ie '@graphql-codegen/typescript-operations': 2.5.12_graphql@16.6.0 '@graphql-tools/merge': 8.3.15_graphql@16.6.0 '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 @@ -579,21 +579,21 @@ importers: '@saas-boilerplate-app/tools': link:../internal/tools '@storybook/addon-actions': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-backgrounds': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-docs': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-essentials': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-docs': 6.5.16_6k6ryhlu53oiodl5hs7yypaxt4 + '@storybook/addon-essentials': 6.5.16_6k6ryhlu53oiodl5hs7yypaxt4 '@storybook/addon-measure': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-outline': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-vite': 0.4.0_mtla23ani2cmwyy5donor57gvi + '@storybook/builder-vite': 0.4.0_xixkba5us6uchs7bhdh2qwtwsu '@storybook/client-api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 - '@storybook/react': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/react': 6.5.16_sxq6fvtanzdwbgtgpbetw6fciy '@supercharge/strings': 2.0.0 '@testing-library/dom': 8.20.0 '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/react-hooks': 8.0.1_5o4rppgvhtwde3ofpdnr72ma7q '@testing-library/user-event': 14.4.3_yxlyej73nftwmh2fiao7paxmlm - '@trivago/prettier-plugin-sort-imports': 4.0.0 + '@trivago/prettier-plugin-sort-imports': 4.0.0_m4v26zq7vuhpofnm2r24kocxbu '@types/apollo-upload-client': 17.0.2_zgx26nsxq5fe72mb5nc2o6olje '@types/color': 3.0.3 '@types/fontfaceobserver': 2.1.0 @@ -615,52 +615,52 @@ importers: '@types/styled-theming': 2.2.5 '@types/testing-library__jest-dom': 5.14.5 '@types/ua-parser-js': 0.7.36 - '@vitejs/plugin-legacy': 4.0.1_vite@4.1.1 + '@vitejs/plugin-legacy': 4.0.1_terser@5.16.1+vite@4.1.1 '@vitejs/plugin-react': 3.1.0_vite@4.1.1 '@vitest/ui': 0.28.4 aws-cdk: 2.33.0 - aws-cdk-lib: 2.33.0 + aws-cdk-lib: 2.33.0_constructs@10.1.228 aws-sdk: 2.1299.0 - babel-jest: 28.1.3 + babel-jest: 28.1.3_@babel+core@7.20.12 babel-plugin-relay: 14.1.0 babel-plugin-styled-components: 2.0.7_styled-components@5.3.6 - babel-plugin-transform-import-meta: 2.2.0 + babel-plugin-transform-import-meta: 2.2.0_@babel+core@7.20.12 babel-preset-react-app: 10.0.1 concurrently: 7.6.0 - eslint-plugin-formatjs: 4.3.9_ts-jest@28.0.5 - eslint-plugin-jsx-a11y: 6.7.1 - eslint-plugin-react: 7.32.1 - eslint-plugin-react-hooks: 4.6.0 - eslint-plugin-testing-library: 5.9.1 + eslint-plugin-formatjs: 4.3.9_trwqko6nry2g5lmaux6mgyckoe + eslint-plugin-jsx-a11y: 6.7.1_eslint@8.4.1 + eslint-plugin-react: 7.32.1_eslint@8.4.1 + eslint-plugin-react-hooks: 4.6.0_eslint@8.4.1 + eslint-plugin-testing-library: 5.9.1_j2ufqx7gk4xwp4zolzgoloebza get-graphql-schema: 2.1.2 - graphql-cli: 4.1.0_graphql@16.6.0 - graphql-schema-utilities: 1.1.5_graphql@16.6.0 + graphql-cli: 4.1.0_fpwzejcmfqpdneobdih363qpvq + graphql-schema-utilities: 1.1.5 inquirer-directory: 2.2.0 invariant: 2.2.4 - jest: 28.1.3 + jest: 28.1.3_qnch7tm6w36cvfoqlc3v7gbphu jest-environment-jsdom: 28.1.3 jest-matcher-utils: 29.4.2 jest-watch-typeahead: 2.2.2_jest@28.1.3 jsdom: 16.7.0 mockdate: 3.0.5 - msw: 1.0.0 + msw: 1.0.0_typescript@4.9.4 postcss: 8.4.21 react-test-renderer: 18.2.0_react@18.2.0 relay-compiler: 14.1.0 relay-test-utils: 14.1.0 rollup-plugin-node-builtins: 2.1.2 - rollup-plugin-polyfill-node: 0.12.0 + rollup-plugin-polyfill-node: 0.12.0_rollup@3.14.0 storybook-dark-mode: 2.0.5_biqbaboplfbrettd7655fr4n2y stylelint: 14.16.1 stylelint-config-recommended-scss: 7.0.0_w5gtdy6oq4ictd5o4eu6befejy stylelint-config-styled-components: 0.1.1 stylelint-processor-styled-components: 1.10.0 - ts-jest: 28.0.5_gcleckb5zcuhbbyyhlubvkkx2y - vite: 4.1.1 - vite-plugin-eslint: 1.8.1_vite@4.1.1 + ts-jest: 28.0.5_bbmp2b2hehqx5oucsnbpqhnia4 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy + vite-plugin-eslint: 1.8.1_eslint@8.4.1+vite@4.1.1 vite-plugin-relay: 2.0.0_gi5gywmqtyr7zrkx7ro24fexwe - vite-plugin-svgr: 2.4.0_vite@4.1.1 - vite-tsconfig-paths: 4.0.5 + vite-plugin-svgr: 2.4.0_rollup@3.14.0+vite@4.1.1 + vite-tsconfig-paths: 4.0.5_typescript@4.9.4 packages/workers: specifiers: @@ -710,13 +710,14 @@ packages: '@algolia/autocomplete-shared': 1.7.4 dev: false - /@algolia/autocomplete-preset-algolia/1.7.4_algoliasearch@4.14.3: + /@algolia/autocomplete-preset-algolia/1.7.4_dk4ct527ug5whbfokpeal2wzha: resolution: {integrity: sha512-s37hrvLEIfcmKY8VU9LsAXgm2yfmkdHT3DnA3SgHaY93yjZ2qL57wzb5QweVkYuEBZkT2PIREvRoLXC2sxTbpQ==} peerDependencies: '@algolia/client-search': '>= 4.9.1 < 6' algoliasearch: '>= 4.9.1 < 6' dependencies: '@algolia/autocomplete-shared': 1.7.4 + '@algolia/client-search': 4.14.3 algoliasearch: 4.14.3 dev: false @@ -1788,19 +1789,6 @@ packages: '@babel/helper-explode-assignable-expression': 7.18.6 '@babel/types': 7.20.7 - /@babel/helper-compilation-targets/7.20.7: - resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.20.10 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - lru-cache: 5.1.1 - semver: 6.3.0 - dev: true - /@babel/helper-compilation-targets/7.20.7_@babel+core@7.17.8: resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} @@ -1828,24 +1816,6 @@ packages: lru-cache: 5.1.1 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.20.12: - resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@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.20.7 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.18.6 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12: resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} engines: {node: '>=6.9.0'} @@ -1864,16 +1834,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.20.5: - resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.2.2 - dev: true - /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} engines: {node: '>=6.9.0'} @@ -1902,21 +1862,6 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.3: - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/helper-compilation-targets': 7.20.7 - '@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-define-polyfill-provider/0.3.3_@babel+core@7.20.12: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: @@ -1995,20 +1940,6 @@ packages: resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator/7.18.9: - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@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.7 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} @@ -2110,15 +2041,6 @@ packages: dependencies: '@babel/types': 7.20.7 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6: - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@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.12: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -2128,17 +2050,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7: - resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.20.7 - dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} @@ -2150,20 +2061,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 - /@babel/plugin-proposal-async-generator-functions/7.20.7: - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9 - '@babel/plugin-syntax-async-generators': 7.8.4 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -2178,18 +2075,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.18.6: - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-create-class-features-plugin': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -2202,19 +2087,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.20.7: - resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/helper-create-class-features-plugin': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} engines: {node: '>=6.9.0'} @@ -2243,16 +2115,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-dynamic-import/7.18.6: - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3 - dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -2274,16 +2136,6 @@ packages: '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.12 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9: - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3 - dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -2294,16 +2146,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 - /@babel/plugin-proposal-json-strings/7.18.6: - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3 - dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -2314,16 +2156,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 - /@babel/plugin-proposal-logical-assignment-operators/7.20.7: - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 - dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} @@ -2334,16 +2166,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6: - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -2354,16 +2176,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 - /@babel/plugin-proposal-numeric-separator/7.18.6: - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4 - dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -2384,19 +2196,6 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.12.9 - /@babel/plugin-proposal-object-rest-spread/7.20.7: - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.10 - '@babel/helper-compilation-targets': 7.20.7 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3 - '@babel/plugin-transform-parameters': 7.20.7 - dev: true - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -2410,16 +2209,6 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 - /@babel/plugin-proposal-optional-catch-binding/7.18.6: - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3 - dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -2430,17 +2219,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 - /@babel/plugin-proposal-optional-chaining/7.20.7: - resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3 - dev: true - /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} engines: {node: '>=6.9.0'} @@ -2452,18 +2230,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 - /@babel/plugin-proposal-private-methods/7.18.6: - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-create-class-features-plugin': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -2476,20 +2242,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.20.5: - resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} engines: {node: '>=6.9.0'} @@ -2504,16 +2256,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.18.6: - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-create-regexp-features-plugin': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -2524,14 +2266,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-async-generators/7.8.4: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -2540,14 +2274,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-bigint/7.8.3: - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: @@ -2557,14 +2283,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -2573,15 +2291,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-class-static-block/7.14.5: - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -2600,20 +2309,12 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-dynamic-import/7.8.3: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.20.12: @@ -2626,14 +2327,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3: - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -2642,15 +2335,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-flow/7.18.6: - resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} @@ -2661,15 +2345,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-assertions/7.20.0: - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} @@ -2679,14 +2354,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-import-meta/7.10.4: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -2696,14 +2363,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -2720,15 +2379,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-jsx/7.18.6: - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} @@ -2738,14 +2388,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -2754,14 +2396,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3: - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -2770,14 +2404,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-numeric-separator/7.10.4: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -2786,14 +2412,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-object-rest-spread/7.8.3: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@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: @@ -2810,14 +2428,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-optional-catch-binding/7.8.3: - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -2826,14 +2436,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-optional-chaining/7.8.3: - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -2842,15 +2444,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-private-property-in-object/7.14.5: - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -2860,15 +2453,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-top-level-await/7.14.5: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -2887,15 +2471,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions/7.20.7: - resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} @@ -2905,19 +2480,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-async-to-generator/7.20.7: - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -2931,15 +2493,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.18.6: - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -2949,15 +2502,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-block-scoping/7.20.11: - resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.12: resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} engines: {node: '>=6.9.0'} @@ -2967,25 +2511,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-classes/7.20.7: - resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7 - '@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.20.7 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} engines: {node: '>=6.9.0'} @@ -3005,16 +2530,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.20.7: - resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/template': 7.20.7 - dev: true - /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} @@ -3025,15 +2540,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/template': 7.20.7 - /@babel/plugin-transform-destructuring/7.20.7: - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} engines: {node: '>=6.9.0'} @@ -3043,16 +2549,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-dotall-regex/7.18.6: - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-create-regexp-features-plugin': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -3063,15 +2559,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-duplicate-keys/7.18.9: - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} @@ -3081,16 +2568,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-exponentiation-operator/7.18.6: - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -3101,16 +2578,6 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-flow-strip-types/7.19.0: - resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-flow': 7.18.6 - dev: true - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.12: resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} @@ -3122,15 +2589,6 @@ packages: '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12 dev: true - /@babel/plugin-transform-for-of/7.18.8: - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} @@ -3140,17 +2598,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-function-name/7.18.9: - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-compilation-targets': 7.20.7 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -3162,15 +2609,6 @@ packages: '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-literals/7.18.9: - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -3180,15 +2618,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-member-expression-literals/7.18.6: - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -3198,18 +2627,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-modules-amd/7.20.11: - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-module-transforms': 7.20.11 - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12: resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} @@ -3222,19 +2639,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs/7.20.11: - resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-module-transforms': 7.20.11 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-simple-access': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12: resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} engines: {node: '>=6.9.0'} @@ -3248,20 +2652,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.20.11: - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.20.11 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-identifier': 7.19.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12: resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} @@ -3276,18 +2666,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.18.6: - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-module-transforms': 7.20.11 - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -3300,16 +2678,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5: - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/helper-create-regexp-features-plugin': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} @@ -3320,15 +2688,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-new-target/7.18.6: - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} @@ -3338,18 +2697,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-object-super/7.18.6: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -3362,15 +2709,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters/7.20.7: - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.12.9: resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} engines: {node: '>=6.9.0'} @@ -3389,15 +2727,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-property-literals/7.18.6: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -3416,15 +2745,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-display-name/7.18.6: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} @@ -3434,15 +2754,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-development/7.18.6: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/plugin-transform-react-jsx': 7.20.13 - dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} @@ -3472,19 +2783,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-react-jsx/7.20.13: - resolution: {integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@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/types': 7.20.7 - dev: true - /@babel/plugin-transform-react-jsx/7.20.13_@babel+core@7.20.12: resolution: {integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==} engines: {node: '>=6.9.0'} @@ -3498,16 +2796,6 @@ packages: '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 '@babel/types': 7.20.7 - /@babel/plugin-transform-react-pure-annotations/7.18.6: - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} @@ -3518,16 +2806,6 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-regenerator/7.20.5: - resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - regenerator-transform: 0.15.1 - dev: true - /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} @@ -3538,15 +2816,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.1 - /@babel/plugin-transform-reserved-words/7.18.6: - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} @@ -3572,15 +2841,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-shorthand-properties/7.18.6: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -3590,16 +2850,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-spread/7.20.7: - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - dev: true - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -3610,15 +2860,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-sticky-regex/7.18.6: - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -3628,15 +2869,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-template-literals/7.18.9: - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -3646,15 +2878,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typeof-symbol/7.18.9: - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -3677,15 +2900,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes/7.18.10: - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} @@ -3695,16 +2909,6 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-unicode-regex/7.18.6: - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-create-regexp-features-plugin': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -3715,91 +2919,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/preset-env/7.20.2: - 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.10 - '@babel/helper-compilation-targets': 7.20.7 - '@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/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7 - '@babel/plugin-proposal-async-generator-functions': 7.20.7 - '@babel/plugin-proposal-class-properties': 7.18.6 - '@babel/plugin-proposal-class-static-block': 7.20.7 - '@babel/plugin-proposal-dynamic-import': 7.18.6 - '@babel/plugin-proposal-export-namespace-from': 7.18.9 - '@babel/plugin-proposal-json-strings': 7.18.6 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6 - '@babel/plugin-proposal-numeric-separator': 7.18.6 - '@babel/plugin-proposal-object-rest-spread': 7.20.7 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.20.7 - '@babel/plugin-proposal-private-methods': 7.18.6 - '@babel/plugin-proposal-private-property-in-object': 7.20.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4 - '@babel/plugin-syntax-class-properties': 7.12.13 - '@babel/plugin-syntax-class-static-block': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3 - '@babel/plugin-syntax-export-namespace-from': 7.8.3 - '@babel/plugin-syntax-import-assertions': 7.20.0 - '@babel/plugin-syntax-json-strings': 7.8.3 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3 - '@babel/plugin-syntax-private-property-in-object': 7.14.5 - '@babel/plugin-syntax-top-level-await': 7.14.5 - '@babel/plugin-transform-arrow-functions': 7.20.7 - '@babel/plugin-transform-async-to-generator': 7.20.7 - '@babel/plugin-transform-block-scoped-functions': 7.18.6 - '@babel/plugin-transform-block-scoping': 7.20.11 - '@babel/plugin-transform-classes': 7.20.7 - '@babel/plugin-transform-computed-properties': 7.20.7 - '@babel/plugin-transform-destructuring': 7.20.7 - '@babel/plugin-transform-dotall-regex': 7.18.6 - '@babel/plugin-transform-duplicate-keys': 7.18.9 - '@babel/plugin-transform-exponentiation-operator': 7.18.6 - '@babel/plugin-transform-for-of': 7.18.8 - '@babel/plugin-transform-function-name': 7.18.9 - '@babel/plugin-transform-literals': 7.18.9 - '@babel/plugin-transform-member-expression-literals': 7.18.6 - '@babel/plugin-transform-modules-amd': 7.20.11 - '@babel/plugin-transform-modules-commonjs': 7.20.11 - '@babel/plugin-transform-modules-systemjs': 7.20.11 - '@babel/plugin-transform-modules-umd': 7.18.6 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5 - '@babel/plugin-transform-new-target': 7.18.6 - '@babel/plugin-transform-object-super': 7.18.6 - '@babel/plugin-transform-parameters': 7.20.7 - '@babel/plugin-transform-property-literals': 7.18.6 - '@babel/plugin-transform-regenerator': 7.20.5 - '@babel/plugin-transform-reserved-words': 7.18.6 - '@babel/plugin-transform-shorthand-properties': 7.18.6 - '@babel/plugin-transform-spread': 7.20.7 - '@babel/plugin-transform-sticky-regex': 7.18.6 - '@babel/plugin-transform-template-literals': 7.18.9 - '@babel/plugin-transform-typeof-symbol': 7.18.9 - '@babel/plugin-transform-unicode-escapes': 7.18.10 - '@babel/plugin-transform-unicode-regex': 7.18.6 - '@babel/preset-modules': 0.1.5 - '@babel/types': 7.20.7 - babel-plugin-polyfill-corejs2: 0.3.3 - babel-plugin-polyfill-corejs3: 0.6.0 - babel-plugin-polyfill-regenerator: 0.4.1 - core-js-compat: 3.27.2 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/preset-env/7.20.2_@babel+core@7.20.12: resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} @@ -3885,27 +3004,16 @@ packages: transitivePeerDependencies: - supports-color - /@babel/preset-flow/7.18.6: + /@babel/preset-flow/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-flow-strip-types': 7.19.0 - dev: true - - /@babel/preset-modules/0.1.5: - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6 - '@babel/plugin-transform-dotall-regex': 7.18.6 - '@babel/types': 7.20.7 - esutils: 2.0.3 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12 dev: true /@babel/preset-modules/0.1.5_@babel+core@7.20.12: @@ -3920,20 +3028,6 @@ packages: '@babel/types': 7.20.7 esutils: 2.0.3 - /@babel/preset-react/7.18.6: - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6 - '@babel/plugin-transform-react-jsx': 7.20.13 - '@babel/plugin-transform-react-jsx-development': 7.18.6 - '@babel/plugin-transform-react-pure-annotations': 7.18.6 - dev: true - /@babel/preset-react/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} @@ -4150,7 +3244,7 @@ packages: resolution: {integrity: sha512-dctFYiwbvDZkksMlsmc7pj6W6By/EjnVXJq5TEPd05MwQe+dcdHJgaIn1c8wfsucxHpIsdrUcgSkACHCq6aIhw==} dev: false - /@docsearch/react/3.3.2_wcqkhtmu7mswc6yz4uyexck3ty: + /@docsearch/react/3.3.2_vjq6z2ytns7vvzgydjkrpfhbdq: resolution: {integrity: sha512-ugILab2TYKSh6IEHf6Z9xZbOovsYbsdfo60PBj+Bw+oMJ1MHJ7pBt1TTcmPki1hSgg8mysgKy2hDiVdPm7XWSQ==} peerDependencies: '@types/react': '>= 16.8.0 < 19.0.0' @@ -4165,7 +3259,7 @@ packages: optional: true dependencies: '@algolia/autocomplete-core': 1.7.4 - '@algolia/autocomplete-preset-algolia': 1.7.4_algoliasearch@4.14.3 + '@algolia/autocomplete-preset-algolia': 1.7.4_dk4ct527ug5whbfokpeal2wzha '@docsearch/css': 3.3.2 algoliasearch: 4.14.3 react: 16.14.0 @@ -4174,7 +3268,7 @@ packages: - '@algolia/client-search' dev: false - /@docusaurus/core/2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu: + /@docusaurus/core/2.2.0_dkpsjem4igcxovcwixk57banyu: resolution: {integrity: sha512-Vd6XOluKQqzG12fEs9prJgDtyn6DPok9vmUWDR2E6/nV5Fl9SVkhEQOBxwObjk3kQh7OY7vguFaLh0jqdApWsA==} engines: {node: '>=16.14'} hasBin: true @@ -4233,107 +3327,7 @@ packages: postcss-loader: 7.0.2_6jdsrmfenkuhhw3gx4zvjlznce prompts: 2.4.2 react: 16.14.0 - react-dev-utils: 12.0.1_webpack@5.75.0 - react-dom: 16.14.0_react@16.14.0 - react-helmet-async: 1.3.0_wcqkhtmu7mswc6yz4uyexck3ty - react-loadable: /@docusaurus/react-loadable/5.5.2_react@16.14.0 - react-loadable-ssr-addon-v5-slorber: 1.0.1_pwfl7zyferpbeh35vaepqxwaky - react-router: 5.3.4_react@16.14.0 - react-router-config: 5.1.1_eilmositgdhro7yriqlb6666ai - react-router-dom: 5.3.4_react@16.14.0 - rtl-detect: 1.0.4 - semver: 7.3.8 - serve-handler: 6.1.5 - shelljs: 0.8.5 - terser-webpack-plugin: 5.3.6_webpack@5.75.0 - tslib: 2.4.1 - update-notifier: 5.1.0 - url-loader: 4.1.1_p5dl6emkcwslbw72e37w4ug7em - wait-on: 6.0.1 - webpack: 5.75.0 - webpack-bundle-analyzer: 4.7.0 - webpack-dev-server: 4.11.1_webpack@5.75.0 - webpack-merge: 5.8.0 - webpackbar: 5.0.2_webpack@5.75.0 - transitivePeerDependencies: - - '@docusaurus/types' - - '@parcel/css' - - '@swc/core' - - '@swc/css' - - bufferutil - - csso - - debug - - esbuild - - eslint - - lightningcss - - supports-color - - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - dev: false - - /@docusaurus/core/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: - resolution: {integrity: sha512-Vd6XOluKQqzG12fEs9prJgDtyn6DPok9vmUWDR2E6/nV5Fl9SVkhEQOBxwObjk3kQh7OY7vguFaLh0jqdApWsA==} - engines: {node: '>=16.14'} - hasBin: true - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - dependencies: - '@babel/core': 7.20.12 - '@babel/generator': 7.20.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.12 - '@babel/preset-env': 7.20.2_@babel+core@7.20.12 - '@babel/preset-react': 7.18.6_@babel+core@7.20.12 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 - '@babel/runtime': 7.20.13 - '@babel/runtime-corejs3': 7.20.13 - '@babel/traverse': 7.20.13 - '@docusaurus/cssnano-preset': 2.2.0 - '@docusaurus/logger': 2.2.0 - '@docusaurus/mdx-loader': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/react-loadable': 5.5.2_react@16.14.0 - '@docusaurus/utils': 2.2.0 - '@docusaurus/utils-common': 2.2.0 - '@docusaurus/utils-validation': 2.2.0 - '@slorber/static-site-generator-webpack-plugin': 4.0.7 - '@svgr/webpack': 6.5.1 - autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 8.3.0_la66t7xldg4uecmyawueag5wkm - babel-plugin-dynamic-import-node: 2.3.3 - boxen: 6.2.1 - chalk: 4.1.2 - chokidar: 3.5.3 - clean-css: 5.3.2 - cli-table3: 0.6.3 - combine-promises: 1.1.0 - commander: 5.1.0 - copy-webpack-plugin: 11.0.0_webpack@5.75.0 - core-js: 3.27.2 - css-loader: 6.7.3_webpack@5.75.0 - css-minimizer-webpack-plugin: 4.2.2_dpcjkp5o5ztxuvt4quwwvenemi - cssnano: 5.1.14_postcss@8.4.21 - del: 6.1.1 - detect-port: 1.5.1 - escape-html: 1.0.3 - eta: 1.14.1 - file-loader: 6.2.0_webpack@5.75.0 - fs-extra: 10.1.0 - html-minifier-terser: 6.1.0 - html-tags: 3.2.0 - html-webpack-plugin: 5.5.0_webpack@5.75.0 - import-fresh: 3.3.0 - leven: 3.1.0 - lodash: 4.17.21 - mini-css-extract-plugin: 2.7.2_webpack@5.75.0 - postcss: 8.4.21 - postcss-loader: 7.0.2_6jdsrmfenkuhhw3gx4zvjlznce - prompts: 2.4.2 - react: 16.14.0 - react-dev-utils: 12.0.1_webpack@5.75.0 + react-dev-utils: 12.0.1_3fkjkrd3audxnith3e7fo4fnxi react-dom: 16.14.0_react@16.14.0 react-helmet-async: 1.3.0_wcqkhtmu7mswc6yz4uyexck3ty react-loadable: /@docusaurus/react-loadable/5.5.2_react@16.14.0 @@ -4374,60 +3368,25 @@ packages: - webpack-cli dev: false - /@docusaurus/cssnano-preset/2.2.0: - resolution: {integrity: sha512-mAAwCo4n66TMWBH1kXnHVZsakW9VAXJzTO4yZukuL3ro4F+JtkMwKfh42EG75K/J/YIFQG5I/Bzy0UH/hFxaTg==} - engines: {node: '>=16.14'} - dependencies: - cssnano-preset-advanced: 5.3.9_postcss@8.4.21 - postcss: 8.4.21 - postcss-sort-media-queries: 4.3.0_postcss@8.4.21 - tslib: 2.5.0 - dev: false - - /@docusaurus/logger/2.2.0: - resolution: {integrity: sha512-DF3j1cA5y2nNsu/vk8AG7xwpZu6f5MKkPPMaaIbgXLnWGfm6+wkOeW7kNrxnM95YOhKUkJUophX69nGUnLsm0A==} - engines: {node: '>=16.14'} - dependencies: - chalk: 4.1.2 - tslib: 2.5.0 - dev: false - - /@docusaurus/mdx-loader/2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu: - resolution: {integrity: sha512-X2bzo3T0jW0VhUU+XdQofcEeozXOTmKQMvc8tUnWRdTnCvj4XEcBVdC3g+/jftceluiwSTNRAX4VBOJdNt18jA==} - engines: {node: '>=16.14'} - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - dependencies: - '@babel/parser': 7.20.13 - '@babel/traverse': 7.20.13 - '@docusaurus/logger': 2.2.0 - '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 - '@mdx-js/mdx': 1.6.22 - escape-html: 1.0.3 - file-loader: 6.2.0_webpack@5.75.0 - fs-extra: 10.1.0 - image-size: 1.0.2 - mdast-util-to-string: 2.0.0 - react: 16.14.0 - react-dom: 16.14.0_react@16.14.0 - remark-emoji: 2.2.0 - stringify-object: 3.3.0 - tslib: 2.5.0 - unified: 9.2.2 - unist-util-visit: 2.0.3 - url-loader: 4.1.1_p5dl6emkcwslbw72e37w4ug7em - webpack: 5.75.0 - transitivePeerDependencies: - - '@docusaurus/types' - - '@swc/core' - - esbuild - - supports-color - - uglify-js - - webpack-cli - dev: false - - /@docusaurus/mdx-loader/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/cssnano-preset/2.2.0: + resolution: {integrity: sha512-mAAwCo4n66TMWBH1kXnHVZsakW9VAXJzTO4yZukuL3ro4F+JtkMwKfh42EG75K/J/YIFQG5I/Bzy0UH/hFxaTg==} + engines: {node: '>=16.14'} + dependencies: + cssnano-preset-advanced: 5.3.9_postcss@8.4.21 + postcss: 8.4.21 + postcss-sort-media-queries: 4.3.0_postcss@8.4.21 + tslib: 2.5.0 + dev: false + + /@docusaurus/logger/2.2.0: + resolution: {integrity: sha512-DF3j1cA5y2nNsu/vk8AG7xwpZu6f5MKkPPMaaIbgXLnWGfm6+wkOeW7kNrxnM95YOhKUkJUophX69nGUnLsm0A==} + engines: {node: '>=16.14'} + dependencies: + chalk: 4.1.2 + tslib: 2.5.0 + dev: false + + /@docusaurus/mdx-loader/2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu: resolution: {integrity: sha512-X2bzo3T0jW0VhUU+XdQofcEeozXOTmKQMvc8tUnWRdTnCvj4XEcBVdC3g+/jftceluiwSTNRAX4VBOJdNt18jA==} engines: {node: '>=16.14'} peerDependencies: @@ -4437,7 +3396,7 @@ packages: '@babel/parser': 7.20.13 '@babel/traverse': 7.20.13 '@docusaurus/logger': 2.2.0 - '@docusaurus/utils': 2.2.0 + '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 '@mdx-js/mdx': 1.6.22 escape-html: 1.0.3 file-loader: 6.2.0_webpack@5.75.0 @@ -4485,14 +3444,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-blog/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-content-blog/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-0mWBinEh0a5J2+8ZJXJXbrCk1tSTNf7Nm4tYAl5h2/xx+PvH/Bnu0V+7mMljYm/1QlDYALNIIaT/JcoZQFUN3w==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/logger': 2.2.0 '@docusaurus/mdx-loader': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty @@ -4528,14 +3487,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-docs/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-content-docs/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-BOazBR0XjzsHE+2K1wpNxz5QZmrJgmm3+0Re0EVPYFGW8qndCWGNtXW/0lGKhecVPML8yyFeAmnUCIs7xM2wPw==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/logger': 2.2.0 '@docusaurus/mdx-loader': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu '@docusaurus/module-type-aliases': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty @@ -4571,14 +3530,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-pages/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-content-pages/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-+OTK3FQHk5WMvdelz8v19PbEbx+CNT6VSpx7nVOvMNs5yJCKvmqBJBQ2ZSxROxhVDYn+CZOlmyrC56NSXzHf6g==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/mdx-loader': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 @@ -4606,14 +3565,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-debug/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-debug/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-p9vOep8+7OVl6r/NREEYxf4HMAjV8JMYJ7Bos5fCFO0Wyi9AZEo0sCTliRd7R8+dlJXZEgcngSdxAUo/Q+CJow==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 fs-extra: 10.1.0 @@ -4641,14 +3600,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-analytics/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-google-analytics/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-+eZVVxVeEnV5nVQJdey9ZsfyEVMls6VyWTIj8SmX0k5EbqGvnIfET+J2pYEuKQnDIHxy+syRMoRM6AHXdHYGIg==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty '@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0 react: 16.14.0 @@ -4672,14 +3631,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-google-gtag/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-google-gtag/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-6SOgczP/dYdkqUMGTRqgxAS1eTp6MnJDAQMy8VCF1QKbWZmlkx4agHDexihqmYyCujTYHqDAhm1hV26EET54NQ==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty '@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0 react: 16.14.0 @@ -4703,14 +3662,14 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-sitemap/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/plugin-sitemap/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-0jAmyRDN/aI265CbWZNZuQpFqiZuo+5otk2MylU9iVrz/4J7gSc+ZJ9cy4EHrEsW7PV8s1w18hIEsmcA1YgkKg==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/logger': 2.2.0 '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 @@ -4739,24 +3698,24 @@ packages: - webpack-cli dev: false - /@docusaurus/preset-classic/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/preset-classic/2.2.0_nr5wtsmgk6hvlgbx546kr3h5ty: resolution: {integrity: sha512-yKIWPGNx7BT8v2wjFIWvYrS+nvN04W+UameSFf8lEiJk6pss0kL6SG2MRvyULiI3BDxH+tj6qe02ncpSPGwumg==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu - '@docusaurus/plugin-content-blog': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-docs': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-pages': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-debug': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-google-analytics': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-google-gtag': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-sitemap': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/theme-classic': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/theme-common': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu - '@docusaurus/theme-search-algolia': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu + '@docusaurus/plugin-content-blog': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-content-docs': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-content-pages': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-debug': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-google-analytics': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-google-gtag': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-sitemap': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/theme-classic': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/theme-common': 2.2.0_dkpsjem4igcxovcwixk57banyu + '@docusaurus/theme-search-algolia': 2.2.0_6tdfkjuiqi2ushsn26tmap5mka '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty react: 16.14.0 react-dom: 16.14.0_react@16.14.0 @@ -4791,20 +3750,20 @@ packages: react: 16.14.0 dev: false - /@docusaurus/theme-classic/2.2.0_wcqkhtmu7mswc6yz4uyexck3ty: + /@docusaurus/theme-classic/2.2.0_zbmq7oukv5c2ayjki2x673wjba: resolution: {integrity: sha512-kjbg/qJPwZ6H1CU/i9d4l/LcFgnuzeiGgMQlt6yPqKo0SOJIBMPuz7Rnu3r/WWbZFPi//o8acclacOzmXdUUEg==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/mdx-loader': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu '@docusaurus/module-type-aliases': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-blog': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-docs': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-pages': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/theme-common': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/plugin-content-blog': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-content-docs': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-content-pages': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/theme-common': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/theme-translations': 2.2.0 '@docusaurus/types': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 @@ -4843,7 +3802,7 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-common/2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu: + /@docusaurus/theme-common/2.2.0_dkpsjem4igcxovcwixk57banyu: resolution: {integrity: sha512-R8BnDjYoN90DCL75gP7qYQfSjyitXuP9TdzgsKDmSFPNyrdE3twtPNa2dIN+h+p/pr+PagfxwWbd6dn722A1Dw==} engines: {node: '>=16.14'} peerDependencies: @@ -4852,9 +3811,9 @@ packages: dependencies: '@docusaurus/mdx-loader': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu '@docusaurus/module-type-aliases': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-blog': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-docs': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/plugin-content-pages': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty + '@docusaurus/plugin-content-blog': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-content-docs': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/plugin-content-pages': 2.2.0_zbmq7oukv5c2ayjki2x673wjba '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 '@types/history': 4.7.11 '@types/react': 18.0.27 @@ -4885,18 +3844,18 @@ packages: - webpack-cli dev: false - /@docusaurus/theme-search-algolia/2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu: + /@docusaurus/theme-search-algolia/2.2.0_6tdfkjuiqi2ushsn26tmap5mka: resolution: {integrity: sha512-2h38B0tqlxgR2FZ9LpAkGrpDWVdXZ7vltfmTdX+4RsDs3A7khiNsmZB+x/x6sA4+G2V2CvrsPMlsYBy5X+cY1w==} engines: {node: '>=16.14'} peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - '@docsearch/react': 3.3.2_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/core': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docsearch/react': 3.3.2_vjq6z2ytns7vvzgydjkrpfhbdq + '@docusaurus/core': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/logger': 2.2.0 - '@docusaurus/plugin-content-docs': 2.2.0_wcqkhtmu7mswc6yz4uyexck3ty - '@docusaurus/theme-common': 2.2.0_qorhcdo7apn3h2yvvgaj7ae4zu + '@docusaurus/plugin-content-docs': 2.2.0_zbmq7oukv5c2ayjki2x673wjba + '@docusaurus/theme-common': 2.2.0_dkpsjem4igcxovcwixk57banyu '@docusaurus/theme-translations': 2.2.0 '@docusaurus/utils': 2.2.0_@docusaurus+types@2.2.0 '@docusaurus/utils-validation': 2.2.0_@docusaurus+types@2.2.0 @@ -4962,18 +3921,6 @@ packages: - webpack-cli dev: false - /@docusaurus/utils-common/2.2.0: - resolution: {integrity: sha512-qebnerHp+cyovdUseDQyYFvMW1n1nv61zGe5JJfoNQUnjKuApch3IVsz+/lZ9a38pId8kqehC1Ao2bW/s0ntDA==} - engines: {node: '>=16.14'} - peerDependencies: - '@docusaurus/types': '*' - peerDependenciesMeta: - '@docusaurus/types': - optional: true - dependencies: - tslib: 2.5.0 - dev: false - /@docusaurus/utils-common/2.2.0_@docusaurus+types@2.2.0: resolution: {integrity: sha512-qebnerHp+cyovdUseDQyYFvMW1n1nv61zGe5JJfoNQUnjKuApch3IVsz+/lZ9a38pId8kqehC1Ao2bW/s0ntDA==} engines: {node: '>=16.14'} @@ -4987,24 +3934,6 @@ packages: tslib: 2.5.0 dev: false - /@docusaurus/utils-validation/2.2.0: - resolution: {integrity: sha512-I1hcsG3yoCkasOL5qQAYAfnmVoLei7apugT6m4crQjmDGxq+UkiRrq55UqmDDyZlac/6ax/JC0p+usZ6W4nVyg==} - engines: {node: '>=16.14'} - dependencies: - '@docusaurus/logger': 2.2.0 - '@docusaurus/utils': 2.2.0 - joi: 17.7.0 - js-yaml: 4.1.0 - tslib: 2.5.0 - transitivePeerDependencies: - - '@docusaurus/types' - - '@swc/core' - - esbuild - - supports-color - - uglify-js - - webpack-cli - dev: false - /@docusaurus/utils-validation/2.2.0_@docusaurus+types@2.2.0: resolution: {integrity: sha512-I1hcsG3yoCkasOL5qQAYAfnmVoLei7apugT6m4crQjmDGxq+UkiRrq55UqmDDyZlac/6ax/JC0p+usZ6W4nVyg==} engines: {node: '>=16.14'} @@ -5023,38 +3952,6 @@ packages: - webpack-cli dev: false - /@docusaurus/utils/2.2.0: - resolution: {integrity: sha512-oNk3cjvx7Tt1Lgh/aeZAmFpGV2pDr5nHKrBVx6hTkzGhrnMuQqLt6UPlQjdYQ3QHXwyF/ZtZMO1D5Pfi0lu7SA==} - engines: {node: '>=16.14'} - peerDependencies: - '@docusaurus/types': '*' - peerDependenciesMeta: - '@docusaurus/types': - optional: true - dependencies: - '@docusaurus/logger': 2.2.0 - '@svgr/webpack': 6.5.1 - file-loader: 6.2.0_webpack@5.75.0 - fs-extra: 10.1.0 - github-slugger: 1.5.0 - globby: 11.1.0 - gray-matter: 4.0.3 - js-yaml: 4.1.0 - lodash: 4.17.21 - micromatch: 4.0.5 - resolve-pathname: 3.0.0 - shelljs: 0.8.5 - tslib: 2.5.0 - url-loader: 4.1.1_p5dl6emkcwslbw72e37w4ug7em - webpack: 5.75.0 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - supports-color - - uglify-js - - webpack-cli - dev: false - /@docusaurus/utils/2.2.0_@docusaurus+types@2.2.0: resolution: {integrity: sha512-oNk3cjvx7Tt1Lgh/aeZAmFpGV2pDr5nHKrBVx6hTkzGhrnMuQqLt6UPlQjdYQ3QHXwyF/ZtZMO1D5Pfi0lu7SA==} engines: {node: '>=16.14'} @@ -5102,17 +3999,20 @@ packages: /@emotion/unitless/0.7.5: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - /@esbuild-plugins/node-globals-polyfill/0.2.3: + /@esbuild-plugins/node-globals-polyfill/0.2.3_esbuild@0.16.17: resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==} peerDependencies: esbuild: '*' + dependencies: + esbuild: 0.16.17 dev: true - /@esbuild-plugins/node-modules-polyfill/0.2.2: + /@esbuild-plugins/node-modules-polyfill/0.2.2_esbuild@0.16.17: resolution: {integrity: sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==} peerDependencies: esbuild: '*' dependencies: + esbuild: 0.16.17 escape-string-regexp: 4.0.0 rollup-plugin-node-polyfills: 0.2.1 dev: true @@ -5356,7 +4256,6 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true /@exodus/schemasafe/1.0.0-rc.9: resolution: {integrity: sha512-dGGHpb61hLwifAu7sotuHFDBw6GTdpG8aKC0fsK17EuTzMRvUrH7lEAr6LTJ+sx3AZYed9yZ77rltVDHyg2hRg==} @@ -5372,7 +4271,7 @@ packages: resolution: {integrity: sha512-wI3fpfDT0t7p8E6dA2eTECzzOd+bZsZCJ2Hcv+Onn2b7ZwK3RwD27uW2QDaMtQhAfWQQP+WNK7nKf0twLsBf9w==} dev: false - /@formatjs/cli/5.1.12: + /@formatjs/cli/5.1.12_@vue+compiler-sfc@3.2.47: resolution: {integrity: sha512-JibYDuD2Fxx6WmrlYXVa3lxZ43vy3f30ZqmgwowKJx7I0nWng3td/h9X8Ra7VZC2bPkH5JwCL2l90OkfK8pUjQ==} engines: {node: '>= 16.5.0'} hasBin: true @@ -5381,6 +4280,8 @@ packages: peerDependenciesMeta: '@vue/compiler-sfc': optional: true + dependencies: + '@vue/compiler-sfc': 3.2.47 dev: true /@formatjs/ecma402-abstract/1.14.3: @@ -5443,7 +4344,7 @@ packages: tslib: 2.4.1 dev: true - /@formatjs/intl/2.6.3: + /@formatjs/intl/2.6.3_typescript@4.9.4: resolution: {integrity: sha512-JaVZk14U/GypVfCZPevQ0KdruFkq16FXx7g398/Dm+YEx/W7sRiftbZeDy4wQ7WGryb45e763XycxD9o/vm9BA==} peerDependencies: typescript: ^4.7 @@ -5458,6 +4359,7 @@ packages: '@formatjs/intl-listformat': 7.1.7 intl-messageformat: 10.2.5 tslib: 2.5.0 + typescript: 4.9.4 dev: false /@formatjs/ts-transformer/3.11.5_ts-jest@28.0.5: @@ -5473,7 +4375,7 @@ packages: '@types/node': 17.0.45 chalk: 4.1.2 json-stable-stringify: 1.0.2 - ts-jest: 28.0.5_gcleckb5zcuhbbyyhlubvkkx2y + ts-jest: 28.0.5_bbmp2b2hehqx5oucsnbpqhnia4 tslib: 2.5.0 typescript: 4.9.4 dev: true @@ -5489,7 +4391,7 @@ packages: yargs: 16.0.3 dependencies: '@graphql-tools/load': 6.2.4_graphql@15.3.0 - graphql-config: 3.0.3_graphql@16.6.0 + graphql-config: 3.0.3_fpwzejcmfqpdneobdih363qpvq tslib: 2.0.2 yargs: 16.0.3 transitivePeerDependencies: @@ -5503,7 +4405,7 @@ packages: yargs: 16.0.3 dependencies: '@graphql-tools/load': 6.2.4_graphql@16.6.0 - graphql-config: 3.0.3_graphql@16.6.0 + graphql-config: 3.0.3_fpwzejcmfqpdneobdih363qpvq tslib: 2.0.2 yargs: 16.0.3 transitivePeerDependencies: @@ -5548,7 +4450,7 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/cli/2.16.4_graphql@16.6.0: + /@graphql-codegen/cli/2.16.4_iyb5ghflus4uu7lyib6dtiyrwe: resolution: {integrity: sha512-MBbdzIIaNZ8BTlFXG00toxU5rIV7Ltf2myaze88HpI5YPVfVJKlfccE6l0/Gv+nLv88CIM/PZrnFLdVtlBmrZw==} hasBin: true peerDependencies: @@ -5561,24 +4463,24 @@ packages: '@graphql-codegen/core': 2.6.8_graphql@16.6.0 '@graphql-codegen/plugin-helpers': 3.1.2_graphql@16.6.0 '@graphql-tools/apollo-engine-loader': 7.3.22_graphql@16.6.0 - '@graphql-tools/code-file-loader': 7.3.16_graphql@16.6.0 - '@graphql-tools/git-loader': 7.2.16_graphql@16.6.0 - '@graphql-tools/github-loader': 7.3.23_graphql@16.6.0 + '@graphql-tools/code-file-loader': 7.3.16_hooseksvfyhf37tjwfseq7c3kq + '@graphql-tools/git-loader': 7.2.16_hooseksvfyhf37tjwfseq7c3kq + '@graphql-tools/github-loader': 7.3.23_hooseksvfyhf37tjwfseq7c3kq '@graphql-tools/graphql-file-loader': 7.5.14_graphql@16.6.0 '@graphql-tools/json-file-loader': 7.4.15_graphql@16.6.0 '@graphql-tools/load': 7.8.0_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.54_graphql@16.6.0 - '@graphql-tools/url-loader': 7.17.3_graphql@16.6.0 + '@graphql-tools/prisma-loader': 7.2.54_fpwzejcmfqpdneobdih363qpvq + '@graphql-tools/url-loader': 7.17.3_fpwzejcmfqpdneobdih363qpvq '@graphql-tools/utils': 9.1.4_graphql@16.6.0 '@whatwg-node/fetch': 0.6.2 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.1.0 - cosmiconfig-typescript-loader: 4.3.0_cosmiconfig@7.1.0 + cosmiconfig-typescript-loader: 4.3.0_77gxm4oqg37k6fnezs7ywoo7j4 debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.6.0 - graphql-config: 4.4.0_ul246jct24iapssnbw5f5pr2vu + graphql-config: 4.4.0_hyn2ajzzpdlr45h6wdufle5n3e inquirer: 8.2.5 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -5587,6 +4489,7 @@ packages: shell-quote: 1.7.4 string-env-interpolation: 1.0.1 ts-log: 2.2.5 + ts-node: 10.9.1_yvj57biz6xmq5aanirs5pwk65a tslib: 2.4.1 yaml: 1.10.2 yargs: 17.6.2 @@ -5723,7 +4626,7 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-graphql-request/4.5.8_graphql@16.6.0: + /@graphql-codegen/typescript-graphql-request/4.5.8_f45c35xnr66et7kv43kezet7ie: resolution: {integrity: sha512-XsuAA35Ou03LsklNgnIWXZ5HOHsJ5w1dBuDKtvqM9rD0cAI8x0f4TY0n6O1EraSBSvyHLP3npb1lOTPZzG2TjA==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -5734,6 +4637,8 @@ packages: '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0 auto-bind: 4.0.0 graphql: 16.6.0 + graphql-request: 5.1.0_graphql@16.6.0 + graphql-tag: 2.12.6_graphql@16.6.0 tslib: 2.4.1 transitivePeerDependencies: - encoding @@ -5863,12 +4768,12 @@ packages: tslib: 2.5.0 value-or-promise: 1.0.12 - /@graphql-tools/code-file-loader/7.3.16_graphql@16.6.0: + /@graphql-tools/code-file-loader/7.3.16_hooseksvfyhf37tjwfseq7c3kq: resolution: {integrity: sha512-109UFvQjZEntHwjPaHpWvgUudHenGngbXvSImabPc2fdrtgja5KC0h7thCg379Yw6IORHGrF2XbJwS1hAGPPWw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.4.3_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.4.3_hooseksvfyhf37tjwfseq7c3kq '@graphql-tools/utils': 9.1.4_graphql@16.6.0 globby: 11.1.0 graphql: 16.6.0 @@ -5926,7 +4831,7 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-http/0.1.1_graphql@16.6.0: + /@graphql-tools/executor-http/0.1.1_fpwzejcmfqpdneobdih363qpvq: resolution: {integrity: sha512-bFE6StI7CJEIYGRkAnTYxutSV4OtC1c4MQU3nStOYZZO7KmzIgEQZ4ygPSPrRb+jtRsMCBEqPqlYOD4Rq02aMw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -5937,7 +4842,7 @@ packages: dset: 3.1.2 extract-files: 11.0.0 graphql: 16.6.0 - meros: 1.2.1 + meros: 1.2.1_@types+node@18.11.19 tslib: 2.5.0 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -5973,12 +4878,12 @@ packages: tslib: 2.5.0 value-or-promise: 1.0.12 - /@graphql-tools/git-loader/7.2.16_graphql@16.6.0: + /@graphql-tools/git-loader/7.2.16_hooseksvfyhf37tjwfseq7c3kq: resolution: {integrity: sha512-8DsxYfSouhgKPOBcc7MzuOTM4M/j2UNFn2ehXD0MX9q41t3dKffufJZKsKxE6VyyCUoVYdlRFhUWEyOHPVdcfQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.4.3_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.4.3_hooseksvfyhf37tjwfseq7c3kq '@graphql-tools/utils': 9.1.4_graphql@16.6.0 graphql: 16.6.0 is-glob: 4.0.3 @@ -5990,13 +4895,13 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader/7.3.23_graphql@16.6.0: + /@graphql-tools/github-loader/7.3.23_hooseksvfyhf37tjwfseq7c3kq: resolution: {integrity: sha512-oYTZCvW520KNVVonjucDSMhabCFnHwtM1rJbyUkA1JFyzpmmNAAyNMWOOPcU/Q9rTESrsH+Hbja0mfpjpnBKLA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/graphql-tag-pluck': 7.4.3_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.4.3_hooseksvfyhf37tjwfseq7c3kq '@graphql-tools/utils': 9.1.4_graphql@16.6.0 '@whatwg-node/fetch': 0.6.2 graphql: 16.6.0 @@ -6031,13 +4936,13 @@ packages: unixify: 1.0.0 dev: true - /@graphql-tools/graphql-tag-pluck/7.4.3_graphql@16.6.0: + /@graphql-tools/graphql-tag-pluck/7.4.3_hooseksvfyhf37tjwfseq7c3kq: resolution: {integrity: sha512-w+nrJVQw+NTuaZNQG5AwSh4Qe+urP/s4rUz5s1T007rDnv1kvkiX+XHOCnIfJzXOTuvFmG4GGYw/x0CuSRaGZQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@babel/parser': 7.20.13 - '@babel/plugin-syntax-import-assertions': 7.20.0 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12 '@babel/traverse': 7.20.13 '@babel/types': 7.20.7 '@graphql-tools/utils': 9.1.4_graphql@16.6.0 @@ -6214,12 +5119,12 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/prisma-loader/7.2.54_graphql@16.6.0: + /@graphql-tools/prisma-loader/7.2.54_fpwzejcmfqpdneobdih363qpvq: resolution: {integrity: sha512-OoH0JdMQ49IQwiZ8EKOE6sZX4oN5EQwToFnR+ptN5u4ukb4ignyZTrgePFmqOGgj7zyPzisxsWIUXD9szFXXNA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 7.17.3_graphql@16.6.0 + '@graphql-tools/url-loader': 7.17.3_fpwzejcmfqpdneobdih363qpvq '@graphql-tools/utils': 9.1.4_graphql@16.6.0 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.34 @@ -6335,7 +5240,7 @@ packages: value-or-promise: 1.0.12 dev: false - /@graphql-tools/url-loader/6.10.1_graphql@16.6.0: + /@graphql-tools/url-loader/6.10.1_fpwzejcmfqpdneobdih363qpvq: resolution: {integrity: sha512-DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 @@ -6354,7 +5259,7 @@ packages: is-promise: 4.0.0 isomorphic-ws: 4.0.1_ws@7.4.5 lodash: 4.17.21 - meros: 1.1.4 + meros: 1.1.4_@types+node@18.11.19 subscriptions-transport-ws: 0.9.19_graphql@16.6.0 sync-fetch: 0.3.0 tslib: 2.2.0 @@ -6367,7 +5272,7 @@ packages: - utf-8-validate dev: true - /@graphql-tools/url-loader/7.17.3_graphql@16.6.0: + /@graphql-tools/url-loader/7.17.3_fpwzejcmfqpdneobdih363qpvq: resolution: {integrity: sha512-NY/NQpuf29gjt19XExjRyTj3z44Ohc2OwQZIR/RqHYn+cbdMeXIgJqV5vbPOCN8Umjmm5yVb7kP6oKNGjyeBvw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -6375,7 +5280,7 @@ packages: '@ardatan/sync-fetch': 0.0.1 '@graphql-tools/delegate': 9.0.22_graphql@16.6.0 '@graphql-tools/executor-graphql-ws': 0.0.7_graphql@16.6.0 - '@graphql-tools/executor-http': 0.1.1_graphql@16.6.0 + '@graphql-tools/executor-http': 0.1.1_fpwzejcmfqpdneobdih363qpvq '@graphql-tools/executor-legacy-ws': 0.0.6_graphql@16.6.0 '@graphql-tools/utils': 9.1.4_graphql@16.6.0 '@graphql-tools/wrap': 9.3.1_graphql@16.6.0 @@ -6590,10 +5495,12 @@ packages: minimatch: 3.1.2 transitivePeerDependencies: - supports-color - dev: true /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + + /@iarna/toml/2.2.5: + resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} dev: true /@iconify-icons/ion/1.2.7: @@ -6655,7 +5562,7 @@ packages: slash: 3.0.0 dev: true - /@jest/core/28.1.3: + /@jest/core/28.1.3_ts-node@10.9.1: resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -6676,7 +5583,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.1.3 - jest-config: 28.1.3_@types+node@18.11.19 + jest-config: 28.1.3_qnch7tm6w36cvfoqlc3v7gbphu jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -6998,7 +5905,7 @@ packages: chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript/0.2.1_vite@4.1.1: + /@joshwooding/vite-plugin-react-docgen-typescript/0.2.1_alkqtss2g4kbh2fmzjy2yq5cai: resolution: {integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==} peerDependencies: typescript: '>= 4.3.x' @@ -7010,8 +5917,9 @@ packages: glob: 7.2.3 glob-promise: 4.2.2_glob@7.2.3 magic-string: 0.27.0 - react-docgen-typescript: 2.2.2 - vite: 4.1.1 + react-docgen-typescript: 2.2.2_typescript@4.9.4 + typescript: 4.9.4 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy dev: true /@jridgewell/gen-mapping/0.1.1: @@ -7225,7 +6133,6 @@ packages: - '@swc-node/register' - '@swc/core' - debug - dev: false /@nrwl/cli/15.6.3_pys4s3dn6tgpk2ashdi5msvbey: resolution: {integrity: sha512-K4E0spofThZXMnhA6R8hkUTdfqmwSnUE2+DlD5Y3jqsvKTAgwF5U41IFkEouFZCf+dWjy0RA20bWoX48EVFtmQ==} @@ -7237,7 +6144,7 @@ packages: - debug dev: true - /@nrwl/cypress/15.5.3: + /@nrwl/cypress/15.5.3_nx@15.6.3+typescript@4.9.4: resolution: {integrity: sha512-qOp0MfD8ot+QGkkBV8tWM3x2repSFmoo6Jn4wSKuQ3Md6UeoCdchKrm5oT8+FRjdaKLydFgA3wZcbDU+m6mQlA==} peerDependencies: cypress: '>= 3 < 13' @@ -7245,10 +6152,10 @@ packages: cypress: optional: true dependencies: - '@nrwl/devkit': 15.5.3 - '@nrwl/linter': 15.5.3 - '@nrwl/workspace': 15.5.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/workspace': 15.5.3_typescript@4.9.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 dotenv: 10.0.0 semver: 7.3.4 transitivePeerDependencies: @@ -7261,49 +6168,36 @@ packages: - typescript dev: true - /@nrwl/devkit/15.5.3: + /@nrwl/devkit/15.5.3_nx@15.5.3+typescript@4.9.4: resolution: {integrity: sha512-GGNLLGXDGWflrpaLimnE6hChfZfq3+XWZ0LJWL0IuCnchngPbNzuyh8S8KPgNKKgq4Nv0hglWefIwMg2UhHysA==} peerDependencies: nx: '>= 14 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 ejs: 3.1.8 ignore: 5.2.4 + nx: 15.5.3 semver: 7.3.4 tslib: 2.5.0 transitivePeerDependencies: - typescript dev: true - /@nrwl/devkit/15.5.3_nx@15.5.3: + /@nrwl/devkit/15.5.3_nx@15.6.3+typescript@4.9.4: resolution: {integrity: sha512-GGNLLGXDGWflrpaLimnE6hChfZfq3+XWZ0LJWL0IuCnchngPbNzuyh8S8KPgNKKgq4Nv0hglWefIwMg2UhHysA==} peerDependencies: nx: '>= 14 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 ejs: 3.1.8 ignore: 5.2.4 - nx: 15.5.3 + nx: 15.6.3 semver: 7.3.4 tslib: 2.5.0 transitivePeerDependencies: - typescript dev: true - /@nrwl/devkit/15.6.3: - resolution: {integrity: sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ==} - peerDependencies: - nx: '>= 14 <= 16' - dependencies: - '@phenomnomnominal/tsquery': 4.1.1 - ejs: 3.1.8 - ignore: 5.2.4 - semver: 7.3.4 - tslib: 2.4.1 - transitivePeerDependencies: - - typescript - dev: false - /@nrwl/devkit/15.6.3_nx@15.5.3+typescript@4.8.4: resolution: {integrity: sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ==} peerDependencies: @@ -7319,37 +6213,37 @@ packages: - typescript dev: true - /@nrwl/devkit/15.6.3_nx@15.6.3: + /@nrwl/devkit/15.6.3_nx@15.6.3+typescript@4.8.4: resolution: {integrity: sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ==} peerDependencies: nx: '>= 14 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 ejs: 3.1.8 ignore: 5.2.4 - nx: 15.6.3 + nx: 15.6.3_pys4s3dn6tgpk2ashdi5msvbey semver: 7.3.4 tslib: 2.4.1 transitivePeerDependencies: - typescript - dev: false + dev: true - /@nrwl/devkit/15.6.3_nx@15.6.3+typescript@4.8.4: + /@nrwl/devkit/15.6.3_nx@15.6.3+typescript@4.9.4: resolution: {integrity: sha512-/JDvdzNxUM+C1PCZPCrvmFx+OfywqZdOq1GS9QR8C0VctTLG4D/SGSFD88O1SAdcbH/f1mMiBGfEYZYd23fghQ==} peerDependencies: nx: '>= 14 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 ejs: 3.1.8 ignore: 5.2.4 - nx: 15.6.3_pys4s3dn6tgpk2ashdi5msvbey + nx: 15.6.3 semver: 7.3.4 tslib: 2.4.1 transitivePeerDependencies: - typescript - dev: true + dev: false - /@nrwl/eslint-plugin-nx/15.6.3_34bs5meozamxb5krcvh34ds6ru: + /@nrwl/eslint-plugin-nx/15.6.3_b43vaxtk5627aaubjepaxoriuq: resolution: {integrity: sha512-UCwyMKlU3shoccNHSeYqF/F9FPm3vMx827Pu2L+Kmkbuy8MhpA20BBpNm/ISXD4w37BBrXgr5e8ATZPuVZTl7A==} peerDependencies: '@typescript-eslint/parser': ^5.29.0 @@ -7359,11 +6253,11 @@ packages: optional: true dependencies: '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@typescript-eslint/parser': 5.51.0_typescript@4.8.4 - '@typescript-eslint/utils': 5.51.0_typescript@4.8.4 + '@typescript-eslint/parser': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki + '@typescript-eslint/utils': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki chalk: 4.1.2 confusing-browser-globals: 1.0.11 - eslint-config-prettier: 8.6.0 + eslint-config-prettier: 8.6.0_eslint@8.4.1 semver: 7.3.4 transitivePeerDependencies: - eslint @@ -7372,17 +6266,17 @@ packages: - typescript dev: true - /@nrwl/jest/15.5.3: + /@nrwl/jest/15.5.3_tzgfsir4xtotwnrnwg52thrthi: resolution: {integrity: sha512-BSs4ZQJtRjQ+OAPHdfeemoAiYsGL3Zuq2Ezj8XwGp50SkgVLUBZdXg2Ld1ARjTh/d3pMg+Mf+yKfjoYqFzKx+A==} dependencies: '@jest/reporters': 28.1.1 '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.5.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 chalk: 4.1.2 dotenv: 10.0.0 identity-obj-proxy: 3.0.0 - jest-config: 28.1.1 + jest-config: 28.1.1_@types+node@18.11.19 jest-resolve: 28.1.1 jest-util: 28.1.1 resolve.exports: 1.1.0 @@ -7420,12 +6314,12 @@ packages: - typescript dev: true - /@nrwl/js/15.5.3: + /@nrwl/js/15.5.3_nx@15.6.3+typescript@4.9.4: resolution: {integrity: sha512-wOkupYzuCzzYOacDL4fJyi6yS9x56SNLPKzMIOtVgWNu7K5WFxwhQ3Pkbc2VgdjIpif5pU7cxYLfyZLNYaZSbw==} dependencies: - '@nrwl/devkit': 15.5.3 - '@nrwl/linter': 15.5.3 - '@nrwl/workspace': 15.5.3 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/workspace': 15.5.3_typescript@4.9.4 chalk: 4.1.2 fast-glob: 3.2.7 fs-extra: 11.1.0 @@ -7445,7 +6339,7 @@ packages: - typescript dev: true - /@nrwl/js/15.6.3: + /@nrwl/js/15.6.3_hn57nx3bojphcgc2xhjss4eaam: resolution: {integrity: sha512-OkjpbNAL6732jGPR7Lz/6K6AScqjxMGuZCHmMqmlK0NpSRcOtYJpGsn4XZzPRsWteqXCvY/l3efceiL6eNPmRg==} dependencies: '@babel/core': 7.20.12 @@ -7455,9 +6349,9 @@ packages: '@babel/preset-env': 7.20.2_@babel+core@7.20.12 '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 '@babel/runtime': 7.20.13 - '@nrwl/devkit': 15.6.3 - '@nrwl/linter': 15.6.3 - '@nrwl/workspace': 15.6.3 + '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 + '@nrwl/linter': 15.6.3_5kk75456nkesxysbrk7vosr5mm + '@nrwl/workspace': 15.6.3_d7q3wj7l2qyuu7pf3kcimjzqtu babel-plugin-const-enum: 1.2.0_@babel+core@7.20.12 babel-plugin-macros: 2.8.0 babel-plugin-transform-typescript-metadata: 0.3.2 @@ -7479,9 +6373,9 @@ packages: - prettier - supports-color - typescript - dev: false + dev: true - /@nrwl/js/15.6.3_hrbpodth77onzljscxa57aghky: + /@nrwl/js/15.6.3_ow47vzwgogjfxbjywiwfvlnlle: resolution: {integrity: sha512-OkjpbNAL6732jGPR7Lz/6K6AScqjxMGuZCHmMqmlK0NpSRcOtYJpGsn4XZzPRsWteqXCvY/l3efceiL6eNPmRg==} dependencies: '@babel/core': 7.20.12 @@ -7491,9 +6385,9 @@ packages: '@babel/preset-env': 7.20.2_@babel+core@7.20.12 '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 '@babel/runtime': 7.20.13 - '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@nrwl/linter': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@nrwl/workspace': 15.6.3_s2mbfl3bxjfejsrn4g2lrd23by + '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.6.3_ozrzltco6pzvkr6becjwctxgmm + '@nrwl/workspace': 15.6.3_vqznkjzcjhq7lt5pko43fexwcu babel-plugin-const-enum: 1.2.0_@babel+core@7.20.12 babel-plugin-macros: 2.8.0 babel-plugin-transform-typescript-metadata: 0.3.2 @@ -7515,9 +6409,9 @@ packages: - prettier - supports-color - typescript - dev: true + dev: false - /@nrwl/linter/15.5.3: + /@nrwl/linter/15.5.3_nx@15.5.3+typescript@4.9.4: resolution: {integrity: sha512-ZeUtLOT0olORBL4FpEXmJoaiSKq4VIffW/vmCbosRIuHZqL4Cye5uHyQ6/KJXjD44Z+P6QCkyfr0etcy3lhSkg==} peerDependencies: eslint: ^8.0.0 @@ -7525,8 +6419,8 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.5.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.5.3_nx@15.5.3+typescript@4.9.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 tmp: 0.2.1 tslib: 2.5.0 transitivePeerDependencies: @@ -7534,7 +6428,7 @@ packages: - typescript dev: true - /@nrwl/linter/15.5.3_nx@15.5.3: + /@nrwl/linter/15.5.3_nx@15.6.3+typescript@4.9.4: resolution: {integrity: sha512-ZeUtLOT0olORBL4FpEXmJoaiSKq4VIffW/vmCbosRIuHZqL4Cye5uHyQ6/KJXjD44Z+P6QCkyfr0etcy3lhSkg==} peerDependencies: eslint: ^8.0.0 @@ -7542,8 +6436,8 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.5.3_nx@15.5.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 tmp: 0.2.1 tslib: 2.5.0 transitivePeerDependencies: @@ -7551,24 +6445,7 @@ packages: - typescript dev: true - /@nrwl/linter/15.6.3: - resolution: {integrity: sha512-efGOduHbUa/L6MuJLb2SoDwi4hEKpz6lM1X/Yg36dYDjLuJdpLC23K4WwEOQeZL6jkcUerfY65W8NMPinAHWKg==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true - dependencies: - '@nrwl/devkit': 15.6.3 - '@phenomnomnominal/tsquery': 4.1.1 - tmp: 0.2.1 - tslib: 2.4.1 - transitivePeerDependencies: - - nx - - typescript - dev: false - - /@nrwl/linter/15.6.3_nx@15.5.3+typescript@4.8.4: + /@nrwl/linter/15.6.3_5kk75456nkesxysbrk7vosr5mm: resolution: {integrity: sha512-efGOduHbUa/L6MuJLb2SoDwi4hEKpz6lM1X/Yg36dYDjLuJdpLC23K4WwEOQeZL6jkcUerfY65W8NMPinAHWKg==} peerDependencies: eslint: ^8.0.0 @@ -7578,6 +6455,7 @@ packages: dependencies: '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + eslint: 8.4.1 tmp: 0.2.1 tslib: 2.4.1 transitivePeerDependencies: @@ -7585,7 +6463,7 @@ packages: - typescript dev: true - /@nrwl/linter/15.6.3_nx@15.6.3: + /@nrwl/linter/15.6.3_ozrzltco6pzvkr6becjwctxgmm: resolution: {integrity: sha512-efGOduHbUa/L6MuJLb2SoDwi4hEKpz6lM1X/Yg36dYDjLuJdpLC23K4WwEOQeZL6jkcUerfY65W8NMPinAHWKg==} peerDependencies: eslint: ^8.0.0 @@ -7593,8 +6471,9 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.6.3_nx@15.6.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.9.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 + eslint: 8.4.1 tmp: 0.2.1 tslib: 2.4.1 transitivePeerDependencies: @@ -7602,7 +6481,7 @@ packages: - typescript dev: false - /@nrwl/linter/15.6.3_nx@15.6.3+typescript@4.8.4: + /@nrwl/linter/15.6.3_xh25pkb2g4ite5moakxgthseyi: resolution: {integrity: sha512-efGOduHbUa/L6MuJLb2SoDwi4hEKpz6lM1X/Yg36dYDjLuJdpLC23K4WwEOQeZL6jkcUerfY65W8NMPinAHWKg==} peerDependencies: eslint: ^8.0.0 @@ -7612,6 +6491,7 @@ packages: dependencies: '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.8.4 '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + eslint: 8.4.1 tmp: 0.2.1 tslib: 2.4.1 transitivePeerDependencies: @@ -7619,15 +6499,15 @@ packages: - typescript dev: true - /@nrwl/node/15.6.3_nqirjs75d77dyrubmvhigngaky: + /@nrwl/node/15.6.3_ycay2gjsvalobgybzvoma3w3xa: resolution: {integrity: sha512-4J98xhOn6y5FtY2wWrisJr0UEWyAWNidQb1YDJvk98XUyMXlrBxisGFndtZHpbyZHlCt0F3LXvOszDNxBpjuWA==} dependencies: '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 '@nrwl/jest': 15.6.3_hnvut7mdfhqf2wtqnzwlbw5agu - '@nrwl/js': 15.6.3_hrbpodth77onzljscxa57aghky - '@nrwl/linter': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@nrwl/webpack': 15.6.3_ehwmq74sl7rjq32zzn7unz6u4e - '@nrwl/workspace': 15.6.3_s2mbfl3bxjfejsrn4g2lrd23by + '@nrwl/js': 15.6.3_hn57nx3bojphcgc2xhjss4eaam + '@nrwl/linter': 15.6.3_5kk75456nkesxysbrk7vosr5mm + '@nrwl/webpack': 15.6.3_jzi4dwy5r5pijpquh3uvyme64q + '@nrwl/workspace': 15.6.3_d7q3wj7l2qyuu7pf3kcimjzqtu tslib: 2.4.1 transitivePeerDependencies: - '@babel/core' @@ -7674,13 +6554,13 @@ packages: - debug dev: false - /@nrwl/nx-plugin/15.6.3_nqirjs75d77dyrubmvhigngaky: + /@nrwl/nx-plugin/15.6.3_f2xx6hghbsewkilfp2ca3emkmy: resolution: {integrity: sha512-pkm5nGbYM/hhc+Xuv3diYo3O/AHRtnQPcI19xa+ZWHCajIgEWB1mftdyYWrk4m08b3ySh+MSZPk3qh8LHM03JQ==} dependencies: '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 '@nrwl/jest': 15.6.3_hnvut7mdfhqf2wtqnzwlbw5agu - '@nrwl/js': 15.6.3_hrbpodth77onzljscxa57aghky - '@nrwl/linter': 15.6.3_nx@15.5.3+typescript@4.8.4 + '@nrwl/js': 15.6.3_hn57nx3bojphcgc2xhjss4eaam + '@nrwl/linter': 15.6.3_5kk75456nkesxysbrk7vosr5mm dotenv: 10.0.0 fs-extra: 11.1.0 tslib: 2.4.1 @@ -7698,13 +6578,13 @@ packages: - typescript dev: true - /@nrwl/react/15.5.3: + /@nrwl/react/15.5.3_nx@15.6.3+typescript@4.9.4: resolution: {integrity: sha512-BK4wa1fljdaCM4rNLCKyUcnkLdwrRDZli3elo75IEBk78Qo/95yCvosAaowcTZnTjugiXyTOvTeVXTvFV/9vzg==} dependencies: - '@nrwl/devkit': 15.5.3 - '@nrwl/linter': 15.5.3 - '@nrwl/workspace': 15.5.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/workspace': 15.5.3_typescript@4.9.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 chalk: 4.1.2 minimatch: 3.0.5 semver: 7.3.4 @@ -7718,13 +6598,13 @@ packages: - typescript dev: true - /@nrwl/react/15.6.3: + /@nrwl/react/15.6.3_ow47vzwgogjfxbjywiwfvlnlle: resolution: {integrity: sha512-WpINxLNsX4Wq9O/stsJIXDGE8GdatyyeeKI0Y9GjVdMPfdPq3qTifnCsUrb97D0WjTEceyPGUzGsx0GmhPB3Dg==} dependencies: - '@nrwl/devkit': 15.6.3 - '@nrwl/linter': 15.6.3 - '@nrwl/workspace': 15.6.3 - '@phenomnomnominal/tsquery': 4.1.1 + '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.6.3_ozrzltco6pzvkr6becjwctxgmm + '@nrwl/workspace': 15.6.3_vqznkjzcjhq7lt5pko43fexwcu + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.4 chalk: 4.1.2 minimatch: 3.0.5 transitivePeerDependencies: @@ -7737,12 +6617,12 @@ packages: - typescript dev: false - /@nrwl/rollup/15.5.3_@babel+core@7.20.12: + /@nrwl/rollup/15.5.3_znbrfkzxk4rvoszlnofgmcmkoq: resolution: {integrity: sha512-fARI4ecPQkfwOS3nYa9F1ybmIr4zwig32OBOdBUgtNP7pi3jD17mRiRveJ7aiBFZhRwhZWxl8wku1OH9qhu84w==} dependencies: - '@nrwl/devkit': 15.5.3 - '@nrwl/js': 15.5.3 - '@nrwl/workspace': 15.5.3 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/js': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/workspace': 15.5.3_typescript@4.9.4 '@rollup/plugin-babel': 5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm '@rollup/plugin-commonjs': 20.0.0_rollup@2.79.1 '@rollup/plugin-image': 2.1.1_rollup@2.79.1 @@ -7758,7 +6638,7 @@ packages: rollup-plugin-copy: 3.4.0 rollup-plugin-peer-deps-external: 2.2.4_rollup@2.79.1 rollup-plugin-postcss: 4.0.2_postcss@8.4.21 - rollup-plugin-typescript2: 0.34.1_rollup@2.79.1 + rollup-plugin-typescript2: 0.34.1_ntuob3xud5wukob6phfmz2mbyy rxjs: 6.6.7 tslib: 2.5.0 transitivePeerDependencies: @@ -7805,7 +6685,6 @@ packages: - '@swc-node/register' - '@swc/core' - debug - dev: false /@nrwl/tao/15.6.3_pys4s3dn6tgpk2ashdi5msvbey: resolution: {integrity: sha512-bDZbPIbU5Mf2BvX0q8GjPxrm1WkYyfW+gp7mLuuJth2sEpZiCr47mSwuGko/y4CKXvIX46VQcAS0pKQMKugXsg==} @@ -7818,7 +6697,7 @@ packages: - debug dev: true - /@nrwl/web/15.5.3: + /@nrwl/web/15.5.3_tzgfsir4xtotwnrnwg52thrthi: resolution: {integrity: sha512-puZRZL5wEVsxWqnEo0LTC1mDQZU/XIm98qferhP4n0XVU3bghjOj/4w0Pea2E7yge/DQ1JviydKX6+jGoAP+Dg==} dependencies: '@babel/core': 7.20.12 @@ -7828,13 +6707,13 @@ packages: '@babel/preset-env': 7.20.2_@babel+core@7.20.12 '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 '@babel/runtime': 7.20.13 - '@nrwl/cypress': 15.5.3 - '@nrwl/devkit': 15.5.3 - '@nrwl/jest': 15.5.3 - '@nrwl/js': 15.5.3 - '@nrwl/linter': 15.5.3 - '@nrwl/rollup': 15.5.3_@babel+core@7.20.12 - '@nrwl/workspace': 15.5.3 + '@nrwl/cypress': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/jest': 15.5.3_tzgfsir4xtotwnrnwg52thrthi + '@nrwl/js': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/rollup': 15.5.3_znbrfkzxk4rvoszlnofgmcmkoq + '@nrwl/workspace': 15.5.3_typescript@4.9.4 babel-plugin-const-enum: 1.2.0_@babel+core@7.20.12 babel-plugin-macros: 2.8.0 babel-plugin-transform-typescript-metadata: 0.3.2 @@ -7859,14 +6738,14 @@ packages: - typescript dev: true - /@nrwl/webpack/15.5.3: + /@nrwl/webpack/15.5.3_rowbqdi4blsg66sab7wpyos65i: resolution: {integrity: sha512-B4uvNPvKWNljHVa1JXnLPbpgIgvXfiWDqkC0pJ1/ceppzmtI9QhzzYKFVjytOFTj419HzJtr5TfbsLPEypD97g==} dependencies: - '@nrwl/devkit': 15.5.3 - '@nrwl/js': 15.5.3 - '@nrwl/workspace': 15.5.3 + '@nrwl/devkit': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/js': 15.5.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/workspace': 15.5.3_typescript@4.9.4 autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 9.1.2_webpack@5.75.0 + babel-loader: 9.1.2_la66t7xldg4uecmyawueag5wkm chalk: 4.1.2 chokidar: 3.5.3 copy-webpack-plugin: 10.2.4_webpack@5.75.0 @@ -7874,7 +6753,7 @@ packages: css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 dotenv: 10.0.0 file-loader: 6.2.0_webpack@5.75.0 - fork-ts-checker-webpack-plugin: 7.2.13_webpack@5.75.0 + fork-ts-checker-webpack-plugin: 7.2.13_3fkjkrd3audxnith3e7fo4fnxi fs-extra: 11.1.0 ignore: 5.2.4 less: 3.12.2 @@ -7895,8 +6774,8 @@ packages: stylus: 0.55.0 stylus-loader: 7.1.0_irl2hmhzopg6urv44vymn74p4e terser-webpack-plugin: 5.3.6_webpack@5.75.0 - ts-loader: 9.4.2_webpack@5.75.0 - ts-node: 10.9.1 + ts-loader: 9.4.2_3fkjkrd3audxnith3e7fo4fnxi + ts-node: 10.9.1_yvj57biz6xmq5aanirs5pwk65a tsconfig-paths: 4.1.2 tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.4.1 @@ -7932,14 +6811,14 @@ packages: - webpack-cli dev: true - /@nrwl/webpack/15.6.3_ehwmq74sl7rjq32zzn7unz6u4e: + /@nrwl/webpack/15.6.3_jzi4dwy5r5pijpquh3uvyme64q: resolution: {integrity: sha512-/cnUHtMwUE9/FnctI0sQCc9Y/VdS4w15FBSlN1JB+CSF9Sm/CIZ9LzpINGnjqxa+3P2Pz3svx0eyzsBIUFseMA==} dependencies: '@nrwl/devkit': 15.6.3_nx@15.5.3+typescript@4.8.4 - '@nrwl/js': 15.6.3_hrbpodth77onzljscxa57aghky - '@nrwl/workspace': 15.6.3_s2mbfl3bxjfejsrn4g2lrd23by + '@nrwl/js': 15.6.3_hn57nx3bojphcgc2xhjss4eaam + '@nrwl/workspace': 15.6.3_d7q3wj7l2qyuu7pf3kcimjzqtu autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 9.1.2_webpack@5.75.0 + babel-loader: 9.1.2_la66t7xldg4uecmyawueag5wkm chalk: 4.1.2 chokidar: 3.5.3 copy-webpack-plugin: 10.2.4_webpack@5.75.0 @@ -8005,7 +6884,7 @@ packages: - webpack-cli dev: true - /@nrwl/workspace/15.5.3: + /@nrwl/workspace/15.5.3_typescript@4.9.4: resolution: {integrity: sha512-/Udv+dF4Z/9GZ4QmdCu/6e4QUJYx7zGTcoCOZi+Pt+OPRqOULkBbfKmB+xtiG/D32WnFePsxcssaZGux/aysUQ==} peerDependencies: prettier: ^2.6.2 @@ -8013,8 +6892,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.5.3_nx@15.5.3 - '@nrwl/linter': 15.5.3_nx@15.5.3 + '@nrwl/devkit': 15.5.3_nx@15.5.3+typescript@4.9.4 + '@nrwl/linter': 15.5.3_nx@15.5.3+typescript@4.9.4 '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -8046,7 +6925,7 @@ packages: - typescript dev: true - /@nrwl/workspace/15.6.3: + /@nrwl/workspace/15.6.3_d7q3wj7l2qyuu7pf3kcimjzqtu: resolution: {integrity: sha512-RkCmDvcMXCVanR0RS8CZ14D7OMojSyvAal+b37P521MpizDkiN+zdRKewKvyOonzDeTAmZODtYccQ/uM5DjRfQ==} peerDependencies: prettier: ^2.6.2 @@ -8054,8 +6933,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.6.3_nx@15.6.3 - '@nrwl/linter': 15.6.3_nx@15.6.3 + '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.8.4 + '@nrwl/linter': 15.6.3_xh25pkb2g4ite5moakxgthseyi '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -8071,8 +6950,9 @@ packages: jsonc-parser: 3.2.0 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 15.6.3 + nx: 15.6.3_pys4s3dn6tgpk2ashdi5msvbey open: 8.4.0 + prettier: 2.8.3 rxjs: 6.6.7 semver: 7.3.4 tmp: 0.2.1 @@ -8085,9 +6965,9 @@ packages: - debug - eslint - typescript - dev: false + dev: true - /@nrwl/workspace/15.6.3_s2mbfl3bxjfejsrn4g2lrd23by: + /@nrwl/workspace/15.6.3_vqznkjzcjhq7lt5pko43fexwcu: resolution: {integrity: sha512-RkCmDvcMXCVanR0RS8CZ14D7OMojSyvAal+b37P521MpizDkiN+zdRKewKvyOonzDeTAmZODtYccQ/uM5DjRfQ==} peerDependencies: prettier: ^2.6.2 @@ -8095,8 +6975,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.8.4 - '@nrwl/linter': 15.6.3_nx@15.6.3+typescript@4.8.4 + '@nrwl/devkit': 15.6.3_nx@15.6.3+typescript@4.9.4 + '@nrwl/linter': 15.6.3_ozrzltco6pzvkr6becjwctxgmm '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -8112,7 +6992,7 @@ packages: jsonc-parser: 3.2.0 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 15.6.3_pys4s3dn6tgpk2ashdi5msvbey + nx: 15.6.3 open: 8.4.0 prettier: 2.8.3 rxjs: 6.6.7 @@ -8127,7 +7007,7 @@ packages: - debug - eslint - typescript - dev: true + dev: false /@open-draft/until/1.0.3: resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==} @@ -8173,21 +7053,22 @@ packages: webcrypto-core: 1.7.5 dev: true - /@phenomnomnominal/tsquery/4.1.1: + /@phenomnomnominal/tsquery/4.1.1_typescript@4.8.4: resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} peerDependencies: typescript: ^3 || ^4 dependencies: esquery: 1.4.0 + typescript: 4.8.4 + dev: true - /@phenomnomnominal/tsquery/4.1.1_typescript@4.8.4: + /@phenomnomnominal/tsquery/4.1.1_typescript@4.9.4: resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} peerDependencies: typescript: ^3 || ^4 dependencies: esquery: 1.4.0 - typescript: 4.8.4 - dev: true + typescript: 4.9.4 /@pkgr/utils/2.3.1: resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} @@ -8237,7 +7118,7 @@ packages: react-refresh: 0.11.0 schema-utils: 3.1.1 source-map: 0.7.4 - webpack: 5.75.0 + webpack: 5.75.0_esbuild@0.16.17 dev: true /@polka/url/1.0.0-next.21: @@ -8333,7 +7214,7 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-inject/5.0.3: + /@rollup/plugin-inject/5.0.3_rollup@3.14.0: resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -8342,9 +7223,10 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2 + '@rollup/pluginutils': 5.0.2_rollup@3.14.0 estree-walker: 2.0.2 magic-string: 0.27.0 + rollup: 3.14.0 dev: true /@rollup/plugin-json/4.1.0_rollup@2.79.1: @@ -8391,7 +7273,7 @@ packages: picomatch: 2.3.1 dev: true - /@rollup/pluginutils/5.0.2: + /@rollup/pluginutils/5.0.2_rollup@3.14.0: resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -8403,6 +7285,7 @@ packages: '@types/estree': 1.0.0 estree-walker: 2.0.2 picomatch: 2.3.1 + rollup: 3.14.0 dev: true /@samverschueren/stream-to-observable/0.3.1_rxjs@6.6.7: @@ -8726,7 +7609,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/addon-controls/6.5.16_vg4efokf6a2uiu6qnfcmdhwoua: resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8741,7 +7624,7 @@ packages: '@storybook/api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 '@storybook/components': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.16 '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -8760,7 +7643,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/addon-docs/6.5.16_6k6ryhlu53oiodl5hs7yypaxt4: resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 @@ -8774,25 +7657,25 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.20.13 - '@babel/preset-env': 7.20.2 + '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22_react@18.2.0 '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/components': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/mdx1-csf': 0.0.1 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.12 '@storybook/node-logger': 6.5.16 '@storybook/postinstall': 6.5.16 '@storybook/preview-web': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/source-loader': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.16_biqbaboplfbrettd7655fr4n2y - babel-loader: 8.3.0 + babel-loader: 8.3.0_la66t7xldg4uecmyawueag5wkm core-js: 3.27.2 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -8815,7 +7698,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/addon-essentials/6.5.16_6k6ryhlu53oiodl5hs7yypaxt4: resolution: {integrity: sha512-TeoMr6tEit4Pe91GH6f8g/oar1P4M0JL9S6oMcFxxrhhtOGO7XkWD5EnfyCx272Ok2VYfE58FNBTGPNBVIqYKQ==} peerDependencies: '@babel/core': ^7.9.6 @@ -8872,23 +7755,25 @@ packages: webpack: optional: true dependencies: + '@babel/core': 7.20.12 '@storybook/addon-actions': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-backgrounds': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-controls': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-docs': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-controls': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua + '@storybook/addon-docs': 6.5.16_6k6ryhlu53oiodl5hs7yypaxt4 '@storybook/addon-measure': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-outline': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-toolbars': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-viewport': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/node-logger': 6.5.16 core-js: 3.27.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 + webpack: 5.75.0_esbuild@0.16.17 transitivePeerDependencies: - '@storybook/mdx2-csf' - eslint @@ -9041,7 +7926,7 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/builder-vite/0.4.0_mtla23ani2cmwyy5donor57gvi: + /@storybook/builder-vite/0.4.0_xixkba5us6uchs7bhdh2qwtwsu: resolution: {integrity: sha512-UJQMkbY/IeJooKkTIKskd5D9okRwVDhUnVGYRvJ4QOnjJ8kJroveFgw2Tm10vEoLbqVHufMG55k5Kes4xzQrUQ==} peerDependencies: '@storybook/mdx2-csf': '>=1.0.0-next.0' @@ -9060,8 +7945,8 @@ packages: vue-docgen-api: optional: true dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1_vite@4.1.1 - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1_alkqtss2g4kbh2fmzjy2yq5cai + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/mdx1-csf': 1.0.0-next.0_react@18.2.0 '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 @@ -9075,7 +7960,7 @@ packages: react-docgen: 6.0.0-alpha.3 slash: 3.0.0 sveltedoc-parser: 4.2.1 - vite: 4.1.1 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy transitivePeerDependencies: - eslint - react @@ -9087,7 +7972,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/builder-webpack4/6.5.16_vg4efokf6a2uiu6qnfcmdhwoua: resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9105,7 +7990,7 @@ packages: '@storybook/client-api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 '@storybook/components': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 '@storybook/preview-web': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -9123,12 +8008,12 @@ packages: 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_webpack@4.46.0 + fork-ts-checker-webpack-plugin: 4.1.6_bcvhzfph453zftxx4uqvgjksr4 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 + pnp-webpack-plugin: 1.6.4_typescript@4.9.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -9139,6 +8024,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 + typescript: 4.9.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -9237,7 +8123,7 @@ packages: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - /@storybook/core-client/6.5.16_3sdhvqw2yizg6zdyd4hkrkma4e: + /@storybook/core-client/6.5.16_fzk2o5r53sgjs5saca2d7spkha: resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9268,12 +8154,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 + typescript: 4.9.4 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 + webpack: 5.75.0_esbuild@0.16.17 dev: true - /@storybook/core-client/6.5.16_sjkfibpvkg33iagsiij4zgoske: + /@storybook/core-client/6.5.16_o3ten7nsuz3dqqktls46i6uq3y: resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9304,12 +8191,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 + typescript: 4.9.4 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.75.0 + webpack: 4.46.0 dev: true - /@storybook/core-common/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/core-common/6.5.16_vg4efokf6a2uiu6qnfcmdhwoua: resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9353,7 +8241,7 @@ packages: express: 4.18.2 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_webpack@4.46.0 + fork-ts-checker-webpack-plugin: 6.5.2_bcvhzfph453zftxx4uqvgjksr4 fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.7 @@ -9369,6 +8257,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 + typescript: 4.9.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -9384,7 +8273,7 @@ packages: dependencies: core-js: 3.27.2 - /@storybook/core-server/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/core-server/6.5.16_vg4efokf6a2uiu6qnfcmdhwoua: resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -9401,17 +8290,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.16_3sdhvqw2yizg6zdyd4hkrkma4e - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack4': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua + '@storybook/core-client': 6.5.16_o3ten7nsuz3dqqktls46i6uq3y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.16 - '@storybook/manager-webpack4': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/manager-webpack4': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/telemetry': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/telemetry': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@types/node': 16.18.11 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 @@ -9442,6 +8331,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 + typescript: 4.9.4 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -9460,7 +8350,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.16_sjkfibpvkg33iagsiij4zgoske: + /@storybook/core/6.5.16_tugubgas4j5rimjxvwooajzkry: resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -9477,11 +8367,12 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.5.16_sjkfibpvkg33iagsiij4zgoske - '@storybook/core-server': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.16_fzk2o5r53sgjs5saca2d7spkha + '@storybook/core-server': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - webpack: 5.75.0 + typescript: 4.9.4 + webpack: 5.75.0_esbuild@0.16.17 transitivePeerDependencies: - '@storybook/mdx2-csf' - bluebird @@ -9542,7 +8433,7 @@ packages: - supports-color dev: true - /@storybook/manager-webpack4/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/manager-webpack4/6.5.16_vg4efokf6a2uiu6qnfcmdhwoua: resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9556,8 +8447,8 @@ packages: '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 '@babel/preset-react': 7.18.6_@babel+core@7.20.12 '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.16_3sdhvqw2yizg6zdyd4hkrkma4e - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.16_o3ten7nsuz3dqqktls46i6uq3y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/node-logger': 6.5.16 '@storybook/theming': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -9574,7 +8465,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.8 - pnp-webpack-plugin: 1.6.4 + pnp-webpack-plugin: 1.6.4_typescript@4.9.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 @@ -9584,6 +8475,7 @@ packages: telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 + typescript: 4.9.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -9599,25 +8491,6 @@ packages: - webpack-command dev: true - /@storybook/mdx1-csf/0.0.1: - resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} - dependencies: - '@babel/generator': 7.20.7 - '@babel/parser': 7.20.13 - '@babel/preset-env': 7.20.2 - '@babel/types': 7.20.7 - '@mdx-js/mdx': 1.6.22 - '@types/lodash': 4.14.191 - js-string-escape: 1.0.1 - loader-utils: 2.0.4 - lodash: 4.17.21 - prettier: 2.3.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@babel/core' - - supports-color - dev: true - /@storybook/mdx1-csf/0.0.1_@babel+core@7.20.12: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: @@ -9689,7 +8562,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_webpack@5.75.0: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3fkjkrd3audxnith3e7fo4fnxi: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -9700,14 +8573,15 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2 + react-docgen-typescript: 2.2.2_typescript@4.9.4 tslib: 2.5.0 - webpack: 5.75.0 + typescript: 4.9.4 + webpack: 5.75.0_esbuild@0.16.17 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/react/6.5.16_sxq6fvtanzdwbgtgpbetw6fciy: resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} engines: {node: '>=10.13.0'} hasBin: true @@ -9735,17 +8609,18 @@ packages: typescript: optional: true dependencies: - '@babel/preset-flow': 7.18.6 - '@babel/preset-react': 7.18.6 + '@babel/core': 7.20.12 + '@babel/preset-flow': 7.18.6_@babel+core@7.20.12 + '@babel/preset-react': 7.18.6_@babel+core@7.20.12 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_ohj47mxwagpoxvu7nhhwxzphqm '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 - '@storybook/core': 6.5.16_sjkfibpvkg33iagsiij4zgoske - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core': 6.5.16_tugubgas4j5rimjxvwooajzkry + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/node-logger': 6.5.16 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_webpack@5.75.0 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3fkjkrd3audxnith3e7fo4fnxi '@storybook/semver': 7.3.2 '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 @@ -9769,9 +8644,11 @@ packages: react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 + require-from-string: 2.0.2 ts-dedent: 2.2.0 + typescript: 4.9.4 util-deprecate: 1.0.2 - webpack: 5.75.0 + webpack: 5.75.0_esbuild@0.16.17 transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -9861,11 +8738,11 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.16_biqbaboplfbrettd7655fr4n2y: + /@storybook/telemetry/6.5.16_vg4efokf6a2uiu6qnfcmdhwoua: resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} dependencies: '@storybook/client-logger': 6.5.16 - '@storybook/core-common': 6.5.16_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.16_vg4efokf6a2uiu6qnfcmdhwoua chalk: 4.1.2 core-js: 3.27.2 detect-package-manager: 2.0.1 @@ -10147,6 +9024,7 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: true optional: true /@swc/core-darwin-x64/1.3.27: @@ -10155,6 +9033,7 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: true optional: true /@swc/core-linux-arm-gnueabihf/1.3.27: @@ -10163,6 +9042,7 @@ packages: cpu: [arm] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-arm64-gnu/1.3.27: @@ -10171,6 +9051,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-arm64-musl/1.3.27: @@ -10179,6 +9060,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-x64-gnu/1.3.27: @@ -10187,6 +9069,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-x64-musl/1.3.27: @@ -10195,6 +9078,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-win32-arm64-msvc/1.3.27: @@ -10203,6 +9087,7 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: true optional: true /@swc/core-win32-ia32-msvc/1.3.27: @@ -10211,6 +9096,7 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: true optional: true /@swc/core-win32-x64-msvc/1.3.27: @@ -10219,6 +9105,7 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: true optional: true /@swc/core/1.3.27: @@ -10236,6 +9123,7 @@ packages: '@swc/core-win32-arm64-msvc': 1.3.27 '@swc/core-win32-ia32-msvc': 1.3.27 '@swc/core-win32-x64-msvc': 1.3.27 + dev: true /@swc/helpers/0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} @@ -10374,10 +9262,12 @@ packages: '@testing-library/dom': 8.20.0 dev: true - /@testing-library/user-event/7.2.1: + /@testing-library/user-event/7.2.1_yxlyej73nftwmh2fiao7paxmlm: resolution: {integrity: sha512-oZ0Ib5I4Z2pUEcoo95cT1cr6slco9WY7yiPpG+RGNkj8YcYgJnM7pXmYmorNOReh8MIGcKSqXyeGjxnr8YiZbA==} peerDependencies: '@testing-library/dom': '>=5' + dependencies: + '@testing-library/dom': 8.20.0 dev: true /@tokenizer/token/0.3.0: @@ -10393,7 +9283,7 @@ packages: engines: {node: '>= 10'} dev: true - /@trivago/prettier-plugin-sort-imports/4.0.0: + /@trivago/prettier-plugin-sort-imports/4.0.0_m4v26zq7vuhpofnm2r24kocxbu: resolution: {integrity: sha512-Tyuk5ZY4a0e2MNFLdluQO9F6d1awFQYXVVujEPFfvKPPXz8DADNHzz73NMhwCSXGSuGGZcA/rKOyZBrxVNMxaA==} peerDependencies: '@vue/compiler-sfc': 3.x @@ -10404,8 +9294,10 @@ packages: '@babel/parser': 7.18.9 '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 + '@vue/compiler-sfc': 3.2.47 javascript-natural-sort: 0.7.1 lodash: 4.17.21 + prettier: 2.8.3 transitivePeerDependencies: - supports-color dev: true @@ -11160,7 +10052,7 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.51.0_ppe566fwemafy3kierv4rbnqi4: + /@typescript-eslint/eslint-plugin/5.51.0_ponbl6w6y33k5ig7z6jhupknhm: resolution: {integrity: sha512-wcAwhEWm1RgNd7dxD/o+nnLW8oH+6RK1OGnmbmkj/GGoDPV1WWMVP0FXYQBivKHdwM1pwii3bt//RC62EriIUQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11171,11 +10063,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.51.0_typescript@4.8.4 + '@typescript-eslint/parser': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki '@typescript-eslint/scope-manager': 5.51.0 - '@typescript-eslint/type-utils': 5.51.0_typescript@4.8.4 - '@typescript-eslint/utils': 5.51.0_typescript@4.8.4 + '@typescript-eslint/type-utils': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki + '@typescript-eslint/utils': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki debug: 4.3.4 + eslint: 8.4.1 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 @@ -11187,7 +10080,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.51.0_typescript@4.8.4: + /@typescript-eslint/parser/5.51.0_r3eoaousgmxrwijrzvpvwsqvki: resolution: {integrity: sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11201,6 +10094,7 @@ packages: '@typescript-eslint/types': 5.51.0 '@typescript-eslint/typescript-estree': 5.51.0_typescript@4.8.4 debug: 4.3.4 + eslint: 8.4.1 typescript: 4.8.4 transitivePeerDependencies: - supports-color @@ -11222,7 +10116,7 @@ packages: '@typescript-eslint/visitor-keys': 5.51.0 dev: true - /@typescript-eslint/type-utils/5.51.0_typescript@4.8.4: + /@typescript-eslint/type-utils/5.51.0_r3eoaousgmxrwijrzvpvwsqvki: resolution: {integrity: sha512-QHC5KKyfV8sNSyHqfNa0UbTbJ6caB8uhcx2hYcWVvJAZYJRBo5HyyZfzMdRx8nvS+GyMg56fugMzzWnojREuQQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11233,44 +10127,25 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.51.0_typescript@4.8.4 - '@typescript-eslint/utils': 5.51.0_typescript@4.8.4 - debug: 4.3.4 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/types/5.48.2: - resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - /@typescript-eslint/types/5.51.0: - resolution: {integrity: sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - /@typescript-eslint/typescript-estree/5.48.2: - resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.48.2 - '@typescript-eslint/visitor-keys': 5.48.2 + '@typescript-eslint/utils': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0 + eslint: 8.4.1 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true + /@typescript-eslint/types/5.48.2: + resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/types/5.51.0: + resolution: {integrity: sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@typescript-eslint/typescript-estree/5.48.2_typescript@4.9.4: resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -11313,7 +10188,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.48.2: + /@typescript-eslint/utils/5.48.2_j2ufqx7gk4xwp4zolzgoloebza: resolution: {integrity: sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11323,16 +10198,17 @@ packages: '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.48.2 '@typescript-eslint/types': 5.48.2 - '@typescript-eslint/typescript-estree': 5.48.2 + '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.4 + eslint: 8.4.1 eslint-scope: 5.1.1 - eslint-utils: 3.0.0 + eslint-utils: 3.0.0_eslint@8.4.1 semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.51.0_typescript@4.8.4: + /@typescript-eslint/utils/5.51.0_r3eoaousgmxrwijrzvpvwsqvki: resolution: {integrity: sha512-76qs+5KWcaatmwtwsDJvBk4H76RJQBFe+Gext0EfJdC3Vd2kpY2Pf//OHHzHp84Ciw0/rYoGTDnIAr3uWhhJYw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -11343,8 +10219,9 @@ packages: '@typescript-eslint/scope-manager': 5.51.0 '@typescript-eslint/types': 5.51.0 '@typescript-eslint/typescript-estree': 5.51.0_typescript@4.8.4 + eslint: 8.4.1 eslint-scope: 5.1.1 - eslint-utils: 3.0.0 + eslint-utils: 3.0.0_eslint@8.4.1 semver: 7.3.8 transitivePeerDependencies: - supports-color @@ -11367,7 +10244,7 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@vitejs/plugin-legacy/4.0.1_vite@4.1.1: + /@vitejs/plugin-legacy/4.0.1_terser@5.16.1+vite@4.1.1: resolution: {integrity: sha512-/ZV63NagI1c9TB5E4ijGmycY//fNm/2L02nsnXXxACwYaF9W+/OyVlgIW24jYUIS+g0yQRtn+N5hzBc8RLNhGA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -11381,7 +10258,8 @@ packages: magic-string: 0.27.0 regenerator-runtime: 0.13.11 systemjs: 6.13.0 - vite: 4.1.1 + terser: 5.16.1 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy transitivePeerDependencies: - supports-color dev: true @@ -11397,7 +10275,7 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.1.1 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy transitivePeerDependencies: - supports-color dev: true @@ -11412,6 +10290,58 @@ packages: sirv: 2.0.2 dev: true + /@vue/compiler-core/3.2.47: + resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==} + dependencies: + '@babel/parser': 7.20.13 + '@vue/shared': 3.2.47 + estree-walker: 2.0.2 + source-map: 0.6.1 + dev: true + + /@vue/compiler-dom/3.2.47: + resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==} + dependencies: + '@vue/compiler-core': 3.2.47 + '@vue/shared': 3.2.47 + dev: true + + /@vue/compiler-sfc/3.2.47: + resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==} + dependencies: + '@babel/parser': 7.20.13 + '@vue/compiler-core': 3.2.47 + '@vue/compiler-dom': 3.2.47 + '@vue/compiler-ssr': 3.2.47 + '@vue/reactivity-transform': 3.2.47 + '@vue/shared': 3.2.47 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.21 + source-map: 0.6.1 + dev: true + + /@vue/compiler-ssr/3.2.47: + resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==} + dependencies: + '@vue/compiler-dom': 3.2.47 + '@vue/shared': 3.2.47 + dev: true + + /@vue/reactivity-transform/3.2.47: + resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==} + dependencies: + '@babel/parser': 7.20.13 + '@vue/compiler-core': 3.2.47 + '@vue/shared': 3.2.47 + estree-walker: 2.0.2 + magic-string: 0.25.9 + dev: true + + /@vue/shared/3.2.47: + resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==} + dev: true + /@webassemblyjs/ast/1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: @@ -11760,7 +10690,6 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.8.2 - dev: true /acorn-walk/7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} @@ -11939,6 +10868,11 @@ packages: engines: {node: '>=6'} dev: true + /ansi-colors/4.1.1: + resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} + engines: {node: '>=6'} + dev: true + /ansi-colors/4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -12064,13 +10998,13 @@ packages: normalize-path: 3.0.0 picomatch: 2.3.1 - /apollo-link/1.2.14_graphql@16.6.0: + /apollo-link/1.2.14_graphql@14.7.0: resolution: {integrity: sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==} peerDependencies: graphql: ^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-utilities: 1.3.4_graphql@16.6.0 - graphql: 16.6.0 + apollo-utilities: 1.3.4_graphql@14.7.0 + graphql: 14.7.0 ts-invariant: 0.4.4 tslib: 1.14.1 zen-observable-ts: 0.8.21 @@ -12088,14 +11022,14 @@ packages: graphql: 16.6.0 dev: false - /apollo-utilities/1.3.4_graphql@16.6.0: + /apollo-utilities/1.3.4_graphql@14.7.0: resolution: {integrity: sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: '@wry/equality': 0.1.11 fast-json-stable-stringify: 2.1.0 - graphql: 16.6.0 + graphql: 14.7.0 ts-invariant: 0.4.4 tslib: 1.14.1 dev: true @@ -12520,33 +11454,6 @@ packages: - supports-color dev: false - /aws-cdk-lib/2.33.0: - resolution: {integrity: sha512-+aV6+P3RROFndkw9/mtXCciL1RL2tHssju6kgwmml0XIqcnjJ8qyCR23fE8MEq49Q+6dQ8sBN2HtrdKHw/sgnw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - constructs: ^10.0.0 - dependencies: - '@balena/dockerignore': 1.0.2 - case: 1.6.3 - fs-extra: 9.1.0 - ignore: 5.2.4 - jsonschema: 1.4.1 - minimatch: 3.1.2 - punycode: 2.3.0 - semver: 7.3.8 - yaml: 1.10.2 - dev: true - bundledDependencies: - - '@balena/dockerignore' - - case - - fs-extra - - ignore - - jsonschema - - minimatch - - punycode - - semver - - yaml - /aws-cdk-lib/2.33.0_constructs@10.1.228: resolution: {integrity: sha512-+aV6+P3RROFndkw9/mtXCciL1RL2tHssju6kgwmml0XIqcnjJ8qyCR23fE8MEq49Q+6dQ8sBN2HtrdKHw/sgnw==} engines: {node: '>= 14.15.0'} @@ -12672,23 +11579,6 @@ packages: deep-equal: 2.2.0 dev: true - /babel-jest/28.1.3: - resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@jest/transform': 28.1.3 - '@types/babel__core': 7.20.0 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3 - chalk: 4.1.2 - graceful-fs: 4.2.10 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest/28.1.3_@babel+core@7.20.12: resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -12707,19 +11597,6 @@ packages: - supports-color dev: true - /babel-loader/8.3.0: - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - find-cache-dir: 3.3.2 - loader-utils: 2.0.4 - make-dir: 3.1.0 - schema-utils: 2.7.1 - dev: true - /babel-loader/8.3.0_la66t7xldg4uecmyawueag5wkm: resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} @@ -12733,7 +11610,6 @@ packages: make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.75.0 - dev: false /babel-loader/8.3.0_nwtvwtk5tmh22l2urnqucz7kqu: resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} @@ -12750,16 +11626,17 @@ packages: webpack: 4.46.0 dev: true - /babel-loader/9.1.2_webpack@5.75.0: + /babel-loader/9.1.2_la66t7xldg4uecmyawueag5wkm: resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} engines: {node: '>= 14.15.0'} peerDependencies: '@babel/core': ^7.12.0 webpack: '>=5' dependencies: + '@babel/core': 7.20.12 find-cache-dir: 3.3.2 schema-utils: 4.0.0 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /babel-plugin-add-react-displayname/0.0.5: @@ -12837,18 +11714,6 @@ packages: resolve: 1.22.1 dev: true - /babel-plugin-polyfill-corejs2/0.3.3: - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.10 - '@babel/helper-define-polyfill-provider': 0.3.3 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -12873,17 +11738,6 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.6.0: - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-define-polyfill-provider': 0.3.3 - core-js-compat: 3.27.2 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -12895,16 +11749,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.4.1: - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/helper-define-polyfill-provider': 0.3.3 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -12943,7 +11787,7 @@ packages: babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_gzjxbbqgwmhffys5rngtiuy3yq /babel-plugin-syntax-jsx/6.18.0: resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} @@ -12956,11 +11800,12 @@ packages: resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} dev: true - /babel-plugin-transform-import-meta/2.2.0: + /babel-plugin-transform-import-meta/2.2.0_@babel+core@7.20.12: resolution: {integrity: sha512-+DNF2SJAj2Pd0b1sObz+hyzNgUlI9DccPtMcF7ulMM0BxPrMF83ERjvPQwcQ9FRFSddWcC7DOw0FuyWgkQRoqg==} peerDependencies: '@babel/core': ^7.10.0 dependencies: + '@babel/core': 7.20.12 '@babel/template': 7.20.7 tslib: 2.4.1 dev: true @@ -12974,25 +11819,6 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 - /babel-preset-current-node-syntax/1.0.1: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/plugin-syntax-async-generators': 7.8.4 - '@babel/plugin-syntax-bigint': 7.8.3 - '@babel/plugin-syntax-class-properties': 7.12.13 - '@babel/plugin-syntax-import-meta': 7.10.4 - '@babel/plugin-syntax-json-strings': 7.8.3 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.10.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3 - '@babel/plugin-syntax-top-level-await': 7.14.5 - dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.12: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -13050,16 +11876,6 @@ packages: - supports-color dev: true - /babel-preset-jest/28.1.3: - resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1 - dev: true - /babel-preset-jest/28.1.3_@babel+core@7.20.12: resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -13427,6 +12243,10 @@ packages: /browser-process-hrtime/1.0.0: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + /browser-stdout/1.3.1: + resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} + dev: true + /browserify-aes/1.2.0: resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} dependencies: @@ -14972,7 +13792,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.1 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /copy-webpack-plugin/11.0.0_webpack@5.75.0: @@ -15015,7 +13835,13 @@ packages: engines: {node: '>= 0.4.0'} dev: true - /cosmiconfig-typescript-loader/4.3.0_cosmiconfig@7.1.0: + /cosmiconfig-toml-loader/1.0.0: + resolution: {integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==} + dependencies: + '@iarna/toml': 2.2.5 + dev: true + + /cosmiconfig-typescript-loader/4.3.0_77gxm4oqg37k6fnezs7ywoo7j4: resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -15024,7 +13850,10 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: + '@types/node': 18.11.19 cosmiconfig: 7.1.0 + ts-node: 10.9.1_yvj57biz6xmq5aanirs5pwk65a + typescript: 4.9.4 dev: true /cosmiconfig/5.2.1: @@ -15296,7 +14125,7 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 /css-minimizer-webpack-plugin/3.4.1_webpack@5.75.0: resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} @@ -15323,7 +14152,7 @@ packages: schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /css-minimizer-webpack-plugin/4.2.2_dpcjkp5o5ztxuvt4quwwvenemi: @@ -15549,7 +14378,7 @@ packages: - utf-8-validate dev: false - /cypress-multi-reporters/1.6.2: + /cypress-multi-reporters/1.6.2_mocha@10.2.0: resolution: {integrity: sha512-lvwGwHqZG5CwGxBJ6UJXWaxlWGkJgxBjP0h+IVLrrwRlJpT4coSwwt+UzMdeqEMrzT4IDfhbtmUNOiDleisOYA==} engines: {node: '>=6.0.0'} peerDependencies: @@ -15557,6 +14386,7 @@ packages: dependencies: debug: 4.3.4 lodash: 4.17.21 + mocha: 10.2.0 transitivePeerDependencies: - supports-color dev: true @@ -15576,7 +14406,7 @@ packages: commander: 7.2.0 del: 6.1.1 dotenv: 16.0.0 - mochawesome: 6.3.1 + mochawesome: 6.3.1_mocha@10.2.0 mochawesome-merge: 4.2.2 mochawesome-report-generator: 5.2.0 pino: 6.14.0 @@ -15802,6 +14632,11 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} + /decamelize/4.0.0: + resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} + engines: {node: '>=10'} + dev: true + /decimal.js/10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} @@ -16151,6 +14986,11 @@ packages: engines: {node: '>=0.3.1'} dev: true + /diff/5.0.0: + resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} + engines: {node: '>=0.3.1'} + dev: true + /diff/5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} @@ -16197,7 +15037,6 @@ packages: engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 - dev: true /dom-accessibility-api/0.3.0: resolution: {integrity: sha512-PzwHEmsRP3IGY4gv/Ug+rMeaTIyTJvadCb+ujYXYeIylbHJezIyNToe8KfEgHTCEYyC+/bUghYOGg8yMGlZ6vA==} @@ -17025,11 +15864,13 @@ packages: get-stdin: 6.0.0 dev: true - /eslint-config-prettier/8.6.0: + /eslint-config-prettier/8.6.0_eslint@8.4.1: resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} hasBin: true peerDependencies: eslint: '>=7.0.0' + dependencies: + eslint: 8.4.1 dev: true /eslint-import-resolver-node/0.3.7: @@ -17042,7 +15883,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/3.5.3_eslint-plugin-i@2.26.0: + /eslint-import-resolver-typescript/3.5.3_2sn4obn2upfnsjgxvp6uivfnqu: resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -17051,7 +15892,8 @@ packages: dependencies: debug: 4.3.4 enhanced-resolve: 5.12.0 - eslint-plugin-import: /eslint-plugin-i/2.26.0_4woqni3yla7wvvtsvqk3qwjtf4 + eslint: 8.4.1 + eslint-plugin-import: /eslint-plugin-i/2.26.0_57nwz5hpomzbqnulnedruxm7zm get-tsconfig: 4.4.0 globby: 13.1.3 is-core-module: 2.11.0 @@ -17061,7 +15903,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.4_m5otc62hyneukmqeuybzvi4ose: + /eslint-module-utils/2.7.4_rwiw7b2uo76lkopjtpefklygj4: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -17082,15 +15924,14 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.51.0_typescript@4.8.4 debug: 3.2.7 + eslint: 7.32.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3_eslint-plugin-i@2.26.0 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_rwiw7b2uo76lkopjtpefklygj4: + /eslint-module-utils/2.7.4_u3rzpqodpnosrnb57xrkiiinx4: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -17111,9 +15952,11 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: + '@typescript-eslint/parser': 5.51.0_r3eoaousgmxrwijrzvpvwsqvki debug: 3.2.7 - eslint: 7.32.0 + eslint: 8.4.1 eslint-import-resolver-node: 0.3.7 + eslint-import-resolver-typescript: 3.5.3_2sn4obn2upfnsjgxvp6uivfnqu transitivePeerDependencies: - supports-color dev: true @@ -17127,7 +15970,7 @@ packages: globals: 11.12.0 dev: true - /eslint-plugin-formatjs/4.3.9_ts-jest@28.0.5: + /eslint-plugin-formatjs/4.3.9_trwqko6nry2g5lmaux6mgyckoe: resolution: {integrity: sha512-+8kGoTUaNe0qS55eg5XbPDY+eQmeZxnrC8MugQTGUXlqbCyLyG7y4mDsMhAgactVyUMST6Ln1HEm1Tk0KNuIKQ==} peerDependencies: eslint: 7 || 8 @@ -17138,6 +15981,7 @@ packages: '@types/picomatch': 2.3.0 '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.4 emoji-regex: 10.2.1 + eslint: 8.4.1 picomatch: 2.3.1 tslib: 2.4.1 typescript: 4.9.4 @@ -17146,7 +15990,7 @@ packages: - ts-jest dev: true - /eslint-plugin-i/2.26.0_4woqni3yla7wvvtsvqk3qwjtf4: + /eslint-plugin-i/2.26.0_57nwz5hpomzbqnulnedruxm7zm: resolution: {integrity: sha512-d1o6wLEslujT20ObVE/sAfpgsMBlU58P0rU+sudTHCuWDpVhFAuDz1cYzeM70RJ++XCUsCYBID4a3m51TOPT+g==} engines: {node: '>=4'} peerDependencies: @@ -17156,8 +16000,9 @@ packages: array.prototype.flat: 1.3.1 debug: 2.6.9 doctrine: 2.1.0 + eslint: 8.4.1 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_m5otc62hyneukmqeuybzvi4ose + eslint-module-utils: 2.7.4_u3rzpqodpnosrnb57xrkiiinx4 get-own-property-symbols: 0.9.5 get-tsconfig: 4.4.0 has: 1.0.3 @@ -17206,7 +16051,7 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y/6.7.1: + /eslint-plugin-jsx-a11y/6.7.1_eslint@7.32.0: resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -17221,6 +16066,7 @@ packages: axobject-query: 3.1.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 + eslint: 7.32.0 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 @@ -17230,7 +16076,7 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-jsx-a11y/6.7.1_eslint@7.32.0: + /eslint-plugin-jsx-a11y/6.7.1_eslint@8.4.1: resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -17245,7 +16091,7 @@ packages: axobject-query: 3.1.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 7.32.0 + eslint: 8.4.1 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 @@ -17272,23 +16118,25 @@ packages: prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-react-hooks/4.6.0: + /eslint-plugin-react-hooks/4.6.0_eslint@7.32.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 7.32.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@7.32.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.4.1: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 7.32.0 + eslint: 8.4.1 dev: true - /eslint-plugin-react/7.32.1: + /eslint-plugin-react/7.32.1_eslint@7.32.0: resolution: {integrity: sha512-vOjdgyd0ZHBXNsmvU+785xY8Bfe57EFbTYYk8XrROzWpr9QBvpjITvAXt9xqcE6+8cjR/g1+mfumPToxsl1www==} engines: {node: '>=4'} peerDependencies: @@ -17298,6 +16146,7 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 + eslint: 7.32.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -17311,7 +16160,7 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-react/7.32.1_eslint@7.32.0: + /eslint-plugin-react/7.32.1_eslint@8.4.1: resolution: {integrity: sha512-vOjdgyd0ZHBXNsmvU+785xY8Bfe57EFbTYYk8XrROzWpr9QBvpjITvAXt9xqcE6+8cjR/g1+mfumPToxsl1www==} engines: {node: '>=4'} peerDependencies: @@ -17321,7 +16170,7 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 - eslint: 7.32.0 + eslint: 8.4.1 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -17335,13 +16184,14 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-testing-library/5.9.1: + /eslint-plugin-testing-library/5.9.1_j2ufqx7gk4xwp4zolzgoloebza: resolution: {integrity: sha512-6BQp3tmb79jLLasPHJmy8DnxREe+2Pgf7L+7o09TSWPfdqqtQfRZmZNetr5mOs3yqZk/MRNxpN3RUpJe0wB4LQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.48.2 + '@typescript-eslint/utils': 5.48.2_j2ufqx7gk4xwp4zolzgoloebza + eslint: 8.4.1 transitivePeerDependencies: - supports-color - typescript @@ -17368,7 +16218,6 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - dev: true /eslint-utils/2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} @@ -17377,15 +16226,6 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint-visitor-keys: 2.1.0 - dev: true - /eslint-utils/3.0.0_eslint@8.4.1: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} @@ -17394,7 +16234,6 @@ packages: dependencies: eslint: 8.4.1 eslint-visitor-keys: 2.1.0 - dev: true /eslint-visitor-keys/1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} @@ -17404,12 +16243,10 @@ packages: /eslint-visitor-keys/2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} - dev: true /eslint-visitor-keys/3.3.0: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true /eslint/7.32.0: resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} @@ -17505,7 +16342,6 @@ packages: v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color - dev: true /esniff/1.1.0: resolution: {integrity: sha512-vmHXOeOt7FJLsqofvFk4WB3ejvcHizCd8toXXwADmYfd02p2QwHRgkUbhYDX54y08nqk818CUTWipgZGlyN07g==} @@ -17539,7 +16375,6 @@ packages: acorn: 8.8.2 acorn-jsx: 5.3.2_acorn@8.8.2 eslint-visitor-keys: 3.3.0 - dev: true /esprima/2.7.3: resolution: {integrity: sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==} @@ -18135,7 +16970,6 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.0.4 - dev: true /file-loader/6.2.0_webpack@4.46.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} @@ -18156,7 +16990,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 /file-selector/0.6.0: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} @@ -18427,7 +17261,6 @@ packages: dependencies: flatted: 3.2.7 rimraf: 3.0.2 - dev: true /flat/5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} @@ -18438,7 +17271,6 @@ packages: /flatted/3.2.7: resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - dev: true /flush-write-stream/1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} @@ -18503,7 +17335,7 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: true - /fork-ts-checker-webpack-plugin/4.1.6_webpack@4.46.0: + /fork-ts-checker-webpack-plugin/4.1.6_bcvhzfph453zftxx4uqvgjksr4: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -18519,17 +17351,19 @@ packages: dependencies: '@babel/code-frame': 7.18.6 chalk: 2.4.2 + eslint: 8.4.1 micromatch: 3.1.10 minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 + typescript: 4.9.4 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_webpack@4.46.0: + /fork-ts-checker-webpack-plugin/6.5.2_3fkjkrd3audxnith3e7fo4fnxi: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -18556,10 +17390,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - webpack: 4.46.0 - dev: true + typescript: 4.9.4 + webpack: 5.75.0 + dev: false - /fork-ts-checker-webpack-plugin/6.5.2_webpack@5.75.0: + /fork-ts-checker-webpack-plugin/6.5.2_bcvhzfph453zftxx4uqvgjksr4: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -18579,6 +17414,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 + eslint: 8.4.1 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.4.13 @@ -18586,10 +17422,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - webpack: 5.75.0 - dev: false + typescript: 4.9.4 + webpack: 4.46.0 + dev: true - /fork-ts-checker-webpack-plugin/7.2.13_qw7fmzhoapcndkteb5rsc33stq: + /fork-ts-checker-webpack-plugin/7.2.13_3fkjkrd3audxnith3e7fo4fnxi: resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -18612,11 +17449,11 @@ packages: schema-utils: 3.1.1 semver: 7.3.8 tapable: 2.2.1 - typescript: 4.8.4 - webpack: 5.75.0_@swc+core@1.3.27 + typescript: 4.9.4 + webpack: 5.75.0 dev: true - /fork-ts-checker-webpack-plugin/7.2.13_webpack@5.75.0: + /fork-ts-checker-webpack-plugin/7.2.13_qw7fmzhoapcndkteb5rsc33stq: resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -18639,7 +17476,8 @@ packages: schema-utils: 3.1.1 semver: 7.3.8 tapable: 2.2.1 - webpack: 5.75.0 + typescript: 4.8.4 + webpack: 5.75.0_@swc+core@1.3.27 dev: true /form-data-encoder/1.7.2: @@ -18865,7 +17703,6 @@ packages: /functional-red-black-tree/1.0.1: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - dev: true /functions-have-names/1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} @@ -19102,6 +17939,17 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /glob/7.2.0: + resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + /glob/7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -19183,7 +18031,6 @@ packages: engines: {node: '>=8'} dependencies: type-fest: 0.20.2 - dev: true /globalthis/1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} @@ -19435,14 +18282,14 @@ packages: lodash: 4.17.21 dev: true - /graphql-cli/4.1.0_graphql@16.6.0: + /graphql-cli/4.1.0_fpwzejcmfqpdneobdih363qpvq: resolution: {integrity: sha512-VmA5VrjEJZdHsG8JcIdofFtSWspdYlDtJobn6F+gWgRf6cXRbJwuzszcnx4yvhhwc7EcfRP29NLA2652SNhpgQ==} hasBin: true dependencies: '@graphql-cli/common': 4.1.0_u6jjuw2tcaye7skybs6apjg2oe '@graphql-cli/init': 4.1.0_3zyyixydlzawfg3kcqpgij5kyy globby: 11.0.1 - graphql-config: 3.0.3_graphql@16.6.0 + graphql-config: 3.0.3_fpwzejcmfqpdneobdih363qpvq open: 7.3.0 yargs: 16.0.3 transitivePeerDependencies: @@ -19454,7 +18301,7 @@ packages: - utf-8-validate dev: true - /graphql-config/3.0.3_graphql@16.6.0: + /graphql-config/3.0.3_fpwzejcmfqpdneobdih363qpvq: resolution: {integrity: sha512-MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -19464,7 +18311,7 @@ packages: '@graphql-tools/json-file-loader': 6.2.6_graphql@16.6.0 '@graphql-tools/load': 6.2.8_graphql@16.6.0 '@graphql-tools/merge': 6.2.17_graphql@16.6.0 - '@graphql-tools/url-loader': 6.10.1_graphql@16.6.0 + '@graphql-tools/url-loader': 6.10.1_fpwzejcmfqpdneobdih363qpvq '@graphql-tools/utils': 6.2.4_graphql@16.6.0 cosmiconfig: 6.0.0 graphql: 16.6.0 @@ -19478,7 +18325,7 @@ packages: - utf-8-validate dev: true - /graphql-config/4.4.0_ul246jct24iapssnbw5f5pr2vu: + /graphql-config/4.4.0_hyn2ajzzpdlr45h6wdufle5n3e: resolution: {integrity: sha512-QUrX7R4htnTBTi83a0IlIilWVfiLEG8ANFlHRcxoZiTvOXTbgan67SUdGe1OlopbDuyNgtcy4ladl3Gvk4C36A==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -19490,10 +18337,11 @@ packages: '@graphql-tools/json-file-loader': 7.4.15_graphql@16.6.0 '@graphql-tools/load': 7.8.0_graphql@16.6.0 '@graphql-tools/merge': 8.3.15_graphql@16.6.0 - '@graphql-tools/url-loader': 7.17.3_graphql@16.6.0 + '@graphql-tools/url-loader': 7.17.3_fpwzejcmfqpdneobdih363qpvq '@graphql-tools/utils': 9.1.4_graphql@16.6.0 cosmiconfig: 8.0.0 - cosmiconfig-typescript-loader: 4.3.0_cosmiconfig@7.1.0 + cosmiconfig-toml-loader: 1.0.0 + cosmiconfig-typescript-loader: 4.3.0_77gxm4oqg37k6fnezs7ywoo7j4 graphql: 16.6.0 minimatch: 4.2.1 string-env-interpolation: 1.0.1 @@ -19519,17 +18367,15 @@ packages: - encoding dev: true - /graphql-schema-utilities/1.1.5_graphql@16.6.0: + /graphql-schema-utilities/1.1.5: resolution: {integrity: sha512-19KfuNL3xssUhCkp214ELuSJyhlAZ6D1iUsm3rO0lxV79icTMi/BnS19OKgttEtJ/63Lw95M1X89eTsvEn+0DA==} hasBin: true - peerDependencies: - graphql: ^0.13.0 || ^14.0.0 dependencies: chalk: 2.4.2 commander: 2.20.3 glob: 7.2.3 - graphql: 16.6.0 - graphql-tools: 4.0.8_graphql@16.6.0 + graphql: 14.7.0 + graphql-tools: 4.0.8_graphql@14.7.0 lodash: 4.17.21 dev: true @@ -19551,16 +18397,16 @@ packages: graphql: 16.6.0 tslib: 2.5.0 - /graphql-tools/4.0.8_graphql@16.6.0: + /graphql-tools/4.0.8_graphql@14.7.0: resolution: {integrity: sha512-MW+ioleBrwhRjalKjYaLQbr+920pHBgy9vM/n47sswtns8+96sRn5M/G+J1eu7IMeKWiN/9p6tmwCHU7552VJg==} deprecated: This package has been deprecated and now it only exports makeExecutableSchema.\nAnd it will no longer receive updates.\nWe recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc.\nCheck out https://www.graphql-tools.com to learn what package you should use instead peerDependencies: graphql: ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-link: 1.2.14_graphql@16.6.0 - apollo-utilities: 1.3.4_graphql@16.6.0 + apollo-link: 1.2.14_graphql@14.7.0 + apollo-utilities: 1.3.4_graphql@14.7.0 deprecated-decorator: 0.1.6 - graphql: 16.6.0 + graphql: 14.7.0 iterall: 1.3.0 uuid: 3.4.0 dev: true @@ -20358,7 +19204,6 @@ packages: /ignore/4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} - dev: true /ignore/5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} @@ -21474,7 +20319,7 @@ packages: - supports-color dev: true - /jest-cli/28.1.3: + /jest-cli/28.1.3_qnch7tm6w36cvfoqlc3v7gbphu: resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -21484,14 +20329,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 28.1.3 + '@jest/core': 28.1.3_ts-node@10.9.1 '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 28.1.3 + jest-config: 28.1.3_qnch7tm6w36cvfoqlc3v7gbphu jest-util: 28.1.3 jest-validate: 28.1.3 prompts: 2.4.2 @@ -21502,44 +20347,6 @@ packages: - ts-node dev: true - /jest-config/28.1.1: - resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - dependencies: - '@babel/core': 7.20.12 - '@jest/test-sequencer': 28.1.3 - '@jest/types': 28.1.3 - babel-jest: 28.1.3_@babel+core@7.20.12 - chalk: 4.1.2 - ci-info: 3.7.1 - deepmerge: 4.2.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-circus: 28.1.3 - jest-environment-node: 28.1.3 - jest-get-type: 28.0.2 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.3 - jest-runner: 28.1.3 - jest-util: 28.1.3 - jest-validate: 28.1.3 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 28.1.3 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - /jest-config/28.1.1_6m7kcbkkzjz4ln6z66tlzx44we: resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -21580,8 +20387,8 @@ packages: - supports-color dev: true - /jest-config/28.1.3: - resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + /jest-config/28.1.1_@types+node@18.11.19: + resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@types/node': '*' @@ -21595,6 +20402,7 @@ packages: '@babel/core': 7.20.12 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 + '@types/node': 18.11.19 babel-jest: 28.1.3_@babel+core@7.20.12 chalk: 4.1.2 ci-info: 3.7.1 @@ -21618,7 +20426,7 @@ packages: - supports-color dev: true - /jest-config/28.1.3_@types+node@18.11.19: + /jest-config/28.1.3_qnch7tm6w36cvfoqlc3v7gbphu: resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -21653,6 +20461,7 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 + ts-node: 10.9.1_yvj57biz6xmq5aanirs5pwk65a transitivePeerDependencies: - supports-color dev: true @@ -22126,7 +20935,7 @@ packages: dependencies: ansi-escapes: 6.0.0 chalk: 5.2.0 - jest: 28.1.3 + jest: 28.1.3_qnch7tm6w36cvfoqlc3v7gbphu jest-regex-util: 29.4.2 jest-watcher: 29.4.2 slash: 5.0.0 @@ -22198,7 +21007,7 @@ packages: supports-color: 8.1.1 dev: false - /jest/28.1.3: + /jest/28.1.3_qnch7tm6w36cvfoqlc3v7gbphu: resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -22208,10 +21017,10 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 28.1.3 + '@jest/core': 28.1.3_ts-node@10.9.1 '@jest/types': 28.1.3 import-local: 3.1.0 - jest-cli: 28.1.3 + jest-cli: 28.1.3_qnch7tm6w36cvfoqlc3v7gbphu transitivePeerDependencies: - '@types/node' - supports-color @@ -22440,7 +21249,6 @@ packages: /json-stable-stringify-without-jsonify/1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - dev: true /json-stable-stringify/1.0.2: resolution: {integrity: sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==} @@ -22727,7 +21535,7 @@ packages: dependencies: klona: 2.0.6 less: 3.12.2 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /less/3.12.2: @@ -22844,7 +21652,6 @@ packages: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - dev: true /license-webpack-plugin/4.0.2_webpack@5.75.0: resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} @@ -22856,7 +21663,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 webpack-sources: 3.2.3 dev: true @@ -23239,7 +22046,6 @@ packages: /lodash.merge/4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - dev: true /lodash.once/4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} @@ -23740,7 +22546,7 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /meros/1.1.4: + /meros/1.1.4_@types+node@18.11.19: resolution: {integrity: sha512-E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ==} engines: {node: '>=12'} peerDependencies: @@ -23748,9 +22554,11 @@ packages: peerDependenciesMeta: '@types/node': optional: true + dependencies: + '@types/node': 18.11.19 dev: true - /meros/1.2.1: + /meros/1.2.1_@types+node@18.11.19: resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==} engines: {node: '>=13'} peerDependencies: @@ -23758,6 +22566,8 @@ packages: peerDependenciesMeta: '@types/node': optional: true + dependencies: + '@types/node': 18.11.19 dev: true /metaviewport-parser/0.2.0: @@ -24050,7 +22860,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /mini-css-extract-plugin/2.7.2_webpack@5.75.0: @@ -24098,6 +22908,13 @@ packages: brace-expansion: 1.1.11 dev: true + /minimatch/5.0.1: + resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimatch/5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} @@ -24203,6 +23020,34 @@ packages: obliterator: 1.6.1 dev: false + /mocha/10.2.0: + resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==} + engines: {node: '>= 14.0.0'} + hasBin: true + dependencies: + ansi-colors: 4.1.1 + browser-stdout: 1.3.1 + chokidar: 3.5.3 + debug: 4.3.4_supports-color@8.1.1 + diff: 5.0.0 + escape-string-regexp: 4.0.0 + find-up: 5.0.0 + glob: 7.2.0 + he: 1.2.0 + js-yaml: 4.1.0 + log-symbols: 4.1.0 + minimatch: 5.0.1 + ms: 2.1.3 + nanoid: 3.3.3 + serialize-javascript: 6.0.0 + strip-json-comments: 3.1.1 + supports-color: 8.1.1 + workerpool: 6.2.1 + yargs: 16.2.0 + yargs-parser: 20.2.4 + yargs-unparser: 2.0.0 + dev: true + /mochawesome-merge/4.2.2: resolution: {integrity: sha512-ZHeZcChGhb3If7fjSVuyB9rmDH86inNtsTb1ONYq1h0L1IduldFu38bJDcow46alMpiYQgJ7cPhv6nwpCwbJQw==} engines: {node: '>=10.0.0'} @@ -24231,7 +23076,7 @@ packages: yargs: 13.3.2 dev: true - /mochawesome/6.3.1: + /mochawesome/6.3.1_mocha@10.2.0: resolution: {integrity: sha512-G2J7Le8ap+0222otJQEUVFs7RYzphiIk21NzaBZE2dbyHJ2+9aai+V2cV7lreEKigDpwQ+SXeiiBH9KQlrkaAQ==} peerDependencies: mocha: '>=7' @@ -24243,6 +23088,7 @@ packages: lodash.isfunction: 3.0.9 lodash.isobject: 3.0.2 lodash.isstring: 4.0.1 + mocha: 10.2.0 mochawesome-report-generator: 5.2.0 strip-ansi: 6.0.1 uuid: 8.3.2 @@ -24290,7 +23136,7 @@ packages: /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw/1.0.0: + /msw/1.0.0_typescript@4.9.4: resolution: {integrity: sha512-8QVa1RAN/Nzbn/tKmtimJ+b2M1QZOMdETQW7/1TmBOZ4w+wJojfxuh1Hj5J4FYdBgZWW/TK4CABUOlOM4OjTOA==} engines: {node: '>=14'} hasBin: true @@ -24319,6 +23165,7 @@ packages: path-to-regexp: 6.2.1 strict-event-emitter: 0.4.6 type-fest: 2.19.0 + typescript: 4.9.4 yargs: 17.6.2 transitivePeerDependencies: - encoding @@ -24351,6 +23198,12 @@ packages: dev: true optional: true + /nanoid/3.3.3: + resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + /nanoid/3.3.4: resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -24391,7 +23244,6 @@ packages: /natural-compare/1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - dev: true /ncjsm/4.3.2: resolution: {integrity: sha512-6d1VWA7FY31CpI4Ki97Fpm36jfURkVbpktizp8aoVViTZRQgr/0ddmlKerALSSlzfwQRBeSq1qwwVcBJK4Sk7Q==} @@ -24907,7 +23759,6 @@ packages: yargs-parser: 21.1.1 transitivePeerDependencies: - debug - dev: false /nx/15.6.3_pys4s3dn6tgpk2ashdi5msvbey: resolution: {integrity: sha512-3t0A0GPLNen1yPAyE+VGZ3nkAzZYb5nfXtAcx8SHBlKq4u42yBY3khBmP1y4Og3jhIwFIj7J7Npeh8ZKrthmYQ==} @@ -25276,7 +24127,6 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 word-wrap: 1.2.3 - dev: true /ora/3.4.0: resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==} @@ -26101,11 +24951,11 @@ packages: engines: {node: '>=4'} dev: true - /pnp-webpack-plugin/1.6.4: + /pnp-webpack-plugin/1.6.4_typescript@4.9.4: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0 + ts-pnp: 1.2.0_typescript@4.9.4 transitivePeerDependencies: - typescript dev: true @@ -26267,7 +25117,7 @@ packages: klona: 2.0.6 postcss: 8.4.21 semver: 7.3.8 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /postcss-loader/7.0.2_6jdsrmfenkuhhw3gx4zvjlznce: @@ -26660,7 +25510,6 @@ packages: /prelude-ls/1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - dev: true /prepend-http/2.0.0: resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} @@ -27166,15 +26015,9 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /react-dev-utils/12.0.1_webpack@5.75.0: + /react-dev-utils/12.0.1_3fkjkrd3audxnith3e7fo4fnxi: resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} - peerDependencies: - typescript: '>=2.7' - webpack: '>=4' - peerDependenciesMeta: - typescript: - optional: true dependencies: '@babel/code-frame': 7.18.6 address: 1.2.2 @@ -27185,7 +26028,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_webpack@5.75.0 + fork-ts-checker-webpack-plugin: 6.5.2_3fkjkrd3audxnith3e7fo4fnxi global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -27200,17 +26043,20 @@ packages: shell-quote: 1.7.4 strip-ansi: 6.0.1 text-table: 0.2.0 - webpack: 5.75.0 transitivePeerDependencies: - eslint - supports-color + - typescript - vue-template-compiler + - webpack dev: false - /react-docgen-typescript/2.2.2: + /react-docgen-typescript/2.2.2_typescript@4.9.4: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' + dependencies: + typescript: 4.9.4 dev: true /react-docgen/5.4.3: @@ -27381,7 +26227,7 @@ packages: react: 18.2.0 dev: false - /react-intl/6.2.5_react@18.2.0: + /react-intl/6.2.5_o77wnou4wwnegu5woljtklrzru: resolution: {integrity: sha512-nz21POTKbE0sPEuEJU4o5YTZYY7VlIYCPNJaD6D2+xKyk6Noj6DoUK0LRO9LXuQNUuQ044IZl3m6ymzZRj8XFQ==} peerDependencies: react: ^16.6.0 || 17 || 18 @@ -27392,7 +26238,7 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.14.3 '@formatjs/icu-messageformat-parser': 2.1.14 - '@formatjs/intl': 2.6.3 + '@formatjs/intl': 2.6.3_typescript@4.9.4 '@formatjs/intl-displaynames': 6.2.3 '@formatjs/intl-listformat': 7.1.7 '@types/hoist-non-react-statics': 3.3.1 @@ -27401,6 +26247,7 @@ packages: intl-messageformat: 10.2.5 react: 18.2.0 tslib: 2.4.1 + typescript: 4.9.4 dev: false /react-is/16.13.1: @@ -27908,7 +26755,6 @@ packages: /regexpp/3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} - dev: true /regexpu-core/5.2.2: resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==} @@ -28371,12 +27217,13 @@ packages: rollup: 2.79.1 dev: true - /rollup-plugin-polyfill-node/0.12.0: + /rollup-plugin-polyfill-node/0.12.0_rollup@3.14.0: resolution: {integrity: sha512-PWEVfDxLEKt8JX1nZ0NkUAgXpkZMTb85rO/Ru9AQ69wYW8VUCfDgP4CGRXXWYni5wDF0vIeR1UoF3Jmw/Lt3Ug==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 dependencies: - '@rollup/plugin-inject': 5.0.3 + '@rollup/plugin-inject': 5.0.3_rollup@3.14.0 + rollup: 3.14.0 dev: true /rollup-plugin-postcss/4.0.2_postcss@8.4.21: @@ -28403,7 +27250,7 @@ packages: - ts-node dev: true - /rollup-plugin-typescript2/0.34.1_rollup@2.79.1: + /rollup-plugin-typescript2/0.34.1_ntuob3xud5wukob6phfmz2mbyy: resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' @@ -28415,6 +27262,7 @@ packages: rollup: 2.79.1 semver: 7.3.8 tslib: 2.5.0 + typescript: 4.9.4 dev: true /rollup-pluginutils/2.8.2: @@ -28581,7 +27429,7 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.57.1 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /sass/1.57.1: @@ -28803,6 +27651,12 @@ packages: randombytes: 2.1.0 dev: true + /serialize-javascript/6.0.0: + resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} + dependencies: + randombytes: 2.1.0 + dev: true + /serialize-javascript/6.0.1: resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} dependencies: @@ -29325,7 +28179,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /source-map-resolve/0.5.3: @@ -29967,7 +28821,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /style-search/0.1.0: @@ -30007,8 +28861,9 @@ packages: react-is: 18.2.0 shallowequal: 1.1.0 supports-color: 5.5.0 + dev: false - /styled-components/5.3.6_wcqkhtmu7mswc6yz4uyexck3ty: + /styled-components/5.3.6_gzjxbbqgwmhffys5rngtiuy3yq: resolution: {integrity: sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==} engines: {node: '>=10'} requiresBuild: true @@ -30027,9 +28882,9 @@ packages: hoist-non-react-statics: 3.3.2 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 + react-is: 18.2.0 shallowequal: 1.1.0 supports-color: 5.5.0 - dev: false /styled-theming/2.2.0: resolution: {integrity: sha512-5nqUoCR/BJ6ziJ39xN/K5nmrzMn37BgPc693vgeQlO0hMaat/hJvJ0/u0vtm1ZQxU82sdltEbynqjkoYYMVwaA==} @@ -30152,7 +29007,7 @@ packages: klona: 2.0.6 normalize-path: 3.0.0 stylus: 0.55.0 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /stylus/0.55.0: @@ -30509,6 +29364,31 @@ packages: - bluebird dev: true + /terser-webpack-plugin/5.3.6_htvmhiqynazf46fjrszipnqp7a: + resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + esbuild: 0.16.17 + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.1 + terser: 5.16.1 + webpack: 5.75.0_esbuild@0.16.17 + dev: true + /terser-webpack-plugin/5.3.6_jftlsdtjtdse3p3ijno5hy54ky: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} @@ -30532,6 +29412,7 @@ packages: serialize-javascript: 6.0.1 terser: 5.16.1 webpack: 5.75.0_@swc+core@1.3.27 + dev: true /terser-webpack-plugin/5.3.6_webpack@5.75.0: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} @@ -30878,7 +29759,7 @@ packages: tslib: 1.14.1 dev: true - /ts-jest/28.0.5_gcleckb5zcuhbbyyhlubvkkx2y: + /ts-jest/28.0.5_bbmp2b2hehqx5oucsnbpqhnia4: resolution: {integrity: sha512-Sx9FyP9pCY7pUzQpy4FgRZf2bhHY3za576HMKJFs+OnQ9jS96Du5vNsDKkyedQkik+sEabbKAnCliv9BEsHZgQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -30896,19 +29777,22 @@ packages: esbuild: optional: true dependencies: - babel-jest: 28.1.3 + '@babel/core': 7.20.12 + babel-jest: 28.1.3_@babel+core@7.20.12 bs-logger: 0.2.6 + esbuild: 0.16.17 fast-json-stable-stringify: 2.1.0 - jest: 28.1.3 + jest: 28.1.3_qnch7tm6w36cvfoqlc3v7gbphu jest-util: 28.1.3 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 + typescript: 4.9.4 yargs-parser: 21.1.1 dev: true - /ts-loader/9.4.2_qw7fmzhoapcndkteb5rsc33stq: + /ts-loader/9.4.2_3fkjkrd3audxnith3e7fo4fnxi: resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -30919,11 +29803,11 @@ packages: enhanced-resolve: 5.12.0 micromatch: 4.0.5 semver: 7.3.8 - typescript: 4.8.4 - webpack: 5.75.0_@swc+core@1.3.27 + typescript: 4.9.4 + webpack: 5.75.0 dev: true - /ts-loader/9.4.2_webpack@5.75.0: + /ts-loader/9.4.2_qw7fmzhoapcndkteb5rsc33stq: resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -30934,14 +29818,15 @@ packages: enhanced-resolve: 5.12.0 micromatch: 4.0.5 semver: 7.3.8 - webpack: 5.75.0 + typescript: 4.8.4 + webpack: 5.75.0_@swc+core@1.3.27 dev: true /ts-log/2.2.5: resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==} dev: true - /ts-node/10.9.1: + /ts-node/10.9.1_2frzvjkzow2fwipuxdbwjegfle: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -30956,21 +29841,24 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 + '@swc/core': 1.3.27 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 + '@types/node': 16.11.7 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 + typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-node/10.9.1_2frzvjkzow2fwipuxdbwjegfle: + /ts-node/10.9.1_yvj57biz6xmq5aanirs5pwk65a: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -30985,24 +29873,23 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.3.27 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 16.11.7 + '@types/node': 18.11.19 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.8.4 + typescript: 4.9.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-node/9.1.1: + /ts-node/9.1.1_typescript@4.9.4: resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -31014,10 +29901,11 @@ packages: diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.21 + typescript: 4.9.4 yn: 3.1.1 dev: true - /ts-pnp/1.2.0: + /ts-pnp/1.2.0_typescript@4.9.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -31025,13 +29913,15 @@ packages: peerDependenciesMeta: typescript: optional: true + dependencies: + typescript: 4.9.4 dev: true /ts-toolbelt/6.15.5: resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==} dev: true - /tsconfck/2.0.2: + /tsconfck/2.0.2_typescript@4.9.4: resolution: {integrity: sha512-H3DWlwKpow+GpVLm/2cpmok72pwRr1YFROV3YzAmvzfGFiC1zEM/mc9b7+1XnrxuXtEbhJ7xUSIqjPFbedp7aQ==} engines: {node: ^14.13.1 || ^16 || >=18, pnpm: ^7.18.0} hasBin: true @@ -31040,6 +29930,8 @@ packages: peerDependenciesMeta: typescript: optional: true + dependencies: + typescript: 4.9.4 dev: true /tsconfig-paths-webpack-plugin/4.0.0: @@ -31098,15 +29990,6 @@ packages: engines: {node: '>=0.6.x'} dev: false - /tsutils/3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - dev: true - /tsutils/3.21.0_typescript@4.8.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} @@ -31152,7 +30035,6 @@ packages: engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 - dev: true /type-detect/4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} @@ -31630,21 +30512,6 @@ packages: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} dev: true - /url-loader/4.1.1: - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - file-loader: - optional: true - dependencies: - loader-utils: 2.0.4 - mime-types: 2.1.35 - schema-utils: 3.1.1 - dev: true - /url-loader/4.1.1_lit45vopotvaqup7lrvlnvtxwy: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} @@ -31677,7 +30544,6 @@ packages: mime-types: 2.1.35 schema-utils: 3.1.1 webpack: 5.75.0 - dev: false /url-parse-lax/3.0.0: resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} @@ -31969,7 +30835,7 @@ packages: vfile-message: 3.1.3 dev: false - /vite-plugin-eslint/1.8.1_vite@4.1.1: + /vite-plugin-eslint/1.8.1_eslint@8.4.1+vite@4.1.1: resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} peerDependencies: eslint: '>=7' @@ -31977,8 +30843,9 @@ packages: dependencies: '@rollup/pluginutils': 4.2.1 '@types/eslint': 8.4.10 + eslint: 8.4.1 rollup: 2.79.1 - vite: 4.1.1 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy dev: true /vite-plugin-relay/2.0.0_gi5gywmqtyr7zrkx7ro24fexwe: @@ -31989,36 +30856,36 @@ packages: dependencies: '@babel/core': 7.20.12 babel-plugin-relay: 14.1.0 - vite: 4.1.1 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy transitivePeerDependencies: - supports-color dev: true - /vite-plugin-svgr/2.4.0_vite@4.1.1: + /vite-plugin-svgr/2.4.0_rollup@3.14.0+vite@4.1.1: resolution: {integrity: sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==} peerDependencies: vite: ^2.6.0 || 3 || 4 dependencies: - '@rollup/pluginutils': 5.0.2 + '@rollup/pluginutils': 5.0.2_rollup@3.14.0 '@svgr/core': 6.5.1 - vite: 4.1.1 + vite: 4.1.1_n4n37uf63vmujyalkhri22ldvy transitivePeerDependencies: - rollup - supports-color dev: true - /vite-tsconfig-paths/4.0.5: + /vite-tsconfig-paths/4.0.5_typescript@4.9.4: resolution: {integrity: sha512-/L/eHwySFYjwxoYt1WRJniuK/jPv+WGwgRGBYx3leciR5wBeqntQpUE6Js6+TJemChc+ter7fDBKieyEWDx4yQ==} dependencies: debug: 4.3.4 globrex: 0.1.2 - tsconfck: 2.0.2 + tsconfck: 2.0.2_typescript@4.9.4 transitivePeerDependencies: - supports-color - typescript dev: true - /vite/4.1.1: + /vite/4.1.1_n4n37uf63vmujyalkhri22ldvy: resolution: {integrity: sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -32043,10 +30910,12 @@ packages: terser: optional: true dependencies: + '@types/node': 18.11.19 esbuild: 0.16.17 postcss: 8.4.21 resolve: 1.22.1 rollup: 3.14.0 + terser: 5.16.1 optionalDependencies: fsevents: 2.3.2 dev: true @@ -32242,7 +31111,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 /webpack-dev-server/4.11.1_webpack@5.75.0: resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} @@ -32282,7 +31151,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 webpack-dev-middleware: 5.3.3_webpack@5.75.0 ws: 8.12.0 transitivePeerDependencies: @@ -32350,7 +31219,7 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.75.0_@swc+core@1.3.27 + webpack: 5.75.0 dev: true /webpack-virtual-modules/0.2.2: @@ -32478,6 +31347,47 @@ packages: - '@swc/core' - esbuild - uglify-js + dev: true + + /webpack/5.75.0_esbuild@0.16.17: + resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.4 + '@types/estree': 0.0.51 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.8.2 + acorn-import-assertions: 1.8.0_acorn@8.8.2 + browserslist: 4.21.4 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.12.0 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.6_htvmhiqynazf46fjrszipnqp7a + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true /webpackbar/5.0.2_webpack@5.75.0: resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==} @@ -32649,6 +31559,10 @@ packages: microevent.ts: 0.1.1 dev: true + /workerpool/6.2.1: + resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} + dev: true + /wrap-ansi/3.0.1: resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} engines: {node: '>=4'} @@ -32896,6 +31810,11 @@ packages: camelcase: 5.3.1 decamelize: 1.2.0 + /yargs-parser/20.2.4: + resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} + engines: {node: '>=10'} + dev: true + /yargs-parser/20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} @@ -32904,6 +31823,16 @@ packages: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} + /yargs-unparser/2.0.0: + resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} + engines: {node: '>=10'} + dependencies: + camelcase: 6.3.0 + decamelize: 4.0.0 + flat: 5.0.2 + is-plain-obj: 2.1.0 + dev: true + /yargs/13.3.2: resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} dependencies: