From 6b496d766e93d2a820bf73b205c8286f9aa439fc Mon Sep 17 00:00:00 2001 From: Dom Talbot <3301714+domjtalbot@users.noreply.github.com> Date: Sat, 24 Dec 2022 21:46:22 +0000 Subject: [PATCH] feat(nx-mesh): update nx to `15.4.1` (#111) --- .changeset/sour-months-protect.md | 5 + README.md | 10 +- .../openapi/javascript-wiki-e2e/project.json | 5 +- libs/nx-mesh/package.json | 14 +- .../build-swc/swc-executor/compile-swc.ts | 2 +- .../build-swc/swc-executor/swc.impl.ts | 1 + .../base/__snapshots__/base.spec.ts.snap | 140 +- libs/nx-mesh/src/generators/base/base.spec.ts | 56 +- .../generators/base/lib/add-project-config.ts | 2 +- .../src/generators/preset/preset.spec.ts | 2 +- .../create-codegen-files.spec.ts.snap | 44 +- libs/nx-mesh/src/utils/create-package-json.ts | 22 +- .../src/utils/get-package-versions.spec.ts | 2 +- .../nx-mesh/src/utils/get-package-versions.ts | 2 +- package.json | 44 +- pnpm-lock.yaml | 3681 ++++++++--------- 16 files changed, 1911 insertions(+), 2121 deletions(-) create mode 100644 .changeset/sour-months-protect.md diff --git a/.changeset/sour-months-protect.md b/.changeset/sour-months-protect.md new file mode 100644 index 00000000..e0aa72e4 --- /dev/null +++ b/.changeset/sour-months-protect.md @@ -0,0 +1,5 @@ +--- +'nx-mesh': major +--- + +Update Nx to `15.4.1` diff --git a/README.md b/README.md index bb7afd12..57001ce4 100644 --- a/README.md +++ b/README.md @@ -83,11 +83,11 @@ yarn add -D nx-mesh ### Peer Dependencies -| Name | Version | Required | Auto-installed by generators | -| --------------------- | ---------- | :------: | :--------------------------: | -| `nx` | `>=15` | ✅ | - | -| `@graphql-mesh/cli` | `>=0.71.0` | ✅ | ✅ | -| `@graphql-codgen/cli` | `>=2.16.1` | ✅ | ✅ | +| Name | Version | Required | Auto-installed by generators | +| --------------------- | ------------- | :------: | :--------------------------: | +| `nx` | `>= 14 <= 16` | ✅ | - | +| `@graphql-mesh/cli` | `>=0.71.0` | ✅ | ✅ | +| `@graphql-codgen/cli` | `>=2.16.1` | ✅ | ✅ |
diff --git a/apps/example/api-gateway/openapi/javascript-wiki-e2e/project.json b/apps/example/api-gateway/openapi/javascript-wiki-e2e/project.json index 58d53bef..a65966e0 100644 --- a/apps/example/api-gateway/openapi/javascript-wiki-e2e/project.json +++ b/apps/example/api-gateway/openapi/javascript-wiki-e2e/project.json @@ -3,7 +3,7 @@ "$schema": "../../../../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "apps/example/api-gateway/openapi/javascript-wiki-e2e/src", "projectType": "application", - "implicitDependencies": ["nx-mesh"], + "implicitDependencies": ["example-api-gateway-openapi-javascript-wiki"], "targets": { "e2e": { "executor": "@nrwl/cypress:cypress", @@ -28,6 +28,5 @@ } } }, - "tags": [], - "implicitDependencies": ["example-api-gateway-openapi-javascript-wiki"] + "tags": [] } diff --git a/libs/nx-mesh/package.json b/libs/nx-mesh/package.json index 7fafec85..914d33cc 100644 --- a/libs/nx-mesh/package.json +++ b/libs/nx-mesh/package.json @@ -12,7 +12,7 @@ "@swc-node/register": "^1.5.1", "@swc/core": "^0.1.55", "@swc/helpers": "^0.4.11", - "nx": ">=15" + "nx": ">= 14 <= 16" }, "peerDependenciesMeta": { "@swc-node/register": { @@ -26,12 +26,12 @@ } }, "dependencies": { - "@nrwl/cypress": "^15.0.13", - "@nrwl/devkit": "^15.0.13", - "@nrwl/js": "^15.0.13", - "@nrwl/linter": "^15.0.13", - "@nrwl/node": "^15.0.13", - "@nrwl/workspace": "^15.0.13", + "@nrwl/cypress": "15.4.1", + "@nrwl/devkit": "15.4.1", + "@nrwl/js": "15.4.1", + "@nrwl/linter": "15.4.1", + "@nrwl/node": "15.4.1", + "@nrwl/workspace": "15.4.1", "fs-extra": "^10.1.0", "get-port": "5.1.1", "tslib": "2.4.0", diff --git a/libs/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts b/libs/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts index b4922993..4c6a51b8 100644 --- a/libs/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts +++ b/libs/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts @@ -7,7 +7,7 @@ import { cacheDir, ExecutorContext, logger } from '@nrwl/devkit'; import { exec, execSync } from 'child_process'; import { removeSync } from 'fs-extra'; -import { createAsyncIterable } from '@nrwl/js/src/utils/create-async-iterable/create-async-iteratable'; +import { createAsyncIterable } from '@nrwl/devkit/src/utils/async-iterable'; import { NormalizedSwcExecutorOptions, SwcCliOptions, diff --git a/libs/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts b/libs/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts index 56ba0b0b..893ff61f 100644 --- a/libs/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts +++ b/libs/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts @@ -3,6 +3,7 @@ // Modifed version of Nx SWC executor // https://github.com/nrwl/nx/blob/master/packages/js/src/executors/swc/swc.impl.ts // @ts-nocheck + import { ExecutorContext } from '@nrwl/devkit'; import { assetGlobsToFiles, diff --git a/libs/nx-mesh/src/generators/base/__snapshots__/base.spec.ts.snap b/libs/nx-mesh/src/generators/base/__snapshots__/base.spec.ts.snap index 88a23d4d..2a073d65 100644 --- a/libs/nx-mesh/src/generators/base/__snapshots__/base.spec.ts.snap +++ b/libs/nx-mesh/src/generators/base/__snapshots__/base.spec.ts.snap @@ -4,13 +4,13 @@ exports[`generators/base app directory --babelJest should use babel for jest 1`] "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -19,13 +19,13 @@ exports[`generators/base app directory --babelJest should use babel for jest 2`] "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -34,13 +34,13 @@ exports[`generators/base app directory --babelJest should use babel for jest 3`] "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -49,13 +49,13 @@ exports[`generators/base app directory --babelJest should use babel for jest 4`] "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -64,13 +64,13 @@ exports[`generators/base app directory --babelJest should use babel for jest 5`] "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -1769,7 +1769,7 @@ documents: exports[`generators/base app directory --linter should use eslint for linting 1`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -1807,7 +1807,7 @@ exports[`generators/base app directory --linter should use eslint for linting 1` exports[`generators/base app directory --linter should use eslint for linting 2`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -1845,7 +1845,7 @@ exports[`generators/base app directory --linter should use eslint for linting 2` exports[`generators/base app directory --linter should use eslint for linting 3`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -1883,7 +1883,7 @@ exports[`generators/base app directory --linter should use eslint for linting 3` exports[`generators/base app directory --linter should use eslint for linting 4`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -1921,7 +1921,7 @@ exports[`generators/base app directory --linter should use eslint for linting 4` exports[`generators/base app directory --linter should use eslint for linting 5`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -2404,7 +2404,7 @@ exports[`generators/base app directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -2415,7 +2415,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -2424,7 +2424,7 @@ exports[`generators/base app directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -2435,7 +2435,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -2444,7 +2444,7 @@ exports[`generators/base app directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -2455,7 +2455,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -2464,7 +2464,7 @@ exports[`generators/base app directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -2475,7 +2475,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -2484,7 +2484,7 @@ exports[`generators/base app directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -2495,7 +2495,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -2549,13 +2549,13 @@ exports[`generators/base app with standalone config --babelJest should use babel "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -2900,7 +2900,7 @@ documents: exports[`generators/base app with standalone config --linter should use eslint for linting 1`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -3023,7 +3023,7 @@ exports[`generators/base app with standalone config --unitTestRunner should add "/* eslint-disable */ export default { displayName: 'my-mesh-app', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -3034,7 +3034,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../coverage/apps/my-mesh-app' + coverageDirectory: '../coverage/my-mesh-app' }; " `; @@ -3052,13 +3052,13 @@ exports[`generators/base lib directory --babelJest should use babel for jest 1`] "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -3067,13 +3067,13 @@ exports[`generators/base lib directory --babelJest should use babel for jest 2`] "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -3082,13 +3082,13 @@ exports[`generators/base lib directory --babelJest should use babel for jest 3`] "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -3097,13 +3097,13 @@ exports[`generators/base lib directory --babelJest should use babel for jest 4`] "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -3112,13 +3112,13 @@ exports[`generators/base lib directory --babelJest should use babel for jest 5`] "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -4906,7 +4906,7 @@ documents: exports[`generators/base lib directory --linter should use eslint for linting 1`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -4944,7 +4944,7 @@ exports[`generators/base lib directory --linter should use eslint for linting 1` exports[`generators/base lib directory --linter should use eslint for linting 2`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -4982,7 +4982,7 @@ exports[`generators/base lib directory --linter should use eslint for linting 2` exports[`generators/base lib directory --linter should use eslint for linting 3`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -5020,7 +5020,7 @@ exports[`generators/base lib directory --linter should use eslint for linting 3` exports[`generators/base lib directory --linter should use eslint for linting 4`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -5058,7 +5058,7 @@ exports[`generators/base lib directory --linter should use eslint for linting 4` exports[`generators/base lib directory --linter should use eslint for linting 5`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -5607,7 +5607,7 @@ exports[`generators/base lib directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -5618,7 +5618,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -5627,7 +5627,7 @@ exports[`generators/base lib directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -5638,7 +5638,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -5647,7 +5647,7 @@ exports[`generators/base lib directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -5658,7 +5658,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -5667,7 +5667,7 @@ exports[`generators/base lib directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -5678,7 +5678,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -5687,7 +5687,7 @@ exports[`generators/base lib directory --unitTestRunner should add a jest config "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -5698,7 +5698,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -5752,13 +5752,13 @@ exports[`generators/base lib with standalone config --babelJest should use babel "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -6122,7 +6122,7 @@ documents: exports[`generators/base lib with standalone config --linter should use eslint for linting 1`] = ` "{ \\"extends\\": [ - \\"../../.eslintrc.json\\" + \\"../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -6267,7 +6267,7 @@ exports[`generators/base lib with standalone config --unitTestRunner should add "/* eslint-disable */ export default { displayName: 'my-mesh-lib', - preset: '../../jest.preset.js', + preset: '../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -6278,7 +6278,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../coverage/libs/my-mesh-lib' + coverageDirectory: '../coverage/my-mesh-lib' }; " `; @@ -6296,13 +6296,13 @@ exports[`generators/base nested within app directory --babelJest should use babe "/* eslint-disable */ export default { displayName: 'test-my-mesh-app', - preset: '../../../jest.preset.js', + preset: '../../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]s$': 'babel-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../../coverage/apps/test/my-mesh-app' + coverageDirectory: '../../coverage/test/my-mesh-app' }; " `; @@ -6647,7 +6647,7 @@ documents: exports[`generators/base nested within app directory --linter should use eslint for linting 1`] = ` "{ \\"extends\\": [ - \\"../../../.eslintrc.json\\" + \\"../../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -6770,7 +6770,7 @@ exports[`generators/base nested within app directory --unitTestRunner should add "/* eslint-disable */ export default { displayName: 'test-my-mesh-app', - preset: '../../../jest.preset.js', + preset: '../../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -6781,7 +6781,7 @@ export default { '^.+\\\\\\\\.[tj]s$': 'ts-jest' }, moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: '../../../coverage/apps/test/my-mesh-app' + coverageDirectory: '../../coverage/test/my-mesh-app' }; " `; @@ -6799,13 +6799,13 @@ exports[`generators/base nested within lib directory --babelJest should use babe "/* eslint-disable */ export default { displayName: 'test-my-mesh-lib', - preset: '../../../jest.preset.js', + preset: '../../jest.preset.js', testEnvironment: 'node', transform: { '^.+\\\\\\\\.[tj]sx?$': 'babel-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../../coverage/libs/test/my-mesh-lib' + coverageDirectory: '../../coverage/test/my-mesh-lib' }; " `; @@ -7169,7 +7169,7 @@ documents: exports[`generators/base nested within lib directory --linter should use eslint for linting 1`] = ` "{ \\"extends\\": [ - \\"../../../.eslintrc.json\\" + \\"../../.eslintrc.json\\" ], \\"ignorePatterns\\": [ \\"!**/*\\", @@ -7314,7 +7314,7 @@ exports[`generators/base nested within lib directory --unitTestRunner should add "/* eslint-disable */ export default { displayName: 'test-my-mesh-lib', - preset: '../../../jest.preset.js', + preset: '../../jest.preset.js', globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json', @@ -7325,7 +7325,7 @@ export default { '^.+\\\\\\\\.[tj]sx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], - coverageDirectory: '../../../coverage/libs/test/my-mesh-lib' + coverageDirectory: '../../coverage/test/my-mesh-lib' }; " `; diff --git a/libs/nx-mesh/src/generators/base/base.spec.ts b/libs/nx-mesh/src/generators/base/base.spec.ts index 340a4a58..74845e9a 100644 --- a/libs/nx-mesh/src/generators/base/base.spec.ts +++ b/libs/nx-mesh/src/generators/base/base.spec.ts @@ -19,126 +19,126 @@ describe.each< { describeName: 'app directory', expectedName: 'my-mesh-app', - expectedPath: 'apps/my-mesh-app', + expectedPath: 'my-mesh-app', name: 'my-mesh-app', projectType: 'app', - relativeToRoot: '../../', + relativeToRoot: '../', }, { describeName: 'app directory', expectedName: 'my-mesh-app', - expectedPath: 'apps/my-mesh-app', + expectedPath: 'my-mesh-app', name: 'my-mesh-app', projectType: 'app', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'country-info', }, { describeName: 'app directory', expectedName: 'my-mesh-app', - expectedPath: 'apps/my-mesh-app', + expectedPath: 'my-mesh-app', name: 'my-mesh-app', projectType: 'app', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'javascript-wiki', }, { describeName: 'app directory', expectedName: 'my-mesh-app', - expectedPath: 'apps/my-mesh-app', + expectedPath: 'my-mesh-app', name: 'my-mesh-app', projectType: 'app', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'stackexchange', }, { describeName: 'app directory', expectedName: 'my-mesh-app', - expectedPath: 'apps/my-mesh-app', + expectedPath: 'my-mesh-app', name: 'my-mesh-app', projectType: 'app', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'trippin', }, { describeName: 'nested within app directory', directory: 'test', expectedName: 'test-my-mesh-app', - expectedPath: 'apps/test/my-mesh-app', + expectedPath: 'test/my-mesh-app', name: 'my-mesh-app', projectType: 'app', - relativeToRoot: '../../../', + relativeToRoot: '../../', }, { describeName: 'app with standalone config', expectedName: 'my-mesh-app', - expectedPath: 'apps/my-mesh-app', + expectedPath: 'my-mesh-app', name: 'my-mesh-app', projectType: 'app', standaloneConfig: true, - relativeToRoot: '../../', + relativeToRoot: '../', }, { describeName: 'lib directory', expectedName: 'my-mesh-lib', - expectedPath: 'libs/my-mesh-lib', + expectedPath: 'my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', - relativeToRoot: '../../', + relativeToRoot: '../', }, { describeName: 'lib directory', expectedName: 'my-mesh-lib', - expectedPath: 'libs/my-mesh-lib', + expectedPath: 'my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'country-info', }, { describeName: 'lib directory', expectedName: 'my-mesh-lib', - expectedPath: 'libs/my-mesh-lib', + expectedPath: 'my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'javascript-wiki', }, { describeName: 'lib directory', expectedName: 'my-mesh-lib', - expectedPath: 'libs/my-mesh-lib', + expectedPath: 'my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'stackexchange', }, { describeName: 'lib directory', expectedName: 'my-mesh-lib', - expectedPath: 'libs/my-mesh-lib', + expectedPath: 'my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', - relativeToRoot: '../../', + relativeToRoot: '../', example: 'trippin', }, { describeName: 'nested within lib directory', directory: 'test', expectedName: 'test-my-mesh-lib', - expectedPath: 'libs/test/my-mesh-lib', + expectedPath: 'test/my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', - relativeToRoot: '../../../', + relativeToRoot: '../../', }, { describeName: 'lib with standalone config', expectedName: 'my-mesh-lib', - expectedPath: 'libs/my-mesh-lib', + expectedPath: 'my-mesh-lib', name: 'my-mesh-lib', projectType: 'lib', standaloneConfig: true, - relativeToRoot: '../../', + relativeToRoot: '../', }, ])( 'generators/base', diff --git a/libs/nx-mesh/src/generators/base/lib/add-project-config.ts b/libs/nx-mesh/src/generators/base/lib/add-project-config.ts index a0dc3c48..835e4d68 100644 --- a/libs/nx-mesh/src/generators/base/lib/add-project-config.ts +++ b/libs/nx-mesh/src/generators/base/lib/add-project-config.ts @@ -1,5 +1,5 @@ import type { Tree } from '@nrwl/devkit'; -import type { ProjectConfiguration } from 'nx/src/config/workspace-json-project-json'; +import type { ProjectConfiguration } from '@nrwl/devkit'; import type { NormalizedOptions } from './normalize-options'; diff --git a/libs/nx-mesh/src/generators/preset/preset.spec.ts b/libs/nx-mesh/src/generators/preset/preset.spec.ts index 1b60ddd7..a9b0184d 100644 --- a/libs/nx-mesh/src/generators/preset/preset.spec.ts +++ b/libs/nx-mesh/src/generators/preset/preset.spec.ts @@ -29,6 +29,6 @@ describe('generators/preset', () => { const config = readProjectConfiguration(tree, 'hello-world'); expect(config).toBeDefined(); - expect(tree.exists('/libs/hello-world/.meshrc.yml')).toBe(true); + expect(tree.exists('hello-world/.meshrc.yml')).toBe(true); }); }); diff --git a/libs/nx-mesh/src/generators/utils/create-mesh-example/__snapshots__/create-codegen-files.spec.ts.snap b/libs/nx-mesh/src/generators/utils/create-mesh-example/__snapshots__/create-codegen-files.spec.ts.snap index aa5ae48a..c18bc77b 100644 --- a/libs/nx-mesh/src/generators/utils/create-mesh-example/__snapshots__/create-codegen-files.spec.ts.snap +++ b/libs/nx-mesh/src/generators/utils/create-mesh-example/__snapshots__/create-codegen-files.spec.ts.snap @@ -6,11 +6,11 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', documents: - 'libs/test/src/graphql/**/*.*.graphql', + 'test/src/graphql/**/*.*.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, @@ -27,11 +27,11 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', documents: - 'libs/test/src/graphql/**/*.*.graphql', + 'test/src/graphql/**/*.*.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, @@ -48,9 +48,9 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, @@ -67,11 +67,11 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', documents: - 'libs/test/src/graphql/**/*.*.graphql', + 'test/src/graphql/**/*.*.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, @@ -88,11 +88,11 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', documents: - 'libs/test/src/graphql/**/*.*.graphql', + 'test/src/graphql/**/*.*.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], config: { @@ -112,9 +112,9 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, @@ -131,11 +131,11 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', documents: - 'libs/test/src/graphql/**/*.*.graphql', + 'test/src/graphql/**/*.*.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, @@ -152,11 +152,11 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'libs/test/.mesh/schema.graphql', + schema: 'test/.mesh/schema.graphql', documents: - 'libs/test/src/graphql/**/*.*.graphql', + 'test/src/graphql/**/*.*.graphql', generates: { - 'libs/test/.codegen/': { + 'test/.codegen/': { preset: 'client', plugins: [], }, diff --git a/libs/nx-mesh/src/utils/create-package-json.ts b/libs/nx-mesh/src/utils/create-package-json.ts index f9d75765..b5725a8f 100644 --- a/libs/nx-mesh/src/utils/create-package-json.ts +++ b/libs/nx-mesh/src/utils/create-package-json.ts @@ -1,7 +1,10 @@ import type { ExecutorContext } from '@nrwl/devkit'; -import { readCachedProjectGraph, writeJsonFile } from '@nrwl/devkit'; -import { createPackageJson as generatePackageJson } from '@nrwl/workspace/src/utilities/create-package-json'; +import { + createPackageJson as generatePackageJson, + readCachedProjectGraph, + writeJsonFile, +} from '@nrwl/devkit'; import { join } from 'path'; import { meshPackages } from './mesh-packages'; @@ -26,9 +29,9 @@ export async function createPackageJson( const packageJson = generatePackageJson(context.projectName, depGraph, { root: context.root, - projectRoot: - options.projectRoot ?? - context.workspace.projects[context.projectName].sourceRoot, + // projectRoot: + // options.projectRoot ?? + // context.workspace.projects[context.projectName].sourceRoot, }); if (!packageJson.name) { @@ -39,7 +42,7 @@ export async function createPackageJson( packageJson.scripts = {}; } - packageJson.scripts.start = 'graphql-mesh start'; + packageJson.scripts['start'] = 'graphql-mesh start'; if (!packageJson.devDependencies) { packageJson.devDependencies = {}; @@ -50,13 +53,16 @@ export async function createPackageJson( root: context.root, }); - const packages = [ + let packages = [ '@graphql-mesh/cli', 'graphql', - ...getWildcardPackages(packageJson.dependencies), ...getMeshPackages(sourceFile, meshPackages), ]; + if (packageJson.dependencies) { + packages = [...packages, ...getWildcardPackages(packageJson.dependencies)]; + } + packageJson.dependencies = { ...packageJson.dependencies, ...getPackageVersions(packages, depGraph.externalNodes), diff --git a/libs/nx-mesh/src/utils/get-package-versions.spec.ts b/libs/nx-mesh/src/utils/get-package-versions.spec.ts index 69310784..a665186a 100644 --- a/libs/nx-mesh/src/utils/get-package-versions.spec.ts +++ b/libs/nx-mesh/src/utils/get-package-versions.spec.ts @@ -1,4 +1,4 @@ -import type { ProjectGraphExternalNode } from 'nx/src/config/project-graph'; +import type { ProjectGraphExternalNode } from '@nrwl/devkit'; import { meshPackages } from './mesh-packages'; diff --git a/libs/nx-mesh/src/utils/get-package-versions.ts b/libs/nx-mesh/src/utils/get-package-versions.ts index 28656538..a8f7dc2d 100644 --- a/libs/nx-mesh/src/utils/get-package-versions.ts +++ b/libs/nx-mesh/src/utils/get-package-versions.ts @@ -1,4 +1,4 @@ -import type { ProjectGraphExternalNode } from 'nx/src/config/project-graph'; +import type { ProjectGraphExternalNode } from '@nrwl/devkit'; export const getPackageVersions = ( packages: string[], diff --git a/package.json b/package.json index 2144e42f..146eed93 100644 --- a/package.json +++ b/package.json @@ -45,10 +45,10 @@ "@graphql-mesh/utils": "0.42.6", "@graphql-typed-document-node/core": "^3.1.1", "@graphql-yoga/node": "2.13.13", - "@nrwl/devkit": "15.0.13", - "@nrwl/js": "15.0.13", - "@nrwl/next": "15.0.13", - "@nrwl/nx-plugin": "15.0.13", + "@nrwl/devkit": "15.4.1", + "@nrwl/js": "15.4.1", + "@nrwl/next": "15.4.1", + "@nrwl/nx-plugin": "15.4.1", "@swc-node/register": "1.5.1", "@swc/helpers": "0.4.11", "core-js": "^3.6.5", @@ -61,53 +61,53 @@ "react-dom": "18.2.0", "react-is": "18.2.0", "regenerator-runtime": "0.13.7", - "styled-components": "5.3.5", + "styled-components": "5.3.6", "tslib": "2.4.0", "type-fest": "2.18.0" }, "devDependencies": { - "@nrwl/cli": "15.0.13", - "@nrwl/cypress": "15.0.13", - "@nrwl/devkit": "15.0.13", - "@nrwl/eslint-plugin-nx": "15.0.13", - "@nrwl/jest": "15.0.13", - "@nrwl/js": "15.0.13", - "@nrwl/linter": "15.0.13", - "@nrwl/node": "15.0.13", + "@nrwl/cli": "15.4.1", + "@nrwl/cypress": "15.4.1", + "@nrwl/devkit": "15.4.1", + "@nrwl/eslint-plugin-nx": "15.4.1", + "@nrwl/jest": "15.4.1", + "@nrwl/js": "15.4.1", + "@nrwl/linter": "15.4.1", + "@nrwl/node": "15.4.1", "@nrwl/nx-cloud": "15.0.2", - "@nrwl/react": "15.0.13", - "@nrwl/web": "15.0.13", - "@nrwl/workspace": "15.0.13", + "@nrwl/react": "15.4.1", + "@nrwl/web": "15.4.1", + "@nrwl/workspace": "15.4.1", "@swc/cli": "0.1.55", "@swc/core": "1.2.173", "@swc/jest": "0.2.20", "@testing-library/react": "13.4.0", "@types/fs-extra": "9.0.13", "@types/jest": "28.1.8", - "@types/node": "18.7.18", - "@types/react": "18.0.20", - "@types/react-dom": "18.0.6", + "@types/node": "18.11.9", + "@types/react": "18.0.25", + "@types/react-dom": "18.0.9", "@types/react-is": "17.0.3", "@types/styled-components": "5.1.26", "@typescript-eslint/eslint-plugin": "5.42.1", "@typescript-eslint/parser": "5.42.1", "babel-jest": "28.1.3", "babel-plugin-styled-components": "1.10.7", - "cypress": "^10.7.0", + "cypress": "^11.0.0", "eslint": "8.15.0", "eslint-config-next": "13.0.0", "eslint-config-prettier": "8.1.0", "eslint-plugin-cypress": "2.12.1", "eslint-plugin-import": "2.26.0", "eslint-plugin-jsx-a11y": "6.6.1", - "eslint-plugin-react": "7.31.8", + "eslint-plugin-react": "7.31.11", "eslint-plugin-react-hooks": "4.6.0", "fs-extra": "10.1.0", "husky": "8.0.2", "jest": "28.1.3", "jsonc-eslint-parser": "^2.1.0", "lint-staged": "13.1.0", - "nx": "15.0.13", + "nx": "15.4.1", "prettier": "2.7.1", "react-test-renderer": "18.2.0", "ts-jest": "28.0.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f95e19b0..67a4fa9d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,20 +28,20 @@ importers: '@graphql-mesh/utils': 0.42.6 '@graphql-typed-document-node/core': ^3.1.1 '@graphql-yoga/node': 2.13.13 - '@nrwl/cli': 15.0.13 - '@nrwl/cypress': 15.0.13 - '@nrwl/devkit': 15.0.13 - '@nrwl/eslint-plugin-nx': 15.0.13 - '@nrwl/jest': 15.0.13 - '@nrwl/js': 15.0.13 - '@nrwl/linter': 15.0.13 - '@nrwl/next': 15.0.13 - '@nrwl/node': 15.0.13 + '@nrwl/cli': 15.4.1 + '@nrwl/cypress': 15.4.1 + '@nrwl/devkit': 15.4.1 + '@nrwl/eslint-plugin-nx': 15.4.1 + '@nrwl/jest': 15.4.1 + '@nrwl/js': 15.4.1 + '@nrwl/linter': 15.4.1 + '@nrwl/next': 15.4.1 + '@nrwl/node': 15.4.1 '@nrwl/nx-cloud': 15.0.2 - '@nrwl/nx-plugin': 15.0.13 - '@nrwl/react': 15.0.13 - '@nrwl/web': 15.0.13 - '@nrwl/workspace': 15.0.13 + '@nrwl/nx-plugin': 15.4.1 + '@nrwl/react': 15.4.1 + '@nrwl/web': 15.4.1 + '@nrwl/workspace': 15.4.1 '@swc-node/register': 1.5.1 '@swc/cli': 0.1.55 '@swc/core': 1.2.173 @@ -50,9 +50,9 @@ importers: '@testing-library/react': 13.4.0 '@types/fs-extra': 9.0.13 '@types/jest': 28.1.8 - '@types/node': 18.7.18 - '@types/react': 18.0.20 - '@types/react-dom': 18.0.6 + '@types/node': 18.11.9 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 '@types/react-is': 17.0.3 '@types/styled-components': 5.1.26 '@typescript-eslint/eslint-plugin': 5.42.1 @@ -60,7 +60,7 @@ importers: babel-jest: 28.1.3 babel-plugin-styled-components: 1.10.7 core-js: ^3.6.5 - cypress: ^10.7.0 + cypress: ^11.0.0 encoding: 0.1.13 eslint: 8.15.0 eslint-config-next: 13.0.0 @@ -68,7 +68,7 @@ importers: eslint-plugin-cypress: 2.12.1 eslint-plugin-import: 2.26.0 eslint-plugin-jsx-a11y: 6.6.1 - eslint-plugin-react: 7.31.8 + eslint-plugin-react: 7.31.11 eslint-plugin-react-hooks: 4.6.0 fs-extra: 10.1.0 get-port: 5.1.1 @@ -79,14 +79,14 @@ importers: jsonc-eslint-parser: ^2.1.0 lint-staged: 13.1.0 next: 13.0.0 - nx: 15.0.13 + nx: 15.4.1 prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0 react-is: 18.2.0 react-test-renderer: 18.2.0 regenerator-runtime: 0.13.7 - styled-components: 5.3.5 + styled-components: 5.3.6 ts-jest: 28.0.8 ts-node: 10.9.1 tslib: 2.4.0 @@ -100,11 +100,11 @@ importers: '@envelop/depth-limit': 2.0.3_graphql@16.6.0 '@envelop/disable-introspection': 4.0.3_graphql@16.6.0 '@envelop/response-cache': 4.0.3_graphql@16.6.0 - '@graphql-codegen/cli': 2.16.1_p6bm4wmnsuzkkeh3c4frj2o2du + '@graphql-codegen/cli': 2.16.1_tgmwzizwxrysp37zegfijh2zae '@graphql-codegen/client-preset': 1.2.3_rjjjs2nwgns3bcvnnqb5eu5nry '@graphql-mesh/cache-file': 0.9.44_graphql@16.6.0 - '@graphql-mesh/cli': 0.79.3_bwltehev6hqv55op4sgig2vmoq - '@graphql-mesh/graphql': 0.31.31_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-mesh/cli': 0.79.3_dnatsohios7s7xwyr5x2ijjmim + '@graphql-mesh/graphql': 0.31.31_hkojjjhjmmbpr445byqe4myfr4 '@graphql-mesh/json-schema': 0.35.33_rjjjs2nwgns3bcvnnqb5eu5nry '@graphql-mesh/mysql': 0.17.30_graphql@16.6.0 '@graphql-mesh/neo4j': 0.20.34_graphql@16.6.0 @@ -118,10 +118,10 @@ importers: '@graphql-mesh/utils': 0.42.6_graphql@16.6.0 '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 '@graphql-yoga/node': 2.13.13_rjjjs2nwgns3bcvnnqb5eu5nry - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/next': 15.0.13_3sykkmxe7fmdhs5rru2cyxwjiu - '@nrwl/nx-plugin': 15.0.13_5gjrzncoru3qx5of6aykrhb35m + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/next': 15.4.1_p64s3rzcnja7jumamlraredtvi + '@nrwl/nx-plugin': 15.4.1_scu4s6lne6ql7roxoe5yixihr4 '@swc-node/register': 1.5.1_typescript@4.8.4 '@swc/helpers': 0.4.11 core-js: 3.22.8 @@ -134,75 +134,75 @@ importers: react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 regenerator-runtime: 0.13.7 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba tslib: 2.4.0 type-fest: 2.18.0 devDependencies: - '@nrwl/cli': 15.0.13_zhrgkbtg447ekvrhgcqluapfue - '@nrwl/cypress': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/eslint-plugin-nx': 15.0.13_qfms2ril6zzmnqs5x7r4lagtp4 - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/node': 15.0.13_5gjrzncoru3qx5of6aykrhb35m + '@nrwl/cli': 15.4.1_zhrgkbtg447ekvrhgcqluapfue + '@nrwl/cypress': 15.4.1_byanviwxe3ttxbz3vvqjrqhmpi + '@nrwl/eslint-plugin-nx': 15.4.1_xtr7wqnx5gp2hu6xm2okkqub2a + '@nrwl/jest': 15.4.1_kmt3gyqj2yzbsfiqjiqicyuc44 + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/node': 15.4.1_scu4s6lne6ql7roxoe5yixihr4 '@nrwl/nx-cloud': 15.0.2 - '@nrwl/react': 15.0.13_wks7gnitocjuaekogjpg77vd3i - '@nrwl/web': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu + '@nrwl/react': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/web': 15.4.1_e24qqkma44iapwjokjnpw3lfea + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina '@swc/cli': 0.1.55_@swc+core@1.2.173 '@swc/core': 1.2.173 '@swc/jest': 0.2.20_@swc+core@1.2.173 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/fs-extra': 9.0.13 '@types/jest': 28.1.8 - '@types/node': 18.7.18 - '@types/react': 18.0.20 - '@types/react-dom': 18.0.6 + '@types/node': 18.11.9 + '@types/react': 18.0.25 + '@types/react-dom': 18.0.9 '@types/react-is': 17.0.3 '@types/styled-components': 5.1.26 '@typescript-eslint/eslint-plugin': 5.42.1_edj3z5fb2d4dyl4qibv6szemjm '@typescript-eslint/parser': 5.42.1_oy7hgmlo6357d5kkcjbkfgtg4q babel-jest: 28.1.3 - babel-plugin-styled-components: 1.10.7_styled-components@5.3.5 - cypress: 10.11.0 + babel-plugin-styled-components: 1.10.7_styled-components@5.3.6 + cypress: 11.2.0 eslint: 8.15.0 eslint-config-next: 13.0.0_oy7hgmlo6357d5kkcjbkfgtg4q eslint-config-prettier: 8.1.0_eslint@8.15.0 eslint-plugin-cypress: 2.12.1_eslint@8.15.0 eslint-plugin-import: 2.26.0_cfz7tlvncdyp6u3oeztrozxwbq eslint-plugin-jsx-a11y: 6.6.1_eslint@8.15.0 - eslint-plugin-react: 7.31.8_eslint@8.15.0 + eslint-plugin-react: 7.31.11_eslint@8.15.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 fs-extra: 10.1.0 husky: 8.0.2 - jest: 28.1.3_sgupjgtkb76w4hsvieap2xky7i + jest: 28.1.3_odkjkoia5xunhxkdrka32ib6vi jsonc-eslint-parser: 2.1.0 lint-staged: 13.1.0 - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + nx: 15.4.1_zhrgkbtg447ekvrhgcqluapfue prettier: 2.7.1 react-test-renderer: 18.2.0_react@18.2.0 ts-jest: 28.0.8_kie3p6zmxebniyhvzlppsoibwq - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq typescript: 4.8.4 libs/nx-mesh: specifiers: - '@nrwl/cypress': ^15.0.13 - '@nrwl/devkit': ^15.0.13 - '@nrwl/js': ^15.0.13 - '@nrwl/linter': ^15.0.13 - '@nrwl/node': ^15.0.13 - '@nrwl/workspace': ^15.0.13 + '@nrwl/cypress': 15.4.1 + '@nrwl/devkit': 15.4.1 + '@nrwl/js': 15.4.1 + '@nrwl/linter': 15.4.1 + '@nrwl/node': 15.4.1 + '@nrwl/workspace': 15.4.1 fs-extra: ^10.1.0 get-port: 5.1.1 tslib: 2.4.0 type-fest: ^2.18.0 dependencies: - '@nrwl/cypress': 15.0.13 - '@nrwl/devkit': 15.0.13 - '@nrwl/js': 15.0.13 - '@nrwl/linter': 15.0.13 - '@nrwl/node': 15.0.13 - '@nrwl/workspace': 15.0.13 + '@nrwl/cypress': 15.4.1 + '@nrwl/devkit': 15.4.1 + '@nrwl/js': 15.4.1 + '@nrwl/linter': 15.4.1 + '@nrwl/node': 15.4.1 + '@nrwl/workspace': 15.4.1 fs-extra: 10.1.0 get-port: 5.1.1 tslib: 2.4.0 @@ -228,13 +228,13 @@ packages: peerDependencies: graphql: '*' dependencies: - '@babel/core': 7.20.2 - '@babel/generator': 7.20.4 - '@babel/parser': 7.20.3 - '@babel/runtime': 7.20.1 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 - babel-preset-fbjs: 3.4.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/generator': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/runtime': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 + babel-preset-fbjs: 3.4.0_@babel+core@7.20.7 chalk: 4.1.2 fb-watchman: 2.0.2 fbjs: 3.0.4_encoding@0.1.13 @@ -272,34 +272,34 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.20.1: + /@babel/compat-data/7.20.10: resolution: { - integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==, + integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==, } engines: { node: '>=6.9.0' } - /@babel/core/7.20.2: + /@babel/core/7.20.7: resolution: { - integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, + integrity: sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==, } engines: { node: '>=6.9.0' } dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.1 - '@babel/parser': 7.20.3 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.2 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -311,7 +311,19 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: false + + /@babel/generator/7.20.7: + resolution: + { + integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.20.7 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 @@ -322,7 +334,7 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: resolution: @@ -332,27 +344,28 @@ packages: engines: { node: '>=6.9.0' } dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2: + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, + integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.20.2 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 + lru-cache: 5.1.1 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.20.2: + /@babel/helper-create-class-features-plugin/7.20.7: resolution: { - integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==, + integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==, } engines: { node: '>=6.9.0' } peerDependencies: @@ -361,48 +374,48 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 - '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-create-class-features-plugin/7.20.2_@babel+core@7.20.2: + /@babel/helper-create-class-features-plugin/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==, + integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 - '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.2: + /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.7: resolution: { - integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==, + integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.2 - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.2: + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.7: resolution: { integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==, @@ -410,8 +423,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -434,7 +447,7 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-function-name/7.19.0: resolution: @@ -443,8 +456,8 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.20.2 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 /@babel/helper-hoist-variables/7.18.6: resolution: @@ -453,16 +466,16 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 - /@babel/helper-member-expression-to-functions/7.18.9: + /@babel/helper-member-expression-to-functions/7.20.7: resolution: { - integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==, + integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==, } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-module-imports/7.18.6: resolution: @@ -471,12 +484,12 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 - /@babel/helper-module-transforms/7.20.2: + /@babel/helper-module-transforms/7.20.11: resolution: { - integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, + integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==, } engines: { node: '>=6.9.0' } dependencies: @@ -485,9 +498,9 @@ packages: '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -498,7 +511,7 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-plugin-utils/7.20.2: resolution: @@ -507,7 +520,7 @@ packages: } engines: { node: '>=6.9.0' } - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.2: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==, @@ -516,26 +529,27 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-wrap-function': 7.19.0 - '@babel/types': 7.20.2 + '@babel/helper-wrap-function': 7.20.5 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color - /@babel/helper-replace-supers/7.19.1: + /@babel/helper-replace-supers/7.20.7: resolution: { - integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==, + integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==, } engines: { node: '>=6.9.0' } dependencies: '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -546,7 +560,7 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-skip-transparent-expression-wrappers/7.20.0: resolution: @@ -555,7 +569,7 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-split-export-declaration/7.18.6: resolution: @@ -564,7 +578,7 @@ packages: } engines: { node: '>=6.9.0' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@babel/helper-string-parser/7.19.4: resolution: @@ -587,30 +601,30 @@ packages: } engines: { node: '>=6.9.0' } - /@babel/helper-wrap-function/7.19.0: + /@babel/helper-wrap-function/7.20.5: resolution: { - integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==, + integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==, } engines: { node: '>=6.9.0' } dependencies: '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color - /@babel/helpers/7.20.1: + /@babel/helpers/7.20.7: resolution: { - integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, + integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==, } engines: { node: '>=6.9.0' } dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -633,9 +647,20 @@ packages: engines: { node: '>=6.0.0' } hasBin: true dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 + dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.2: + /@babel/parser/7.20.7: + resolution: + { + integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==, + } + engines: { node: '>=6.0.0' } + hasBin: true + dependencies: + '@babel/types': 7.20.7 + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==, @@ -644,41 +669,41 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.2: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==, + integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7 - /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.2: + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==, + integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, @@ -687,25 +712,25 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==, + integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.7 transitivePeerDependencies: - supports-color @@ -718,16 +743,16 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-create-class-features-plugin': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 '@babel/plugin-syntax-decorators': 7.18.6 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-decorators/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-decorators/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg==, @@ -736,16 +761,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.20.7 transitivePeerDependencies: - supports-color + dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==, @@ -754,11 +780,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.7 - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.2: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==, @@ -767,11 +793,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.7 - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==, @@ -780,24 +806,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7 - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.2: + /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==, + integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7 - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, @@ -806,11 +832,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7 - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==, @@ -819,27 +845,27 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7 - /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.2: + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==, + integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7 - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==, @@ -848,25 +874,25 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7 - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.2: + /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==, + integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7 - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==, @@ -875,30 +901,30 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.7: resolution: { - integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==, + integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.2: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==, @@ -907,8 +933,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-async-generators/7.8.4: @@ -922,7 +948,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.2: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.7: resolution: { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, @@ -930,7 +956,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-bigint/7.8.3: @@ -944,7 +970,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, @@ -952,7 +978,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-properties/7.12.13: @@ -966,7 +992,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.2: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.7: resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, @@ -974,10 +1000,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.2: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.7: resolution: { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, @@ -986,7 +1012,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-decorators/7.18.6: @@ -1001,7 +1027,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-decorators/7.18.6_@babel+core@7.20.2: + /@babel/plugin-syntax-decorators/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==, @@ -1010,10 +1036,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 + dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, @@ -1021,10 +1048,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, @@ -1032,10 +1059,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.2: + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, @@ -1044,7 +1071,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 dev: false @@ -1060,7 +1087,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.2: + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.7: resolution: { integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==, @@ -1069,7 +1096,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-import-meta/7.10.4: @@ -1083,7 +1110,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.2: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.7: resolution: { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, @@ -1091,7 +1118,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-json-strings/7.8.3: @@ -1105,7 +1132,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, @@ -1113,10 +1140,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, @@ -1125,8 +1152,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 + dev: false /@babel/plugin-syntax-logical-assignment-operators/7.10.4: resolution: @@ -1139,7 +1167,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.2: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.7: resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, @@ -1147,7 +1175,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3: @@ -1161,7 +1189,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, @@ -1169,7 +1197,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-numeric-separator/7.10.4: @@ -1183,7 +1211,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.2: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.7: resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, @@ -1191,7 +1219,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-object-rest-spread/7.8.3: @@ -1205,7 +1233,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, @@ -1213,7 +1241,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding/7.8.3: @@ -1227,7 +1255,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, @@ -1235,7 +1263,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-chaining/7.8.3: @@ -1249,7 +1277,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.2: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.7: resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, @@ -1257,10 +1285,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.2: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.7: resolution: { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, @@ -1269,7 +1297,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-top-level-await/7.14.5: @@ -1284,7 +1312,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.2: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.7: resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, @@ -1293,10 +1321,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.2: + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.7: resolution: { integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==, @@ -1305,38 +1333,38 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==, + integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==, + integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==, @@ -1345,68 +1373,69 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.2: + /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.7: resolution: { - integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==, + integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.2: + /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==, + integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@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.19.1 + '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.2: + /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==, + integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 + '@babel/template': 7.20.7 - /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.2: + /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==, + integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==, @@ -1415,11 +1444,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.2: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==, @@ -1428,10 +1457,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==, @@ -1440,11 +1469,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-flow-strip-types/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-flow-strip-types/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==, @@ -1453,12 +1482,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.7 dev: false - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.2: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.7: resolution: { integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==, @@ -1467,10 +1496,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.2: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==, @@ -1479,12 +1508,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.2: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==, @@ -1493,10 +1522,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==, @@ -1505,58 +1534,58 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.2: + /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.7: resolution: { - integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==, + integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.2: + /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.7: resolution: { - integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==, + integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-simple-access': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.2: + /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.7: resolution: { - integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==, + integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-identifier': 7.19.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==, @@ -1565,26 +1594,26 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.2: + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.7: resolution: { - integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==, + integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==, @@ -1593,10 +1622,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==, @@ -1605,25 +1634,25 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.2: + /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==, + integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==, @@ -1632,10 +1661,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-constant-elements/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-constant-elements/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-4g5H1bonF1dqgMe+wQ2fvDlRZ/mN/KwArk13teDv+xxn+pUDEiiDluQd6D2B30MJcL1u3qr0WZpfq0mw9/zSqA==, @@ -1644,10 +1673,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 + dev: false - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, @@ -1656,10 +1686,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 + dev: false - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, @@ -1668,10 +1699,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.7 + dev: false - /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==, @@ -1680,14 +1712,15 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/types': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7 + '@babel/types': 7.20.7 + dev: false - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==, @@ -1696,24 +1729,25 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 + dev: false - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.7: resolution: { - integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==, + integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - regenerator-transform: 0.15.0 + regenerator-transform: 0.15.1 - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==, @@ -1722,10 +1756,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-runtime/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-runtime/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==, @@ -1734,17 +1768,18 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.2 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.2 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.7 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.20.7 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.20.7 semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==, @@ -1753,23 +1788,23 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.2: + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.7: resolution: { - integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==, + integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==, @@ -1778,10 +1813,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.2: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==, @@ -1790,10 +1825,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.2: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.7: resolution: { integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==, @@ -1802,10 +1837,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.20.2: + /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.20.7: resolution: { integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==, @@ -1814,14 +1849,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-class-features-plugin': 7.20.2_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.2: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.7: resolution: { integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==, @@ -1830,10 +1865,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.2: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==, @@ -1842,11 +1877,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7 '@babel/helper-plugin-utils': 7.20.2 - /@babel/preset-env/7.20.2_@babel+core@7.20.2: + /@babel/preset-env/7.20.2_@babel+core@7.20.7: resolution: { integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==, @@ -1855,86 +1890,86 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.20.2 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@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+core@7.20.2 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.2 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.2 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 - '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.2 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.2 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.2 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.2 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.2 - '@babel/types': 7.20.2 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.2 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.2 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.2 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.7 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.7 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.7 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.7 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.7 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.7 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.7 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.7 + '@babel/types': 7.20.7 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.7 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.7 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.7 core-js-compat: 3.26.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/preset-modules/0.1.5_@babel+core@7.20.2: + /@babel/preset-modules/0.1.5_@babel+core@7.20.7: resolution: { integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, @@ -1942,14 +1977,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.2 - '@babel/types': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.7 + '@babel/types': 7.20.7 esutils: 2.0.3 - /@babel/preset-react/7.18.6_@babel+core@7.20.2: + /@babel/preset-react/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==, @@ -1958,15 +1993,16 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.2 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.7 + dev: false - /@babel/preset-typescript/7.18.6_@babel+core@7.20.2: + /@babel/preset-typescript/7.18.6_@babel+core@7.20.7: resolution: { integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==, @@ -1975,10 +2011,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.20.2 + '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.20.7 transitivePeerDependencies: - supports-color @@ -1990,7 +2026,7 @@ packages: engines: { node: '>=6.9.0' } dependencies: core-js-pure: 3.23.4 - regenerator-runtime: 0.13.10 + regenerator-runtime: 0.13.11 dev: true /@babel/runtime/7.18.9: @@ -2022,6 +2058,15 @@ packages: dependencies: regenerator-runtime: 0.13.10 + /@babel/runtime/7.20.7: + resolution: + { + integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + regenerator-runtime: 0.13.11 + /@babel/template/7.18.10: resolution: { @@ -2030,44 +2075,56 @@ packages: engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + dev: false - /@babel/traverse/7.20.1: + /@babel/template/7.20.7: resolution: { - integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, + integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==, } engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + + /@babel/traverse/7.20.10: + resolution: + { + integrity: sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.7 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse/7.20.1_supports-color@5.5.0: + /@babel/traverse/7.20.10_supports-color@5.5.0: resolution: { - integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, + integrity: sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==, } engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.4 + '@babel/generator': 7.20.7 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 debug: 4.3.4_supports-color@5.5.0 globals: 11.12.0 transitivePeerDependencies: @@ -2084,6 +2141,17 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + /@babel/types/7.20.7: + resolution: + { + integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + /@bcoe/v8-coverage/0.2.3: resolution: { @@ -2096,7 +2164,7 @@ packages: integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/config': 2.3.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 2.0.0 @@ -2117,7 +2185,7 @@ packages: integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.5 '@changesets/types': 5.2.1 @@ -2244,7 +2312,7 @@ packages: integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/assemble-release-plan': 5.2.3 '@changesets/config': 2.3.0 '@changesets/pre': 1.0.14 @@ -2266,7 +2334,7 @@ packages: integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -2300,7 +2368,7 @@ packages: integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -2313,7 +2381,7 @@ packages: integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/git': 2.0.0 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.16 @@ -2343,7 +2411,7 @@ packages: integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 @@ -2408,7 +2476,7 @@ packages: engines: { node: '>=v14' } dependencies: '@commitlint/types': 17.0.0 - ajv: 8.11.0 + ajv: 8.11.2 dev: false /@commitlint/ensure/17.0.0: @@ -2476,10 +2544,10 @@ packages: '@commitlint/execute-rule': 17.0.0 '@commitlint/resolve-extends': 17.0.3 '@commitlint/types': 17.0.0 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 2.0.2_b2ulvot2eensv5kijvirfsfnxq + cosmiconfig-typescript-loader: 2.0.2_qyqhcmwufjmwhptfkdjysgeb6u lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.8.4 @@ -2613,32 +2681,6 @@ packages: tunnel-agent: 0.6.0 uuid: 8.3.2 - /@cypress/webpack-preprocessor/5.15.4_xcohdjru5xgrqhvdie6y7w7oeq: - resolution: - { - integrity: sha512-spqrTlso5AC4tGET/bsgpC5aUiyZkPVi+aZnmg0xEvTdD/5QXRe3Tyh8t92en6rcJVzlc4PqLkZqDZEYySYyZQ==, - } - peerDependencies: - '@babel/core': ^7.0.1 - '@babel/preset-env': ^7.0.0 - babel-loader: ^8.0.2 - webpack: ^4 || ^5 - dependencies: - '@babel/core': 7.20.2 - '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - babel-loader: 8.3.0_hkczypimj4evef4hfazf6yfxte - bluebird: 3.7.1 - debug: 4.3.4 - fs-extra: 10.1.0 - loader-utils: 2.0.3 - lodash: 4.17.21 - md5: 2.3.0 - source-map: 0.6.1 - webpack: 5.74.0 - webpack-virtual-modules: 0.4.6 - transitivePeerDependencies: - - supports-color - /@cypress/xvfb/1.2.4_supports-color@8.1.1: resolution: { @@ -2870,7 +2912,7 @@ packages: tslib: 2.4.1 dev: false - /@graphql-codegen/cli/2.16.1_p6bm4wmnsuzkkeh3c4frj2o2du: + /@graphql-codegen/cli/2.16.1_tgmwzizwxrysp37zegfijh2zae: resolution: { integrity: sha512-11z3iSlsNCXcNNkoRKG3wCmT9XpLf7/GZG9bWGXkCoveWVRwnRmo37YakHdNV3hbcJ4iiGbR3Z+MX9gUTEPDVA==, @@ -2891,18 +2933,18 @@ packages: '@graphql-tools/graphql-file-loader': 7.5.9_graphql@16.6.0 '@graphql-tools/json-file-loader': 7.4.14_graphql@16.6.0 '@graphql-tools/load': 7.8.0_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.46_b3mrw6czvahatuezxxzysmh2q4 - '@graphql-tools/url-loader': 7.16.26_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-tools/prisma-loader': 7.2.46_hkojjjhjmmbpr445byqe4myfr4 + '@graphql-tools/url-loader': 7.16.26_hkojjjhjmmbpr445byqe4myfr4 '@graphql-tools/utils': 8.13.1_graphql@16.6.0 '@whatwg-node/fetch': 0.5.3_encoding@0.1.13 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 4.1.1_3igornoocdcuuumr6mjc4coiua + cosmiconfig-typescript-loader: 4.1.1_mzjwejph7gmlzf3uxmy5cdhfrq debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.6.0 - graphql-config: 4.3.6_q5hc3xqxhmkiu7tlpk3mn3k7xi + graphql-config: 4.3.6_2qf7nnsdsmr6pycv4babn4xkom inquirer: 8.2.5 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -3317,7 +3359,7 @@ packages: - react-native-windows dev: false - /@graphql-mesh/cli/0.79.3_bwltehev6hqv55op4sgig2vmoq: + /@graphql-mesh/cli/0.79.3_dnatsohios7s7xwyr5x2ijjmim: resolution: { integrity: sha512-oFjFCBgmtG5xDjk0np1w1ggn7zs0AKbcClzKuLJHnFE7A+Hrp5XpBl9tatZoCg41AwSxhgaIuHPEb3Cm7QvPZQ==, @@ -3334,7 +3376,7 @@ packages: '@graphql-codegen/typescript-resolvers': 2.7.6_rjjjs2nwgns3bcvnnqb5eu5nry '@graphql-mesh/config': 8.0.31_fwlw3vbqasm4vz2zfygcyrguwa '@graphql-mesh/cross-helpers': 0.2.9_graphql@16.6.0 - '@graphql-mesh/http': 0.2.12_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-mesh/http': 0.2.12_hkojjjhjmmbpr445byqe4myfr4 '@graphql-mesh/runtime': 0.44.31_rjjjs2nwgns3bcvnnqb5eu5nry '@graphql-mesh/store': 0.8.62_graphql@16.6.0 '@graphql-mesh/types': 0.85.7_graphql@16.6.0 @@ -3354,7 +3396,7 @@ packages: open: 7.4.2 pascal-case: 3.1.2 rimraf: 3.0.2 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq tsconfig-paths: 4.1.0 tslib: 2.4.1 typescript: 4.8.4 @@ -3440,7 +3482,7 @@ packages: - react-native-windows dev: false - /@graphql-mesh/graphql/0.31.31_b3mrw6czvahatuezxxzysmh2q4: + /@graphql-mesh/graphql/0.31.31_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-ziC5SPVM4h9yMcoA+PM6/Ez5NRX/MgY9MITAcT6ik37YGapKLjFJfO0t25PlC2pqbm8h+2/6v3SsS3KugIV7SA==, @@ -3454,7 +3496,7 @@ packages: '@graphql-mesh/types': 0.85.7_graphql@16.6.0 '@graphql-mesh/utils': 0.42.6_graphql@16.6.0 '@graphql-tools/delegate': 9.0.14_graphql@16.6.0 - '@graphql-tools/url-loader': 7.16.11_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-tools/url-loader': 7.16.11_hkojjjhjmmbpr445byqe4myfr4 '@graphql-tools/utils': 9.0.1_graphql@16.6.0 '@graphql-tools/wrap': 9.2.10_graphql@16.6.0 graphql: 16.6.0 @@ -3469,7 +3511,7 @@ packages: - utf-8-validate dev: false - /@graphql-mesh/http/0.2.12_b3mrw6czvahatuezxxzysmh2q4: + /@graphql-mesh/http/0.2.12_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-tR7semZ6S0SCJSualsjP/4AESdXPPaZM7ZnWoU39ls2vMePIKKZSv8YwG7nM667k5lnPpMAC0ohPnfunS/j4+g==, @@ -3482,9 +3524,9 @@ packages: '@graphql-mesh/types': 0.85.7_graphql@16.6.0 '@graphql-mesh/utils': 0.42.6_graphql@16.6.0 '@whatwg-node/fetch': 0.5.3_encoding@0.1.13 - '@whatwg-node/server': 0.4.14_6g4xlh77qkmky7kw4we5vmcsbe + '@whatwg-node/server': 0.4.14_tnszpa3q4sbvo73aomgaj2dute graphql: 16.6.0 - graphql-yoga: 3.0.0-next.10_b3mrw6czvahatuezxxzysmh2q4 + graphql-yoga: 3.0.0-next.10_hkojjjhjmmbpr445byqe4myfr4 itty-router: 2.6.6 itty-router-extras: 0.4.2 tslib: 2.4.1 @@ -4131,7 +4173,7 @@ packages: - utf-8-validate dev: false - /@graphql-tools/executor-http/0.0.7_b3mrw6czvahatuezxxzysmh2q4: + /@graphql-tools/executor-http/0.0.7_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-g0NV4HVZVABsylk6SIA/gfjQbMIsy3NjZYW0k0JZmTcp9698J37uG50GZC2mKe0F8pIlDvPLvrPloqdKGX3ZAA==, @@ -4145,7 +4187,7 @@ packages: dset: 3.1.2 extract-files: 11.0.0 graphql: 16.6.0 - meros: 1.2.1_@types+node@18.7.18 + meros: 1.2.1_@types+node@18.11.9 tslib: 2.4.1 value-or-promise: 1.0.11 transitivePeerDependencies: @@ -4268,9 +4310,9 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/parser': 7.20.3 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 '@graphql-tools/utils': 9.0.1_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 @@ -4286,10 +4328,10 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/parser': 7.20.3 + '@babel/parser': 7.20.7 '@babel/plugin-syntax-import-assertions': 7.20.0 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 '@graphql-tools/utils': 9.1.3_graphql@16.6.0 graphql: 16.6.0 tslib: 2.4.1 @@ -4449,7 +4491,7 @@ packages: tslib: 2.4.1 dev: false - /@graphql-tools/prisma-loader/7.2.46_b3mrw6czvahatuezxxzysmh2q4: + /@graphql-tools/prisma-loader/7.2.46_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-PG9FnYeg0mUbJ5VXg71BWtrWdT7bAcceywOqpOJX8rg1sx1L0+O+Els3guMxuCMsNQXlWYkYJzv/jvairKxpFw==, @@ -4457,7 +4499,7 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 7.16.26_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-tools/url-loader': 7.16.26_hkojjjhjmmbpr445byqe4myfr4 '@graphql-tools/utils': 9.1.3_graphql@16.6.0 '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.34 @@ -4625,7 +4667,7 @@ packages: tslib: 2.4.1 dev: false - /@graphql-tools/url-loader/7.16.11_b3mrw6czvahatuezxxzysmh2q4: + /@graphql-tools/url-loader/7.16.11_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-krovI7b+1NNtHe7cOMUQCp3Ib/rt70ru5fXMe2v16Rran2mPedMn8eq2V7K2jKnBKteMX4cjuxHdrpBJ7wGh8A==, @@ -4644,7 +4686,7 @@ packages: graphql: 16.6.0 graphql-ws: 5.11.2_graphql@16.6.0 isomorphic-ws: 5.0.0_ws@8.11.0 - meros: 1.2.1_@types+node@18.7.18 + meros: 1.2.1_@types+node@18.11.9 tslib: 2.4.1 value-or-promise: 1.0.11 ws: 8.11.0 @@ -4655,7 +4697,7 @@ packages: - utf-8-validate dev: false - /@graphql-tools/url-loader/7.16.26_b3mrw6czvahatuezxxzysmh2q4: + /@graphql-tools/url-loader/7.16.26_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-mrbFhShlthSdvMD3GPeKYxUt54CBUteN0eR6WgJJSXibycTSA6h0LAn6iyCAg+uUsBP/KR6GcjvQHifl00Q7rQ==, @@ -4666,7 +4708,7 @@ packages: '@ardatan/sync-fetch': 0.0.1_encoding@0.1.13 '@graphql-tools/delegate': 9.0.20_graphql@16.6.0 '@graphql-tools/executor-graphql-ws': 0.0.5_graphql@16.6.0 - '@graphql-tools/executor-http': 0.0.7_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-tools/executor-http': 0.0.7_hkojjjhjmmbpr445byqe4myfr4 '@graphql-tools/executor-legacy-ws': 0.0.5_graphql@16.6.0 '@graphql-tools/utils': 9.1.3_graphql@16.6.0 '@graphql-tools/wrap': 9.2.21_graphql@16.6.0 @@ -4962,7 +5004,7 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -4985,14 +5027,14 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.5.0 + ci-info: 3.7.0 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.1.3 - jest-config: 28.1.3_odkjkoia5xunhxkdrka32ib6vi + jest-config: 28.1.3_xgdmd3tdlagpkcvgycprrn3igm jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -5033,7 +5075,7 @@ packages: dependencies: '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-mock: 28.1.3 /@jest/environment/29.3.0: @@ -5045,7 +5087,7 @@ packages: dependencies: '@jest/fake-timers': 29.3.0 '@jest/types': 29.2.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-mock: 29.3.0 dev: false @@ -5079,7 +5121,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -5093,7 +5135,7 @@ packages: dependencies: '@jest/types': 29.2.1 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-message-util: 29.2.1 jest-mock: 29.3.0 jest-util: 29.2.1 @@ -5130,8 +5172,8 @@ packages: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 18.11.9 - chalk: 4.1.2 + '@types/node': 18.11.17 + chalk: 4.1.0 collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.2.3 @@ -5170,7 +5212,7 @@ packages: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -5266,7 +5308,7 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 @@ -5293,7 +5335,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -5308,8 +5350,8 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.9 - '@types/yargs': 17.0.13 + '@types/node': 18.11.17 + '@types/yargs': 17.0.17 chalk: 4.1.2 /@jest/types/29.2.1: @@ -5322,7 +5364,7 @@ packages: '@jest/schemas': 29.0.0 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 '@types/yargs': 17.0.13 chalk: 4.1.2 dev: false @@ -5421,7 +5463,7 @@ packages: integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -5433,7 +5475,7 @@ packages: integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -5690,177 +5732,145 @@ packages: engines: { node: '>= 8' } dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.13.0 + fastq: 1.14.0 - /@nrwl/cli/15.0.13: + /@nrwl/cli/15.4.1: resolution: { - integrity: sha512-w0oOP4v176CbD34+VytiAItIH3fOeiaccq7T2Un/hhx+/Q9mdO/VWyYZOKmp85uGodx/yZ6LyGW6rX0BjM0Rsg==, + integrity: sha512-n/bhYH/nT+9k0otYgTX2Up3oPzk841NwUzxZrLHKklJkzPVAGuTOOcKF8yuBhzAnDdpZAmU3z+8YlbdtjoHb9Q==, } dependencies: - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + nx: 15.4.1 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + dev: false - /@nrwl/cli/15.0.13_zhrgkbtg447ekvrhgcqluapfue: + /@nrwl/cli/15.4.1_zhrgkbtg447ekvrhgcqluapfue: resolution: { - integrity: sha512-w0oOP4v176CbD34+VytiAItIH3fOeiaccq7T2Un/hhx+/Q9mdO/VWyYZOKmp85uGodx/yZ6LyGW6rX0BjM0Rsg==, + integrity: sha512-n/bhYH/nT+9k0otYgTX2Up3oPzk841NwUzxZrLHKklJkzPVAGuTOOcKF8yuBhzAnDdpZAmU3z+8YlbdtjoHb9Q==, } dependencies: - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + nx: 15.4.1_zhrgkbtg447ekvrhgcqluapfue transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/cypress/15.0.13: + /@nrwl/cypress/15.4.1: resolution: { - integrity: sha512-KFopCs2XSMVGDby37RtmU1Os0ikbM+9EWwr+tuMahZ+EtXmBsbH4qK6ljiKKcUyMGMYEykRsRLHYfs+WBZA9Mg==, + integrity: sha512-Z9pQYAk63+O+bkbkQHNn/gvc5J8CLlQzTNr5X6xMMHZvDqLkx7GVEBwljlIrXCltliL8QxEwMb0Xj24PwS9qqA==, } peerDependencies: - cypress: '>= 3 < 11' + cypress: '>= 3 < 12' peerDependenciesMeta: cypress: optional: true dependencies: - '@babel/core': 7.20.2 - '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@cypress/webpack-preprocessor': 5.15.4_xcohdjru5xgrqhvdie6y7w7oeq - '@nrwl/devkit': 15.0.13 - '@nrwl/linter': 15.0.13 - '@nrwl/workspace': 15.0.13 + '@nrwl/devkit': 15.4.1 + '@nrwl/linter': 15.4.1 + '@nrwl/workspace': 15.4.1 '@phenomnomnominal/tsquery': 4.1.1 - babel-loader: 8.3.0_hkczypimj4evef4hfazf6yfxte chalk: 4.1.0 dotenv: 10.0.0 - fork-ts-checker-webpack-plugin: 7.2.13_webpack@5.74.0 semver: 7.3.4 - ts-loader: 9.4.1_webpack@5.74.0 - tsconfig-paths-webpack-plugin: 3.5.2 - tslib: 2.4.1 - webpack: 5.74.0 - webpack-node-externals: 3.0.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - debug - - esbuild - eslint - - node-notifier - nx - prettier - - supports-color - - ts-node - typescript - - uglify-js - - vue-template-compiler - - webpack-cli dev: false - /@nrwl/cypress/15.0.13_56rkyoa7mfbo77ph75h62gw3re: + /@nrwl/cypress/15.4.1_byanviwxe3ttxbz3vvqjrqhmpi: resolution: { - integrity: sha512-KFopCs2XSMVGDby37RtmU1Os0ikbM+9EWwr+tuMahZ+EtXmBsbH4qK6ljiKKcUyMGMYEykRsRLHYfs+WBZA9Mg==, + integrity: sha512-Z9pQYAk63+O+bkbkQHNn/gvc5J8CLlQzTNr5X6xMMHZvDqLkx7GVEBwljlIrXCltliL8QxEwMb0Xj24PwS9qqA==, } peerDependencies: - cypress: '>= 3 < 11' + cypress: '>= 3 < 12' peerDependenciesMeta: cypress: optional: true dependencies: - '@babel/core': 7.20.2 - '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@cypress/webpack-preprocessor': 5.15.4_xcohdjru5xgrqhvdie6y7w7oeq - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 - babel-loader: 8.3.0_hkczypimj4evef4hfazf6yfxte chalk: 4.1.0 - cypress: 10.11.0 + cypress: 11.2.0 dotenv: 10.0.0 - fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e semver: 7.3.4 - ts-loader: 9.4.1_qqxisngxjbp7lstdk7boexbu3e - tsconfig-paths-webpack-plugin: 3.5.2 - tslib: 2.4.1 - webpack: 5.74.0_@swc+core@1.2.173 - webpack-node-externals: 3.0.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - debug - - esbuild - eslint - - node-notifier - nx - prettier - - supports-color - - ts-node - typescript - - uglify-js - - vue-template-compiler - - webpack-cli - /@nrwl/devkit/15.0.13: + /@nrwl/devkit/15.4.1: resolution: { - integrity: sha512-/8k7wbBRFf2UC+T4F+vWMy3bfSGi+uK6RwXk53moLq3nxehXaQhRiCqasC6VJFUw3zK6luu2T7xkPUlA9K9l4w==, + integrity: sha512-6AWWXyUpoqWkVARgUeARSmFanvgqlb81GN8SBwUQhezTbalOPmi0TsUN6n7MHAc611MAFE9eZBd+29UM+sFXeg==, } peerDependencies: nx: '>= 14 <= 16' dependencies: '@phenomnomnominal/tsquery': 4.1.1 ejs: 3.1.8 - ignore: 5.2.0 + ignore: 5.2.4 semver: 7.3.4 tslib: 2.4.0 transitivePeerDependencies: - typescript dev: false - /@nrwl/devkit/15.0.13_dtuttet22dxzt73ll2oxv2ugvu: + /@nrwl/devkit/15.4.1_nx@15.4.1: resolution: { - integrity: sha512-/8k7wbBRFf2UC+T4F+vWMy3bfSGi+uK6RwXk53moLq3nxehXaQhRiCqasC6VJFUw3zK6luu2T7xkPUlA9K9l4w==, + integrity: sha512-6AWWXyUpoqWkVARgUeARSmFanvgqlb81GN8SBwUQhezTbalOPmi0TsUN6n7MHAc611MAFE9eZBd+29UM+sFXeg==, } peerDependencies: nx: '>= 14 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + '@phenomnomnominal/tsquery': 4.1.1 ejs: 3.1.8 - ignore: 5.2.0 - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + ignore: 5.2.4 + nx: 15.4.1 semver: 7.3.4 tslib: 2.4.0 transitivePeerDependencies: - typescript + dev: false - /@nrwl/devkit/15.0.13_nx@15.0.13: + /@nrwl/devkit/15.4.1_nx@15.4.1+typescript@4.8.4: resolution: { - integrity: sha512-/8k7wbBRFf2UC+T4F+vWMy3bfSGi+uK6RwXk53moLq3nxehXaQhRiCqasC6VJFUw3zK6luu2T7xkPUlA9K9l4w==, + integrity: sha512-6AWWXyUpoqWkVARgUeARSmFanvgqlb81GN8SBwUQhezTbalOPmi0TsUN6n7MHAc611MAFE9eZBd+29UM+sFXeg==, } 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.0 - nx: 15.0.13 + ignore: 5.2.4 + nx: 15.4.1_zhrgkbtg447ekvrhgcqluapfue semver: 7.3.4 tslib: 2.4.0 transitivePeerDependencies: - typescript - dev: false - /@nrwl/eslint-plugin-nx/15.0.13_qfms2ril6zzmnqs5x7r4lagtp4: + /@nrwl/eslint-plugin-nx/15.4.1_xtr7wqnx5gp2hu6xm2okkqub2a: resolution: { - integrity: sha512-1OL8oGDKK+3Hdth9OS3SA7lUykN+BjhySBmk2y6IYO71DwGFXxoKkswDvMj6KXARya92zhb+s+OfHN7akZB6OQ==, + integrity: sha512-8EMTxLBtff8pR0MKdgDn8UAiSLuwtpff8rzAUHzZP46WcNeJPKFpUH1PWpSD9y00+Hjx5Kla3ydqw5Efjul39A==, } peerDependencies: '@typescript-eslint/parser': ^5.29.0 @@ -5869,8 +5879,7 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 '@typescript-eslint/parser': 5.42.1_oy7hgmlo6357d5kkcjbkfgtg4q '@typescript-eslint/utils': 5.42.1_oy7hgmlo6357d5kkcjbkfgtg4q chalk: 4.1.0 @@ -5878,28 +5887,21 @@ packages: eslint-config-prettier: 8.1.0_eslint@8.15.0 semver: 7.3.4 transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - eslint - - node-notifier - nx - - prettier - supports-color - - ts-node - typescript dev: true - /@nrwl/jest/15.0.13: + /@nrwl/jest/15.4.1: resolution: { - integrity: sha512-env+EO+uvyw85dL7tPwR6VFe0CLGcn82EAaxFwY83XUmdM9n92OR2XY0RecoDzo6uL2kRFb8x++Jy3OVLmqVYA==, + integrity: sha512-mwHFL1BQvDC1mbqSd9se7li5RzwPmDTHx6PQSeMFD86+0WhwgYee4GqFDvhF+HdRhjna3KELipQNKneOwhhhpg==, } dependencies: '@jest/reporters': 28.1.1 '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.0.13 + '@nrwl/devkit': 15.4.1 '@phenomnomnominal/tsquery': 4.1.1 chalk: 4.1.0 dotenv: 10.0.0 @@ -5908,7 +5910,7 @@ packages: jest-resolve: 28.1.1 jest-util: 28.1.1 resolve.exports: 1.1.0 - tslib: 2.4.1 + tslib: 2.4.0 transitivePeerDependencies: - '@types/node' - node-notifier @@ -5918,73 +5920,20 @@ packages: - typescript dev: false - /@nrwl/jest/15.0.13_fid3rvd3uikkef472q7cr2k2mq: + /@nrwl/jest/15.4.1_kmt3gyqj2yzbsfiqjiqicyuc44: resolution: { - integrity: sha512-env+EO+uvyw85dL7tPwR6VFe0CLGcn82EAaxFwY83XUmdM9n92OR2XY0RecoDzo6uL2kRFb8x++Jy3OVLmqVYA==, + integrity: sha512-mwHFL1BQvDC1mbqSd9se7li5RzwPmDTHx6PQSeMFD86+0WhwgYee4GqFDvhF+HdRhjna3KELipQNKneOwhhhpg==, } dependencies: '@jest/reporters': 28.1.1 '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 chalk: 4.1.0 dotenv: 10.0.0 identity-obj-proxy: 3.0.0 - jest-config: 28.1.1_sgupjgtkb76w4hsvieap2xky7i - jest-resolve: 28.1.1 - jest-util: 28.1.1 - resolve.exports: 1.1.0 - tslib: 2.4.1 - transitivePeerDependencies: - - '@types/node' - - node-notifier - - nx - - supports-color - - ts-node - - typescript - - /@nrwl/jest/15.0.13_nx@15.0.13: - resolution: - { - integrity: sha512-env+EO+uvyw85dL7tPwR6VFe0CLGcn82EAaxFwY83XUmdM9n92OR2XY0RecoDzo6uL2kRFb8x++Jy3OVLmqVYA==, - } - dependencies: - '@jest/reporters': 28.1.1 - '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.0.13_nx@15.0.13 - '@phenomnomnominal/tsquery': 4.1.1 - chalk: 4.1.0 - dotenv: 10.0.0 - identity-obj-proxy: 3.0.0 - jest-config: 28.1.1 - jest-resolve: 28.1.1 - jest-util: 28.1.1 - resolve.exports: 1.1.0 - tslib: 2.4.1 - transitivePeerDependencies: - - '@types/node' - - node-notifier - - nx - - supports-color - - ts-node - - typescript - dev: false - - /@nrwl/jest/15.0.13_nx@15.0.13+ts-node@10.9.1: - resolution: - { - integrity: sha512-env+EO+uvyw85dL7tPwR6VFe0CLGcn82EAaxFwY83XUmdM9n92OR2XY0RecoDzo6uL2kRFb8x++Jy3OVLmqVYA==, - } - dependencies: - '@jest/reporters': 28.1.1 - '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.0.13_nx@15.0.13 - '@phenomnomnominal/tsquery': 4.1.1 - chalk: 4.1.0 - dotenv: 10.0.0 - identity-obj-proxy: 3.0.0 - jest-config: 28.1.1_ts-node@10.9.1 + jest-config: 28.1.1_odkjkoia5xunhxkdrka32ib6vi jest-resolve: 28.1.1 jest-util: 28.1.1 resolve.exports: 1.1.0 @@ -5996,50 +5945,20 @@ packages: - supports-color - ts-node - typescript - dev: false - /@nrwl/jest/15.0.13_ts-node@10.9.1: + /@nrwl/js/15.4.1: resolution: { - integrity: sha512-env+EO+uvyw85dL7tPwR6VFe0CLGcn82EAaxFwY83XUmdM9n92OR2XY0RecoDzo6uL2kRFb8x++Jy3OVLmqVYA==, + integrity: sha512-qsb720YFTnzTqB+lDnlRpHRlf/UrAKiXanRpOMqaOo9x2tMhSSiJcXuirq418SdEpBop/+0FIKBor5cPVFQbqg==, } dependencies: - '@jest/reporters': 28.1.1 - '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.0.13 - '@phenomnomnominal/tsquery': 4.1.1 - chalk: 4.1.0 - dotenv: 10.0.0 - identity-obj-proxy: 3.0.0 - jest-config: 28.1.1_ts-node@10.9.1 - jest-resolve: 28.1.1 - jest-util: 28.1.1 - resolve.exports: 1.1.0 - tslib: 2.4.1 - transitivePeerDependencies: - - '@types/node' - - node-notifier - - nx - - supports-color - - ts-node - - typescript - dev: false - - /@nrwl/js/15.0.13: - resolution: - { - integrity: sha512-BoUyvwhxExALCF7pjvDZL8g1z9C65+wI0J0tRGJAZpg+F+JOt/qHowzZ96sSbcI9+5RpHk5ikA8flUP3VV9Saw==, - } - dependencies: - '@nrwl/devkit': 15.0.13 - '@nrwl/jest': 15.0.13 - '@nrwl/linter': 15.0.13 - '@nrwl/workspace': 15.0.13 - '@parcel/watcher': 2.0.4 + '@nrwl/devkit': 15.4.1 + '@nrwl/linter': 15.4.1 + '@nrwl/workspace': 15.4.1 chalk: 4.1.0 fast-glob: 3.2.7 fs-extra: 10.1.0 - ignore: 5.2.0 + ignore: 5.2.4 js-tokens: 4.0.0 minimatch: 3.0.5 source-map-support: 0.5.19 @@ -6047,32 +5966,26 @@ packages: transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - debug - eslint - - node-notifier - nx - prettier - - supports-color - - ts-node - typescript dev: false - /@nrwl/js/15.0.13_5gjrzncoru3qx5of6aykrhb35m: + /@nrwl/js/15.4.1_m5rfccxj5gyhzcykaxmyu4a3my: resolution: { - integrity: sha512-BoUyvwhxExALCF7pjvDZL8g1z9C65+wI0J0tRGJAZpg+F+JOt/qHowzZ96sSbcI9+5RpHk5ikA8flUP3VV9Saw==, + integrity: sha512-qsb720YFTnzTqB+lDnlRpHRlf/UrAKiXanRpOMqaOo9x2tMhSSiJcXuirq418SdEpBop/+0FIKBor5cPVFQbqg==, } dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu - '@parcel/watcher': 2.0.4 + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina chalk: 4.1.0 fast-glob: 3.2.7 fs-extra: 10.1.0 - ignore: 5.2.0 + ignore: 5.2.4 js-tokens: 4.0.0 minimatch: 3.0.5 source-map-support: 0.5.19 @@ -6080,53 +5993,16 @@ packages: transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - debug - eslint - - node-notifier - nx - prettier - - supports-color - - ts-node - typescript - /@nrwl/js/15.0.13_ts-node@10.9.1: + /@nrwl/linter/15.4.1: resolution: { - integrity: sha512-BoUyvwhxExALCF7pjvDZL8g1z9C65+wI0J0tRGJAZpg+F+JOt/qHowzZ96sSbcI9+5RpHk5ikA8flUP3VV9Saw==, - } - dependencies: - '@nrwl/devkit': 15.0.13 - '@nrwl/jest': 15.0.13_ts-node@10.9.1 - '@nrwl/linter': 15.0.13_ts-node@10.9.1 - '@nrwl/workspace': 15.0.13_ts-node@10.9.1 - '@parcel/watcher': 2.0.4 - chalk: 4.1.0 - fast-glob: 3.2.7 - fs-extra: 10.1.0 - ignore: 5.2.0 - js-tokens: 4.0.0 - minimatch: 3.0.5 - source-map-support: 0.5.19 - tree-kill: 1.2.2 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - - eslint - - node-notifier - - nx - - prettier - - supports-color - - ts-node - - typescript - dev: false - - /@nrwl/linter/15.0.13: - resolution: - { - integrity: sha512-u/6eO6k/9ceVP0y/0dbDUcoHh/MNebTa8DBugarhKgRYXyA0jIIg3ZIw2oJmKaIVicFMAAM2uxkyVQUvIltiuA==, + integrity: sha512-bkixkG/OsSrfVAySpId7U5y34VDkpGccp0etvrqfW4SlJZpRu4u11GIKRdyJrJ8uki7m4rtK1lxi3h2KIhxeDw==, } peerDependencies: eslint: ^8.0.0 @@ -6134,27 +6010,19 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.0.13_nx@15.0.13 - '@nrwl/jest': 15.0.13_nx@15.0.13 + '@nrwl/devkit': 15.4.1 '@phenomnomnominal/tsquery': 4.1.1 - nx: 15.0.13 tmp: 0.2.1 - tslib: 2.4.1 + tslib: 2.4.0 transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - - node-notifier - - supports-color - - ts-node + - nx - typescript dev: false - /@nrwl/linter/15.0.13_ts-node@10.9.1: + /@nrwl/linter/15.4.1_kougbzkux4jq2o4jlc5ipw3xly: resolution: { - integrity: sha512-u/6eO6k/9ceVP0y/0dbDUcoHh/MNebTa8DBugarhKgRYXyA0jIIg3ZIw2oJmKaIVicFMAAM2uxkyVQUvIltiuA==, + integrity: sha512-bkixkG/OsSrfVAySpId7U5y34VDkpGccp0etvrqfW4SlJZpRu4u11GIKRdyJrJ8uki7m4rtK1lxi3h2KIhxeDw==, } peerDependencies: eslint: ^8.0.0 @@ -6162,27 +6030,19 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.0.13_nx@15.0.13 - '@nrwl/jest': 15.0.13_nx@15.0.13+ts-node@10.9.1 - '@phenomnomnominal/tsquery': 4.1.1 - nx: 15.0.13 + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + eslint: 8.15.0 tmp: 0.2.1 tslib: 2.4.1 transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - - node-notifier - - supports-color - - ts-node + - nx - typescript - dev: false - /@nrwl/linter/15.0.13_xcoserhuvtl4h3rr23sex7vfgm: + /@nrwl/linter/15.4.1_nx@15.4.1: resolution: { - integrity: sha512-u/6eO6k/9ceVP0y/0dbDUcoHh/MNebTa8DBugarhKgRYXyA0jIIg3ZIw2oJmKaIVicFMAAM2uxkyVQUvIltiuA==, + integrity: sha512-bkixkG/OsSrfVAySpId7U5y34VDkpGccp0etvrqfW4SlJZpRu4u11GIKRdyJrJ8uki7m4rtK1lxi3h2KIhxeDw==, } peerDependencies: eslint: ^8.0.0 @@ -6190,47 +6050,39 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 - eslint: 8.15.0 - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + '@nrwl/devkit': 15.4.1_nx@15.4.1 + '@phenomnomnominal/tsquery': 4.1.1 tmp: 0.2.1 - tslib: 2.4.1 + tslib: 2.4.0 transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - - node-notifier - - supports-color - - ts-node + - nx - typescript + dev: false - /@nrwl/next/15.0.13_3sykkmxe7fmdhs5rru2cyxwjiu: + /@nrwl/next/15.4.1_p64s3rzcnja7jumamlraredtvi: resolution: { - integrity: sha512-lCdn/7qmGUzT7ZIcZrdjDfHSY/HEb4uhFMBH2lNUFSLox5H6MaBBMv4nSM1RZmvScJy6XQKLSHMKgrC2RS6eIw==, + integrity: sha512-KJsTJYltxBcsgbI84tjtlezqS2JrbgjBuSJhl2YhuPCx4HgQN56A3Gf12xOO1Ii0c7KW+1swH0s8WhRkw72IYw==, } peerDependencies: next: ^13.0.0 dependencies: '@babel/plugin-proposal-decorators': 7.18.6 - '@nrwl/cypress': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/react': 15.0.13_wks7gnitocjuaekogjpg77vd3i - '@nrwl/webpack': 15.0.13_rpk4c3cgqvbet2gecxriofisau - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu + '@nrwl/cypress': 15.4.1_byanviwxe3ttxbz3vvqjrqhmpi + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/jest': 15.4.1_kmt3gyqj2yzbsfiqjiqicyuc44 + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/react': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/webpack': 15.4.1_sozmacwj6gekpd6qfm54wgywha + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina '@svgr/webpack': 6.2.1 chalk: 4.1.0 dotenv: 10.0.0 fs-extra: 10.1.0 - ignore: 5.2.0 + ignore: 5.2.4 next: 13.0.0_biqbaboplfbrettd7655fr4n2y semver: 7.3.4 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq tsconfig-paths: 3.14.1 url-loader: 4.1.1 webpack-merge: 5.8.0 @@ -6240,9 +6092,7 @@ packages: - '@swc-node/register' - '@swc/core' - '@swc/wasm' - - '@types/babel__core' - '@types/node' - - '@types/webpack' - bufferutil - clean-css - csso @@ -6258,34 +6108,29 @@ packages: - nx - prettier - sass-embedded - - sockjs-client - supports-color - - type-fest - typescript - uglify-js - utf-8-validate - vue-template-compiler - webpack - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve dev: false - /@nrwl/node/15.0.13: + /@nrwl/node/15.4.1: resolution: { - integrity: sha512-Ld33L0mjWuAu3jW26VU5HdPe7nsv+1G/eucMTiDWK8usCK3bxfs7Y9fGsfHAEfR/S3w0APj4I5rm+VO65tYQBA==, + integrity: sha512-6/LdWprGDAd/EAT1lMTxeajN8oGBpjcXWV9fz/8eaipoKM0d1l83UQom2EQ0uHF0neLZsWwANDuTAeOltGWPJw==, } dependencies: - '@nrwl/devkit': 15.0.13 - '@nrwl/jest': 15.0.13 - '@nrwl/js': 15.0.13 - '@nrwl/linter': 15.0.13 - '@nrwl/webpack': 15.0.13 - '@nrwl/workspace': 15.0.13 + '@nrwl/devkit': 15.4.1 + '@nrwl/jest': 15.4.1 + '@nrwl/js': 15.4.1 + '@nrwl/linter': 15.4.1 + '@nrwl/webpack': 15.4.1 + '@nrwl/workspace': 15.4.1 chalk: 4.1.0 - tslib: 2.4.1 + tslib: 2.4.0 transitivePeerDependencies: - '@babel/core' - '@parcel/css' @@ -6315,18 +6160,18 @@ packages: - webpack-cli dev: false - /@nrwl/node/15.0.13_5gjrzncoru3qx5of6aykrhb35m: + /@nrwl/node/15.4.1_scu4s6lne6ql7roxoe5yixihr4: resolution: { - integrity: sha512-Ld33L0mjWuAu3jW26VU5HdPe7nsv+1G/eucMTiDWK8usCK3bxfs7Y9fGsfHAEfR/S3w0APj4I5rm+VO65tYQBA==, + integrity: sha512-6/LdWprGDAd/EAT1lMTxeajN8oGBpjcXWV9fz/8eaipoKM0d1l83UQom2EQ0uHF0neLZsWwANDuTAeOltGWPJw==, } dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/webpack': 15.0.13_rpk4c3cgqvbet2gecxriofisau - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/jest': 15.4.1_kmt3gyqj2yzbsfiqjiqicyuc44 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/webpack': 15.4.1_sozmacwj6gekpd6qfm54wgywha + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina chalk: 4.1.0 tslib: 2.4.1 transitivePeerDependencies: @@ -6377,16 +6222,16 @@ packages: - debug dev: true - /@nrwl/nx-plugin/15.0.13_5gjrzncoru3qx5of6aykrhb35m: + /@nrwl/nx-plugin/15.4.1_scu4s6lne6ql7roxoe5yixihr4: resolution: { - integrity: sha512-vRURUJsnhXMEWhYRXZxa92qlsV0eEVpCyXxT+Z4ILZflXsvrdqGm1Uzoe9hhz2PBZJznWyZzfULBCJli6wLp7Q==, + integrity: sha512-N7Da00HshKhgr29Unp1ir6QDK01o6jtvPdgNbxI0joslK8SEbCjP6unYR4UJeouAjY9dEN8Y8ihf5DRzT0i0tw==, } dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/jest': 15.4.1_kmt3gyqj2yzbsfiqjiqicyuc44 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly dotenv: 10.0.0 fs-extra: 10.1.0 tslib: 2.4.1 @@ -6404,97 +6249,53 @@ packages: - typescript dev: false - /@nrwl/react/15.0.13_wks7gnitocjuaekogjpg77vd3i: + /@nrwl/react/15.4.1_m5rfccxj5gyhzcykaxmyu4a3my: resolution: { - integrity: sha512-Xj7leVqyxaCBFZ7MD6W2+oCMQ857Js3TUqK0hNdkcC/Q/xPmXUhdokQ9ynHJ67+P8rdKDMu5sb2i90CcOW/7jQ==, + integrity: sha512-QMuySy3PUSUhPaHxk4FaeHryccZrptofgDvQUD+F7nHRQNM+LmNwcI7lhR3dCayCRJn5oigK1cELZfW4mSJMwQ==, } dependencies: - '@babel/core': 7.20.2 - '@babel/preset-react': 7.18.6_@babel+core@7.20.2 - '@nrwl/cypress': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/storybook': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/web': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/webpack': 15.0.13_54t4gzeeypsx6pkw6vbvpnbki4 - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_olu7mnecpqvkvkmpursvrwz63e - '@svgr/webpack': 6.2.1 chalk: 4.1.0 - css-loader: 6.7.1_webpack@5.74.0 + enquirer: 2.3.6 minimatch: 3.0.5 - react-refresh: 0.10.0 semver: 7.3.4 - style-loader: 3.3.1_webpack@5.74.0 - stylus: 0.55.0 - stylus-loader: 7.1.0_772wava6yveehcyvgfd527qm3q - url-loader: 4.1.1_webpack@5.74.0 - webpack: 5.74.0_@swc+core@1.2.173 - webpack-merge: 5.8.0 transitivePeerDependencies: - - '@parcel/css' - '@swc-node/register' - '@swc/core' - - '@swc/wasm' - - '@types/babel__core' - - '@types/node' - - '@types/webpack' - - bufferutil - - clean-css - - csso - - cypress - debug - - esbuild - eslint - - fibers - - file-loader - - html-webpack-plugin - - node-notifier - - node-sass - nx - prettier - - sass-embedded - - sockjs-client - - supports-color - - ts-node - - type-fest - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - /@nrwl/rollup/15.0.13_shkualqt4237w4ysi56qmg2rqy: + /@nrwl/rollup/15.4.1_lehgxlyai264q3mlfc7t5fnvnu: resolution: { - integrity: sha512-hQ+6K3KKrc6Rv/mRYeb5550ozGIFoXl7F2vNXSAjMemE+5z68uiNpk2NUpSynxWBHMf3DDgXcKT2x5tkSKDfQw==, + integrity: sha512-ua1pkpoNfobQxdalJhyrR13ULA71I2B3Tp6xFsNb0jIuLdG5vSve2+oq5OnQfpQLbhkEiFRprpkctcP3T5qxFg==, } dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu - '@rollup/plugin-babel': 5.3.1_5zqh6dchb2jk7ka2bvjvlxxmlq + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina + '@rollup/plugin-babel': 5.3.1_4fcjvpt5kftwj63flnrvxpql44 '@rollup/plugin-commonjs': 20.0.0_rollup@2.77.0 '@rollup/plugin-image': 2.1.1_rollup@2.77.0 '@rollup/plugin-json': 4.1.0_rollup@2.77.0 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.0 - autoprefixer: 10.4.13_postcss@8.4.18 + autoprefixer: 10.4.13_postcss@8.4.20 babel-plugin-transform-async-to-promises: 0.8.18 chalk: 4.1.0 dotenv: 10.0.0 fs-extra: 10.1.0 - postcss: 8.4.18 + postcss: 8.4.20 rollup: 2.77.0 rollup-plugin-copy: 3.4.0 rollup-plugin-peer-deps-external: 2.2.4_rollup@2.77.0 - rollup-plugin-postcss: 4.0.2_neo3lunb2qpadwxplzw7r2isgm + rollup-plugin-postcss: 4.0.2_ra2vnoek4vhbzktaezawwqbin4 rollup-plugin-typescript2: 0.31.2_lqcg7cm2mirt2n7bp5q7bbj6vq rxjs: 6.6.7 tslib: 2.4.1 @@ -6503,101 +6304,97 @@ packages: - '@swc-node/register' - '@swc/core' - '@types/babel__core' - - '@types/node' - debug - eslint - - node-notifier - nx - prettier - - supports-color - ts-node - typescript + dev: true - /@nrwl/storybook/15.0.13_56rkyoa7mfbo77ph75h62gw3re: + /@nrwl/tao/15.4.1: resolution: { - integrity: sha512-96OJu53SVYi8HllNe9TS/dJRVE2RywsscxhvWt9tOj2pdlunz07rGkyYcnwTxQOQKLe8NsMnjmIGgVMsQxlBQQ==, + integrity: sha512-WPCvzr1kTPcEN4suTQs0CJ4OHMszatR+kD7j2inLyZKz3sltyw2HiancrWpHKPgAMfQNyjHezpjlBFTgZeT3dw==, } + hasBin: true dependencies: - '@nrwl/cypress': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu - dotenv: 10.0.0 - semver: 7.3.4 + nx: 15.4.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - - cypress - debug - - esbuild - - eslint - - node-notifier - - nx - - prettier - - supports-color - - ts-node - - typescript - - uglify-js - - vue-template-compiler - - webpack-cli + dev: false - /@nrwl/tao/15.0.13: + /@nrwl/tao/15.4.1_zhrgkbtg447ekvrhgcqluapfue: resolution: { - integrity: sha512-z55RKnVOYsiABKFUIj+QBf6I4fUwTlObxJpgUJp0i3E97P3BgbzhTG1EhuBxLH8fGKrbOAPs0ct38Asl+zGZfQ==, + integrity: sha512-WPCvzr1kTPcEN4suTQs0CJ4OHMszatR+kD7j2inLyZKz3sltyw2HiancrWpHKPgAMfQNyjHezpjlBFTgZeT3dw==, } hasBin: true dependencies: - nx: 15.0.13 + nx: 15.4.1_zhrgkbtg447ekvrhgcqluapfue transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: false - /@nrwl/tao/15.0.13_zhrgkbtg447ekvrhgcqluapfue: + /@nrwl/vite/15.4.1_m5rfccxj5gyhzcykaxmyu4a3my: resolution: { - integrity: sha512-z55RKnVOYsiABKFUIj+QBf6I4fUwTlObxJpgUJp0i3E97P3BgbzhTG1EhuBxLH8fGKrbOAPs0ct38Asl+zGZfQ==, + integrity: sha512-zH+D0hISCipnZXiGCyA72tCHf5Zuxi7YLrlYUHzetPP0sXE3C3uiDX0YFs4iua//vtzU0muQMZ8K05Oq1ZZv6Q==, } - hasBin: true + peerDependencies: + vite: ^4.0.1 + vitest: ^0.25.8 dependencies: - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4 + '@swc/helpers': 0.4.11 + chalk: 4.1.0 + dotenv: 10.0.0 + enquirer: 2.3.6 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug + - eslint + - nx + - prettier + - typescript + dev: true - /@nrwl/web/15.0.13_56rkyoa7mfbo77ph75h62gw3re: - resolution: - { - integrity: sha512-Mt/TVzABrw3zpliDWsq717tx1PeM0CM7b+WwziHHw82TM0QdefmMkV5VZJyUkFN+PyHBj2H/UCVp/9Sj9nmG/w==, - } - dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-decorators': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-runtime': 7.18.6_@babel+core@7.20.2 - '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2 - '@babel/runtime': 7.20.1 - '@nrwl/cypress': 15.0.13_56rkyoa7mfbo77ph75h62gw3re - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@nrwl/rollup': 15.0.13_shkualqt4237w4ysi56qmg2rqy - '@nrwl/webpack': 15.0.13_54t4gzeeypsx6pkw6vbvpnbki4 - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu - babel-plugin-const-enum: 1.2.0_@babel+core@7.20.2 + /@nrwl/web/15.4.1_e24qqkma44iapwjokjnpw3lfea: + resolution: + { + integrity: sha512-4qRqvBr73rz5oLfVKnWV+/zOGlzPX/rWGzajYco3f8ynkG260n7pkeJSK33F05zri1DzzJh6IO4x0MQ041/52w==, + } + dependencies: + '@babel/core': 7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-decorators': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-runtime': 7.18.6_@babel+core@7.20.7 + '@babel/preset-env': 7.20.2_@babel+core@7.20.7 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.7 + '@babel/runtime': 7.20.7 + '@nrwl/cypress': 15.4.1_byanviwxe3ttxbz3vvqjrqhmpi + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/jest': 15.4.1_kmt3gyqj2yzbsfiqjiqicyuc44 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly + '@nrwl/rollup': 15.4.1_lehgxlyai264q3mlfc7t5fnvnu + '@nrwl/vite': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/webpack': 15.4.1_mskcxu3chukqv3rboc6z2r6ica + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina + babel-plugin-const-enum: 1.2.0_@babel+core@7.20.7 babel-plugin-macros: 2.8.0 babel-plugin-transform-typescript-metadata: 0.3.2 chalk: 4.1.0 chokidar: 3.5.3 http-server: 14.1.0 - ignore: 5.2.0 + ignore: 5.2.4 tslib: 2.4.1 transitivePeerDependencies: - '@parcel/css' @@ -6625,62 +6422,65 @@ packages: - typescript - uglify-js - utf-8-validate + - vite + - vitest - vue-template-compiler - webpack-cli + dev: true - /@nrwl/webpack/15.0.13: + /@nrwl/webpack/15.4.1: resolution: { - integrity: sha512-DIeu7WhdWB0kYGRcFi5Kl+t0X4guMhiVGOMilC2pzdB80sI8th3mV+NV/iNHPnOuMVWTufrLjy4mhAA8ODLq3g==, + integrity: sha512-RmhoszApD0dK7T93GLxT3zirzTzfrgcXbBElSGuN3BHLkNWa1KHOfO8hwskr7TuZONJ3vawyaHWr3JkTk1sqsw==, } dependencies: - '@nrwl/devkit': 15.0.13 - '@nrwl/js': 15.0.13_ts-node@10.9.1 - '@nrwl/workspace': 15.0.13_ts-node@10.9.1 - autoprefixer: 10.4.13_postcss@8.4.18 - babel-loader: 8.3.0_webpack@5.74.0 + '@nrwl/devkit': 15.4.1 + '@nrwl/js': 15.4.1 + '@nrwl/workspace': 15.4.1 + autoprefixer: 10.4.13_postcss@8.4.20 + babel-loader: 8.3.0_webpack@5.75.0 browserslist: 4.21.4 - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001441 chalk: 4.1.0 chokidar: 3.5.3 - copy-webpack-plugin: 10.2.4_webpack@5.74.0 - css-loader: 6.7.1_webpack@5.74.0 - css-minimizer-webpack-plugin: 3.4.1_webpack@5.74.0 + copy-webpack-plugin: 10.2.4_webpack@5.75.0 + css-loader: 6.7.3_webpack@5.75.0 + css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 dotenv: 10.0.0 - file-loader: 6.2.0_webpack@5.74.0 - fork-ts-checker-webpack-plugin: 7.2.13_webpack@5.74.0 + file-loader: 6.2.0_webpack@5.75.0 + fork-ts-checker-webpack-plugin: 7.2.13_webpack@5.75.0 fs-extra: 10.1.0 - ignore: 5.2.0 + ignore: 5.2.4 less: 3.12.2 - less-loader: 11.1.0_less@3.12.2+webpack@5.74.0 - license-webpack-plugin: 4.0.2_webpack@5.74.0 - loader-utils: 2.0.3 - mini-css-extract-plugin: 2.4.7_webpack@5.74.0 + less-loader: 11.1.0_less@3.12.2+webpack@5.75.0 + license-webpack-plugin: 4.0.2_webpack@5.75.0 + loader-utils: 2.0.4 + mini-css-extract-plugin: 2.4.7_webpack@5.75.0 parse5: 4.0.0 parse5-html-rewriting-stream: 6.0.1 - postcss: 8.4.18 - postcss-import: 14.1.0_postcss@8.4.18 - postcss-loader: 6.2.1_igyeriywjd4lwzfk4socqbj2qi - raw-loader: 4.0.2_webpack@5.74.0 + postcss: 8.4.20 + postcss-import: 14.1.0_postcss@8.4.20 + postcss-loader: 6.2.1_qxxfhhrl3yknjjmta266mo3u64 + raw-loader: 4.0.2_webpack@5.75.0 rxjs: 6.6.7 - sass: 1.56.0 - sass-loader: 12.6.0_sass@1.56.0+webpack@5.74.0 - source-map-loader: 3.0.2_webpack@5.74.0 - style-loader: 3.3.1_webpack@5.74.0 + sass: 1.57.1 + sass-loader: 12.6.0_sass@1.57.1+webpack@5.75.0 + source-map-loader: 3.0.2_webpack@5.75.0 + style-loader: 3.3.1_webpack@5.75.0 stylus: 0.55.0 - stylus-loader: 7.1.0_772wava6yveehcyvgfd527qm3q - terser-webpack-plugin: 5.3.6_webpack@5.74.0 - ts-loader: 9.4.1_webpack@5.74.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 tsconfig-paths: 3.14.1 tsconfig-paths-webpack-plugin: 3.5.2 - tslib: 2.4.1 - webpack: 5.74.0 - webpack-dev-server: 4.11.1_webpack@5.74.0 + tslib: 2.4.0 + webpack: 5.75.0 + webpack-dev-server: 4.11.1_webpack@5.75.0 webpack-merge: 5.8.0 webpack-node-externals: 3.0.0 webpack-sources: 3.2.3 - webpack-subresource-integrity: 5.1.0_webpack@5.74.0 + webpack-subresource-integrity: 5.1.0_webpack@5.75.0 transitivePeerDependencies: - '@babel/core' - '@parcel/css' @@ -6696,7 +6496,6 @@ packages: - eslint - fibers - html-webpack-plugin - - node-notifier - node-sass - nx - prettier @@ -6709,59 +6508,59 @@ packages: - webpack-cli dev: false - /@nrwl/webpack/15.0.13_54t4gzeeypsx6pkw6vbvpnbki4: + /@nrwl/webpack/15.4.1_mskcxu3chukqv3rboc6z2r6ica: resolution: { - integrity: sha512-DIeu7WhdWB0kYGRcFi5Kl+t0X4guMhiVGOMilC2pzdB80sI8th3mV+NV/iNHPnOuMVWTufrLjy4mhAA8ODLq3g==, + integrity: sha512-RmhoszApD0dK7T93GLxT3zirzTzfrgcXbBElSGuN3BHLkNWa1KHOfO8hwskr7TuZONJ3vawyaHWr3JkTk1sqsw==, } dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu - autoprefixer: 10.4.13_postcss@8.4.18 - babel-loader: 8.3.0_hkczypimj4evef4hfazf6yfxte + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina + autoprefixer: 10.4.13_postcss@8.4.20 + babel-loader: 8.3.0_lkd654lvpl423ugsqn5olungie browserslist: 4.21.4 - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001441 chalk: 4.1.0 chokidar: 3.5.3 - copy-webpack-plugin: 10.2.4_webpack@5.74.0 - css-loader: 6.7.1_webpack@5.74.0 - css-minimizer-webpack-plugin: 3.4.1_webpack@5.74.0 + copy-webpack-plugin: 10.2.4_webpack@5.75.0 + css-loader: 6.7.3_webpack@5.75.0 + css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 dotenv: 10.0.0 - file-loader: 6.2.0_webpack@5.74.0 - fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e + file-loader: 6.2.0_webpack@5.75.0 + fork-ts-checker-webpack-plugin: 7.2.13_qw7fmzhoapcndkteb5rsc33stq fs-extra: 10.1.0 - ignore: 5.2.0 + ignore: 5.2.4 less: 3.12.2 - less-loader: 11.1.0_less@3.12.2+webpack@5.74.0 - license-webpack-plugin: 4.0.2_webpack@5.74.0 - loader-utils: 2.0.3 - mini-css-extract-plugin: 2.4.7_webpack@5.74.0 + less-loader: 11.1.0_less@3.12.2+webpack@5.75.0 + license-webpack-plugin: 4.0.2_webpack@5.75.0 + loader-utils: 2.0.4 + mini-css-extract-plugin: 2.4.7_webpack@5.75.0 parse5: 4.0.0 parse5-html-rewriting-stream: 6.0.1 - postcss: 8.4.18 - postcss-import: 14.1.0_postcss@8.4.18 - postcss-loader: 6.2.1_igyeriywjd4lwzfk4socqbj2qi - raw-loader: 4.0.2_webpack@5.74.0 + postcss: 8.4.20 + postcss-import: 14.1.0_postcss@8.4.20 + postcss-loader: 6.2.1_qxxfhhrl3yknjjmta266mo3u64 + raw-loader: 4.0.2_webpack@5.75.0 rxjs: 6.6.7 - sass: 1.56.0 - sass-loader: 12.6.0_sass@1.56.0+webpack@5.74.0 - source-map-loader: 3.0.2_webpack@5.74.0 - style-loader: 3.3.1_webpack@5.74.0 + sass: 1.57.1 + sass-loader: 12.6.0_sass@1.57.1+webpack@5.75.0 + source-map-loader: 3.0.2_webpack@5.75.0 + style-loader: 3.3.1_webpack@5.75.0 stylus: 0.55.0 - stylus-loader: 7.1.0_772wava6yveehcyvgfd527qm3q - terser-webpack-plugin: 5.3.6_s7pr4qgrnindsllhcpre6wt5t4 - ts-loader: 9.4.1_qqxisngxjbp7lstdk7boexbu3e - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + stylus-loader: 7.1.0_irl2hmhzopg6urv44vymn74p4e + terser-webpack-plugin: 5.3.6_vpswimrumx7b6g43sykpxebxim + ts-loader: 9.4.2_qw7fmzhoapcndkteb5rsc33stq + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq tsconfig-paths: 3.14.1 tsconfig-paths-webpack-plugin: 3.5.2 tslib: 2.4.1 - webpack: 5.74.0_@swc+core@1.2.173 - webpack-dev-server: 4.11.1_webpack@5.74.0 + webpack: 5.75.0_@swc+core@1.2.173 + webpack-dev-server: 4.11.1_webpack@5.75.0 webpack-merge: 5.8.0 webpack-node-externals: 3.0.0 webpack-sources: 3.2.3 - webpack-subresource-integrity: 5.1.0_webpack@5.74.0 + webpack-subresource-integrity: 5.1.0_webpack@5.75.0 transitivePeerDependencies: - '@babel/core' - '@parcel/css' @@ -6777,7 +6576,6 @@ packages: - eslint - fibers - html-webpack-plugin - - node-notifier - node-sass - nx - prettier @@ -6788,60 +6586,61 @@ packages: - utf-8-validate - vue-template-compiler - webpack-cli + dev: true - /@nrwl/webpack/15.0.13_rpk4c3cgqvbet2gecxriofisau: + /@nrwl/webpack/15.4.1_sozmacwj6gekpd6qfm54wgywha: resolution: { - integrity: sha512-DIeu7WhdWB0kYGRcFi5Kl+t0X4guMhiVGOMilC2pzdB80sI8th3mV+NV/iNHPnOuMVWTufrLjy4mhAA8ODLq3g==, + integrity: sha512-RmhoszApD0dK7T93GLxT3zirzTzfrgcXbBElSGuN3BHLkNWa1KHOfO8hwskr7TuZONJ3vawyaHWr3JkTk1sqsw==, } dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/js': 15.0.13_5gjrzncoru3qx5of6aykrhb35m - '@nrwl/workspace': 15.0.13_sroaaui7wb3d33loufss4vxvlu - autoprefixer: 10.4.13_postcss@8.4.18 - babel-loader: 8.3.0_webpack@5.74.0 + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/js': 15.4.1_m5rfccxj5gyhzcykaxmyu4a3my + '@nrwl/workspace': 15.4.1_45yisgrp5ltyayotjg3pj2hina + autoprefixer: 10.4.13_postcss@8.4.20 + babel-loader: 8.3.0_webpack@5.75.0 browserslist: 4.21.4 - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001441 chalk: 4.1.0 chokidar: 3.5.3 - copy-webpack-plugin: 10.2.4_webpack@5.74.0 - css-loader: 6.7.1_webpack@5.74.0 - css-minimizer-webpack-plugin: 3.4.1_webpack@5.74.0 + copy-webpack-plugin: 10.2.4_webpack@5.75.0 + css-loader: 6.7.3_webpack@5.75.0 + css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 dotenv: 10.0.0 - file-loader: 6.2.0_webpack@5.74.0 - fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e + file-loader: 6.2.0_webpack@5.75.0 + fork-ts-checker-webpack-plugin: 7.2.13_qw7fmzhoapcndkteb5rsc33stq fs-extra: 10.1.0 - ignore: 5.2.0 + ignore: 5.2.4 less: 3.12.2 - less-loader: 11.1.0_less@3.12.2+webpack@5.74.0 - license-webpack-plugin: 4.0.2_webpack@5.74.0 - loader-utils: 2.0.3 - mini-css-extract-plugin: 2.4.7_webpack@5.74.0 + less-loader: 11.1.0_less@3.12.2+webpack@5.75.0 + license-webpack-plugin: 4.0.2_webpack@5.75.0 + loader-utils: 2.0.4 + mini-css-extract-plugin: 2.4.7_webpack@5.75.0 parse5: 4.0.0 parse5-html-rewriting-stream: 6.0.1 - postcss: 8.4.18 - postcss-import: 14.1.0_postcss@8.4.18 - postcss-loader: 6.2.1_igyeriywjd4lwzfk4socqbj2qi - raw-loader: 4.0.2_webpack@5.74.0 + postcss: 8.4.20 + postcss-import: 14.1.0_postcss@8.4.20 + postcss-loader: 6.2.1_qxxfhhrl3yknjjmta266mo3u64 + raw-loader: 4.0.2_webpack@5.75.0 rxjs: 6.6.7 - sass: 1.56.0 - sass-loader: 12.6.0_sass@1.56.0+webpack@5.74.0 - source-map-loader: 3.0.2_webpack@5.74.0 - style-loader: 3.3.1_webpack@5.74.0 + sass: 1.57.1 + sass-loader: 12.6.0_sass@1.57.1+webpack@5.75.0 + source-map-loader: 3.0.2_webpack@5.75.0 + style-loader: 3.3.1_webpack@5.75.0 stylus: 0.55.0 - stylus-loader: 7.1.0_772wava6yveehcyvgfd527qm3q - terser-webpack-plugin: 5.3.6_s7pr4qgrnindsllhcpre6wt5t4 - ts-loader: 9.4.1_qqxisngxjbp7lstdk7boexbu3e - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + stylus-loader: 7.1.0_irl2hmhzopg6urv44vymn74p4e + terser-webpack-plugin: 5.3.6_vpswimrumx7b6g43sykpxebxim + ts-loader: 9.4.2_qw7fmzhoapcndkteb5rsc33stq + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq tsconfig-paths: 3.14.1 tsconfig-paths-webpack-plugin: 3.5.2 tslib: 2.4.1 - webpack: 5.74.0_@swc+core@1.2.173 - webpack-dev-server: 4.11.1_webpack@5.74.0 + webpack: 5.75.0_@swc+core@1.2.173 + webpack-dev-server: 4.11.1_webpack@5.75.0 webpack-merge: 5.8.0 webpack-node-externals: 3.0.0 webpack-sources: 3.2.3 - webpack-subresource-integrity: 5.1.0_webpack@5.74.0 + webpack-subresource-integrity: 5.1.0_webpack@5.75.0 transitivePeerDependencies: - '@babel/core' - '@parcel/css' @@ -6857,7 +6656,6 @@ packages: - eslint - fibers - html-webpack-plugin - - node-notifier - node-sass - nx - prettier @@ -6869,10 +6667,10 @@ packages: - vue-template-compiler - webpack-cli - /@nrwl/workspace/15.0.13: + /@nrwl/workspace/15.4.1: resolution: { - integrity: sha512-G+emebnp8lIOf4ytYd3fUIGhVtnZAg+qhkXYyYZdlsNFBK1qYmkCVPIAL8fLLnHNT1NXe5zYTJzoHEEl/eoKSw==, + integrity: sha512-OL993pwsMBT5dYOYhuRWeoLIlfzHFsRBEBeNZWJKz5fKQq5wbu4F3MjfGXLuWTG8ybk+g/RsUi7ahzTep/GMbQ==, } peerDependencies: prettier: ^2.6.2 @@ -6880,9 +6678,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.0.13_nx@15.0.13 - '@nrwl/jest': 15.0.13_nx@15.0.13 - '@nrwl/linter': 15.0.13 + '@nrwl/devkit': 15.4.1_nx@15.4.1 + '@nrwl/linter': 15.4.1_nx@15.4.1 '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -6894,81 +6691,30 @@ packages: flat: 5.0.2 fs-extra: 10.1.0 glob: 7.1.4 - ignore: 5.2.0 - minimatch: 3.0.5 - npm-run-path: 4.0.1 - nx: 15.0.13 - open: 8.4.0 - rxjs: 6.6.7 - semver: 7.3.4 - tmp: 0.2.1 - tslib: 2.4.1 - yargs: 17.6.2 - yargs-parser: 21.1.1 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - '@types/node' - - debug - - eslint - - node-notifier - - supports-color - - ts-node - - typescript - dev: false - - /@nrwl/workspace/15.0.13_sroaaui7wb3d33loufss4vxvlu: - resolution: - { - integrity: sha512-G+emebnp8lIOf4ytYd3fUIGhVtnZAg+qhkXYyYZdlsNFBK1qYmkCVPIAL8fLLnHNT1NXe5zYTJzoHEEl/eoKSw==, - } - peerDependencies: - prettier: ^2.6.2 - peerDependenciesMeta: - prettier: - optional: true - dependencies: - '@nrwl/devkit': 15.0.13_dtuttet22dxzt73ll2oxv2ugvu - '@nrwl/jest': 15.0.13_fid3rvd3uikkef472q7cr2k2mq - '@nrwl/linter': 15.0.13_xcoserhuvtl4h3rr23sex7vfgm - '@parcel/watcher': 2.0.4 - chalk: 4.1.0 - chokidar: 3.5.3 - cli-cursor: 3.1.0 - cli-spinners: 2.6.1 - dotenv: 10.0.0 - enquirer: 2.3.6 - figures: 3.2.0 - flat: 5.0.2 - fs-extra: 10.1.0 - glob: 7.1.4 - ignore: 5.2.0 + ignore: 5.2.4 + jsonc-parser: 3.2.0 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 15.0.13_zhrgkbtg447ekvrhgcqluapfue + nx: 15.4.1 open: 8.4.0 - prettier: 2.7.1 rxjs: 6.6.7 semver: 7.3.4 tmp: 0.2.1 - tslib: 2.4.1 + tslib: 2.4.0 yargs: 17.6.2 yargs-parser: 21.1.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - debug - eslint - - node-notifier - - supports-color - - ts-node - typescript + dev: false - /@nrwl/workspace/15.0.13_ts-node@10.9.1: + /@nrwl/workspace/15.4.1_45yisgrp5ltyayotjg3pj2hina: resolution: { - integrity: sha512-G+emebnp8lIOf4ytYd3fUIGhVtnZAg+qhkXYyYZdlsNFBK1qYmkCVPIAL8fLLnHNT1NXe5zYTJzoHEEl/eoKSw==, + integrity: sha512-OL993pwsMBT5dYOYhuRWeoLIlfzHFsRBEBeNZWJKz5fKQq5wbu4F3MjfGXLuWTG8ybk+g/RsUi7ahzTep/GMbQ==, } peerDependencies: prettier: ^2.6.2 @@ -6976,9 +6722,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.0.13_nx@15.0.13 - '@nrwl/jest': 15.0.13_nx@15.0.13+ts-node@10.9.1 - '@nrwl/linter': 15.0.13_ts-node@10.9.1 + '@nrwl/devkit': 15.4.1_nx@15.4.1+typescript@4.8.4 + '@nrwl/linter': 15.4.1_kougbzkux4jq2o4jlc5ipw3xly '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -6990,11 +6735,13 @@ packages: flat: 5.0.2 fs-extra: 10.1.0 glob: 7.1.4 - ignore: 5.2.0 + ignore: 5.2.4 + jsonc-parser: 3.2.0 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 15.0.13 + nx: 15.4.1_zhrgkbtg447ekvrhgcqluapfue open: 8.4.0 + prettier: 2.7.1 rxjs: 6.6.7 semver: 7.3.4 tmp: 0.2.1 @@ -7004,14 +6751,9 @@ packages: transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - - '@types/node' - debug - eslint - - node-notifier - - supports-color - - ts-node - typescript - dev: false /@omnigraph/json-schema/0.29.2_rjjjs2nwgns3bcvnnqb5eu5nry: resolution: @@ -7215,48 +6957,6 @@ packages: esquery: 1.4.0 typescript: 4.8.4 - /@pmmmwh/react-refresh-webpack-plugin/0.5.7_olu7mnecpqvkvkmpursvrwz63e: - resolution: - { - integrity: sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==, - } - engines: { node: '>= 10.13' } - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <3.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.23.4 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.3.3 - loader-utils: 2.0.3 - react-refresh: 0.10.0 - schema-utils: 3.1.1 - source-map: 0.7.4 - type-fest: 2.18.0 - webpack: 5.74.0_@swc+core@1.2.173 - /@repeaterjs/repeater/3.0.4: resolution: { @@ -7264,7 +6964,7 @@ packages: } dev: false - /@rollup/plugin-babel/5.3.1_5zqh6dchb2jk7ka2bvjvlxxmlq: + /@rollup/plugin-babel/5.3.1_4fcjvpt5kftwj63flnrvxpql44: resolution: { integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==, @@ -7278,10 +6978,11 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-module-imports': 7.18.6 '@rollup/pluginutils': 3.1.0_rollup@2.77.0 rollup: 2.77.0 + dev: true /@rollup/plugin-commonjs/20.0.0_rollup@2.77.0: resolution: @@ -7300,6 +7001,7 @@ packages: magic-string: 0.25.9 resolve: 1.22.1 rollup: 2.77.0 + dev: true /@rollup/plugin-image/2.1.1_rollup@2.77.0: resolution: @@ -7313,6 +7015,7 @@ packages: '@rollup/pluginutils': 3.1.0_rollup@2.77.0 mini-svg-data-uri: 1.4.4 rollup: 2.77.0 + dev: true /@rollup/plugin-json/4.1.0_rollup@2.77.0: resolution: @@ -7324,6 +7027,7 @@ packages: dependencies: '@rollup/pluginutils': 3.1.0_rollup@2.77.0 rollup: 2.77.0 + dev: true /@rollup/plugin-node-resolve/13.3.0_rollup@2.77.0: resolution: @@ -7341,6 +7045,7 @@ packages: is-module: 1.0.0 resolve: 1.22.1 rollup: 2.77.0 + dev: true /@rollup/pluginutils/3.1.0_rollup@2.77.0: resolution: @@ -7355,6 +7060,7 @@ packages: estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.77.0 + dev: true /@rollup/pluginutils/4.2.1: resolution: @@ -7365,6 +7071,7 @@ packages: dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 + dev: true /@rushstack/eslint-patch/1.1.4: resolution: @@ -7379,10 +7086,10 @@ packages: integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==, } - /@sinonjs/commons/1.8.5: + /@sinonjs/commons/1.8.6: resolution: { - integrity: sha512-rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA==, + integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, } dependencies: type-detect: 4.0.8 @@ -7393,9 +7100,9 @@ packages: integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==, } dependencies: - '@sinonjs/commons': 1.8.5 + '@sinonjs/commons': 1.8.6 - /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==, @@ -7404,9 +7111,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==, @@ -7415,9 +7123,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==, @@ -7426,9 +7135,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==, @@ -7437,9 +7147,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==, @@ -7448,9 +7159,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==, @@ -7459,9 +7171,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.20.2: + /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.20.7: resolution: { integrity: sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==, @@ -7470,9 +7183,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.20.2: + /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.20.7: resolution: { integrity: sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==, @@ -7481,9 +7195,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 + dev: false - /@svgr/babel-preset/6.2.0_@babel+core@7.20.2: + /@svgr/babel-preset/6.2.0_@babel+core@7.20.7: resolution: { integrity: sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==, @@ -7492,15 +7207,16 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@svgr/babel-plugin-add-jsx-attribute': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-svg-dynamic-title': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-svg-em-dimensions': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-transform-react-native-svg': 6.0.0_@babel+core@7.20.2 - '@svgr/babel-plugin-transform-svg-component': 6.2.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@svgr/babel-plugin-add-jsx-attribute': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-svg-dynamic-title': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-svg-em-dimensions': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-transform-react-native-svg': 6.0.0_@babel+core@7.20.7 + '@svgr/babel-plugin-transform-svg-component': 6.2.0_@babel+core@7.20.7 + dev: false /@svgr/core/6.2.1: resolution: @@ -7511,9 +7227,10 @@ packages: dependencies: '@svgr/plugin-jsx': 6.2.1_@svgr+core@6.2.1 camelcase: 6.3.0 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color + dev: false /@svgr/hast-util-to-babel-ast/6.2.1: resolution: @@ -7522,8 +7239,9 @@ packages: } engines: { node: '>=10' } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 entities: 3.0.1 + dev: false /@svgr/plugin-jsx/6.2.1_@svgr+core@6.2.1: resolution: @@ -7534,13 +7252,14 @@ packages: peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.20.2 - '@svgr/babel-preset': 6.2.0_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@svgr/babel-preset': 6.2.0_@babel+core@7.20.7 '@svgr/core': 6.2.1 '@svgr/hast-util-to-babel-ast': 6.2.1 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color + dev: false /@svgr/plugin-svgo/6.2.0_@svgr+core@6.2.1: resolution: @@ -7552,9 +7271,10 @@ packages: '@svgr/core': ^6.0.0 dependencies: '@svgr/core': 6.2.1 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 deepmerge: 4.2.2 svgo: 2.8.0 + dev: false /@svgr/webpack/6.2.1: resolution: @@ -7563,16 +7283,17 @@ packages: } engines: { node: '>=10' } dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-transform-react-constant-elements': 7.18.6_@babel+core@7.20.2 - '@babel/preset-env': 7.20.2_@babel+core@7.20.2 - '@babel/preset-react': 7.18.6_@babel+core@7.20.2 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/plugin-transform-react-constant-elements': 7.18.6_@babel+core@7.20.7 + '@babel/preset-env': 7.20.2_@babel+core@7.20.7 + '@babel/preset-react': 7.18.6_@babel+core@7.20.7 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.7 '@svgr/core': 6.2.1 '@svgr/plugin-jsx': 6.2.1_@svgr+core@6.2.1 '@svgr/plugin-svgo': 6.2.0_@svgr+core@6.2.1 transitivePeerDependencies: - supports-color + dev: false /@swc-node/core/1.9.0: resolution: @@ -7967,7 +7688,6 @@ packages: } dependencies: tslib: 2.4.1 - dev: false /@swc/jest/0.2.20_@swc+core@1.2.173: resolution: @@ -8011,7 +7731,7 @@ packages: dependencies: '@babel/runtime': 7.19.0 '@testing-library/dom': 8.16.0 - '@types/react-dom': 18.0.6 + '@types/react-dom': 18.0.9 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true @@ -8073,6 +7793,7 @@ packages: '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.2 + dev: true /@types/babel__core/7.1.20: resolution: @@ -8080,11 +7801,11 @@ packages: integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==, } dependencies: - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.18.2 + '@types/babel__traverse': 7.18.3 /@types/babel__generator/7.6.4: resolution: @@ -8092,7 +7813,7 @@ packages: integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 /@types/babel__template/7.4.1: resolution: @@ -8100,8 +7821,8 @@ packages: integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, } dependencies: - '@babel/parser': 7.20.3 - '@babel/types': 7.20.2 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 /@types/babel__traverse/7.18.2: resolution: @@ -8109,7 +7830,16 @@ packages: integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==, } dependencies: - '@babel/types': 7.20.2 + '@babel/types': 7.20.7 + dev: true + + /@types/babel__traverse/7.18.3: + resolution: + { + integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==, + } + dependencies: + '@babel/types': 7.20.7 /@types/body-parser/1.19.2: resolution: @@ -8118,7 +7848,7 @@ packages: } dependencies: '@types/connect': 3.4.35 - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/bonjour/3.5.10: resolution: @@ -8126,7 +7856,7 @@ packages: integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/connect-history-api-fallback/1.3.5: resolution: @@ -8135,7 +7865,7 @@ packages: } dependencies: '@types/express-serve-static-core': 4.17.31 - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/connect/3.4.35: resolution: @@ -8143,7 +7873,7 @@ packages: integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/eslint-scope/3.7.4: resolution: @@ -8168,6 +7898,7 @@ packages: { integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, } + dev: true /@types/estree/0.0.51: resolution: @@ -8180,6 +7911,7 @@ packages: { integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==, } + dev: true /@types/express-serve-static-core/4.17.31: resolution: @@ -8187,14 +7919,14 @@ packages: integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 - /@types/express/4.17.14: + /@types/express/4.17.15: resolution: { - integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==, + integrity: sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==, } dependencies: '@types/body-parser': 1.19.2 @@ -8208,7 +7940,8 @@ packages: integrity: sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 + dev: true /@types/fs-extra/9.0.13: resolution: @@ -8216,7 +7949,7 @@ packages: integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, } dependencies: - '@types/node': 18.7.21 + '@types/node': 18.11.17 dev: true /@types/glob/7.2.0: @@ -8226,7 +7959,8 @@ packages: } dependencies: '@types/minimatch': 3.0.5 - '@types/node': 18.11.9 + '@types/node': 18.11.17 + dev: true /@types/graceful-fs/4.1.5: resolution: @@ -8234,7 +7968,7 @@ packages: integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/hoist-non-react-statics/3.3.1: resolution: @@ -8242,7 +7976,7 @@ packages: integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==, } dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.25 hoist-non-react-statics: 3.3.2 dev: true @@ -8252,7 +7986,7 @@ packages: integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/is-ci/3.0.0: resolution: @@ -8260,7 +7994,7 @@ packages: integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==, } dependencies: - ci-info: 3.6.1 + ci-info: 3.7.0 dev: false /@types/istanbul-lib-coverage/2.0.4: @@ -8308,7 +8042,7 @@ packages: integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 '@types/tough-cookie': 4.0.2 parse5: 7.1.1 dev: false @@ -8338,7 +8072,7 @@ packages: integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 dev: false /@types/mime/3.0.1: @@ -8352,6 +8086,7 @@ packages: { integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==, } + dev: true /@types/minimist/1.2.2: resolution: @@ -8373,24 +8108,17 @@ packages: integrity: sha512-qzaYbXVzin6EPjghf/hTdIbnVW1ErMx8rPzwRNJhlbyJhu2SyqlvjGOY/tbUt6VFyzg56lROcOeSQRInpt63Yw==, } - /@types/node/18.11.9: - resolution: - { - integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==, - } - - /@types/node/18.7.18: + /@types/node/18.11.17: resolution: { - integrity: sha512-m+6nTEOadJZuTPkKR/SYK3A2d7FZrgElol9UP1Kae90VVU4a6mxnPuLiIW1m4Cq4gZ/nWb9GrdVXJCoCazDAbg==, + integrity: sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==, } - /@types/node/18.7.21: + /@types/node/18.11.9: resolution: { - integrity: sha512-rLFzK5bhM0YPyCoTC8bolBjMk7bwnZ8qeZUBslBfjZQou2ssJdWslx9CZ8DGM+Dx7QXQiiTVZ/6QO6kwtHkZCA==, + integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==, } - dev: true /@types/normalize-package-data/2.4.1: resolution: @@ -8405,10 +8133,10 @@ packages: integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, } - /@types/prettier/2.7.1: + /@types/prettier/2.7.2: resolution: { - integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==, + integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==, } /@types/prop-types/15.7.5: @@ -8430,13 +8158,13 @@ packages: integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, } - /@types/react-dom/18.0.6: + /@types/react-dom/18.0.9: resolution: { - integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==, + integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==, } dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.25 dev: true /@types/react-is/17.0.3: @@ -8445,13 +8173,13 @@ packages: integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==, } dependencies: - '@types/react': 18.0.20 + '@types/react': 18.0.25 dev: true - /@types/react/18.0.20: + /@types/react/18.0.25: resolution: { - integrity: sha512-MWul1teSPxujEHVwZl4a5HxQ9vVNsjTchVA+xRqv/VYGCuKGAU6UhfrTdF5aBefwD1BHUD8i/zq+O/vyCm/FrA==, + integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==, } dependencies: '@types/prop-types': 15.7.5 @@ -8465,7 +8193,8 @@ packages: integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 + dev: true /@types/retry/0.12.0: resolution: @@ -8500,7 +8229,7 @@ packages: integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==, } dependencies: - '@types/express': 4.17.14 + '@types/express': 4.17.15 /@types/serve-static/1.15.0: resolution: @@ -8509,7 +8238,7 @@ packages: } dependencies: '@types/mime': 3.0.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/sinonjs__fake-timers/8.1.1: resolution: @@ -8529,7 +8258,7 @@ packages: integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/stack-utils/2.0.1: resolution: @@ -8544,7 +8273,7 @@ packages: } dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.0.20 + '@types/react': 18.0.25 csstype: 3.1.0 dev: true @@ -8561,7 +8290,7 @@ packages: integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 /@types/yargs-parser/21.0.0: resolution: @@ -8585,6 +8314,15 @@ packages: } dependencies: '@types/yargs-parser': 21.0.0 + dev: false + + /@types/yargs/17.0.17: + resolution: + { + integrity: sha512-72bWxFKTK6uwWJAVT+3rF6Jo6RTojiJ27FQo8Rf60AL+VZbzoVPnMFhKsUnbjR8A3BTCYQ7Mv3hnl8T0A+CX9g==, + } + dependencies: + '@types/yargs-parser': 21.0.0 /@types/yauzl/2.10.0: resolution: @@ -8593,7 +8331,7 @@ packages: } requiresBuild: true dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 optional: true /@typescript-eslint/eslint-plugin/5.42.1_edj3z5fb2d4dyl4qibv6szemjm: @@ -8947,7 +8685,7 @@ packages: - encoding dev: false - /@whatwg-node/server/0.4.14_6g4xlh77qkmky7kw4we5vmcsbe: + /@whatwg-node/server/0.4.14_tnszpa3q4sbvo73aomgaj2dute: resolution: { integrity: sha512-wRPkrqpHHqEFV+AVnAS2c5NlQ6zdiduT4k9f0tTh+Qy6l5ZY2p0a3PxUcBL8V1hzT6dXlP7PRNFdd//L/UyN7g==, @@ -8955,7 +8693,7 @@ packages: peerDependencies: '@types/node': ^18.0.6 dependencies: - '@types/node': 18.7.18 + '@types/node': 18.11.9 '@whatwg-node/fetch': 0.5.1_encoding@0.1.13 tslib: 2.4.1 transitivePeerDependencies: @@ -8983,6 +8721,7 @@ packages: pkg-dir: 5.0.0 tslib: 2.4.1 upath2: 3.1.13 + dev: true /@yarnpkg/lockfile/1.1.0: resolution: @@ -8990,15 +8729,15 @@ packages: integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==, } - /@yarnpkg/parsers/3.0.0-rc.27: + /@yarnpkg/parsers/3.0.0-rc.34: resolution: { - integrity: sha512-qs2wZulOYVjaOS6tYOs3SsR7m/qeHwjPrB5i4JtBJELsgWrEkyL+rJH21RA+fVwttJobAYQqw5Xj5SYLaDK/bQ==, + integrity: sha512-NhEA0BusInyk7EiJ7i7qF1Mkrb6gGjZcQQ/W1xxGazxapubEmGO7v5WSll6hWxFXE2ngtLj8lflq1Ff5VtqEww==, } engines: { node: '>=14.15.0' } dependencies: js-yaml: 3.14.1 - tslib: 2.4.1 + tslib: 2.4.0 /@zkochan/js-yaml/0.0.6: resolution: @@ -9259,10 +8998,10 @@ packages: engines: { node: '>=12' } dev: true - /anymatch/3.1.2: + /anymatch/3.1.3: resolution: { - integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, } engines: { node: '>= 8' } dependencies: @@ -9302,7 +9041,7 @@ packages: } engines: { node: '>=6.0' } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 '@babel/runtime-corejs3': 7.18.6 dev: true @@ -9347,6 +9086,20 @@ packages: is-string: 1.0.7 dev: true + /array-includes/3.1.6: + resolution: + { + integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 + get-intrinsic: 1.1.3 + is-string: 1.0.7 + dev: true + /array-union/2.1.0: resolution: { @@ -9373,17 +9126,30 @@ packages: es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 - /array.prototype.flatmap/1.3.0: + /array.prototype.flatmap/1.3.1: resolution: { - integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==, + integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==, } engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.tosorted/1.1.1: + resolution: + { + integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.5 es-shim-unscopables: 1.0.0 + get-intrinsic: 1.1.3 dev: true /arrify/1.0.1: @@ -9449,6 +9215,7 @@ packages: } dependencies: lodash: 4.17.21 + dev: true /async/3.2.4: resolution: @@ -9485,7 +9252,7 @@ packages: engines: { node: '>=8' } dev: false - /autoprefixer/10.4.13_postcss@8.4.18: + /autoprefixer/10.4.13_postcss@8.4.20: resolution: { integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==, @@ -9496,11 +9263,11 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001441 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 /available-typed-arrays/1.0.5: @@ -9542,10 +9309,10 @@ packages: - debug dev: true - /axios/1.1.3: + /axios/1.2.1: resolution: { - integrity: sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==, + integrity: sha512-I88cFiGu9ryt/tfVEi4kX2SITsvDddTajXTOFmt2uK1ZVA8LytjtdeyefdQWEf5PU8w+4SSJDoYnggflB5tW4A==, } dependencies: follow-redirects: 1.15.2 @@ -9581,7 +9348,7 @@ packages: - supports-color dev: true - /babel-jest/28.1.3_@babel+core@7.20.2: + /babel-jest/28.1.3_@babel+core@7.20.7: resolution: { integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==, @@ -9590,18 +9357,18 @@ packages: peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@jest/transform': 28.1.3 - '@types/babel__core': 7.1.19 + '@types/babel__core': 7.1.20 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.20.2 + babel-preset-jest: 28.1.3_@babel+core@7.20.7 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 transitivePeerDependencies: - supports-color - /babel-loader/8.3.0_hkczypimj4evef4hfazf6yfxte: + /babel-loader/8.3.0_lkd654lvpl423ugsqn5olungie: resolution: { integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==, @@ -9611,14 +9378,15 @@ packages: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 find-cache-dir: 3.3.2 - loader-utils: 2.0.3 + loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.74.0 + webpack: 5.75.0_@swc+core@1.2.173 + dev: true - /babel-loader/8.3.0_webpack@5.74.0: + /babel-loader/8.3.0_webpack@5.75.0: resolution: { integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==, @@ -9629,12 +9397,12 @@ packages: webpack: '>=2' dependencies: find-cache-dir: 3.3.2 - loader-utils: 2.0.3 + loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.74.0 + webpack: 5.75.0 - /babel-plugin-const-enum/1.2.0_@babel+core@7.20.2: + /babel-plugin-const-enum/1.2.0_@babel+core@7.20.7: resolution: { integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==, @@ -9642,12 +9410,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 - '@babel/traverse': 7.20.1 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7 + '@babel/traverse': 7.20.10 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-istanbul/6.1.1: resolution: @@ -9671,10 +9440,10 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.20.2 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 '@types/babel__core': 7.1.20 - '@types/babel__traverse': 7.18.2 + '@types/babel__traverse': 7.18.3 /babel-plugin-macros/2.8.0: resolution: @@ -9682,11 +9451,12 @@ packages: integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 cosmiconfig: 6.0.0 resolve: 1.22.1 + dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.2: + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.7: resolution: { integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==, @@ -9694,14 +9464,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 semver: 6.3.0 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.20.2: + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.20.7: resolution: { integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==, @@ -9709,13 +9479,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 - core-js-compat: 3.26.0 + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 + core-js-compat: 3.26.1 transitivePeerDependencies: - supports-color + dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.2: + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.7: resolution: { integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==, @@ -9723,13 +9494,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 core-js-compat: 3.26.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.20.2: + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.20.7: resolution: { integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==, @@ -9737,12 +9508,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 transitivePeerDependencies: - supports-color + dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.2: + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.7: resolution: { integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==, @@ -9750,12 +9522,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.2 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7 transitivePeerDependencies: - supports-color - /babel-plugin-styled-components/1.10.7_styled-components@5.3.5: + /babel-plugin-styled-components/1.10.7_styled-components@5.3.6: resolution: { integrity: sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==, @@ -9767,10 +9539,10 @@ packages: '@babel/helper-module-imports': 7.18.6 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba dev: true - /babel-plugin-styled-components/2.0.7_styled-components@5.3.5: + /babel-plugin-styled-components/2.0.7_styled-components@5.3.6: resolution: { integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==, @@ -9783,7 +9555,7 @@ packages: babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba /babel-plugin-syntax-jsx/6.18.0: resolution: @@ -9803,6 +9575,7 @@ packages: { integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==, } + dev: true /babel-plugin-transform-typescript-metadata/0.3.2: resolution: @@ -9811,6 +9584,7 @@ packages: } dependencies: '@babel/helper-plugin-utils': 7.20.2 + dev: true /babel-preset-current-node-syntax/1.0.1: resolution: @@ -9834,7 +9608,7 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.2: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.7: resolution: { integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, @@ -9842,21 +9616,21 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.2 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.7 - /babel-preset-fbjs/3.4.0_@babel+core@7.20.2: + /babel-preset-fbjs/3.4.0_@babel+core@7.20.7: resolution: { integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==, @@ -9864,33 +9638,33 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.2 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.2 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.2 - '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.2 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.2 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.2 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.2 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.2 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.2 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.2 + '@babel/core': 7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.7 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.7 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.7 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.7 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.7 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.7 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color @@ -9909,7 +9683,7 @@ packages: babel-preset-current-node-syntax: 1.0.1 dev: true - /babel-preset-jest/28.1.3_@babel+core@7.20.2: + /babel-preset-jest/28.1.3_@babel+core@7.20.7: resolution: { integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==, @@ -9918,9 +9692,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 /balanced-match/1.0.2: resolution: @@ -9949,6 +9723,7 @@ packages: engines: { node: '>= 0.8' } dependencies: safe-buffer: 5.1.2 + dev: true /batch/0.6.1: resolution: @@ -10010,12 +9785,6 @@ packages: integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==, } - /bluebird/3.7.1: - resolution: - { - integrity: sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==, - } - /bluebird/3.7.2: resolution: { @@ -10104,9 +9873,9 @@ packages: engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001441 electron-to-chromium: 1.4.284 - node-releases: 2.0.6 + node-releases: 2.0.8 update-browserslist-db: 1.0.10_browserslist@4.21.4 /bs-logger/0.2.6: @@ -10171,6 +9940,7 @@ packages: integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, } engines: { node: '>=6' } + dev: true /busboy/1.6.0: resolution: @@ -10268,7 +10038,7 @@ packages: } dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001431 + caniuse-lite: 1.0.30001441 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 @@ -10277,6 +10047,13 @@ packages: { integrity: sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==, } + dev: false + + /caniuse-lite/1.0.30001441: + resolution: + { + integrity: sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==, + } /capital-case/1.0.4: resolution: @@ -10396,12 +10173,6 @@ packages: } dev: false - /charenc/0.0.2: - resolution: - { - integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==, - } - /check-more-types/2.24.0: resolution: { @@ -10416,7 +10187,7 @@ packages: } engines: { node: '>= 8.10.0' } dependencies: - anymatch: 3.1.2 + anymatch: 3.1.3 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 @@ -10441,17 +10212,10 @@ packages: } engines: { node: '>=6.0' } - /ci-info/3.5.0: - resolution: - { - integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==, - } - dev: true - - /ci-info/3.6.1: + /ci-info/3.7.0: resolution: { - integrity: sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==, + integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==, } engines: { node: '>=8' } @@ -10635,6 +10399,7 @@ packages: { integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==, } + dev: true /colorette/2.0.19: resolution: @@ -10679,12 +10444,6 @@ packages: engines: { node: ^12.20.0 || >=14 } dev: true - /common-path-prefix/3.0.0: - resolution: - { - integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, - } - /common-tags/1.8.2: resolution: { @@ -10744,6 +10503,7 @@ packages: } dependencies: source-map: 0.6.1 + dev: true /confusing-browser-globals/1.0.11: resolution: @@ -10832,7 +10592,7 @@ packages: } engines: { node: '>= 0.6' } - /copy-webpack-plugin/10.2.4_webpack@5.74.0: + /copy-webpack-plugin/10.2.4_webpack@5.75.0: resolution: { integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==, @@ -10847,15 +10607,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.74.0 - - /core-js-compat/3.26.0: - resolution: - { - integrity: sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==, - } - dependencies: - browserslist: 4.21.4 + webpack: 5.75.0 /core-js-compat/3.26.1: resolution: @@ -10871,6 +10623,7 @@ packages: integrity: sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==, } requiresBuild: true + dev: true /core-js/3.22.8: resolution: @@ -10899,6 +10652,7 @@ packages: integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==, } engines: { node: '>= 0.4.0' } + dev: true /cosmiconfig-toml-loader/1.0.0: resolution: @@ -10909,7 +10663,7 @@ packages: '@iarna/toml': 2.2.5 dev: false - /cosmiconfig-typescript-loader/2.0.2_b2ulvot2eensv5kijvirfsfnxq: + /cosmiconfig-typescript-loader/2.0.2_qyqhcmwufjmwhptfkdjysgeb6u: resolution: { integrity: sha512-KmE+bMjWMXJbkWCeY4FJX/npHuZPNr9XF9q9CIQ/bpFwi1qHfCmSiKarrCcRa0LO4fWjk93pVoeRtJAkTGcYNw==, @@ -10919,16 +10673,16 @@ packages: '@types/node': '*' typescript: '>=3' dependencies: - '@types/node': 18.11.9 - cosmiconfig: 7.0.1 - ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq + '@types/node': 18.11.17 + cosmiconfig: 7.1.0 + ts-node: 10.9.1_qyqhcmwufjmwhptfkdjysgeb6u typescript: 4.8.4 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: false - /cosmiconfig-typescript-loader/4.1.1_3igornoocdcuuumr6mjc4coiua: + /cosmiconfig-typescript-loader/4.1.1_mzjwejph7gmlzf3uxmy5cdhfrq: resolution: { integrity: sha512-9DHpa379Gp0o0Zefii35fcmuuin6q92FnLDffzdZ0l9tVd3nEobG3O+MZ06+kuBvFTSVScvNb/oHA13Nd4iipg==, @@ -10940,9 +10694,9 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 18.7.18 + '@types/node': 18.11.9 cosmiconfig: 7.0.1 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq typescript: 4.8.4 dev: false @@ -10958,6 +10712,7 @@ packages: parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 + dev: true /cosmiconfig/7.0.1: resolution: @@ -10971,6 +10726,20 @@ packages: parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 + dev: false + + /cosmiconfig/7.1.0: + resolution: + { + integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, + } + engines: { node: '>=10' } + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 /create-require/1.1.1: resolution: @@ -11011,12 +10780,6 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /crypt/0.0.2: - resolution: - { - integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==, - } - /css-color-keywords/1.0.0: resolution: { @@ -11024,7 +10787,7 @@ packages: } engines: { node: '>=4' } - /css-declaration-sorter/6.3.1_postcss@8.4.18: + /css-declaration-sorter/6.3.1_postcss@8.4.20: resolution: { integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==, @@ -11033,28 +10796,28 @@ packages: peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /css-loader/6.7.1_webpack@5.74.0: + /css-loader/6.7.3_webpack@5.75.0: resolution: { - integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==, + integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==, } engines: { node: '>= 12.13.0' } peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 - postcss-modules-scope: 3.0.0_postcss@8.4.18 - postcss-modules-values: 4.0.0_postcss@8.4.18 + icss-utils: 5.1.0_postcss@8.4.20 + postcss: 8.4.20 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.20 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.20 + postcss-modules-scope: 3.0.0_postcss@8.4.20 + postcss-modules-values: 4.0.0_postcss@8.4.20 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.74.0_@swc+core@1.2.173 + webpack: 5.75.0 - /css-minimizer-webpack-plugin/3.4.1_webpack@5.74.0: + /css-minimizer-webpack-plugin/3.4.1_webpack@5.75.0: resolution: { integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==, @@ -11076,13 +10839,13 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.14_postcss@8.4.18 + cssnano: 5.1.14_postcss@8.4.20 jest-worker: 27.5.1 - postcss: 8.4.18 + postcss: 8.4.20 schema-utils: 4.0.0 serialize-javascript: 6.0.0 source-map: 0.6.1 - webpack: 5.74.0 + webpack: 5.75.0 /css-select/4.3.0: resolution: @@ -11141,7 +10904,7 @@ packages: engines: { node: '>=4' } hasBin: true - /cssnano-preset-default/5.2.13_postcss@8.4.18: + /cssnano-preset-default/5.2.13_postcss@8.4.20: resolution: { integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==, @@ -11150,38 +10913,38 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.1_postcss@8.4.18 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-calc: 8.2.4_postcss@8.4.18 - postcss-colormin: 5.3.0_postcss@8.4.18 - postcss-convert-values: 5.1.3_postcss@8.4.18 - postcss-discard-comments: 5.1.2_postcss@8.4.18 - postcss-discard-duplicates: 5.1.0_postcss@8.4.18 - postcss-discard-empty: 5.1.1_postcss@8.4.18 - postcss-discard-overridden: 5.1.0_postcss@8.4.18 - postcss-merge-longhand: 5.1.7_postcss@8.4.18 - postcss-merge-rules: 5.1.3_postcss@8.4.18 - postcss-minify-font-values: 5.1.0_postcss@8.4.18 - postcss-minify-gradients: 5.1.1_postcss@8.4.18 - postcss-minify-params: 5.1.4_postcss@8.4.18 - postcss-minify-selectors: 5.2.1_postcss@8.4.18 - postcss-normalize-charset: 5.1.0_postcss@8.4.18 - postcss-normalize-display-values: 5.1.0_postcss@8.4.18 - postcss-normalize-positions: 5.1.1_postcss@8.4.18 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.18 - postcss-normalize-string: 5.1.0_postcss@8.4.18 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.18 - postcss-normalize-unicode: 5.1.1_postcss@8.4.18 - postcss-normalize-url: 5.1.0_postcss@8.4.18 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.18 - postcss-ordered-values: 5.1.3_postcss@8.4.18 - postcss-reduce-initial: 5.1.1_postcss@8.4.18 - postcss-reduce-transforms: 5.1.0_postcss@8.4.18 - postcss-svgo: 5.1.0_postcss@8.4.18 - postcss-unique-selectors: 5.1.1_postcss@8.4.18 - - /cssnano-utils/3.1.0_postcss@8.4.18: + css-declaration-sorter: 6.3.1_postcss@8.4.20 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 + postcss-calc: 8.2.4_postcss@8.4.20 + postcss-colormin: 5.3.0_postcss@8.4.20 + postcss-convert-values: 5.1.3_postcss@8.4.20 + postcss-discard-comments: 5.1.2_postcss@8.4.20 + postcss-discard-duplicates: 5.1.0_postcss@8.4.20 + postcss-discard-empty: 5.1.1_postcss@8.4.20 + postcss-discard-overridden: 5.1.0_postcss@8.4.20 + postcss-merge-longhand: 5.1.7_postcss@8.4.20 + postcss-merge-rules: 5.1.3_postcss@8.4.20 + postcss-minify-font-values: 5.1.0_postcss@8.4.20 + postcss-minify-gradients: 5.1.1_postcss@8.4.20 + postcss-minify-params: 5.1.4_postcss@8.4.20 + postcss-minify-selectors: 5.2.1_postcss@8.4.20 + postcss-normalize-charset: 5.1.0_postcss@8.4.20 + postcss-normalize-display-values: 5.1.0_postcss@8.4.20 + postcss-normalize-positions: 5.1.1_postcss@8.4.20 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.20 + postcss-normalize-string: 5.1.0_postcss@8.4.20 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.20 + postcss-normalize-unicode: 5.1.1_postcss@8.4.20 + postcss-normalize-url: 5.1.0_postcss@8.4.20 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.20 + postcss-ordered-values: 5.1.3_postcss@8.4.20 + postcss-reduce-initial: 5.1.1_postcss@8.4.20 + postcss-reduce-transforms: 5.1.0_postcss@8.4.20 + postcss-svgo: 5.1.0_postcss@8.4.20 + postcss-unique-selectors: 5.1.1_postcss@8.4.20 + + /cssnano-utils/3.1.0_postcss@8.4.20: resolution: { integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==, @@ -11190,9 +10953,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /cssnano/5.1.14_postcss@8.4.18: + /cssnano/5.1.14_postcss@8.4.20: resolution: { integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==, @@ -11201,9 +10964,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.13_postcss@8.4.18 + cssnano-preset-default: 5.2.13_postcss@8.4.20 lilconfig: 2.0.6 - postcss: 8.4.18 + postcss: 8.4.20 yaml: 1.10.2 /csso/4.2.0: @@ -11280,10 +11043,10 @@ packages: stream-transform: 2.1.3 dev: false - /cypress/10.11.0: + /cypress/11.2.0: resolution: { - integrity: sha512-lsaE7dprw5DoXM00skni6W5ElVVLGAdRUUdZjX2dYsGjbY/QnpzWZ95Zom1mkGg0hAaO/QVTZoFVS7Jgr/GUPA==, + integrity: sha512-u61UGwtu7lpsNWLUma/FKNOsrjcI6wleNmda/TyKHe0dOBcVjbCPlp1N6uwFZ0doXev7f/91YDpU9bqDCFeBLA==, } engines: { node: '>=12.0.0' } hasBin: true @@ -11305,7 +11068,7 @@ packages: cli-table3: 0.6.2 commander: 5.1.0 common-tags: 1.8.2 - dayjs: 1.11.3 + dayjs: 1.11.6 debug: 4.3.4_supports-color@8.1.1 enquirer: 2.3.6 eventemitter2: 6.4.7 @@ -11382,12 +11145,6 @@ packages: } dev: false - /dayjs/1.11.3: - resolution: - { - integrity: sha512-xxwlswWOlGhzgQ4TKzASQkUhqERI3egRNqgV4ScR8wlANA/A9tZ7miXa44vTTKEq5l7vWoL5G57bG3zA+Kow0A==, - } - /dayjs/1.11.5: resolution: { @@ -11400,7 +11157,6 @@ packages: { integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==, } - dev: false /debounce/1.2.1: resolution: @@ -11447,6 +11203,7 @@ packages: optional: true dependencies: ms: 2.1.3 + dev: true /debug/3.2.7_supports-color@8.1.1: resolution: @@ -11532,10 +11289,10 @@ packages: } dev: false - /decode-uri-component/0.2.0: + /decode-uri-component/0.2.2: resolution: { - integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==, + integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, } engines: { node: '>=0.10' } @@ -11957,10 +11714,10 @@ packages: dependencies: once: 1.4.0 - /enhanced-resolve/5.10.0: + /enhanced-resolve/5.12.0: resolution: { - integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==, + integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==, } engines: { node: '>=10.13.0' } dependencies: @@ -11988,6 +11745,7 @@ packages: integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==, } engines: { node: '>=0.12' } + dev: false /entities/4.4.0: resolution: @@ -12016,18 +11774,41 @@ packages: dependencies: is-arrayish: 0.2.1 - /error-stack-parser/2.1.4: + /es-abstract/1.20.1: resolution: { - integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==, + integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==, } + engines: { node: '>= 0.4' } dependencies: - stackframe: 1.3.4 + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.3 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + unbox-primitive: 1.0.2 - /es-abstract/1.20.1: + /es-abstract/1.20.5: resolution: { - integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==, + integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==, } engines: { node: '>= 0.4' } dependencies: @@ -12037,11 +11818,12 @@ packages: function.prototype.name: 1.1.5 get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 + gopd: 1.0.1 has: 1.0.3 has-property-descriptors: 1.0.0 has-symbols: 1.0.3 internal-slot: 1.0.3 - is-callable: 1.2.4 + is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 @@ -12051,8 +11833,9 @@ packages: object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.4.3 - string.prototype.trimend: 1.0.5 - string.prototype.trimstart: 1.0.5 + safe-regex-test: 1.0.0 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 unbox-primitive: 1.0.2 /es-get-iterator/1.1.2: @@ -12092,7 +11875,7 @@ packages: } engines: { node: '>= 0.4' } dependencies: - is-callable: 1.2.4 + is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 @@ -12166,7 +11949,7 @@ packages: eslint-import-resolver-typescript: 2.7.1_gwd37gqv3vjv3xlpl7ju3ag2qu eslint-plugin-import: 2.26.0_i27pzoe2ugsmfr3xona7vlfzxq eslint-plugin-jsx-a11y: 6.6.1_eslint@8.15.0 - eslint-plugin-react: 7.31.8_eslint@8.15.0 + eslint-plugin-react: 7.31.11_eslint@8.15.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 typescript: 4.8.4 transitivePeerDependencies: @@ -12395,30 +12178,31 @@ packages: eslint: 8.15.0 dev: true - /eslint-plugin-react/7.31.8_eslint@8.15.0: + /eslint-plugin-react/7.31.11_eslint@8.15.0: resolution: { - integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, + integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==, } engines: { node: '>=4' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.5 - array.prototype.flatmap: 1.3.0 + array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 + array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 eslint: 8.15.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.2 minimatch: 3.1.2 - object.entries: 1.1.5 - object.fromentries: 2.0.5 - object.hasown: 1.1.1 - object.values: 1.1.5 + object.entries: 1.1.6 + object.fromentries: 2.0.6 + object.hasown: 1.1.2 + object.values: 1.1.6 prop-types: 15.8.1 resolve: 2.0.0-next.4 semver: 6.3.0 - string.prototype.matchall: 4.0.7 + string.prototype.matchall: 4.0.8 dev: true /eslint-scope/5.1.1: @@ -12569,18 +12353,21 @@ packages: { integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==, } + dev: true /estree-walker/1.0.1: resolution: { integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, } + dev: true /estree-walker/2.0.2: resolution: { integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, } + dev: true /esutils/2.0.3: resolution: @@ -12894,10 +12681,10 @@ packages: strnum: 1.0.5 dev: false - /fastq/1.13.0: + /fastq/1.14.0: resolution: { - integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, + integrity: sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==, } dependencies: reusify: 1.0.4 @@ -12969,7 +12756,7 @@ packages: dependencies: flat-cache: 3.0.4 - /file-loader/6.2.0_webpack@5.74.0: + /file-loader/6.2.0_webpack@5.75.0: resolution: { integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==, @@ -12978,9 +12765,9 @@ packages: peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - loader-utils: 2.0.3 + loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.74.0 + webpack: 5.75.0 /file-uri-to-path/2.0.0: resolution: @@ -12996,7 +12783,7 @@ packages: integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, } dependencies: - minimatch: 5.1.0 + minimatch: 5.1.2 /fill-range/7.0.1: resolution: @@ -13129,7 +12916,7 @@ packages: integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, } dependencies: - is-callable: 1.2.4 + is-callable: 1.2.7 dev: false /foreach/2.0.6: @@ -13145,7 +12932,7 @@ packages: integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==, } - /fork-ts-checker-webpack-plugin/7.2.13_qqxisngxjbp7lstdk7boexbu3e: + /fork-ts-checker-webpack-plugin/7.2.13_qw7fmzhoapcndkteb5rsc33stq: resolution: { integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==, @@ -13162,19 +12949,19 @@ packages: '@babel/code-frame': 7.18.6 chalk: 4.1.2 chokidar: 3.5.3 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 deepmerge: 4.2.2 fs-extra: 10.1.0 - memfs: 3.4.10 + memfs: 3.4.12 minimatch: 3.1.2 node-abort-controller: 3.0.1 schema-utils: 3.1.1 semver: 7.3.8 tapable: 2.2.1 typescript: 4.8.4 - webpack: 5.74.0_@swc+core@1.2.173 + webpack: 5.75.0_@swc+core@1.2.173 - /fork-ts-checker-webpack-plugin/7.2.13_webpack@5.74.0: + /fork-ts-checker-webpack-plugin/7.2.13_webpack@5.75.0: resolution: { integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==, @@ -13191,16 +12978,16 @@ packages: '@babel/code-frame': 7.18.6 chalk: 4.1.2 chokidar: 3.5.3 - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 deepmerge: 4.2.2 fs-extra: 10.1.0 - memfs: 3.4.10 + memfs: 3.4.12 minimatch: 3.1.2 node-abort-controller: 3.0.1 schema-utils: 3.1.1 semver: 7.3.8 tapable: 2.2.1 - webpack: 5.74.0 + webpack: 5.75.0 dev: false /form-data-encoder/1.7.2: @@ -13374,7 +13161,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 functions-have-names: 1.2.3 /functional-red-black-tree/1.0.1: @@ -13396,6 +13183,7 @@ packages: } dependencies: loader-utils: 3.2.0 + dev: true /gensync/1.0.0-beta.2: resolution: @@ -13526,7 +13314,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.5 once: 1.4.0 path-is-absolute: 1.0.1 @@ -13604,9 +13392,10 @@ packages: dir-glob: 3.0.1 fast-glob: 3.2.12 glob: 7.2.3 - ignore: 5.2.0 + ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 + dev: true /globby/11.1.0: resolution: @@ -13618,7 +13407,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -13632,7 +13421,7 @@ packages: array-union: 3.0.1 dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.4 merge2: 1.4.1 slash: 4.0.0 @@ -13643,7 +13432,6 @@ packages: } dependencies: get-intrinsic: 1.1.3 - dev: false /graceful-fs/4.2.10: resolution: @@ -13681,7 +13469,7 @@ packages: graphql-type-json: 0.3.2_graphql@16.6.0 dev: false - /graphql-config/4.3.6_q5hc3xqxhmkiu7tlpk3mn3k7xi: + /graphql-config/4.3.6_2qf7nnsdsmr6pycv4babn4xkom: resolution: { integrity: sha512-i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA==, @@ -13694,15 +13482,15 @@ packages: '@graphql-tools/json-file-loader': 7.4.14_graphql@16.6.0 '@graphql-tools/load': 7.8.4_graphql@16.6.0 '@graphql-tools/merge': 8.3.14_graphql@16.6.0 - '@graphql-tools/url-loader': 7.16.26_b3mrw6czvahatuezxxzysmh2q4 + '@graphql-tools/url-loader': 7.16.26_hkojjjhjmmbpr445byqe4myfr4 '@graphql-tools/utils': 8.13.1_graphql@16.6.0 cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 - cosmiconfig-typescript-loader: 4.1.1_3igornoocdcuuumr6mjc4coiua + cosmiconfig-typescript-loader: 4.1.1_mzjwejph7gmlzf3uxmy5cdhfrq graphql: 16.6.0 minimatch: 4.2.1 string-env-interpolation: 1.0.1 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq tslib: 2.4.1 transitivePeerDependencies: - '@swc/core' @@ -13852,7 +13640,7 @@ packages: graphql: 16.6.0 dev: false - /graphql-yoga/3.0.0-next.10_b3mrw6czvahatuezxxzysmh2q4: + /graphql-yoga/3.0.0-next.10_hkojjjhjmmbpr445byqe4myfr4: resolution: { integrity: sha512-czCtyko8ODUAeFKd65sqQgfTKelU3Foyg8H6Oc9L35VlA3n+gCigsucKE3zOKyJ3E+ObJ648LQEsBVlA1zPoYA==, @@ -13869,7 +13657,7 @@ packages: '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 '@graphql-yoga/subscription': 3.0.0-next.0 '@whatwg-node/fetch': 0.5.1_encoding@0.1.13 - '@whatwg-node/server': 0.4.14_6g4xlh77qkmky7kw4we5vmcsbe + '@whatwg-node/server': 0.4.14_tnszpa3q4sbvo73aomgaj2dute dset: 3.1.2 graphql: 16.6.0 tslib: 2.4.1 @@ -13965,6 +13753,7 @@ packages: integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, } hasBin: true + dev: true /header-case/2.0.4: resolution: @@ -14084,7 +13873,7 @@ packages: - supports-color dev: false - /http-proxy-middleware/2.0.6_@types+express@4.17.14: + /http-proxy-middleware/2.0.6_@types+express@4.17.15: resolution: { integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==, @@ -14096,7 +13885,7 @@ packages: '@types/express': optional: true dependencies: - '@types/express': 4.17.14 + '@types/express': 4.17.15 '@types/http-proxy': 1.17.9 http-proxy: 1.18.1 is-glob: 4.0.3 @@ -14142,6 +13931,7 @@ packages: transitivePeerDependencies: - debug - supports-color + dev: true /http-signature/1.3.6: resolution: @@ -14235,8 +14025,9 @@ packages: { integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==, } + dev: true - /icss-utils/5.1.0_postcss@8.4.18: + /icss-utils/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==, @@ -14245,7 +14036,7 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 /identity-obj-proxy/3.0.0: resolution: @@ -14269,6 +14060,13 @@ packages: } engines: { node: '>= 4' } + /ignore/5.2.4: + resolution: + { + integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, + } + engines: { node: '>= 4' } + /image-size/0.5.5: resolution: { @@ -14294,10 +14092,10 @@ packages: engines: { node: '>=0.8.0' } dev: false - /immutable/4.1.0: + /immutable/4.2.1: resolution: { - integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==, + integrity: sha512-7WYV7Q5BTs0nlQm7tl92rDYYoyELLKHoDMBKhrxEoiV4mrfVdRz8hzPiYOzH7yWjzoVEamxRuAqhxL2PLRwZYQ==, } /import-cwd/3.0.0: @@ -14308,6 +14106,7 @@ packages: engines: { node: '>=8' } dependencies: import-from: 3.0.0 + dev: true /import-fresh/3.3.0: resolution: @@ -14327,6 +14126,7 @@ packages: engines: { node: '>=8' } dependencies: resolve-from: 5.0.0 + dev: true /import-from/4.0.0: resolution: @@ -14510,12 +14310,6 @@ packages: call-bind: 1.0.2 has-tostringtag: 1.0.0 - /is-buffer/1.1.6: - resolution: - { - integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, - } - /is-builtin-module/3.1.0: resolution: { @@ -14524,11 +14318,12 @@ packages: engines: { node: '>=6' } dependencies: builtin-modules: 3.3.0 + dev: true - /is-callable/1.2.4: + /is-callable/1.2.7: resolution: { - integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==, + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, } engines: { node: '>= 0.4' } @@ -14539,7 +14334,7 @@ packages: } hasBin: true dependencies: - ci-info: 3.6.1 + ci-info: 3.7.0 /is-core-module/2.11.0: resolution: @@ -14652,6 +14447,7 @@ packages: { integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, } + dev: true /is-negative-zero/2.0.2: resolution: @@ -14721,6 +14517,7 @@ packages: integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==, } engines: { node: '>=0.10.0' } + dev: true /is-potential-custom-element-name/1.0.1: resolution: @@ -14736,6 +14533,7 @@ packages: } dependencies: '@types/estree': 1.0.0 + dev: true /is-regex/1.1.4: resolution: @@ -14982,8 +14780,8 @@ packages: } engines: { node: '>=8' } dependencies: - '@babel/core': 7.20.2 - '@babel/parser': 7.20.3 + '@babel/core': 7.20.7 + '@babel/parser': 7.20.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -15073,7 +14871,7 @@ packages: '@jest/expect': 28.1.3 '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -15091,7 +14889,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-cli/28.1.3_sgupjgtkb76w4hsvieap2xky7i: + /jest-cli/28.1.3_odkjkoia5xunhxkdrka32ib6vi: resolution: { integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==, @@ -15111,7 +14909,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 28.1.3_sgupjgtkb76w4hsvieap2xky7i + jest-config: 28.1.3_odkjkoia5xunhxkdrka32ib6vi jest-util: 28.1.3 jest-validate: 28.1.3 prompts: 2.4.2 @@ -15137,12 +14935,12 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - babel-jest: 28.1.3_@babel+core@7.20.2 - chalk: 4.1.2 - ci-info: 3.6.1 + babel-jest: 28.1.3_@babel+core@7.20.7 + chalk: 4.1.0 + ci-info: 3.7.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -15150,9 +14948,9 @@ packages: jest-environment-node: 28.1.3 jest-get-type: 28.0.2 jest-regex-util: 28.0.2 - jest-resolve: 28.1.3 + jest-resolve: 28.1.1 jest-runner: 28.1.3 - jest-util: 28.1.3 + jest-util: 28.1.1 jest-validate: 28.1.3 micromatch: 4.0.5 parse-json: 5.2.0 @@ -15163,49 +14961,7 @@ packages: - supports-color dev: false - /jest-config/28.1.1_sgupjgtkb76w4hsvieap2xky7i: - 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.2 - '@jest/test-sequencer': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 18.7.18 - babel-jest: 28.1.3_@babel+core@7.20.2 - chalk: 4.1.2 - ci-info: 3.6.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 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q - transitivePeerDependencies: - - supports-color - - /jest-config/28.1.1_ts-node@10.9.1: + /jest-config/28.1.1_odkjkoia5xunhxkdrka32ib6vi: resolution: { integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==, @@ -15220,12 +14976,13 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - babel-jest: 28.1.3_@babel+core@7.20.2 - chalk: 4.1.2 - ci-info: 3.6.1 + '@types/node': 18.11.9 + babel-jest: 28.1.3_@babel+core@7.20.7 + chalk: 4.1.0 + ci-info: 3.7.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -15242,10 +14999,9 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1 + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq transitivePeerDependencies: - supports-color - dev: false /jest-config/28.1.3_odkjkoia5xunhxkdrka32ib6vi: resolution: @@ -15262,13 +15018,13 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.11.9 - babel-jest: 28.1.3_@babel+core@7.20.2 + babel-jest: 28.1.3_@babel+core@7.20.7 chalk: 4.1.2 - ci-info: 3.6.1 + ci-info: 3.7.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -15285,12 +15041,12 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq transitivePeerDependencies: - supports-color dev: true - /jest-config/28.1.3_sgupjgtkb76w4hsvieap2xky7i: + /jest-config/28.1.3_xgdmd3tdlagpkcvgycprrn3igm: resolution: { integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==, @@ -15305,13 +15061,13 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.20.2 + '@babel/core': 7.20.7 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.18 - babel-jest: 28.1.3_@babel+core@7.20.2 + '@types/node': 18.11.17 + babel-jest: 28.1.3_@babel+core@7.20.7 chalk: 4.1.2 - ci-info: 3.6.1 + ci-info: 3.7.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -15328,7 +15084,7 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq transitivePeerDependencies: - supports-color dev: true @@ -15383,7 +15139,7 @@ packages: '@jest/fake-timers': 29.3.0 '@jest/types': 29.2.1 '@types/jsdom': 20.0.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-mock: 29.3.0 jest-util: 29.2.1 jsdom: 20.0.2 @@ -15403,7 +15159,7 @@ packages: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -15423,8 +15179,8 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.5 - '@types/node': 18.11.9 - anymatch: 3.1.2 + '@types/node': 18.11.17 + anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 jest-regex-util: 28.0.2 @@ -15489,7 +15245,7 @@ packages: micromatch: 4.0.5 pretty-format: 29.2.1 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 dev: false /jest-mock/28.1.3: @@ -15500,7 +15256,7 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 /jest-mock/29.3.0: resolution: @@ -15510,7 +15266,7 @@ packages: engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.2.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 jest-util: 29.2.1 dev: false @@ -15569,7 +15325,7 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - chalk: 4.1.2 + chalk: 4.1.0 graceful-fs: 4.2.10 jest-haste-map: 28.1.3 jest-pnp-resolver: 1.2.3_jest-resolve@28.1.1 @@ -15608,7 +15364,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 @@ -15666,17 +15422,17 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - '@babel/core': 7.20.2 - '@babel/generator': 7.20.4 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.2 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.2 + '@babel/core': 7.20.7 + '@babel/generator': 7.20.7 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7 + '@babel/traverse': 7.20.10 + '@babel/types': 7.20.7 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/babel__traverse': 7.18.2 - '@types/prettier': 2.7.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.2 + '@types/babel__traverse': 7.18.3 + '@types/prettier': 2.7.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.7 chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.10 @@ -15700,9 +15456,9 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: '@jest/types': 28.1.3 - '@types/node': 18.11.9 - chalk: 4.1.2 - ci-info: 3.6.1 + '@types/node': 18.11.17 + chalk: 4.1.0 + ci-info: 3.7.0 graceful-fs: 4.2.10 picomatch: 2.3.1 @@ -15714,9 +15470,9 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 - ci-info: 3.6.1 + ci-info: 3.7.0 graceful-fs: 4.2.10 picomatch: 2.3.1 @@ -15728,9 +15484,9 @@ packages: engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.2.1 - '@types/node': 18.11.9 + '@types/node': 18.11.17 chalk: 4.1.2 - ci-info: 3.6.1 + ci-info: 3.7.0 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: false @@ -15758,7 +15514,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -15772,7 +15528,7 @@ packages: } engines: { node: '>= 10.13.0' } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -15783,11 +15539,11 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest/28.1.3_sgupjgtkb76w4hsvieap2xky7i: + /jest/28.1.3_odkjkoia5xunhxkdrka32ib6vi: resolution: { integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==, @@ -15803,7 +15559,7 @@ packages: '@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_sgupjgtkb76w4hsvieap2xky7i + jest-cli: 28.1.3_odkjkoia5xunhxkdrka32ib6vi transitivePeerDependencies: - '@types/node' - supports-color @@ -16035,6 +15791,14 @@ packages: engines: { node: '>=6' } hasBin: true + /json5/2.2.2: + resolution: + { + integrity: sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==, + } + engines: { node: '>=6' } + hasBin: true + /jsonc-eslint-parser/2.1.0: resolution: { @@ -16125,8 +15889,8 @@ packages: } engines: { node: '>=4.0' } dependencies: - array-includes: 3.1.5 - object.assign: 4.1.2 + array-includes: 3.1.6 + object.assign: 4.1.4 dev: true /jwa/1.4.1: @@ -16203,7 +15967,7 @@ packages: } engines: { node: '> 0.8' } - /less-loader/11.1.0_less@3.12.2+webpack@5.74.0: + /less-loader/11.1.0_less@3.12.2+webpack@5.75.0: resolution: { integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==, @@ -16215,7 +15979,7 @@ packages: dependencies: klona: 2.0.5 less: 3.12.2 - webpack: 5.74.0 + webpack: 5.75.0 /less/3.12.2: resolution: @@ -16263,7 +16027,7 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 - /license-webpack-plugin/4.0.2_webpack@5.74.0: + /license-webpack-plugin/4.0.2_webpack@5.75.0: resolution: { integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==, @@ -16276,7 +16040,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.74.0 + webpack: 5.75.0 webpack-sources: 3.2.3 /lie/3.1.1: @@ -16413,16 +16177,16 @@ packages: } engines: { node: '>=6.11.5' } - /loader-utils/2.0.3: + /loader-utils/2.0.4: resolution: { - integrity: sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==, + integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==, } engines: { node: '>=8.9.0' } dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.1 + json5: 2.2.2 /loader-utils/3.2.0: resolution: @@ -16430,6 +16194,7 @@ packages: integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==, } engines: { node: '>= 12.13.0' } + dev: true /localforage/1.10.0: resolution: @@ -16474,6 +16239,7 @@ packages: { integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, } + dev: true /lodash.clone/4.5.0: resolution: @@ -16682,6 +16448,14 @@ packages: yallist: 2.1.2 dev: false + /lru-cache/5.1.1: + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } + dependencies: + yallist: 3.1.1 + /lru-cache/6.0.0: resolution: { @@ -16706,6 +16480,7 @@ packages: } dependencies: sourcemap-codec: 1.4.8 + dev: true /make-dir/2.1.0: resolution: @@ -16766,16 +16541,6 @@ packages: engines: { node: '>=8' } dev: false - /md5/2.3.0: - resolution: - { - integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==, - } - dependencies: - charenc: 0.0.2 - crypt: 0.0.2 - is-buffer: 1.1.6 - /mdn-data/2.0.14: resolution: { @@ -16789,10 +16554,10 @@ packages: } engines: { node: '>= 0.6' } - /memfs/3.4.10: + /memfs/3.4.12: resolution: { - integrity: sha512-0bCUP+L79P4am30yP1msPzApwuMQG23TjwlwdHeEV5MxioDR1a0AgB0T9FfggU52eJuDCq8WVwb5ekznFyWiTQ==, + integrity: sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==, } engines: { node: '>= 4.0.0' } dependencies: @@ -16857,7 +16622,7 @@ packages: } engines: { node: '>= 8' } - /meros/1.2.1_@types+node@18.7.18: + /meros/1.2.1_@types+node@18.11.9: resolution: { integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==, @@ -16869,7 +16634,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 18.7.18 + '@types/node': 18.11.9 dev: false /methods/1.1.2: @@ -16936,7 +16701,7 @@ packages: engines: { node: '>=4' } dev: false - /mini-css-extract-plugin/2.4.7_webpack@5.74.0: + /mini-css-extract-plugin/2.4.7_webpack@5.75.0: resolution: { integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==, @@ -16946,7 +16711,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.74.0 + webpack: 5.75.0 /mini-svg-data-uri/1.4.4: resolution: @@ -16954,6 +16719,7 @@ packages: integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==, } hasBin: true + dev: true /minimalistic-assert/1.0.1: resolution: @@ -16995,6 +16761,16 @@ packages: engines: { node: '>=10' } dependencies: brace-expansion: 2.0.1 + dev: false + + /minimatch/5.1.2: + resolution: + { + integrity: sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==, + } + engines: { node: '>=10' } + dependencies: + brace-expansion: 2.0.1 /minimist-options/4.1.0: resolution: @@ -17051,6 +16827,7 @@ packages: hasBin: true dependencies: minimist: 1.2.7 + dev: true /mkdirp/1.0.4: resolution: @@ -17184,7 +16961,7 @@ packages: integrity: sha512-jCKKSC6pumhjgn16X3tpSkQBvnwVdYHrudI1gU8RhKIOnKQjVEnj3OzcHAN2c8+BaFDx++qIln9FsssPLVOrXg==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 neo4j-driver-bolt-connection: 5.2.0 neo4j-driver-core: 5.2.0 rxjs: 7.8.0 @@ -17311,10 +17088,10 @@ packages: } dev: true - /node-releases/2.0.6: + /node-releases/2.0.8: resolution: { - integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, + integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==, } /normalize-package-data/2.5.0: @@ -17414,10 +17191,10 @@ packages: } dev: false - /nx/15.0.13: + /nx/15.4.1: resolution: { - integrity: sha512-5mJGWz91B9/sxzLjXdD+pmZTel54NeNNxFDis8OhtGDn6eRZ25qWsZNDgzqIDtwKn3c9gThAMHU4XH2OTgWUnA==, + integrity: sha512-BQXxlUZhO3QsrGDsHFYBH8ncrauaTkGE5gW5TpHVZqlrqldhDMVxg+lGZwnj+hJPdW5BgO3rc1OGKAJlwkxELg==, } hasBin: true requiresBuild: true @@ -17430,13 +17207,13 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.0.13 - '@nrwl/tao': 15.0.13 + '@nrwl/cli': 15.4.1 + '@nrwl/tao': 15.4.1 '@parcel/watcher': 2.0.4 '@yarnpkg/lockfile': 1.1.0 - '@yarnpkg/parsers': 3.0.0-rc.27 + '@yarnpkg/parsers': 3.0.0-rc.34 '@zkochan/js-yaml': 0.0.6 - axios: 1.1.3 + axios: 1.2.1 chalk: 4.1.0 chokidar: 3.5.3 cli-cursor: 3.1.0 @@ -17449,7 +17226,7 @@ packages: flat: 5.0.2 fs-extra: 10.1.0 glob: 7.1.4 - ignore: 5.2.0 + ignore: 5.2.4 js-yaml: 4.1.0 jsonc-parser: 3.2.0 minimatch: 3.0.5 @@ -17461,7 +17238,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 3.14.1 - tslib: 2.4.1 + tslib: 2.4.0 v8-compile-cache: 2.3.0 yargs: 17.6.2 yargs-parser: 21.1.1 @@ -17469,10 +17246,10 @@ packages: - debug dev: false - /nx/15.0.13_zhrgkbtg447ekvrhgcqluapfue: + /nx/15.4.1_zhrgkbtg447ekvrhgcqluapfue: resolution: { - integrity: sha512-5mJGWz91B9/sxzLjXdD+pmZTel54NeNNxFDis8OhtGDn6eRZ25qWsZNDgzqIDtwKn3c9gThAMHU4XH2OTgWUnA==, + integrity: sha512-BQXxlUZhO3QsrGDsHFYBH8ncrauaTkGE5gW5TpHVZqlrqldhDMVxg+lGZwnj+hJPdW5BgO3rc1OGKAJlwkxELg==, } hasBin: true requiresBuild: true @@ -17485,15 +17262,15 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.0.13 - '@nrwl/tao': 15.0.13_zhrgkbtg447ekvrhgcqluapfue + '@nrwl/cli': 15.4.1_zhrgkbtg447ekvrhgcqluapfue + '@nrwl/tao': 15.4.1_zhrgkbtg447ekvrhgcqluapfue '@parcel/watcher': 2.0.4 '@swc-node/register': 1.5.1_typescript@4.8.4 '@swc/core': 1.2.173 '@yarnpkg/lockfile': 1.1.0 - '@yarnpkg/parsers': 3.0.0-rc.27 + '@yarnpkg/parsers': 3.0.0-rc.34 '@zkochan/js-yaml': 0.0.6 - axios: 1.1.3 + axios: 1.2.1 chalk: 4.1.0 chokidar: 3.5.3 cli-cursor: 3.1.0 @@ -17506,7 +17283,7 @@ packages: flat: 5.0.2 fs-extra: 10.1.0 glob: 7.1.4 - ignore: 5.2.0 + ignore: 5.2.4 js-yaml: 4.1.0 jsonc-parser: 3.2.0 minimatch: 3.0.5 @@ -17563,10 +17340,10 @@ packages: } engines: { node: '>= 0.4' } - /object.assign/4.1.2: + /object.assign/4.1.4: resolution: { - integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==, + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, } engines: { node: '>= 0.4' } dependencies: @@ -17574,64 +17351,63 @@ packages: define-properties: 1.1.4 has-symbols: 1.0.3 object-keys: 1.1.1 - dev: true - /object.assign/4.1.4: + /object.entries/1.1.6: resolution: { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==, } engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - has-symbols: 1.0.3 - object-keys: 1.1.1 + es-abstract: 1.20.5 + dev: true - /object.entries/1.1.5: + /object.fromentries/2.0.6: resolution: { - integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==, + integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==, } engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 dev: true - /object.fromentries/2.0.5: + /object.hasown/1.1.2: resolution: { - integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==, + integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==, } - engines: { node: '>= 0.4' } dependencies: - call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 dev: true - /object.hasown/1.1.1: + /object.values/1.1.5: resolution: { - integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==, + integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, } + engines: { node: '>= 0.4' } dependencies: + call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 dev: true - /object.values/1.1.5: + /object.values/1.1.6: resolution: { - integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, + integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==, } engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 dev: true /obuf/1.1.2: @@ -17725,6 +17501,7 @@ packages: integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, } hasBin: true + dev: true /optionator/0.8.3: resolution: @@ -17810,6 +17587,7 @@ packages: integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, } engines: { node: '>=4' } + dev: true /p-limit/1.3.0: resolution: @@ -17893,6 +17671,7 @@ packages: dependencies: eventemitter3: 4.0.7 p-timeout: 3.2.0 + dev: true /p-retry/4.6.2: resolution: @@ -17912,6 +17691,7 @@ packages: engines: { node: '>=8' } dependencies: p-finally: 1.0.0 + dev: true /p-try/1.0.0: resolution: @@ -18072,6 +17852,7 @@ packages: } dependencies: tslib: 2.4.1 + dev: true /path-key/3.1.1: resolution: @@ -18119,6 +17900,7 @@ packages: } dependencies: tslib: 2.4.1 + dev: true /path-to-regexp/0.1.7: resolution: @@ -18187,6 +17969,7 @@ packages: integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==, } engines: { node: '>=10' } + dev: true /pirates/4.0.5: resolution: @@ -18212,6 +17995,7 @@ packages: engines: { node: '>=10' } dependencies: find-up: 5.0.0 + dev: true /pluralize/8.0.0: resolution: @@ -18233,8 +18017,9 @@ packages: mkdirp: 0.5.6 transitivePeerDependencies: - supports-color + dev: true - /postcss-calc/8.2.4_postcss@8.4.18: + /postcss-calc/8.2.4_postcss@8.4.20: resolution: { integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==, @@ -18242,11 +18027,11 @@ packages: peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 - /postcss-colormin/5.3.0_postcss@8.4.18: + /postcss-colormin/5.3.0_postcss@8.4.20: resolution: { integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==, @@ -18258,10 +18043,10 @@ packages: browserslist: 4.21.4 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-convert-values/5.1.3_postcss@8.4.18: + /postcss-convert-values/5.1.3_postcss@8.4.20: resolution: { integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==, @@ -18271,10 +18056,10 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-discard-comments/5.1.2_postcss@8.4.18: + /postcss-discard-comments/5.1.2_postcss@8.4.20: resolution: { integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==, @@ -18283,9 +18068,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-discard-duplicates/5.1.0_postcss@8.4.18: + /postcss-discard-duplicates/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==, @@ -18294,9 +18079,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-discard-empty/5.1.1_postcss@8.4.18: + /postcss-discard-empty/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==, @@ -18305,9 +18090,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-discard-overridden/5.1.0_postcss@8.4.18: + /postcss-discard-overridden/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==, @@ -18316,9 +18101,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-import/14.1.0_postcss@8.4.18: + /postcss-import/14.1.0_postcss@8.4.20: resolution: { integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==, @@ -18327,12 +18112,12 @@ packages: peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 - /postcss-load-config/3.1.4_neo3lunb2qpadwxplzw7r2isgm: + /postcss-load-config/3.1.4_ra2vnoek4vhbzktaezawwqbin4: resolution: { integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==, @@ -18348,11 +18133,12 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.18 - ts-node: 10.9.1_7vn526urxoaxkyqaqthutx4j6q + postcss: 8.4.20 + ts-node: 10.9.1_b2ulvot2eensv5kijvirfsfnxq yaml: 1.10.2 + dev: true - /postcss-loader/6.2.1_igyeriywjd4lwzfk4socqbj2qi: + /postcss-loader/6.2.1_qxxfhhrl3yknjjmta266mo3u64: resolution: { integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==, @@ -18362,13 +18148,13 @@ packages: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 dependencies: - cosmiconfig: 7.0.1 + cosmiconfig: 7.1.0 klona: 2.0.5 - postcss: 8.4.18 + postcss: 8.4.20 semver: 7.3.8 - webpack: 5.74.0 + webpack: 5.75.0 - /postcss-merge-longhand/5.1.7_postcss@8.4.18: + /postcss-merge-longhand/5.1.7_postcss@8.4.20: resolution: { integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==, @@ -18377,11 +18163,11 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.18 + stylehacks: 5.1.1_postcss@8.4.20 - /postcss-merge-rules/5.1.3_postcss@8.4.18: + /postcss-merge-rules/5.1.3_postcss@8.4.20: resolution: { integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==, @@ -18392,11 +18178,11 @@ packages: dependencies: browserslist: 4.21.4 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 - /postcss-minify-font-values/5.1.0_postcss@8.4.18: + /postcss-minify-font-values/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==, @@ -18405,10 +18191,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-minify-gradients/5.1.1_postcss@8.4.18: + /postcss-minify-gradients/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==, @@ -18418,11 +18204,11 @@ packages: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-minify-params/5.1.4_postcss@8.4.18: + /postcss-minify-params/5.1.4_postcss@8.4.20: resolution: { integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==, @@ -18432,11 +18218,11 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-minify-selectors/5.2.1_postcss@8.4.18: + /postcss-minify-selectors/5.2.1_postcss@8.4.20: resolution: { integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==, @@ -18445,10 +18231,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 - /postcss-modules-extract-imports/3.0.0_postcss@8.4.18: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.20: resolution: { integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==, @@ -18457,9 +18243,9 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-modules-local-by-default/4.0.0_postcss@8.4.18: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.20: resolution: { integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==, @@ -18468,12 +18254,12 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + icss-utils: 5.1.0_postcss@8.4.20 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 - /postcss-modules-scope/3.0.0_postcss@8.4.18: + /postcss-modules-scope/3.0.0_postcss@8.4.20: resolution: { integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==, @@ -18482,10 +18268,10 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 - /postcss-modules-values/4.0.0_postcss@8.4.18: + /postcss-modules-values/4.0.0_postcss@8.4.20: resolution: { integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==, @@ -18494,10 +18280,10 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.18 - postcss: 8.4.18 + icss-utils: 5.1.0_postcss@8.4.20 + postcss: 8.4.20 - /postcss-modules/4.3.1_postcss@8.4.18: + /postcss-modules/4.3.1_postcss@8.4.20: resolution: { integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==, @@ -18508,14 +18294,15 @@ packages: generic-names: 4.0.0 icss-replace-symbols: 1.1.0 lodash.camelcase: 4.3.0 - postcss: 8.4.18 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 - postcss-modules-scope: 3.0.0_postcss@8.4.18 - postcss-modules-values: 4.0.0_postcss@8.4.18 + postcss: 8.4.20 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.20 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.20 + postcss-modules-scope: 3.0.0_postcss@8.4.20 + postcss-modules-values: 4.0.0_postcss@8.4.20 string-hash: 1.1.3 + dev: true - /postcss-normalize-charset/5.1.0_postcss@8.4.18: + /postcss-normalize-charset/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==, @@ -18524,9 +18311,9 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-normalize-display-values/5.1.0_postcss@8.4.18: + /postcss-normalize-display-values/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==, @@ -18535,10 +18322,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-positions/5.1.1_postcss@8.4.18: + /postcss-normalize-positions/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==, @@ -18547,10 +18334,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.18: + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==, @@ -18559,10 +18346,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-string/5.1.0_postcss@8.4.18: + /postcss-normalize-string/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==, @@ -18571,10 +18358,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.18: + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==, @@ -18583,10 +18370,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-unicode/5.1.1_postcss@8.4.18: + /postcss-normalize-unicode/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==, @@ -18596,10 +18383,10 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-url/5.1.0_postcss@8.4.18: + /postcss-normalize-url/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==, @@ -18609,10 +18396,10 @@ packages: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-normalize-whitespace/5.1.1_postcss@8.4.18: + /postcss-normalize-whitespace/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==, @@ -18621,10 +18408,10 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-ordered-values/5.1.3_postcss@8.4.18: + /postcss-ordered-values/5.1.3_postcss@8.4.20: resolution: { integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==, @@ -18633,11 +18420,11 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 + cssnano-utils: 3.1.0_postcss@8.4.20 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-reduce-initial/5.1.1_postcss@8.4.18: + /postcss-reduce-initial/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==, @@ -18648,9 +18435,9 @@ packages: dependencies: browserslist: 4.21.4 caniuse-api: 3.0.0 - postcss: 8.4.18 + postcss: 8.4.20 - /postcss-reduce-transforms/5.1.0_postcss@8.4.18: + /postcss-reduce-transforms/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==, @@ -18659,20 +18446,20 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 - /postcss-selector-parser/6.0.10: + /postcss-selector-parser/6.0.11: resolution: { - integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==, + integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==, } engines: { node: '>=4' } dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo/5.1.0_postcss@8.4.18: + /postcss-svgo/5.1.0_postcss@8.4.20: resolution: { integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==, @@ -18681,11 +18468,11 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.20 postcss-value-parser: 4.2.0 svgo: 2.8.0 - /postcss-unique-selectors/5.1.1_postcss@8.4.18: + /postcss-unique-selectors/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==, @@ -18694,8 +18481,8 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 /postcss-value-parser/4.2.0: resolution: @@ -18715,10 +18502,10 @@ packages: source-map-js: 1.0.2 dev: false - /postcss/8.4.18: + /postcss/8.4.20: resolution: { - integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==, + integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==, } engines: { node: ^10 || ^12 || >=14 } dependencies: @@ -18817,6 +18604,7 @@ packages: integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==, } engines: { node: '>=0.12' } + dev: true /promise/7.3.1: resolution: @@ -18996,7 +18784,7 @@ packages: iconv-lite: 0.4.24 unpipe: 1.0.0 - /raw-loader/4.0.2_webpack@5.74.0: + /raw-loader/4.0.2_webpack@5.75.0: resolution: { integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==, @@ -19005,9 +18793,9 @@ packages: peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - loader-utils: 2.0.3 + loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.74.0 + webpack: 5.75.0 /react-dom/18.2.0_react@18.2.0: resolution: @@ -19063,13 +18851,6 @@ packages: } dev: false - /react-refresh/0.10.0: - resolution: - { - integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==, - } - engines: { node: '>=0.10.0' } - /react-shallow-renderer/16.15.0_react@18.2.0: resolution: { @@ -19218,6 +18999,12 @@ packages: integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==, } + /regenerator-runtime/0.13.11: + resolution: + { + integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, + } + /regenerator-runtime/0.13.7: resolution: { @@ -19225,13 +19012,13 @@ packages: } dev: false - /regenerator-transform/0.15.0: + /regenerator-transform/0.15.1: resolution: { - integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==, + integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 /regexp.prototype.flags/1.4.3: resolution: @@ -19286,7 +19073,7 @@ packages: integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==, } dependencies: - '@babel/runtime': 7.20.1 + '@babel/runtime': 7.20.7 fbjs: 3.0.4_encoding@0.1.13 invariant: 2.2.4 transitivePeerDependencies: @@ -19464,6 +19251,7 @@ packages: fs-extra: 8.1.0 globby: 10.0.1 is-plain-object: 3.0.1 + dev: true /rollup-plugin-peer-deps-external/2.2.4_rollup@2.77.0: resolution: @@ -19474,8 +19262,9 @@ packages: rollup: '*' dependencies: rollup: 2.77.0 + dev: true - /rollup-plugin-postcss/4.0.2_neo3lunb2qpadwxplzw7r2isgm: + /rollup-plugin-postcss/4.0.2_ra2vnoek4vhbzktaezawwqbin4: resolution: { integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==, @@ -19484,15 +19273,15 @@ packages: peerDependencies: postcss: 8.x dependencies: - chalk: 4.1.2 + chalk: 4.1.0 concat-with-sourcemaps: 1.1.0 - cssnano: 5.1.14_postcss@8.4.18 + cssnano: 5.1.14_postcss@8.4.20 import-cwd: 3.0.0 p-queue: 6.6.2 pify: 5.0.0 - postcss: 8.4.18 - postcss-load-config: 3.1.4_neo3lunb2qpadwxplzw7r2isgm - postcss-modules: 4.3.1_postcss@8.4.18 + postcss: 8.4.20 + postcss-load-config: 3.1.4_ra2vnoek4vhbzktaezawwqbin4 + postcss-modules: 4.3.1_postcss@8.4.20 promise.series: 0.2.0 resolve: 1.22.1 rollup-pluginutils: 2.8.2 @@ -19500,6 +19289,7 @@ packages: style-inject: 0.3.0 transitivePeerDependencies: - ts-node + dev: true /rollup-plugin-typescript2/0.31.2_lqcg7cm2mirt2n7bp5q7bbj6vq: resolution: @@ -19518,6 +19308,7 @@ packages: rollup: 2.77.0 tslib: 2.4.1 typescript: 4.8.4 + dev: true /rollup-pluginutils/2.8.2: resolution: @@ -19526,6 +19317,7 @@ packages: } dependencies: estree-walker: 0.6.1 + dev: true /rollup/2.77.0: resolution: @@ -19536,6 +19328,7 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true /run-async/2.4.1: resolution: @@ -19587,6 +19380,17 @@ packages: { integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==, } + dev: true + + /safe-regex-test/1.0.0: + resolution: + { + integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-regex: 1.1.4 /safer-buffer/2.1.2: resolution: @@ -19594,7 +19398,7 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - /sass-loader/12.6.0_sass@1.56.0+webpack@5.74.0: + /sass-loader/12.6.0_sass@1.57.1+webpack@5.75.0: resolution: { integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==, @@ -19618,19 +19422,19 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - sass: 1.56.0 - webpack: 5.74.0 + sass: 1.57.1 + webpack: 5.75.0 - /sass/1.56.0: + /sass/1.57.1: resolution: { - integrity: sha512-WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw==, + integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==, } engines: { node: '>=12.0.0' } hasBin: true dependencies: chokidar: 3.5.3 - immutable: 4.1.0 + immutable: 4.2.1 source-map-js: 1.0.2 /sax/1.2.4: @@ -19703,6 +19507,7 @@ packages: { integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==, } + dev: true /select-hose/2.0.0: resolution: @@ -20038,7 +19843,7 @@ packages: } engines: { node: '>=0.10.0' } - /source-map-loader/3.0.2_webpack@5.74.0: + /source-map-loader/3.0.2_webpack@5.75.0: resolution: { integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==, @@ -20050,7 +19855,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.74.0 + webpack: 5.75.0 /source-map-resolve/0.6.0: resolution: @@ -20060,7 +19865,7 @@ packages: deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 - decode-uri-component: 0.2.0 + decode-uri-component: 0.2.2 /source-map-support/0.5.13: resolution: @@ -20108,6 +19913,8 @@ packages: { integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, } + deprecated: Please use @jridgewell/sourcemap-codec instead + dev: true /spawndamnit/2.0.0: resolution: @@ -20240,16 +20047,6 @@ packages: } deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - /stack-utils/2.0.5: - resolution: - { - integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==, - } - engines: { node: '>=10' } - dependencies: - escape-string-regexp: 2.0.0 - dev: false - /stack-utils/2.0.6: resolution: { @@ -20259,12 +20056,6 @@ packages: dependencies: escape-string-regexp: 2.0.0 - /stackframe/1.3.4: - resolution: - { - integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==, - } - /statuses/1.5.0: resolution: { @@ -20316,6 +20107,7 @@ packages: { integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==, } + dev: true /string-length/4.0.2: resolution: @@ -20350,15 +20142,15 @@ packages: strip-ansi: 7.0.1 dev: true - /string.prototype.matchall/4.0.7: + /string.prototype.matchall/4.0.8: resolution: { - integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==, + integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 get-intrinsic: 1.1.3 has-symbols: 1.0.3 internal-slot: 1.0.3 @@ -20366,25 +20158,25 @@ packages: side-channel: 1.0.4 dev: true - /string.prototype.trimend/1.0.5: + /string.prototype.trimend/1.0.6: resolution: { - integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, + integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 - /string.prototype.trimstart/1.0.5: + /string.prototype.trimstart/1.0.6: resolution: { - integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, + integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, } dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.1 + es-abstract: 1.20.5 /string_decoder/1.1.1: resolution: @@ -20491,8 +20283,9 @@ packages: { integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==, } + dev: true - /style-loader/3.3.1_webpack@5.74.0: + /style-loader/3.3.1_webpack@5.75.0: resolution: { integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==, @@ -20501,12 +20294,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.74.0_@swc+core@1.2.173 + webpack: 5.75.0 - /styled-components/5.3.5_7i5myeigehqah43i5u7wbekgba: + /styled-components/5.3.6_7i5myeigehqah43i5u7wbekgba: resolution: { - integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==, + integrity: sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==, } engines: { node: '>=10' } requiresBuild: true @@ -20516,11 +20309,11 @@ packages: react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/traverse': 7.20.1_supports-color@5.5.0 + '@babel/traverse': 7.20.10_supports-color@5.5.0 '@emotion/is-prop-valid': 1.2.0 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.0.7_styled-components@5.3.5 + babel-plugin-styled-components: 2.0.7_styled-components@5.3.6 css-to-react-native: 3.0.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -20549,7 +20342,7 @@ packages: react: 18.2.0 dev: false - /stylehacks/5.1.1_postcss@8.4.18: + /stylehacks/5.1.1_postcss@8.4.20: resolution: { integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==, @@ -20559,10 +20352,10 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.20 + postcss-selector-parser: 6.0.11 - /stylus-loader/7.1.0_772wava6yveehcyvgfd527qm3q: + /stylus-loader/7.1.0_irl2hmhzopg6urv44vymn74p4e: resolution: { integrity: sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==, @@ -20576,7 +20369,7 @@ packages: klona: 2.0.5 normalize-path: 3.0.0 stylus: 0.55.0 - webpack: 5.74.0_@swc+core@1.2.173 + webpack: 5.75.0 /stylus/0.55.0: resolution: @@ -20645,6 +20438,7 @@ packages: { integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==, } + dev: false /svgo/2.8.0: resolution: @@ -20731,7 +20525,7 @@ packages: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - /terser-webpack-plugin/5.3.6_s7pr4qgrnindsllhcpre6wt5t4: + /terser-webpack-plugin/5.3.6_vpswimrumx7b6g43sykpxebxim: resolution: { integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==, @@ -20755,10 +20549,10 @@ packages: jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.15.1 - webpack: 5.74.0_@swc+core@1.2.173 + terser: 5.16.1 + webpack: 5.75.0_@swc+core@1.2.173 - /terser-webpack-plugin/5.3.6_webpack@5.74.0: + /terser-webpack-plugin/5.3.6_webpack@5.75.0: resolution: { integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==, @@ -20781,13 +20575,13 @@ packages: jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.15.1 - webpack: 5.74.0 + terser: 5.16.1 + webpack: 5.75.0 - /terser/5.15.1: + /terser/5.16.1: resolution: { - integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==, + integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==, } engines: { node: '>=10' } hasBin: true @@ -21010,7 +20804,7 @@ packages: babel-jest: 28.1.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 28.1.3_sgupjgtkb76w4hsvieap2xky7i + jest: 28.1.3_odkjkoia5xunhxkdrka32ib6vi jest-util: 28.1.3 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -21020,27 +20814,27 @@ packages: yargs-parser: 21.0.1 dev: true - /ts-loader/9.4.1_qqxisngxjbp7lstdk7boexbu3e: + /ts-loader/9.4.2_qw7fmzhoapcndkteb5rsc33stq: resolution: { - integrity: sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw==, + integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==, } engines: { node: '>=12.0.0' } peerDependencies: typescript: '*' webpack: ^5.0.0 dependencies: - chalk: 4.1.2 - enhanced-resolve: 5.10.0 + chalk: 4.1.0 + enhanced-resolve: 5.12.0 micromatch: 4.0.5 semver: 7.3.8 typescript: 4.8.4 - webpack: 5.74.0_@swc+core@1.2.173 + webpack: 5.75.0_@swc+core@1.2.173 - /ts-loader/9.4.1_webpack@5.74.0: + /ts-loader/9.4.2_webpack@5.75.0: resolution: { - integrity: sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw==, + integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==, } engines: { node: '>=12.0.0' } peerDependencies: @@ -21048,10 +20842,10 @@ packages: webpack: ^5.0.0 dependencies: chalk: 4.1.2 - enhanced-resolve: 5.10.0 + enhanced-resolve: 5.12.0 micromatch: 4.0.5 semver: 7.3.8 - webpack: 5.74.0 + webpack: 5.75.0 dev: false /ts-log/2.2.5: @@ -21083,7 +20877,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - acorn: 8.8.0 + acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -21093,7 +20887,7 @@ packages: yn: 3.1.1 dev: false - /ts-node/10.9.1_7vn526urxoaxkyqaqthutx4j6q: + /ts-node/10.9.1_b2ulvot2eensv5kijvirfsfnxq: resolution: { integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, @@ -21116,7 +20910,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.7.18 + '@types/node': 18.11.9 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -21127,7 +20921,7 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /ts-node/10.9.1_b2ulvot2eensv5kijvirfsfnxq: + /ts-node/10.9.1_qyqhcmwufjmwhptfkdjysgeb6u: resolution: { integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, @@ -21150,7 +20944,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.11.9 + '@types/node': 18.11.17 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -21169,7 +20963,7 @@ packages: } dependencies: chalk: 4.1.2 - enhanced-resolve: 5.10.0 + enhanced-resolve: 5.12.0 tsconfig-paths: 3.14.1 /tsconfig-paths/3.14.1: @@ -21190,7 +20984,7 @@ packages: } engines: { node: '>=6' } dependencies: - json5: 2.2.1 + json5: 2.2.2 minimist: 1.2.7 strip-bom: 3.0.0 dev: false @@ -21335,6 +21129,7 @@ packages: integrity: sha512-pRS+/yrW5TjPPHNOvxhbNZexr2bS63WjrMU8a+VzEBhUi9Tz1pZeD+vQz3ut0svZ46P+SRqMEPnJmk2XnvNzTw==, } engines: { node: '>=12.20' } + dev: false /type-is/1.6.18: resolution: @@ -21435,6 +21230,7 @@ packages: engines: { node: '>= 0.8.0' } dependencies: qs: 6.11.0 + dev: true /universalify/0.1.2: resolution: @@ -21488,10 +21284,11 @@ packages: integrity: sha512-M88uBoqgzrkXvXrF/+oSIPsTmL21uRwGhPVJKODrl+3lXkQ5NPKrTYuSBZVa+lgPGFoI6qYyHlSKACFHO0AoNw==, } dependencies: - '@types/node': 18.11.9 + '@types/node': 18.11.17 path-is-network-drive: 1.0.15 path-strip-sep: 1.0.12 tslib: 2.4.1 + dev: true /update-browserslist-db/1.0.10_browserslist@4.21.4: resolution: @@ -21551,29 +21348,11 @@ packages: file-loader: optional: true dependencies: - loader-utils: 2.0.3 + loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.1.1 dev: false - /url-loader/4.1.1_webpack@5.74.0: - 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.3 - mime-types: 2.1.35 - schema-utils: 3.1.1 - webpack: 5.74.0_@swc+core@1.2.173 - /url-parse/1.5.10: resolution: { @@ -21770,7 +21549,7 @@ packages: engines: { node: '>=12' } dev: false - /webpack-dev-middleware/5.3.3_webpack@5.74.0: + /webpack-dev-middleware/5.3.3_webpack@5.75.0: resolution: { integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==, @@ -21780,13 +21559,13 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: colorette: 2.0.19 - memfs: 3.4.10 + memfs: 3.4.12 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.74.0 + webpack: 5.75.0 - /webpack-dev-server/4.11.1_webpack@5.74.0: + /webpack-dev-server/4.11.1_webpack@5.75.0: resolution: { integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==, @@ -21802,7 +21581,7 @@ packages: dependencies: '@types/bonjour': 3.5.10 '@types/connect-history-api-fallback': 1.3.5 - '@types/express': 4.17.14 + '@types/express': 4.17.15 '@types/serve-index': 1.9.1 '@types/serve-static': 1.15.0 '@types/sockjs': 0.3.33 @@ -21817,7 +21596,7 @@ packages: express: 4.18.2 graceful-fs: 4.2.10 html-entities: 2.3.3 - http-proxy-middleware: 2.0.6_@types+express@4.17.14 + http-proxy-middleware: 2.0.6_@types+express@4.17.15 ipaddr.js: 2.0.1 open: 8.4.0 p-retry: 4.6.2 @@ -21827,8 +21606,8 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.74.0 - webpack-dev-middleware: 5.3.3_webpack@5.74.0 + webpack: 5.75.0 + webpack-dev-middleware: 5.3.3_webpack@5.75.0 ws: 8.11.0 transitivePeerDependencies: - bufferutil @@ -21860,7 +21639,7 @@ packages: } engines: { node: '>=10.13.0' } - /webpack-subresource-integrity/5.1.0_webpack@5.74.0: + /webpack-subresource-integrity/5.1.0_webpack@5.75.0: resolution: { integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==, @@ -21874,18 +21653,12 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.74.0 + webpack: 5.75.0 - /webpack-virtual-modules/0.4.6: + /webpack/5.75.0: resolution: { - integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==, - } - - /webpack/5.74.0: - resolution: - { - integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==, + integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==, } engines: { node: '>=10.13.0' } hasBin: true @@ -21904,7 +21677,7 @@ packages: acorn-import-assertions: 1.8.0_acorn@8.8.1 browserslist: 4.21.4 chrome-trace-event: 1.0.3 - enhanced-resolve: 5.10.0 + enhanced-resolve: 5.12.0 es-module-lexer: 0.9.3 eslint-scope: 5.1.1 events: 3.3.0 @@ -21916,7 +21689,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.75.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -21924,10 +21697,10 @@ packages: - esbuild - uglify-js - /webpack/5.74.0_@swc+core@1.2.173: + /webpack/5.75.0_@swc+core@1.2.173: resolution: { - integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==, + integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==, } engines: { node: '>=10.13.0' } hasBin: true @@ -21946,7 +21719,7 @@ packages: acorn-import-assertions: 1.8.0_acorn@8.8.1 browserslist: 4.21.4 chrome-trace-event: 1.0.3 - enhanced-resolve: 5.10.0 + enhanced-resolve: 5.12.0 es-module-lexer: 0.9.3 eslint-scope: 5.1.1 events: 3.3.0 @@ -21958,7 +21731,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_s7pr4qgrnindsllhcpre6wt5t4 + terser-webpack-plugin: 5.3.6_vpswimrumx7b6g43sykpxebxim watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -22208,6 +21981,12 @@ packages: } dev: false + /yallist/3.1.1: + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } + /yallist/4.0.0: resolution: {