From a20dba189a22c57a44ef1c9e488d402a278a1814 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Wed, 29 Mar 2023 18:33:42 +0100
Subject: [PATCH 01/20] refactor(nx-mesh): bundle with vite
---
package.json | 11 +-
packages/nx-mesh/executors.json | 12 +-
packages/nx-mesh/package.json | 10 +-
packages/nx-mesh/project.json | 7 +
...build-gateway.impl.ts => build-gateway.ts} | 2 +-
.../src/executors/build-gateway/index.ts | 3 +
.../{build-swc.impl.ts => build-swc.ts} | 2 +-
.../nx-mesh/src/executors/build-swc/index.ts | 3 +
.../build-swc/swc-executor/compile-swc.ts | 2 +-
.../build-swc/swc-executor/swc.impl.ts | 4 +-
.../build/{build.impl.ts => build.ts} | 2 +-
packages/nx-mesh/src/executors/build/index.ts | 3 +
.../src/executors/dev/{executor.ts => dev.ts} | 2 +-
packages/nx-mesh/src/executors/dev/index.ts | 3 +
packages/nx-mesh/src/executors/index.ts | 7 +
packages/nx-mesh/src/executors/serve/index.ts | 3 +
.../serve/{serve.impl.ts => serve.ts} | 4 +-
packages/nx-mesh/src/executors/start/index.ts | 3 +
.../start/{start.impl.ts => start.ts} | 2 +-
.../nx-mesh/src/executors/validate/index.ts | 3 +
.../{validate.impl.ts => validate.ts} | 2 +-
.../src/generators/application/index.ts | 1 +
...fig.app.json => tsconfig.app.json__tmpl__} | 0
.../{tsconfig.json => tsconfig.json__tmpl__} | 0
.../src/generators/base/lib/create-files.ts | 4 +-
packages/nx-mesh/src/generators/index.ts | 4 +
.../create-codegen-files.ts | 2 +-
.../create-shared-files.ts | 2 +-
packages/nx-mesh/src/index.ts | 1 +
.../nx-mesh/src/utils/create-package-json.ts | 2 +-
packages/nx-mesh/src/utils/get-source-file.ts | 4 +-
.../src/utils/graphql-codegen-cli/cli.ts | 4 +-
packages/nx-mesh/src/utils/mesh-cli/cli.ts | 4 +-
.../nx-mesh/src/utils/mesh-cli/commands.ts | 2 +-
packages/nx-mesh/vite.config.ts | 110 +++
pnpm-lock.yaml | 810 +++++++++++++++++-
36 files changed, 998 insertions(+), 42 deletions(-)
rename packages/nx-mesh/src/executors/build-gateway/{build-gateway.impl.ts => build-gateway.ts} (96%)
create mode 100644 packages/nx-mesh/src/executors/build-gateway/index.ts
rename packages/nx-mesh/src/executors/build-swc/{build-swc.impl.ts => build-swc.ts} (98%)
create mode 100644 packages/nx-mesh/src/executors/build-swc/index.ts
rename packages/nx-mesh/src/executors/build/{build.impl.ts => build.ts} (98%)
create mode 100644 packages/nx-mesh/src/executors/build/index.ts
rename packages/nx-mesh/src/executors/dev/{executor.ts => dev.ts} (97%)
create mode 100644 packages/nx-mesh/src/executors/dev/index.ts
create mode 100644 packages/nx-mesh/src/executors/index.ts
create mode 100644 packages/nx-mesh/src/executors/serve/index.ts
rename packages/nx-mesh/src/executors/serve/{serve.impl.ts => serve.ts} (78%)
create mode 100644 packages/nx-mesh/src/executors/start/index.ts
rename packages/nx-mesh/src/executors/start/{start.impl.ts => start.ts} (97%)
create mode 100644 packages/nx-mesh/src/executors/validate/index.ts
rename packages/nx-mesh/src/executors/validate/{validate.impl.ts => validate.ts} (95%)
create mode 100644 packages/nx-mesh/src/generators/application/index.ts
rename packages/nx-mesh/src/generators/base/files/app/{tsconfig.app.json => tsconfig.app.json__tmpl__} (100%)
rename packages/nx-mesh/src/generators/base/files/app/{tsconfig.json => tsconfig.json__tmpl__} (100%)
create mode 100644 packages/nx-mesh/src/generators/index.ts
create mode 100644 packages/nx-mesh/vite.config.ts
diff --git a/package.json b/package.json
index 0c94188c..f09caf5f 100644
--- a/package.json
+++ b/package.json
@@ -49,6 +49,7 @@
"react-is": "18.2.0",
"styled-components": "5.3.6",
"tslib": "2.5.0",
+ "vite-plugin-static-copy": "^0.13.1",
"watchpack": "2.4.0"
},
"devDependencies": {
@@ -66,6 +67,7 @@
"@nrwl/nx-cloud": "15.2.1",
"@nrwl/nx-plugin": "15.7.1",
"@nrwl/react": "15.7.1",
+ "@nrwl/vite": "15.7.1",
"@nrwl/workspace": "15.7.1",
"@swc-node/register": "1.6.2",
"@swc/cli": "0.1.62",
@@ -82,6 +84,7 @@
"@types/watchpack": "2.4.0",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
+ "@vitest/ui": "^0.25.8",
"babel-jest": "28.1.1",
"babel-plugin-styled-components": "1.10.7",
"cypress": "^12.2.0",
@@ -96,6 +99,7 @@
"husky": "8.0.3",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
+ "jsdom": "~20.0.3",
"jsonc-eslint-parser": "2.2.0",
"lint-staged": "13.2.0",
"nx": "15.7.1",
@@ -105,6 +109,11 @@
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"type-fest": "3.6.1",
- "typescript": "4.8.4"
+ "typescript": "4.8.4",
+ "vite": "^4.0.1",
+ "vite-plugin-dts": "~1.7.1",
+ "vite-plugin-eslint": "^1.8.1",
+ "vite-tsconfig-paths": "^4.0.2",
+ "vitest": "^0.25.8"
}
}
diff --git a/packages/nx-mesh/executors.json b/packages/nx-mesh/executors.json
index 70050e11..5e524ab2 100644
--- a/packages/nx-mesh/executors.json
+++ b/packages/nx-mesh/executors.json
@@ -8,37 +8,37 @@
"hasher": "./src/executors/validate/hasher"
},
"build": {
- "implementation": "./src/executors/build/build.impl",
+ "implementation": "./src/executors/build/build",
"schema": "./src/executors/build/schema.json",
"description": "Builds artifacts",
"hasher": "./src/executors/build/hasher"
},
"build-gateway": {
- "implementation": "./src/executors/build-gateway/build-gateway.impl",
+ "implementation": "./src/executors/build-gateway/build-gateway",
"schema": "./src/executors/build-gateway/schema.json",
"description": "Builds artifacts to be used as an API Gateway",
"hasher": "./src/executors/build-gateway/hasher"
},
"build-swc": {
- "implementation": "./src/executors/build-swc/build-swc.impl",
+ "implementation": "./src/executors/build-swc/build-swc",
"schema": "./src/executors/build-swc/schema.json",
"description": "Builds artifacts using SWC.",
"hasher": "./src/executors/build-swc/hasher"
},
"serve": {
- "implementation": "./src/executors/serve/serve.impl",
+ "implementation": "./src/executors/serve/serve",
"schema": "./src/executors/serve/schema.json",
"description": "Serves a GraphQL server.",
"hasher": "./src/executors/serve/hasher"
},
"start": {
- "implementation": "./src/executors/start/start.impl",
+ "implementation": "./src/executors/start/start",
"schema": "./src/executors/start/schema.json",
"description": "Serves a GraphQL server with GraphQL interface based on your generated artifacts",
"hasher": "./src/executors/start/hasher"
},
"validate": {
- "implementation": "./src/executors/validate/validate.impl",
+ "implementation": "./src/executors/validate/validate",
"schema": "./src/executors/validate/schema.json",
"description": "Validates artifacts"
}
diff --git a/packages/nx-mesh/package.json b/packages/nx-mesh/package.json
index 6027c996..20a76c80 100644
--- a/packages/nx-mesh/package.json
+++ b/packages/nx-mesh/package.json
@@ -21,12 +21,7 @@
"@nrwl/workspace": "^15.7.1",
"@swc-node/register": "^1.6.2",
"@swc/core": "^1.3.42",
- "@swc/helpers": "^0.4.14",
- "fs-extra": "^10.1.0",
- "get-port": "5.1.1",
- "tslib": "^2.5.0",
- "type-fest": "^2.18.0",
- "watchpack": "^2.4.0"
+ "@swc/helpers": "^0.4.14"
},
"keywords": [
"Monorepo",
@@ -55,5 +50,6 @@
},
"exports": {
"./package.json": "./package.json"
- }
+ },
+ "type": "commonjs"
}
diff --git a/packages/nx-mesh/project.json b/packages/nx-mesh/project.json
index 05b95f52..f27829fb 100644
--- a/packages/nx-mesh/project.json
+++ b/packages/nx-mesh/project.json
@@ -5,6 +5,13 @@
"projectType": "library",
"targets": {
"build": {
+ "executor": "@nrwl/vite:build",
+ "outputs": ["{options.outputPath}"],
+ "options": {
+ "outputPath": "dist/packages/nx-mesh"
+ }
+ },
+ "build-swc": {
"executor": "@nrwl/js:swc",
"outputs": ["{options.outputPath}"],
"options": {
diff --git a/packages/nx-mesh/src/executors/build-gateway/build-gateway.impl.ts b/packages/nx-mesh/src/executors/build-gateway/build-gateway.ts
similarity index 96%
rename from packages/nx-mesh/src/executors/build-gateway/build-gateway.impl.ts
rename to packages/nx-mesh/src/executors/build-gateway/build-gateway.ts
index ba1b90f9..8faea1c8 100644
--- a/packages/nx-mesh/src/executors/build-gateway/build-gateway.impl.ts
+++ b/packages/nx-mesh/src/executors/build-gateway/build-gateway.ts
@@ -3,7 +3,7 @@ import type { ExecutorContext } from '@nrwl/devkit';
import { logger } from '@nrwl/devkit';
import { directoryExists } from '@nrwl/workspace/src/utilities/fileutils';
import { copySync, mkdir } from 'fs-extra';
-import { join, resolve } from 'path';
+import { join, resolve } from 'node:path';
import { createPackageJson } from '../../utils';
import { runMeshCli } from '../../utils/mesh-cli';
diff --git a/packages/nx-mesh/src/executors/build-gateway/index.ts b/packages/nx-mesh/src/executors/build-gateway/index.ts
new file mode 100644
index 00000000..98390255
--- /dev/null
+++ b/packages/nx-mesh/src/executors/build-gateway/index.ts
@@ -0,0 +1,3 @@
+export * from './build-gateway';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/build-swc/build-swc.impl.ts b/packages/nx-mesh/src/executors/build-swc/build-swc.ts
similarity index 98%
rename from packages/nx-mesh/src/executors/build-swc/build-swc.impl.ts
rename to packages/nx-mesh/src/executors/build-swc/build-swc.ts
index 15ff5555..ea15dc06 100644
--- a/packages/nx-mesh/src/executors/build-swc/build-swc.impl.ts
+++ b/packages/nx-mesh/src/executors/build-swc/build-swc.ts
@@ -1,7 +1,7 @@
import type { ExecutorContext } from '@nrwl/devkit';
import { logger } from '@nrwl/devkit';
-import { join, resolve } from 'path';
+import { join, resolve } from 'node:path';
import { createPackageJson, watcher } from '../../utils';
import { runCodegenCli } from '../../utils/graphql-codegen-cli';
diff --git a/packages/nx-mesh/src/executors/build-swc/index.ts b/packages/nx-mesh/src/executors/build-swc/index.ts
new file mode 100644
index 00000000..22d1b7c8
--- /dev/null
+++ b/packages/nx-mesh/src/executors/build-swc/index.ts
@@ -0,0 +1,3 @@
+export * from './build-swc';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts b/packages/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts
index 4c6a51b8..b4cd2f76 100644
--- a/packages/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts
+++ b/packages/nx-mesh/src/executors/build-swc/swc-executor/compile-swc.ts
@@ -5,7 +5,7 @@
// @ts-nocheck
import { cacheDir, ExecutorContext, logger } from '@nrwl/devkit';
-import { exec, execSync } from 'child_process';
+import { exec, execSync } from 'node:child_process';
import { removeSync } from 'fs-extra';
import { createAsyncIterable } from '@nrwl/devkit/src/utils/async-iterable';
import {
diff --git a/packages/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts b/packages/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts
index 29f7faae..d52baa68 100644
--- a/packages/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts
+++ b/packages/nx-mesh/src/executors/build-swc/swc-executor/swc.impl.ts
@@ -1,7 +1,7 @@
/* eslint-disable */
// Modifed version of Nx SWC executor
-// https://github.com/nrwl/nx/blob/master/packages/js/src/executors/swc/swc.impl.ts
+// https://github.com/nrwl/nx/blob/master/packages/js/src/executors/swc/swc.ts
// @ts-nocheck
import { ExecutorContext } from '@nrwl/devkit';
import {
@@ -9,7 +9,7 @@ import {
FileInputOutput,
} from '@nrwl/workspace/src/utilities/assets';
import { removeSync } from 'fs-extra';
-import { dirname, join, relative, resolve } from 'path';
+import { dirname, join, relative, resolve } from 'node:path';
import { copyAssets } from '@nrwl/js/src/utils/assets';
import { checkDependencies } from '@nrwl/js/src/utils/check-dependencies';
import {
diff --git a/packages/nx-mesh/src/executors/build/build.impl.ts b/packages/nx-mesh/src/executors/build/build.ts
similarity index 98%
rename from packages/nx-mesh/src/executors/build/build.impl.ts
rename to packages/nx-mesh/src/executors/build/build.ts
index 89713b4f..eb6e2eb8 100644
--- a/packages/nx-mesh/src/executors/build/build.impl.ts
+++ b/packages/nx-mesh/src/executors/build/build.ts
@@ -2,7 +2,7 @@ import type { ExecutorContext } from '@nrwl/devkit';
import { logger } from '@nrwl/devkit';
import { tscExecutor } from '@nrwl/js/src/executors/tsc/tsc.impl';
-import { resolve } from 'path';
+import { resolve } from 'node:path';
import { createPackageJson, watcher } from '../../utils';
import { runCodegenCli } from '../../utils/graphql-codegen-cli';
diff --git a/packages/nx-mesh/src/executors/build/index.ts b/packages/nx-mesh/src/executors/build/index.ts
new file mode 100644
index 00000000..f168df6f
--- /dev/null
+++ b/packages/nx-mesh/src/executors/build/index.ts
@@ -0,0 +1,3 @@
+export * from './build';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/dev/executor.ts b/packages/nx-mesh/src/executors/dev/dev.ts
similarity index 97%
rename from packages/nx-mesh/src/executors/dev/executor.ts
rename to packages/nx-mesh/src/executors/dev/dev.ts
index df7147ec..845fed9e 100644
--- a/packages/nx-mesh/src/executors/dev/executor.ts
+++ b/packages/nx-mesh/src/executors/dev/dev.ts
@@ -1,7 +1,7 @@
import type { ExecutorContext } from '@nrwl/devkit';
import { logger } from '@nrwl/devkit';
-import { resolve } from 'path';
+import { resolve } from 'node:path';
import { childProcess, runMeshCli } from '../../utils/mesh-cli';
import getServeLocation from './lib/get-serve-location';
diff --git a/packages/nx-mesh/src/executors/dev/index.ts b/packages/nx-mesh/src/executors/dev/index.ts
new file mode 100644
index 00000000..76ac0299
--- /dev/null
+++ b/packages/nx-mesh/src/executors/dev/index.ts
@@ -0,0 +1,3 @@
+export * from './dev';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/index.ts b/packages/nx-mesh/src/executors/index.ts
new file mode 100644
index 00000000..e101d6da
--- /dev/null
+++ b/packages/nx-mesh/src/executors/index.ts
@@ -0,0 +1,7 @@
+export * from './build';
+export * from './build-gateway';
+export * from './build-swc';
+export * from './dev';
+export * from './serve';
+export * from './start';
+export * from './validate';
diff --git a/packages/nx-mesh/src/executors/serve/index.ts b/packages/nx-mesh/src/executors/serve/index.ts
new file mode 100644
index 00000000..ea66c4a5
--- /dev/null
+++ b/packages/nx-mesh/src/executors/serve/index.ts
@@ -0,0 +1,3 @@
+export * from './serve';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/serve/serve.impl.ts b/packages/nx-mesh/src/executors/serve/serve.ts
similarity index 78%
rename from packages/nx-mesh/src/executors/serve/serve.impl.ts
rename to packages/nx-mesh/src/executors/serve/serve.ts
index 6dde03fe..339c64cc 100644
--- a/packages/nx-mesh/src/executors/serve/serve.impl.ts
+++ b/packages/nx-mesh/src/executors/serve/serve.ts
@@ -2,8 +2,8 @@ import type { ExecutorContext } from '@nrwl/devkit';
import type { ServeExecutorSchema } from './schema';
-import { devExecutor } from '../dev/executor';
-import { startExecutor } from '../start/start.impl';
+import { devExecutor } from '../dev/dev';
+import { startExecutor } from '../start/start';
export async function* serveExecutor(
options: ServeExecutorSchema,
diff --git a/packages/nx-mesh/src/executors/start/index.ts b/packages/nx-mesh/src/executors/start/index.ts
new file mode 100644
index 00000000..e66f1a38
--- /dev/null
+++ b/packages/nx-mesh/src/executors/start/index.ts
@@ -0,0 +1,3 @@
+export * from './start';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/start/start.impl.ts b/packages/nx-mesh/src/executors/start/start.ts
similarity index 97%
rename from packages/nx-mesh/src/executors/start/start.impl.ts
rename to packages/nx-mesh/src/executors/start/start.ts
index f0346f6a..b4ec0cc9 100644
--- a/packages/nx-mesh/src/executors/start/start.impl.ts
+++ b/packages/nx-mesh/src/executors/start/start.ts
@@ -1,7 +1,7 @@
import type { ExecutorContext } from '@nrwl/devkit';
import { logger } from '@nrwl/devkit';
-import { resolve } from 'path';
+import { resolve } from 'node:path';
import { childProcess, runMeshCli } from '../../utils/mesh-cli';
import getServeLocation from './lib/get-serve-location';
diff --git a/packages/nx-mesh/src/executors/validate/index.ts b/packages/nx-mesh/src/executors/validate/index.ts
new file mode 100644
index 00000000..148183b2
--- /dev/null
+++ b/packages/nx-mesh/src/executors/validate/index.ts
@@ -0,0 +1,3 @@
+export * from './validate';
+export * from './hasher';
+export * from './schema';
diff --git a/packages/nx-mesh/src/executors/validate/validate.impl.ts b/packages/nx-mesh/src/executors/validate/validate.ts
similarity index 95%
rename from packages/nx-mesh/src/executors/validate/validate.impl.ts
rename to packages/nx-mesh/src/executors/validate/validate.ts
index 66b6d7ab..e251572b 100644
--- a/packages/nx-mesh/src/executors/validate/validate.impl.ts
+++ b/packages/nx-mesh/src/executors/validate/validate.ts
@@ -1,7 +1,7 @@
import type { ExecutorContext } from '@nrwl/devkit';
import { logger } from '@nrwl/devkit';
-import { resolve } from 'path';
+import { resolve } from 'node:path';
import { runMeshCli } from '../../utils/mesh-cli';
diff --git a/packages/nx-mesh/src/generators/application/index.ts b/packages/nx-mesh/src/generators/application/index.ts
new file mode 100644
index 00000000..2b2fe9a8
--- /dev/null
+++ b/packages/nx-mesh/src/generators/application/index.ts
@@ -0,0 +1 @@
+export * from './application';
diff --git a/packages/nx-mesh/src/generators/base/files/app/tsconfig.app.json b/packages/nx-mesh/src/generators/base/files/app/tsconfig.app.json__tmpl__
similarity index 100%
rename from packages/nx-mesh/src/generators/base/files/app/tsconfig.app.json
rename to packages/nx-mesh/src/generators/base/files/app/tsconfig.app.json__tmpl__
diff --git a/packages/nx-mesh/src/generators/base/files/app/tsconfig.json b/packages/nx-mesh/src/generators/base/files/app/tsconfig.json__tmpl__
similarity index 100%
rename from packages/nx-mesh/src/generators/base/files/app/tsconfig.json
rename to packages/nx-mesh/src/generators/base/files/app/tsconfig.json__tmpl__
diff --git a/packages/nx-mesh/src/generators/base/lib/create-files.ts b/packages/nx-mesh/src/generators/base/lib/create-files.ts
index 25114a90..426c3a2b 100644
--- a/packages/nx-mesh/src/generators/base/lib/create-files.ts
+++ b/packages/nx-mesh/src/generators/base/lib/create-files.ts
@@ -3,7 +3,7 @@ import type { Tree } from '@nrwl/devkit';
import type { NormalizedOptions } from './normalize-options';
import { generateFiles } from '@nrwl/devkit';
-import * as path from 'path';
+import * as path from 'node:path';
export function createFiles(tree: Tree, options: NormalizedOptions) {
if (options.isApp) {
@@ -11,7 +11,7 @@ export function createFiles(tree: Tree, options: NormalizedOptions) {
tree,
path.join(__dirname, '../files/app'),
options.projectDirectory,
- options
+ { ...options, tmpl: '' }
);
}
diff --git a/packages/nx-mesh/src/generators/index.ts b/packages/nx-mesh/src/generators/index.ts
new file mode 100644
index 00000000..2afeaed8
--- /dev/null
+++ b/packages/nx-mesh/src/generators/index.ts
@@ -0,0 +1,4 @@
+export * from './application';
+export * from './base';
+export * from './preset';
+export * from './sdk';
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/create-codegen-files.ts b/packages/nx-mesh/src/generators/utils/create-mesh-example/create-codegen-files.ts
index ebdd0470..cfec11f3 100644
--- a/packages/nx-mesh/src/generators/utils/create-mesh-example/create-codegen-files.ts
+++ b/packages/nx-mesh/src/generators/utils/create-mesh-example/create-codegen-files.ts
@@ -4,7 +4,7 @@ import type { SetOptional } from 'type-fest';
import type { CreateMeshExampleOptions } from './types';
import { generateFiles } from '@nrwl/devkit';
-import * as path from 'path';
+import * as path from 'node:path';
export function createCodegenFiles(
tree: Tree,
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/create-shared-files.ts b/packages/nx-mesh/src/generators/utils/create-mesh-example/create-shared-files.ts
index 3b8ec01c..fd297aee 100644
--- a/packages/nx-mesh/src/generators/utils/create-mesh-example/create-shared-files.ts
+++ b/packages/nx-mesh/src/generators/utils/create-mesh-example/create-shared-files.ts
@@ -2,7 +2,7 @@ import type { Tree } from '@nrwl/devkit';
import type { CreateMeshExampleOptions } from './types';
import { generateFiles } from '@nrwl/devkit';
-import * as path from 'path';
+import * as path from 'node:path';
export function createSharedFiles(
tree: Tree,
diff --git a/packages/nx-mesh/src/index.ts b/packages/nx-mesh/src/index.ts
index 04bca77e..69bcd47a 100644
--- a/packages/nx-mesh/src/index.ts
+++ b/packages/nx-mesh/src/index.ts
@@ -1 +1,2 @@
+export * from './executors';
export * from './utils';
diff --git a/packages/nx-mesh/src/utils/create-package-json.ts b/packages/nx-mesh/src/utils/create-package-json.ts
index b5725a8f..a9ce5064 100644
--- a/packages/nx-mesh/src/utils/create-package-json.ts
+++ b/packages/nx-mesh/src/utils/create-package-json.ts
@@ -5,7 +5,7 @@ import {
readCachedProjectGraph,
writeJsonFile,
} from '@nrwl/devkit';
-import { join } from 'path';
+import { join } from 'node:path';
import { meshPackages } from './mesh-packages';
import { getMeshPackages } from './get-mesh-packages';
diff --git a/packages/nx-mesh/src/utils/get-source-file.ts b/packages/nx-mesh/src/utils/get-source-file.ts
index 758b1a01..bd322fa8 100644
--- a/packages/nx-mesh/src/utils/get-source-file.ts
+++ b/packages/nx-mesh/src/utils/get-source-file.ts
@@ -1,5 +1,5 @@
-import { readFile } from 'fs/promises';
-import { resolve, join } from 'path';
+import { readFile } from 'node:fs/promises';
+import { resolve, join } from 'node:path';
export type GetSourceFileProps = {
dir: string;
diff --git a/packages/nx-mesh/src/utils/graphql-codegen-cli/cli.ts b/packages/nx-mesh/src/utils/graphql-codegen-cli/cli.ts
index 0dab50d8..124d0f81 100644
--- a/packages/nx-mesh/src/utils/graphql-codegen-cli/cli.ts
+++ b/packages/nx-mesh/src/utils/graphql-codegen-cli/cli.ts
@@ -1,9 +1,9 @@
import type { ExecutorContext } from '@nrwl/devkit';
-import type { ChildProcess, ForkOptions } from 'child_process';
+import type { ChildProcess, ForkOptions } from 'node:child_process';
import type { Arguments } from './arguments';
-import { spawn } from 'child_process';
+import { spawn } from 'node:child_process';
import { getCliArguments, flatternCliArguments } from './arguments';
diff --git a/packages/nx-mesh/src/utils/mesh-cli/cli.ts b/packages/nx-mesh/src/utils/mesh-cli/cli.ts
index 13a9e40d..0c480d63 100644
--- a/packages/nx-mesh/src/utils/mesh-cli/cli.ts
+++ b/packages/nx-mesh/src/utils/mesh-cli/cli.ts
@@ -1,9 +1,9 @@
import type { ExecutorContext } from '@nrwl/devkit';
-import type { ChildProcess, ForkOptions } from 'child_process';
+import type { ChildProcess, ForkOptions } from 'node:child_process';
import type { Command, Options } from './commands';
-import { spawn } from 'child_process';
+import { spawn } from 'node:child_process';
import { flatternCliArguments } from './arguments';
import { getCommandOptions } from './commands';
diff --git a/packages/nx-mesh/src/utils/mesh-cli/commands.ts b/packages/nx-mesh/src/utils/mesh-cli/commands.ts
index c0519783..19e31784 100644
--- a/packages/nx-mesh/src/utils/mesh-cli/commands.ts
+++ b/packages/nx-mesh/src/utils/mesh-cli/commands.ts
@@ -12,7 +12,7 @@ import { getCliEnv } from './env';
export type Command = 'build' | 'dev' | 'serve-source' | 'start' | 'validate';
/**
- * Command Options that can be passed to a child_process.
+ * Command Options that can be passed to a node:child_process.
*/
export type CommandOptions<
TArgs extends Arguments = Arguments,
diff --git a/packages/nx-mesh/vite.config.ts b/packages/nx-mesh/vite.config.ts
new file mode 100644
index 00000000..3734eb90
--- /dev/null
+++ b/packages/nx-mesh/vite.config.ts
@@ -0,0 +1,110 @@
+///
+
+import { join } from 'node:path';
+import { defineConfig } from 'vite';
+import { viteStaticCopy } from 'vite-plugin-static-copy';
+import viteTsConfigPaths from 'vite-tsconfig-paths';
+import dts from 'vite-plugin-dts';
+
+export default defineConfig({
+ cacheDir: '../../node_modules/.vite/test',
+
+ plugins: [
+ dts({
+ entryRoot: 'src',
+ tsConfigFilePath: join(__dirname, 'tsconfig.lib.json'),
+ skipDiagnostics: true,
+ }),
+
+ viteTsConfigPaths({
+ root: '../../',
+ }),
+
+ viteStaticCopy({
+ targets: [
+ {
+ src: '../../README.md',
+ dest: '.',
+ },
+ {
+ src: '../../LICENSE',
+ dest: '.',
+ },
+ {
+ src: '*.md',
+ dest: '.',
+ },
+ {
+ src: 'executors.json',
+ dest: '.',
+ },
+ {
+ src: 'generators.json',
+ dest: '.',
+ },
+ {
+ src: 'migrations.json',
+ dest: '.',
+ },
+ ],
+ }),
+ ],
+
+ // Uncomment this if you are using workers.
+ // worker: {
+ // plugins: [
+ // viteTsConfigPaths({
+ // root: '../../',
+ // }),
+ // ],
+ // },
+
+ // Configuration for building your library.
+ // See: https://vitejs.dev/guide/build.html#library-mode
+ build: {
+ lib: {
+ // Could also be a dictionary or array of multiple entry points.
+ entry: ['src/index.ts', 'src/'],
+ name: 'nx-mesh',
+ fileName: 'index',
+ // Change this to the formats you want to support.
+ // Don't forgot to update your package.json as well.
+ formats: ['es', 'cjs'],
+ },
+ rollupOptions: {
+ // External packages that should not be bundled into your library.
+ external: [
+ '@graphql-mesh/cli',
+ '@nrwl/cypress',
+ '@nrwl/devkit',
+ '@nrwl/devkit/src/utils/async-iterable',
+ '@nrwl/js',
+ '@nrwl/js/src/executors/tsc/tsc.impl',
+ '@nrwl/js/src/utils/assets',
+ '@nrwl/js/src/utils/check-dependencies',
+ '@nrwl/js/src/utils/compiler-helper-dependency',
+ '@nrwl/js/src/utils/inline',
+ '@nrwl/js/src/utils/package-json',
+ '@nrwl/js/src/utils/schema',
+ '@nrwl/js/src/utils/schema',
+ '@nrwl/js/src/utils/swc/get-swcrc-path',
+ '@nrwl/js/src/utils/swc/inline',
+ '@nrwl/js/src/utils/typescript/print-diagnostics',
+ '@nrwl/js/src/utils/typescript/run-type-check',
+ '@nrwl/linter',
+ '@nrwl/node',
+ '@nrwl/workspace',
+ '@nrwl/workspace/src/utilities/assets',
+ '@nrwl/workspace/src/utilities/fileutils',
+ '@swc-node/register',
+ '@swc/core',
+ '@swc/helpers',
+ 'graphql',
+ 'node:child_process',
+ 'node:fs/promises',
+ 'node:path',
+ 'nx',
+ ],
+ },
+ },
+});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 13d6c662..e270db25 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -36,6 +36,7 @@ importers:
'@nrwl/nx-cloud': 15.2.1
'@nrwl/nx-plugin': 15.7.1
'@nrwl/react': 15.7.1
+ '@nrwl/vite': 15.7.1
'@nrwl/workspace': 15.7.1
'@swc-node/register': 1.6.2
'@swc/cli': 0.1.62
@@ -53,6 +54,7 @@ importers:
'@types/watchpack': 2.4.0
'@typescript-eslint/eslint-plugin': 5.56.0
'@typescript-eslint/parser': 5.56.0
+ '@vitest/ui': ^0.25.8
babel-jest: 28.1.1
babel-plugin-styled-components: 1.10.7
cypress: ^12.2.0
@@ -71,6 +73,7 @@ importers:
jest: 28.1.1
jest-environment-jsdom: 28.1.1
jest_workaround: ^0.69.0
+ jsdom: ~20.0.3
jsonc-eslint-parser: 2.2.0
lint-staged: 13.2.0
next: 13.1.1
@@ -87,6 +90,12 @@ importers:
tslib: 2.5.0
type-fest: 3.6.1
typescript: 4.8.4
+ vite: ^4.0.1
+ vite-plugin-dts: ~1.7.1
+ vite-plugin-eslint: ^1.8.1
+ vite-plugin-static-copy: ^0.13.1
+ vite-tsconfig-paths: ^4.0.2
+ vitest: ^0.25.8
watchpack: 2.4.0
dependencies:
'@graphql-codegen/cli': 3.2.2_xfoe4adolgvm4tvnio5xigcr6e
@@ -118,6 +127,7 @@ importers:
react-is: 18.2.0
styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba
tslib: 2.5.0
+ vite-plugin-static-copy: 0.13.1_vite@4.2.1
watchpack: 2.4.0
devDependencies:
'@changesets/changelog-github': 0.4.8
@@ -134,6 +144,7 @@ importers:
'@nrwl/nx-cloud': 15.2.1
'@nrwl/nx-plugin': 15.7.1_vcikiox2al4nh7lor6nffaclbi
'@nrwl/react': 15.7.1_vrlzavbrlewom5mddifopf3ydy
+ '@nrwl/vite': 15.7.1_nc4yi2csj5owjlmjsrwcdxdxcm
'@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
'@swc-node/register': 1.6.2_un75kqwz4lxw3jlrcmkimcdqmi
'@swc/cli': 0.1.62_@swc+core@1.3.42
@@ -150,6 +161,7 @@ importers:
'@types/watchpack': 2.4.0
'@typescript-eslint/eslint-plugin': 5.56.0_ldbltef7towbem5h7qak2pmw6e
'@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
+ '@vitest/ui': 0.25.8
babel-jest: 28.1.1
babel-plugin-styled-components: 1.10.7_styled-components@5.3.6
cypress: 12.7.0
@@ -164,6 +176,7 @@ importers:
husky: 8.0.3
jest: 28.1.1_odkjkoia5xunhxkdrka32ib6vi
jest-environment-jsdom: 28.1.1
+ jsdom: 20.0.3
jsonc-eslint-parser: 2.2.0
lint-staged: 13.2.0
nx: 15.7.1_cuaypwimdup25vwsqc5i3ttbya
@@ -174,6 +187,11 @@ importers:
ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
type-fest: 3.6.1
typescript: 4.8.4
+ vite: 4.2.1_@types+node@18.11.9
+ vite-plugin-dts: 1.7.3_ibxihpjazi5khnqkke2rzmiwcu
+ vite-plugin-eslint: 1.8.1_eslint@8.15.0+vite@4.2.1
+ vite-tsconfig-paths: 4.0.7_ykl3btyxss5evtm5m64d6se6z4
+ vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq
packages/nx-mesh:
specifiers:
@@ -2170,6 +2188,182 @@ packages:
tslib: 2.5.0
dev: false
+ /@esbuild/android-arm/0.17.13:
+ resolution: {integrity: sha512-5tZZ/hLIfBmt7E8JsE5KbsknoAFmoElkg+A/gjyPtmSQvJjPf+9GsSJihid8VMa08lrsYyaEXOT9RLh3xXQONw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/android-arm64/0.17.13:
+ resolution: {integrity: sha512-F5DgvJMV2ZEpLNpPCO7FEk1wy8O5tg6cikWSB6uvvncsgE1xgbPlm+Boio/4820C2/mj713X83X1h01v0qoeHg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/android-x64/0.17.13:
+ resolution: {integrity: sha512-5m1UUslzpfVrumG3m3Zv2x9VNAcvMOQWJy009y6jt10tcHpzIq2/b0I0k4fz0QYqGSNS1GteRIhVPN4H7OyCXg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/darwin-arm64/0.17.13:
+ resolution: {integrity: sha512-TXbXp/05r7heRsG8yWwbHw9diay+wXIyRNcIHFoNARRIGahYbTW/qwJzE37zkfxLIUPHgR/SyLTUlnTICg14ag==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/darwin-x64/0.17.13:
+ resolution: {integrity: sha512-Ku9Db2sblCxFvQdEO7X9nBaLR/S81uch81e2Q2+Os5z1NcnsFjuqhIYH0Gm6KNNpIKaEbC7gCLbiIPbLLMX4Pg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/freebsd-arm64/0.17.13:
+ resolution: {integrity: sha512-t1T5/nIf2j+FdSf1Fa3dcU0cXycr0nK4xJe52qjWa+1I249mM5NBY1ODjiabZxZ0x3CG05y4fd9bxfDLy9kQtA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/freebsd-x64/0.17.13:
+ resolution: {integrity: sha512-/zbkgEO4gY2qGZr9UNAGI38w/FwUY4bx4EC88k9VeiCKNr3ukNgwH/oIgB5Z9/OqpkNLlcS4w9e2d/MIiy5fbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-arm/0.17.13:
+ resolution: {integrity: sha512-RrhjzrCF6aCDH248nUAQoldnRmN7nHMxv85GOj5AH+qkxxYvcig7fnUmgANngntRu4btXhN9WKHMgQ5seERDMw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-arm64/0.17.13:
+ resolution: {integrity: sha512-siu3QZrQ7eGrSttvFaRKyjT7kNRbUuHEKzCCyqRh19MbpGokGY13jbIsBEjx6JmH3T50hds325oweS9Ey2ihAQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-ia32/0.17.13:
+ resolution: {integrity: sha512-ADHA1PqP5gIegehVP0RvxMmNPxpLgetI8QCwYOjUheGXKIKWSdUN8ZS3rusQv3NGZmFCpYdMZzFoI0QtzzGAdw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-loong64/0.17.13:
+ resolution: {integrity: sha512-n1JQPxETmR0brkpWlJHeohReEPLH+m00bnJdNnFyHN3zLBt1QypevuZSmnmFWsC+7r7HTwWILj3lBDjtPH3ydg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-mips64el/0.17.13:
+ resolution: {integrity: sha512-d0pnD/j5KKQ43xtSIvOD+wNIy6D/Vh9GbXVRa3u4zCyiJMYWjxkPkbBzlEgNjdDmUM+5gBFen9k7B8Xscy+Myg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-ppc64/0.17.13:
+ resolution: {integrity: sha512-C9sMpa/VcGLjVtsT01sXtzZNS7bAZ+icUclkKkiUwBQ9hzT+J+/Xpj+EykI5hB3KgtxQVo4XUahanFoZNxbQ1g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-riscv64/0.17.13:
+ resolution: {integrity: sha512-jYkc5EpNpvjccAHNYekiAtklusVGWftR0VVLtng7dJzDyy+5adAsf1fOG3LllP0WALxS55/w6boLE/728J/bXw==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-s390x/0.17.13:
+ resolution: {integrity: sha512-4jAJI5O6E/hATL4lsrG2A+noDjZ377KlATVFKwV3SWaNHj+OvoXe/T84ScQIXEtPI7ndJyLkMYruXj8RR5Ilyw==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/linux-x64/0.17.13:
+ resolution: {integrity: sha512-eFLQhJq98qijGRcv9je/9M4Mz1suZ+pOtj62ArsLd0gubNGhhQDz6T30X2X3f1KZ8lkKkr+zN5vtZzx1GAMoFw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/netbsd-x64/0.17.13:
+ resolution: {integrity: sha512-F8PXDeT+3eQpPjf4bmNJapPLu0SKKlWRGPQvBQqVS+YDGoMKnyyYp2UENLFMV8zT7kS39zKxZRZvUL3fMz/7Ww==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/openbsd-x64/0.17.13:
+ resolution: {integrity: sha512-9jWfzbFCnIZdHjNs+00KQHArUbp7kjQDNmiuqkwGOQFs67m4/dKNupBv2DP5hTqVlQY4tW4RG3qpb6Y3zOHJeA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/sunos-x64/0.17.13:
+ resolution: {integrity: sha512-ALbOMlTIBkAVi6KqYjONa7u2oH95RN7OpetFqMtjufFLBiSaayRuwUzhs2yuR9CfGT4qi0jv6HQDav+EG314TQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/win32-arm64/0.17.13:
+ resolution: {integrity: sha512-FJBLYL4PkrZGeuHzEqme+0DjNetxkJ+XbB+Aoeow7aQ53JCwsA0/mo8sS5aPkDHgCnMkN4A5GLoFTlDj3BKDrQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/win32-ia32/0.17.13:
+ resolution: {integrity: sha512-Qrvst9RkLz4qgi3hqswNliYuKW92/HGJnd7xLWkGaGPa8S4qsONf81FW0ebDc5iUHb0I7QJwQATutvghTabnFA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@esbuild/win32-x64/0.17.13:
+ resolution: {integrity: sha512-pZ/NIgz861XaUPlIkPFjP55nJ4PJa0o/CD4zgeRb1Q9FVE+8GvdB6ifJcK05jRhny5hKExhnRFIdgHmmCYH8vg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@eslint-community/eslint-utils/4.3.0_eslint@8.15.0:
resolution: {integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4344,6 +4538,36 @@ packages:
read-yaml-file: 1.1.0
dev: true
+ /@microsoft/api-extractor-model/7.26.4_@types+node@18.11.9:
+ resolution: {integrity: sha512-PDCgCzXDo+SLY5bsfl4bS7hxaeEtnXj7XtuzEE+BtALp7B5mK/NrS2kHWU69pohgsRmEALycQdaQPXoyT2i5MQ==}
+ dependencies:
+ '@microsoft/tsdoc': 0.14.2
+ '@microsoft/tsdoc-config': 0.16.2
+ '@rushstack/node-core-library': 3.55.2_@types+node@18.11.9
+ transitivePeerDependencies:
+ - '@types/node'
+ dev: true
+
+ /@microsoft/api-extractor/7.34.4_@types+node@18.11.9:
+ resolution: {integrity: sha512-HOdcci2nT40ejhwPC3Xja9G+WSJmWhCUKKryRfQYsmE9cD+pxmBaKBKCbuS9jUcl6bLLb4Gz+h7xEN5r0QiXnQ==}
+ hasBin: true
+ dependencies:
+ '@microsoft/api-extractor-model': 7.26.4_@types+node@18.11.9
+ '@microsoft/tsdoc': 0.14.2
+ '@microsoft/tsdoc-config': 0.16.2
+ '@rushstack/node-core-library': 3.55.2_@types+node@18.11.9
+ '@rushstack/rig-package': 0.3.18
+ '@rushstack/ts-command-line': 4.13.2
+ colors: 1.2.5
+ lodash: 4.17.21
+ resolve: 1.22.1
+ semver: 7.3.8
+ source-map: 0.6.1
+ typescript: 4.8.4
+ transitivePeerDependencies:
+ - '@types/node'
+ dev: true
+
/@microsoft/eslint-formatter-sarif/3.0.0:
resolution: {integrity: sha512-KIKkT44hEqCzqxODYwFMUvYEK0CrdHx/Ll9xiOWgFbBSRuzbxmVy4d/tzfgoucGz72HJZNOMjuyzFTBKntRK5Q==}
engines: {node: '>= 14'}
@@ -4356,6 +4580,19 @@ packages:
- supports-color
dev: true
+ /@microsoft/tsdoc-config/0.16.2:
+ resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
+ dependencies:
+ '@microsoft/tsdoc': 0.14.2
+ ajv: 6.12.6
+ jju: 1.4.0
+ resolve: 1.19.0
+ dev: true
+
+ /@microsoft/tsdoc/0.14.2:
+ resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
+ dev: true
+
/@mole-inc/bin-wrapper/8.0.1:
resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -5277,6 +5514,32 @@ packages:
- debug
dev: false
+ /@nrwl/vite/15.7.1_nc4yi2csj5owjlmjsrwcdxdxcm:
+ resolution: {integrity: sha512-rnud9y4rm3iD5i3JlHlKwvpRifCeKCdUF8LgQG8R7M3gQJD2mDaOFwG6Pd81p7JAhjGm42geMVhNFEW3uiaLCA==}
+ peerDependencies:
+ vite: ^4.0.1
+ vitest: ^0.25.8
+ dependencies:
+ '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
+ '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
+ '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
+ '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@swc/helpers': 0.4.14
+ dotenv: 10.0.0
+ enquirer: 2.3.6
+ vite: 4.2.1_@types+node@18.11.9
+ vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq
+ transitivePeerDependencies:
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+ - eslint
+ - nx
+ - prettier
+ - supports-color
+ - typescript
+ dev: true
+
/@nrwl/webpack/15.7.1_xtevnxuk7fbn4jltywqimgcx4i:
resolution: {integrity: sha512-g+o/kqwtLP1E5RE04TjaM1qP7fGWV32RMSK3w5/Lb4lvL3nLgXvv8AsYsV0j9nY/cn/7EFj+zxb8hAgFsPoESg==}
dependencies:
@@ -5688,14 +5951,74 @@ packages:
tslib: 2.5.0
dev: true
+ /@polka/url/1.0.0-next.21:
+ resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ dev: true
+
/@repeaterjs/repeater/3.0.4:
resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==}
dev: false
+ /@rollup/pluginutils/4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ dev: true
+
+ /@rollup/pluginutils/5.0.2:
+ resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ dependencies:
+ '@types/estree': 1.0.0
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ dev: true
+
/@rushstack/eslint-patch/1.2.0:
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
dev: true
+ /@rushstack/node-core-library/3.55.2_@types+node@18.11.9:
+ resolution: {integrity: sha512-SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A==}
+ peerDependencies:
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ dependencies:
+ '@types/node': 18.11.9
+ colors: 1.2.5
+ fs-extra: 7.0.1
+ import-lazy: 4.0.0
+ jju: 1.4.0
+ resolve: 1.22.1
+ semver: 7.3.8
+ z-schema: 5.0.5
+ dev: true
+
+ /@rushstack/rig-package/0.3.18:
+ resolution: {integrity: sha512-SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ==}
+ dependencies:
+ resolve: 1.22.1
+ strip-json-comments: 3.1.1
+ dev: true
+
+ /@rushstack/ts-command-line/4.13.2:
+ resolution: {integrity: sha512-bCU8qoL9HyWiciltfzg7GqdfODUeda/JpI0602kbN5YH22rzTxyqYvv7aRLENCM7XCQ1VRs7nMkEqgJUOU8Sag==}
+ dependencies:
+ '@types/argparse': 1.0.38
+ argparse: 1.0.10
+ colors: 1.2.5
+ string-argv: 0.3.1
+ dev: true
+
/@sinclair/typebox/0.24.51:
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
@@ -6035,7 +6358,6 @@ packages:
resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
dependencies:
tslib: 2.5.0
- dev: false
/@swc/jest/0.2.20_@swc+core@1.3.42:
resolution: {integrity: sha512-5qSUBYY1wyIMn7p0Vl9qqV4hMI69oJwZCIPUpBsTFWN2wlwn6RDugzdgCn+bLXVYh+Cxi8bJcZ1uumDgsoL+FA==}
@@ -6093,6 +6415,15 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
+ /@ts-morph/common/0.18.1:
+ resolution: {integrity: sha512-RVE+zSRICWRsfrkAw5qCAK+4ZH9kwEFv5h0+/YeHTLieWP7F4wWq4JsKFuNWG+fYh/KF+8rAtgdj5zb2mm+DVA==}
+ dependencies:
+ fast-glob: 3.2.12
+ minimatch: 5.1.6
+ mkdirp: 1.0.4
+ path-browserify: 1.0.1
+ dev: true
+
/@tsconfig/node10/1.0.9:
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
@@ -6105,6 +6436,10 @@ packages:
/@tsconfig/node16/1.0.3:
resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==}
+ /@types/argparse/1.0.38:
+ resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
+ dev: true
+
/@types/aria-query/5.0.1:
resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
dev: true
@@ -6154,6 +6489,16 @@ packages:
'@types/responselike': 1.0.0
dev: true
+ /@types/chai-subset/1.3.3:
+ resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
+ dependencies:
+ '@types/chai': 4.3.4
+ dev: true
+
+ /@types/chai/4.3.4:
+ resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==}
+ dev: true
+
/@types/connect-history-api-fallback/1.3.5:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
@@ -6630,6 +6975,12 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
+ /@vitest/ui/0.25.8:
+ resolution: {integrity: sha512-wfuhghldD5QHLYpS46GK8Ru8P3XcMrWvFjRQD21KNzc9Y/qtJsqoC8KmT6xWVkMNw4oHYixpo3a4ZySRJdserw==}
+ dependencies:
+ sirv: 2.0.2
+ dev: true
+
/@webassemblyjs/ast/1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
dependencies:
@@ -6885,6 +7236,13 @@ packages:
acorn-walk: 7.2.0
dev: true
+ /acorn-globals/7.0.1:
+ resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
+ dependencies:
+ acorn: 8.8.2
+ acorn-walk: 8.2.0
+ dev: true
+
/acorn-import-assertions/1.8.0_acorn@8.8.2:
resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
peerDependencies:
@@ -7148,6 +7506,10 @@ packages:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
+ /assertion-error/1.1.0:
+ resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ dev: true
+
/ast-types-flow/0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
@@ -7744,6 +8106,19 @@ packages:
/caseless/0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
+ /chai/4.3.7:
+ resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
+ engines: {node: '>=4'}
+ dependencies:
+ assertion-error: 1.1.0
+ check-error: 1.0.2
+ deep-eql: 4.1.3
+ get-func-name: 2.0.0
+ loupe: 2.3.6
+ pathval: 1.1.1
+ type-detect: 4.0.8
+ dev: true
+
/chalk/2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -7826,6 +8201,10 @@ packages:
/chardet/0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ /check-error/1.0.2:
+ resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
+ dev: true
+
/check-more-types/2.24.0:
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
engines: {node: '>= 0.8.0'}
@@ -7955,6 +8334,10 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+ /code-block-writer/11.0.3:
+ resolution: {integrity: sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw==}
+ dev: true
+
/collect-v8-coverage/1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
@@ -7981,6 +8364,11 @@ packages:
/colorette/2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
+ /colors/1.2.5:
+ resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==}
+ engines: {node: '>=0.1.90'}
+ dev: true
+
/combined-stream/1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -8003,6 +8391,13 @@ packages:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
+ /commander/9.5.0:
+ resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
+ engines: {node: ^12.20.0 || >=14}
+ requiresBuild: true
+ dev: true
+ optional: true
+
/common-tags/1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
@@ -8617,6 +9012,13 @@ packages:
/dedent/0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
+ /deep-eql/4.1.3:
+ resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ engines: {node: '>=6'}
+ dependencies:
+ type-detect: 4.0.8
+ dev: true
+
/deep-equal/2.2.0:
resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
dependencies:
@@ -8890,7 +9292,6 @@ packages:
/entities/4.4.0:
resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
engines: {node: '>=0.12'}
- dev: false
/errno/0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
@@ -8984,6 +9385,35 @@ packages:
is-symbol: 1.0.4
dev: true
+ /esbuild/0.17.13:
+ resolution: {integrity: sha512-4ixMwdErBcQHgTBeoxnowENCPKWFAGxgTyKHMK8gqn9sZaC7ZNWFKtim16g2rzQ2b/FYyy3lIUUJboFtjolhqg==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.17.13
+ '@esbuild/android-arm64': 0.17.13
+ '@esbuild/android-x64': 0.17.13
+ '@esbuild/darwin-arm64': 0.17.13
+ '@esbuild/darwin-x64': 0.17.13
+ '@esbuild/freebsd-arm64': 0.17.13
+ '@esbuild/freebsd-x64': 0.17.13
+ '@esbuild/linux-arm': 0.17.13
+ '@esbuild/linux-arm64': 0.17.13
+ '@esbuild/linux-ia32': 0.17.13
+ '@esbuild/linux-loong64': 0.17.13
+ '@esbuild/linux-mips64el': 0.17.13
+ '@esbuild/linux-ppc64': 0.17.13
+ '@esbuild/linux-riscv64': 0.17.13
+ '@esbuild/linux-s390x': 0.17.13
+ '@esbuild/linux-x64': 0.17.13
+ '@esbuild/netbsd-x64': 0.17.13
+ '@esbuild/openbsd-x64': 0.17.13
+ '@esbuild/sunos-x64': 0.17.13
+ '@esbuild/win32-arm64': 0.17.13
+ '@esbuild/win32-ia32': 0.17.13
+ '@esbuild/win32-x64': 0.17.13
+
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
@@ -9377,6 +9807,10 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
+ /estree-walker/2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+ dev: true
+
/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
@@ -10010,6 +10444,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
+ /get-func-name/2.0.0:
+ resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
+ dev: true
+
/get-intrinsic/1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
@@ -10672,6 +11110,11 @@ packages:
engines: {node: '>=12.2'}
dev: false
+ /import-lazy/4.0.0:
+ resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
+ engines: {node: '>=8'}
+ dev: true
+
/import-local/3.1.0:
resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
@@ -11706,6 +12149,10 @@ packages:
hasBin: true
dev: false
+ /jju/1.4.0:
+ resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ dev: true
+
/jose/4.13.1:
resolution: {integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==}
dev: false
@@ -11781,6 +12228,47 @@ packages:
- utf-8-validate
dev: true
+ /jsdom/20.0.3:
+ resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ dependencies:
+ abab: 2.0.6
+ acorn: 8.8.2
+ acorn-globals: 7.0.1
+ cssom: 0.5.0
+ cssstyle: 2.3.0
+ data-urls: 3.0.2
+ decimal.js: 10.4.3
+ domexception: 4.0.0
+ escodegen: 2.0.0
+ form-data: 4.0.0
+ html-encoding-sniffer: 3.0.0
+ http-proxy-agent: 5.0.0
+ https-proxy-agent: 5.0.1
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.2
+ parse5: 7.1.2
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.2
+ w3c-xmlserializer: 4.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 2.0.0
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
+ ws: 8.13.0
+ xml-name-validator: 4.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: true
+
/jsesc/0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
@@ -11966,6 +12454,10 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
+ /kolorist/1.7.0:
+ resolution: {integrity: sha512-ymToLHqL02udwVdbkowNpzjFd6UzozMtshPQKVi5k1EjKRqKqBrOnE9QbLEb0/pV76SAiIT13hdL8R6suc+f3g==}
+ dev: true
+
/language-subtag-registry/0.3.22:
resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: true
@@ -12189,6 +12681,11 @@ packages:
emojis-list: 3.0.0
json5: 2.2.3
+ /local-pkg/0.4.3:
+ resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
+ engines: {node: '>=14'}
+ dev: true
+
/localforage/1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
dependencies:
@@ -12221,11 +12718,9 @@ packages:
/lodash.get/4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
- dev: false
/lodash.isequal/4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
- dev: false
/lodash.isfunction/3.0.9:
resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
@@ -12320,6 +12815,12 @@ packages:
dependencies:
js-tokens: 4.0.0
+ /loupe/2.3.6:
+ resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
+ dependencies:
+ get-func-name: 2.0.0
+ dev: true
+
/lower-case-first/2.0.2:
resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
dependencies:
@@ -12607,6 +13108,11 @@ packages:
hasBin: true
dev: false
+ /mrmime/1.0.1:
+ resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ engines: {node: '>=10'}
+ dev: true
+
/ms/2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -13286,6 +13792,12 @@ packages:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: true
+ /parse5/7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ dependencies:
+ entities: 4.4.0
+ dev: true
+
/parseurl/1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -13299,7 +13811,6 @@ packages:
/path-browserify/1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- dev: false
/path-case/3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
@@ -13352,6 +13863,10 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
+ /pathval/1.1.1:
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ dev: true
+
/peek-readable/5.0.0:
resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==}
engines: {node: '>=14.16'}
@@ -14188,6 +14703,13 @@ packages:
resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
engines: {node: '>=10'}
+ /resolve/1.19.0:
+ resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
+ dependencies:
+ is-core-module: 2.11.0
+ path-parse: 1.0.7
+ dev: true
+
/resolve/1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
@@ -14242,6 +14764,21 @@ packages:
hasBin: true
dev: false
+ /rollup/2.79.1:
+ resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /rollup/3.20.2:
+ resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
+
/run-async/2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
@@ -14323,6 +14860,13 @@ packages:
xmlchars: 2.2.0
dev: true
+ /saxes/6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+ dependencies:
+ xmlchars: 2.2.0
+ dev: true
+
/scheduler/0.23.0:
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
@@ -14516,6 +15060,15 @@ packages:
resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==}
dev: false
+ /sirv/2.0.2:
+ resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@polka/url': 1.0.0-next.21
+ mrmime: 1.0.1
+ totalist: 3.0.0
+ dev: true
+
/sisteransi/1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
@@ -14882,6 +15435,12 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ /strip-literal/1.0.1:
+ resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==}
+ dependencies:
+ acorn: 8.8.2
+ dev: true
+
/strip-outer/2.0.0:
resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -15173,6 +15732,20 @@ packages:
engines: {node: '>=6'}
dev: false
+ /tinybench/2.4.0:
+ resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==}
+ dev: true
+
+ /tinypool/0.3.1:
+ resolution: {integrity: sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==}
+ engines: {node: '>=14.0.0'}
+ dev: true
+
+ /tinyspy/1.1.1:
+ resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==}
+ engines: {node: '>=14.0.0'}
+ dev: true
+
/title-case/3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
dependencies:
@@ -15227,6 +15800,11 @@ packages:
ieee754: 1.2.1
dev: true
+ /totalist/3.0.0:
+ resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==}
+ engines: {node: '>=6'}
+ dev: true
+
/tough-cookie/2.5.0:
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
engines: {node: '>=0.8'}
@@ -15333,6 +15911,13 @@ packages:
resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==}
dev: false
+ /ts-morph/17.0.1:
+ resolution: {integrity: sha512-10PkHyXmrtsTvZSL+cqtJLTgFXkU43Gd0JCc0Rw6GchWbqKe0Rwgt1v3ouobTZwQzF1mGhDeAlWYBMGRV7y+3g==}
+ dependencies:
+ '@ts-morph/common': 0.18.1
+ code-block-writer: 11.0.3
+ dev: true
+
/ts-node/10.9.1_@swc+core@1.3.42:
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
@@ -15458,6 +16043,19 @@ packages:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
+ /tsconfck/2.1.1_typescript@4.8.4:
+ resolution: {integrity: sha512-ZPCkJBKASZBmBUNqGHmRhdhM8pJYDdOXp4nRgj/O0JwUwsMq50lCDRQP/M5GBNAA0elPrq4gAeu4dkaVCuKWww==}
+ engines: {node: ^14.13.1 || ^16 || >=18}
+ hasBin: true
+ peerDependencies:
+ typescript: ^4.3.5 || ^5.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ typescript: 4.8.4
+ dev: true
+
/tsconfig-paths-webpack-plugin/4.0.0:
resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==}
engines: {node: '>=10.13.0'}
@@ -15780,6 +16378,11 @@ packages:
spdx-expression-parse: 3.0.1
dev: true
+ /validator/13.9.0:
+ resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==}
+ engines: {node: '>= 0.10'}
+ dev: true
+
/value-or-promise/1.0.11:
resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
engines: {node: '>=12'}
@@ -15802,6 +16405,184 @@ packages:
core-util-is: 1.0.2
extsprintf: 1.3.0
+ /vite-plugin-dts/1.7.3_ibxihpjazi5khnqkke2rzmiwcu:
+ resolution: {integrity: sha512-u3t45p6fTbzUPMkwYe0ESwuUeiRMlwdPfD3dRyDKUwLe2WmEYcFyVp2o9/ke2EMrM51lQcmNWdV9eLcgjD1/ng==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: '>=2.9.0'
+ dependencies:
+ '@microsoft/api-extractor': 7.34.4_@types+node@18.11.9
+ '@rollup/pluginutils': 5.0.2
+ '@rushstack/node-core-library': 3.55.2_@types+node@18.11.9
+ debug: 4.3.4
+ fast-glob: 3.2.12
+ fs-extra: 10.1.0
+ kolorist: 1.7.0
+ ts-morph: 17.0.1
+ vite: 4.2.1_@types+node@18.11.9
+ transitivePeerDependencies:
+ - '@types/node'
+ - rollup
+ - supports-color
+ dev: true
+
+ /vite-plugin-eslint/1.8.1_eslint@8.15.0+vite@4.2.1:
+ resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==}
+ peerDependencies:
+ eslint: '>=7'
+ vite: '>=2'
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ '@types/eslint': 8.21.1
+ eslint: 8.15.0
+ rollup: 2.79.1
+ vite: 4.2.1_@types+node@18.11.9
+ dev: true
+
+ /vite-plugin-static-copy/0.13.1_vite@4.2.1:
+ resolution: {integrity: sha512-KwIcGBT1aOxSq+laK3VmSngoEa3HXWj/6ZEXdv+y59eZ7p/XSuPahoDo+CfYW22JjTdnstgeKWiX+78KNgDu6g==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0
+ dependencies:
+ chokidar: 3.5.3
+ fast-glob: 3.2.12
+ fs-extra: 11.1.0
+ picocolors: 1.0.0
+ vite: 4.2.1_@types+node@18.11.9
+ dev: false
+
+ /vite-tsconfig-paths/4.0.7_ykl3btyxss5evtm5m64d6se6z4:
+ resolution: {integrity: sha512-MwIYaby6kcbQGZqMH+gAK6h0UYQGOkjsuAgw4q6bP/5vWkn8VKvnmLuCQHA2+IzHAJHnE8OFTO4lnJLFMf9+7Q==}
+ peerDependencies:
+ vite: '*'
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ debug: 4.3.4
+ globrex: 0.1.2
+ tsconfck: 2.1.1_typescript@4.8.4
+ vite: 4.2.1_@types+node@18.11.9
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /vite/4.2.1_@types+node@18.11.9:
+ resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 18.11.9
+ esbuild: 0.17.13
+ postcss: 8.4.21
+ resolve: 1.22.1
+ rollup: 3.20.2
+ optionalDependencies:
+ fsevents: 2.3.2
+
+ /vite/4.2.1_@types+node@18.15.0:
+ resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 18.15.0
+ esbuild: 0.17.13
+ postcss: 8.4.21
+ resolve: 1.22.1
+ rollup: 3.20.2
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /vitest/0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq:
+ resolution: {integrity: sha512-X75TApG2wZTJn299E/TIYevr4E9/nBo1sUtZzn0Ci5oK8qnpZAZyhwg0qCeMSakGIWtc6oRwcQFyFfW14aOFWg==}
+ engines: {node: '>=v14.16.0'}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@vitest/browser': '*'
+ '@vitest/ui': '*'
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ dependencies:
+ '@types/chai': 4.3.4
+ '@types/chai-subset': 1.3.3
+ '@types/node': 18.15.0
+ '@vitest/ui': 0.25.8
+ acorn: 8.8.2
+ acorn-walk: 8.2.0
+ chai: 4.3.7
+ debug: 4.3.4
+ jsdom: 20.0.3
+ local-pkg: 0.4.3
+ source-map: 0.6.1
+ strip-literal: 1.0.1
+ tinybench: 2.4.0
+ tinypool: 0.3.1
+ tinyspy: 1.1.1
+ vite: 4.2.1_@types+node@18.15.0
+ transitivePeerDependencies:
+ - less
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
/w3c-hr-time/1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
deprecated: Use your platform's native performance.now() and performance.timeOrigin.
@@ -15816,6 +16597,13 @@ packages:
xml-name-validator: 4.0.0
dev: true
+ /w3c-xmlserializer/4.0.0:
+ resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
+ engines: {node: '>=14'}
+ dependencies:
+ xml-name-validator: 4.0.0
+ dev: true
+
/walker/1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
@@ -16250,3 +17038,15 @@ packages:
/yocto-queue/0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
+
+ /z-schema/5.0.5:
+ resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
+ engines: {node: '>=8.0.0'}
+ hasBin: true
+ dependencies:
+ lodash.get: 4.4.2
+ lodash.isequal: 4.5.0
+ validator: 13.9.0
+ optionalDependencies:
+ commander: 9.5.0
+ dev: true
From fb60937b29c731baf7566a53dee0c0651dab12e0 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Wed, 29 Mar 2023 18:39:24 +0100
Subject: [PATCH 02/20] build: add minor changeset
---
.changeset/mean-hats-add.md | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 .changeset/mean-hats-add.md
diff --git a/.changeset/mean-hats-add.md b/.changeset/mean-hats-add.md
new file mode 100644
index 00000000..710cedc1
--- /dev/null
+++ b/.changeset/mean-hats-add.md
@@ -0,0 +1,5 @@
+---
+'nx-mesh': minor
+---
+
+Bundle `nx-mesh` with vite and reduce dependency list
From 74c39c48315d4158dc8c360e6663bd4b7a3ad17c Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Wed, 29 Mar 2023 18:51:18 +0100
Subject: [PATCH 03/20] build: rebuild lockfile
---
pnpm-lock.yaml | 6836 +++++++++++++++++++++++-------------------------
1 file changed, 3244 insertions(+), 3592 deletions(-)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e270db25..6a7daa87 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,240 +1,330 @@
-lockfileVersion: 5.4
+lockfileVersion: '6.0'
importers:
.:
- specifiers:
- '@changesets/changelog-github': 0.4.8
- '@changesets/cli': 2.26.0
- '@commitlint/cli': 17.4.4
- '@commitlint/config-angular': 17.4.4
- '@graphql-codegen/cli': 3.2.2
- '@graphql-codegen/client-preset': 2.1.1
- '@graphql-mesh/cache-file': 0.9.47
- '@graphql-mesh/cli': 0.82.27
- '@graphql-mesh/graphql': 0.34.10
- '@graphql-mesh/json-schema': 0.37.21
- '@graphql-mesh/mysql': 0.19.17
- '@graphql-mesh/neo4j': 0.22.19
- '@graphql-mesh/new-openapi': 0.8.2
- '@graphql-mesh/odata': 0.22.18
- '@graphql-mesh/openapi': 0.35.23
- '@graphql-mesh/plugin-mock': 0.1.18
- '@graphql-mesh/plugin-snapshot': 0.1.20
- '@graphql-mesh/runtime': 0.46.18
- '@graphql-mesh/soap': 0.17.20
- '@graphql-typed-document-node/core': 3.1.2
- '@microsoft/eslint-formatter-sarif': 3.0.0
- '@nrwl/cypress': 15.7.1
- '@nrwl/devkit': 15.7.1
- '@nrwl/eslint-plugin-nx': 15.7.1
- '@nrwl/jest': 15.7.1
- '@nrwl/js': 15.7.1
- '@nrwl/linter': 15.7.1
- '@nrwl/next': 15.7.1
- '@nrwl/node': 15.7.1
- '@nrwl/nx-cloud': 15.2.1
- '@nrwl/nx-plugin': 15.7.1
- '@nrwl/react': 15.7.1
- '@nrwl/vite': 15.7.1
- '@nrwl/workspace': 15.7.1
- '@swc-node/register': 1.6.2
- '@swc/cli': 0.1.62
- '@swc/core': 1.3.42
- '@swc/helpers': 0.4.14
- '@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.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
- '@types/watchpack': 2.4.0
- '@typescript-eslint/eslint-plugin': 5.56.0
- '@typescript-eslint/parser': 5.56.0
- '@vitest/ui': ^0.25.8
- babel-jest: 28.1.1
- babel-plugin-styled-components: 1.10.7
- cypress: ^12.2.0
- eslint: 8.15.0
- eslint-config-next: 13.1.1
- 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.11
- eslint-plugin-react-hooks: 4.6.0
- fs-extra: 10.1.0
- get-port: 5.1.1
- graphql: 16.6.0
- husky: 8.0.3
- jest: 28.1.1
- jest-environment-jsdom: 28.1.1
- jest_workaround: ^0.69.0
- jsdom: ~20.0.3
- jsonc-eslint-parser: 2.2.0
- lint-staged: 13.2.0
- next: 13.1.1
- nx: 15.7.1
- prettier: 2.8.6
- 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.6
- ts-jest: 28.0.5
- ts-node: 10.9.1
- tslib: 2.5.0
- type-fest: 3.6.1
- typescript: 4.8.4
- vite: ^4.0.1
- vite-plugin-dts: ~1.7.1
- vite-plugin-eslint: ^1.8.1
- vite-plugin-static-copy: ^0.13.1
- vite-tsconfig-paths: ^4.0.2
- vitest: ^0.25.8
- watchpack: 2.4.0
dependencies:
- '@graphql-codegen/cli': 3.2.2_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-codegen/client-preset': 2.1.1_graphql@16.6.0
- '@graphql-mesh/cache-file': 0.9.47_graphql@16.6.0
- '@graphql-mesh/cli': 0.82.27_fy5xw2zfnm52di35efvwkyateq
- '@graphql-mesh/graphql': 0.34.10_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/json-schema': 0.37.21_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/mysql': 0.19.17_graphql@16.6.0
- '@graphql-mesh/neo4j': 0.22.19_graphql@16.6.0
- '@graphql-mesh/new-openapi': 0.8.2_graphql@16.6.0
- '@graphql-mesh/odata': 0.22.18_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/openapi': 0.35.23_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/plugin-mock': 0.1.18_graphql@16.6.0
- '@graphql-mesh/plugin-snapshot': 0.1.20_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/runtime': 0.46.18_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/soap': 0.17.20_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/next': 15.7.1_jmpzvycvjmzqxbqwghcstg5ecy
- '@swc/helpers': 0.4.14
- fs-extra: 10.1.0
- get-port: 5.1.1
- graphql: 16.6.0
- jest_workaround: 0.69.0_abnhyjwpkpf7j5qrddpfnnus5i
- next: 13.1.1_biqbaboplfbrettd7655fr4n2y
- react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- react-is: 18.2.0
- styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba
- tslib: 2.5.0
- vite-plugin-static-copy: 0.13.1_vite@4.2.1
- watchpack: 2.4.0
+ '@graphql-codegen/cli':
+ specifier: 3.2.2
+ version: 3.2.2(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-codegen/client-preset':
+ specifier: 2.1.1
+ version: 2.1.1(graphql@16.6.0)
+ '@graphql-mesh/cache-file':
+ specifier: 0.9.47
+ version: 0.9.47(graphql@16.6.0)
+ '@graphql-mesh/cli':
+ specifier: 0.82.27
+ version: 0.82.27(@swc/core@1.3.42)(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/graphql':
+ specifier: 0.34.10
+ version: 0.34.10(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/json-schema':
+ specifier: 0.37.21
+ version: 0.37.21(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/mysql':
+ specifier: 0.19.17
+ version: 0.19.17(graphql@16.6.0)
+ '@graphql-mesh/neo4j':
+ specifier: 0.22.19
+ version: 0.22.19(graphql@16.6.0)
+ '@graphql-mesh/new-openapi':
+ specifier: 0.8.2
+ version: 0.8.2(graphql@16.6.0)
+ '@graphql-mesh/odata':
+ specifier: 0.22.18
+ version: 0.22.18(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/openapi':
+ specifier: 0.35.23
+ version: 0.35.23(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/plugin-mock':
+ specifier: 0.1.18
+ version: 0.1.18(graphql@16.6.0)
+ '@graphql-mesh/plugin-snapshot':
+ specifier: 0.1.20
+ version: 0.1.20(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/runtime':
+ specifier: 0.46.18
+ version: 0.46.18(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/soap':
+ specifier: 0.17.20
+ version: 0.17.20(graphql@16.6.0)
+ '@graphql-typed-document-node/core':
+ specifier: 3.1.2
+ version: 3.1.2(graphql@16.6.0)
+ '@nrwl/devkit':
+ specifier: 15.7.1
+ version: 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/next':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(cypress@12.7.0)(eslint@8.15.0)(next@13.1.1)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@swc/helpers':
+ specifier: 0.4.14
+ version: 0.4.14
+ fs-extra:
+ specifier: 10.1.0
+ version: 10.1.0
+ get-port:
+ specifier: 5.1.1
+ version: 5.1.1
+ graphql:
+ specifier: 16.6.0
+ version: 16.6.0
+ jest_workaround:
+ specifier: ^0.69.0
+ version: 0.69.0(@swc/core@1.3.42)(@swc/jest@0.2.20)
+ next:
+ specifier: 13.1.1
+ version: 13.1.1(react-dom@18.2.0)(react@18.2.0)
+ react:
+ specifier: 18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-is:
+ specifier: 18.2.0
+ version: 18.2.0
+ styled-components:
+ specifier: 5.3.6
+ version: 5.3.6(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
+ tslib:
+ specifier: 2.5.0
+ version: 2.5.0
+ vite-plugin-static-copy:
+ specifier: ^0.13.1
+ version: 0.13.1(vite@4.2.1)
+ watchpack:
+ specifier: 2.4.0
+ version: 2.4.0
devDependencies:
- '@changesets/changelog-github': 0.4.8
- '@changesets/cli': 2.26.0
- '@commitlint/cli': 17.4.4_@swc+core@1.3.42
- '@commitlint/config-angular': 17.4.4
- '@microsoft/eslint-formatter-sarif': 3.0.0
- '@nrwl/cypress': 15.7.1_cikm2sai6zdse2hr3skwwhi3pq
- '@nrwl/eslint-plugin-nx': 15.7.1_ts3grcxlv7w34ma47oc43ckm6u
- '@nrwl/jest': 15.7.1_x2izlteguqig6fi4rlok6uurpq
- '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
- '@nrwl/node': 15.7.1_vcikiox2al4nh7lor6nffaclbi
- '@nrwl/nx-cloud': 15.2.1
- '@nrwl/nx-plugin': 15.7.1_vcikiox2al4nh7lor6nffaclbi
- '@nrwl/react': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/vite': 15.7.1_nc4yi2csj5owjlmjsrwcdxdxcm
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
- '@swc-node/register': 1.6.2_un75kqwz4lxw3jlrcmkimcdqmi
- '@swc/cli': 0.1.62_@swc+core@1.3.42
- '@swc/core': 1.3.42
- '@swc/jest': 0.2.20_@swc+core@1.3.42
- '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y
- '@types/fs-extra': 9.0.13
- '@types/jest': 28.1.8
- '@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
- '@types/watchpack': 2.4.0
- '@typescript-eslint/eslint-plugin': 5.56.0_ldbltef7towbem5h7qak2pmw6e
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- '@vitest/ui': 0.25.8
- babel-jest: 28.1.1
- babel-plugin-styled-components: 1.10.7_styled-components@5.3.6
- cypress: 12.7.0
- eslint: 8.15.0
- eslint-config-next: 13.1.1_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_lcwgzz7bbfy32gsvnx4mhzufue
- eslint-plugin-jsx-a11y: 6.6.1_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
- husky: 8.0.3
- jest: 28.1.1_odkjkoia5xunhxkdrka32ib6vi
- jest-environment-jsdom: 28.1.1
- jsdom: 20.0.3
- jsonc-eslint-parser: 2.2.0
- lint-staged: 13.2.0
- nx: 15.7.1_cuaypwimdup25vwsqc5i3ttbya
- prettier: 2.8.6
- react-test-renderer: 18.2.0_react@18.2.0
- regenerator-runtime: 0.13.7
- ts-jest: 28.0.5_c57pmzltpvrsqbtqxiqe3cr3ra
- ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
- type-fest: 3.6.1
- typescript: 4.8.4
- vite: 4.2.1_@types+node@18.11.9
- vite-plugin-dts: 1.7.3_ibxihpjazi5khnqkke2rzmiwcu
- vite-plugin-eslint: 1.8.1_eslint@8.15.0+vite@4.2.1
- vite-tsconfig-paths: 4.0.7_ykl3btyxss5evtm5m64d6se6z4
- vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq
+ '@changesets/changelog-github':
+ specifier: 0.4.8
+ version: 0.4.8
+ '@changesets/cli':
+ specifier: 2.26.0
+ version: 2.26.0
+ '@commitlint/cli':
+ specifier: 17.4.4
+ version: 17.4.4(@swc/core@1.3.42)
+ '@commitlint/config-angular':
+ specifier: 17.4.4
+ version: 17.4.4
+ '@microsoft/eslint-formatter-sarif':
+ specifier: 3.0.0
+ version: 3.0.0
+ '@nrwl/cypress':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/eslint-plugin-nx':
+ specifier: 15.7.1
+ version: 15.7.1(@typescript-eslint/parser@5.56.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/jest':
+ specifier: 15.7.1
+ version: 15.7.1(@types/node@18.11.9)(nx@15.7.1)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/js':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter':
+ specifier: 15.7.1
+ version: 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/node':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/nx-cloud':
+ specifier: 15.2.1
+ version: 15.2.1
+ '@nrwl/nx-plugin':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/react':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/vite':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)(vite@4.2.1)(vitest@0.25.8)
+ '@nrwl/workspace':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@swc-node/register':
+ specifier: 1.6.2
+ version: 1.6.2(@swc/core@1.3.42)(typescript@4.8.4)
+ '@swc/cli':
+ specifier: 0.1.62
+ version: 0.1.62(@swc/core@1.3.42)
+ '@swc/core':
+ specifier: 1.3.42
+ version: 1.3.42
+ '@swc/jest':
+ specifier: 0.2.20
+ version: 0.2.20(@swc/core@1.3.42)
+ '@testing-library/react':
+ specifier: 13.4.0
+ version: 13.4.0(react-dom@18.2.0)(react@18.2.0)
+ '@types/fs-extra':
+ specifier: 9.0.13
+ version: 9.0.13
+ '@types/jest':
+ specifier: 28.1.8
+ version: 28.1.8
+ '@types/node':
+ specifier: 18.11.9
+ version: 18.11.9
+ '@types/react':
+ specifier: 18.0.25
+ version: 18.0.25
+ '@types/react-dom':
+ specifier: 18.0.9
+ version: 18.0.9
+ '@types/react-is':
+ specifier: 17.0.3
+ version: 17.0.3
+ '@types/styled-components':
+ specifier: 5.1.26
+ version: 5.1.26
+ '@types/watchpack':
+ specifier: 2.4.0
+ version: 2.4.0
+ '@typescript-eslint/eslint-plugin':
+ specifier: 5.56.0
+ version: 5.56.0(@typescript-eslint/parser@5.56.0)(eslint@8.15.0)(typescript@4.8.4)
+ '@typescript-eslint/parser':
+ specifier: 5.56.0
+ version: 5.56.0(eslint@8.15.0)(typescript@4.8.4)
+ '@vitest/ui':
+ specifier: ^0.25.8
+ version: 0.25.8
+ babel-jest:
+ specifier: 28.1.1
+ version: 28.1.1
+ babel-plugin-styled-components:
+ specifier: 1.10.7
+ version: 1.10.7(styled-components@5.3.6)
+ cypress:
+ specifier: ^12.2.0
+ version: 12.7.0
+ eslint:
+ specifier: 8.15.0
+ version: 8.15.0
+ eslint-config-next:
+ specifier: 13.1.1
+ version: 13.1.1(eslint@8.15.0)(typescript@4.8.4)
+ eslint-config-prettier:
+ specifier: 8.1.0
+ version: 8.1.0(eslint@8.15.0)
+ eslint-plugin-cypress:
+ specifier: 2.12.1
+ version: 2.12.1(eslint@8.15.0)
+ eslint-plugin-import:
+ specifier: 2.26.0
+ version: 2.26.0(@typescript-eslint/parser@5.56.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0)
+ eslint-plugin-jsx-a11y:
+ specifier: 6.6.1
+ version: 6.6.1(eslint@8.15.0)
+ eslint-plugin-react:
+ specifier: 7.31.11
+ version: 7.31.11(eslint@8.15.0)
+ eslint-plugin-react-hooks:
+ specifier: 4.6.0
+ version: 4.6.0(eslint@8.15.0)
+ husky:
+ specifier: 8.0.3
+ version: 8.0.3
+ jest:
+ specifier: 28.1.1
+ version: 28.1.1(@types/node@18.11.9)(ts-node@10.9.1)
+ jest-environment-jsdom:
+ specifier: 28.1.1
+ version: 28.1.1
+ jsdom:
+ specifier: ~20.0.3
+ version: 20.0.3
+ jsonc-eslint-parser:
+ specifier: 2.2.0
+ version: 2.2.0
+ lint-staged:
+ specifier: 13.2.0
+ version: 13.2.0
+ nx:
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
+ prettier:
+ specifier: 2.8.6
+ version: 2.8.6
+ react-test-renderer:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ regenerator-runtime:
+ specifier: 0.13.7
+ version: 0.13.7
+ ts-jest:
+ specifier: 28.0.5
+ version: 28.0.5(babel-jest@28.1.1)(jest@28.1.1)(typescript@4.8.4)
+ ts-node:
+ specifier: 10.9.1
+ version: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
+ type-fest:
+ specifier: 3.6.1
+ version: 3.6.1
+ typescript:
+ specifier: 4.8.4
+ version: 4.8.4
+ vite:
+ specifier: ^4.0.1
+ version: 4.2.1(@types/node@18.11.9)
+ vite-plugin-dts:
+ specifier: ~1.7.1
+ version: 1.7.3(@types/node@18.11.9)(vite@4.2.1)
+ vite-plugin-eslint:
+ specifier: ^1.8.1
+ version: 1.8.1(eslint@8.15.0)(vite@4.2.1)
+ vite-tsconfig-paths:
+ specifier: ^4.0.2
+ version: 4.0.7(typescript@4.8.4)(vite@4.2.1)
+ vitest:
+ specifier: ^0.25.8
+ version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)
packages/nx-mesh:
- specifiers:
- '@nrwl/cypress': ^15.7.1
- '@nrwl/devkit': ^15.7.1
- '@nrwl/js': ^15.7.1
- '@nrwl/linter': ^15.7.1
- '@nrwl/node': ^15.7.1
- '@nrwl/workspace': ^15.7.1
- '@swc-node/register': ^1.6.2
- '@swc/core': ^1.3.42
- '@swc/helpers': ^0.4.14
- fs-extra: ^10.1.0
- get-port: 5.1.1
- tslib: ^2.5.0
- type-fest: ^2.18.0
- watchpack: ^2.4.0
- dependencies:
- '@nrwl/cypress': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/devkit': 15.8.5
- '@nrwl/js': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/linter': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/node': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/workspace': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@swc-node/register': 1.6.2_@swc+core@1.3.42
- '@swc/core': 1.3.42
- '@swc/helpers': 0.4.14
- fs-extra: 10.1.0
- get-port: 5.1.1
- tslib: 2.5.0
- type-fest: 2.18.0
- watchpack: 2.4.0
+ dependencies:
+ '@nrwl/cypress':
+ specifier: ^15.7.1
+ version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/devkit':
+ specifier: ^15.7.1
+ version: 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js':
+ specifier: ^15.7.1
+ version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter':
+ specifier: ^15.7.1
+ version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/node':
+ specifier: ^15.7.1
+ version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/workspace':
+ specifier: ^15.7.1
+ version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@swc-node/register':
+ specifier: ^1.6.2
+ version: 1.6.2(@swc/core@1.3.42)(typescript@4.8.4)
+ '@swc/core':
+ specifier: ^1.3.42
+ version: 1.3.42
+ '@swc/helpers':
+ specifier: ^0.4.14
+ version: 0.4.14
packages:
- /@ampproject/remapping/2.2.0:
+ /@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.17
- /@apollo/cache-control-types/1.0.2_graphql@16.6.0:
+ /@apollo/cache-control-types@1.0.2(graphql@16.6.0):
resolution: {integrity: sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==}
peerDependencies:
graphql: 14.x || 15.x || 16.x
@@ -242,7 +332,7 @@ packages:
graphql: 16.6.0
dev: false
- /@apollo/federation-internals/2.4.0_graphql@16.6.0:
+ /@apollo/federation-internals@2.4.0(graphql@16.6.0):
resolution: {integrity: sha512-ovfYwpq3s2LKNvLGg6bxcNlyrCllbF1JhNgQEOEOeAoy3TTmnYuxqd00H3bkT/5xpXvMpBc6+Di6qMkYcQM+Ww==}
engines: {node: '>=14.15.0'}
peerDependencies:
@@ -255,18 +345,18 @@ packages:
uuid: 9.0.0
dev: false
- /@apollo/subgraph/2.4.0_graphql@16.6.0:
+ /@apollo/subgraph@2.4.0(graphql@16.6.0):
resolution: {integrity: sha512-/njjzPkyzkh0FO2WvLV+I9mlsDWk3DhfOtCc+cmMx9p4mixgyyaRvYvx3tPjSPkMvkPw/cNidCVymuWJVOAu5A==}
engines: {node: '>=14.15.0'}
peerDependencies:
graphql: ^16.5.0
dependencies:
- '@apollo/cache-control-types': 1.0.2_graphql@16.6.0
- '@apollo/federation-internals': 2.4.0_graphql@16.6.0
+ '@apollo/cache-control-types': 1.0.2(graphql@16.6.0)
+ '@apollo/federation-internals': 2.4.0(graphql@16.6.0)
graphql: 16.6.0
dev: false
- /@ardatan/relay-compiler/12.0.0_graphql@16.6.0:
+ /@ardatan/relay-compiler@12.0.0(graphql@16.6.0):
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==}
hasBin: true
peerDependencies:
@@ -276,9 +366,9 @@ packages:
'@babel/generator': 7.21.1
'@babel/parser': 7.21.2
'@babel/runtime': 7.21.0
- '@babel/traverse': 7.21.2
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
- babel-preset-fbjs: 3.4.0_@babel+core@7.21.0
+ babel-preset-fbjs: 3.4.0(@babel/core@7.21.0)
chalk: 4.1.2
fb-watchman: 2.0.2
fbjs: 3.0.4
@@ -295,7 +385,7 @@ packages:
- supports-color
dev: false
- /@ardatan/sync-fetch/0.0.1:
+ /@ardatan/sync-fetch@0.0.1:
resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==}
engines: {node: '>=14'}
dependencies:
@@ -304,39 +394,39 @@ packages:
- encoding
dev: false
- /@babel/code-frame/7.18.6:
+ /@babel/code-frame@7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.21.0:
+ /@babel/compat-data@7.21.0:
resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.21.0:
+ /@babel/core@7.21.0:
resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
'@babel/generator': 7.21.1
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-module-transforms': 7.21.2
'@babel/helpers': 7.21.0
'@babel/parser': 7.21.2
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
convert-source-map: 1.9.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/generator/7.21.1:
+ /@babel/generator@7.21.1:
resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -345,20 +435,20 @@ packages:
'@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
'@babel/types': 7.21.2
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0:
+ /@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -371,25 +461,7 @@ packages:
lru-cache: 5.1.1
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.21.0:
- resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.0:
+ /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -407,7 +479,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.0:
+ /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -417,57 +489,57 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.3.2
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0:
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.0):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
resolve: 1.22.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/helper-environment-visitor/7.18.9:
+ /@babel/helper-environment-visitor@7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-explode-assignable-expression/7.18.6:
+ /@babel/helper-explode-assignable-expression@7.18.6:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
'@babel/types': 7.21.2
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-member-expression-to-functions/7.21.0:
+ /@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-module-imports/7.18.6:
+ /@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-module-transforms/7.21.2:
+ /@babel/helper-module-transforms@7.21.2:
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -477,22 +549,22 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-plugin-utils/7.20.2:
+ /@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.0:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -506,7 +578,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-replace-supers/7.20.7:
+ /@babel/helper-replace-supers@7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -514,63 +586,63 @@ packages:
'@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
- /@babel/helper-simple-access/7.20.2:
+ /@babel/helper-simple-access@7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-split-export-declaration/7.18.6:
+ /@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.2
- /@babel/helper-string-parser/7.19.4:
+ /@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.21.0:
+ /@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-wrap-function/7.20.5:
+ /@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
- /@babel/helpers/7.21.0:
+ /@babel/helpers@7.21.0:
resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.21.2
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -578,14 +650,14 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.21.2:
+ /@babel/parser@7.21.2:
resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.21.2
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -594,7 +666,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -603,9 +675,9 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.0)
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -614,67 +686,52 @@ packages:
'@babel/core': 7.21.0
'@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.21.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-decorators/7.21.0:
- resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-create-class-features-plugin': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -682,9 +739,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0)
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -692,9 +749,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.0)
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -702,9 +759,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0)
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -712,9 +769,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0)
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -722,9 +779,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0)
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -732,9 +789,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0)
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -742,12 +799,12 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.0)
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -755,9 +812,9 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0)
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -766,21 +823,21 @@ packages:
'@babel/core': 7.21.0
'@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.21.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -788,31 +845,23 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-async-generators/7.8.4:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.0:
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.0):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -820,15 +869,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-bigint/7.8.3:
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -836,15 +877,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-properties/7.12.13:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.0:
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.0):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -852,7 +885,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.0:
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.0):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -861,16 +894,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-decorators/7.21.0:
- resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: false
-
- /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -879,7 +903,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -887,7 +911,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -895,7 +919,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -905,16 +929,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-import-assertions/7.20.0:
- resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: false
-
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0:
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.0):
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -923,15 +938,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-import-meta/7.10.4:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.21.0:
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.0):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -939,15 +946,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-json-strings/7.8.3:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -955,7 +954,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -965,15 +964,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.0:
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.0):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -981,15 +972,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -997,15 +980,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-numeric-separator/7.10.4:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.0:
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.0):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1013,15 +988,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-object-rest-spread/7.8.3:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1029,15 +996,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-optional-catch-binding/7.8.3:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1045,15 +1004,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-optional-chaining/7.8.3:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.0:
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.0):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1061,7 +1012,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.0:
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.0):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1070,16 +1021,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-top-level-await/7.14.5:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.0:
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.0):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1088,7 +1030,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.0:
+ /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.0):
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1097,7 +1039,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1106,7 +1048,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1115,11 +1057,11 @@ packages:
'@babel/core': 7.21.0
'@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.21.0
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1128,7 +1070,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1137,7 +1079,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1145,7 +1087,7 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -1156,7 +1098,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1166,7 +1108,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
- /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1175,17 +1117,17 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.0:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1194,7 +1136,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1204,7 +1146,7 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1212,10 +1154,10 @@ packages:
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.0)
dev: false
- /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1224,18 +1166,18 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.0:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.0:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1244,7 +1186,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1253,7 +1195,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0:
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.0):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1265,7 +1207,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.0:
+ /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.0):
resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1278,7 +1220,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.0:
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.0):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1292,7 +1234,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1304,17 +1246,17 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.0):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1323,7 +1265,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1335,7 +1277,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1344,7 +1286,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1353,7 +1295,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.21.0):
resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1363,7 +1305,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1373,17 +1315,17 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.0)
dev: false
- /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1393,11 +1335,11 @@ packages:
'@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.21.0
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0)
'@babel/types': 7.21.2
dev: false
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1408,7 +1350,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.0:
+ /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.0):
resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1418,7 +1360,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
regenerator-transform: 0.15.1
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1427,7 +1369,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1436,14 +1378,14 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1452,7 +1394,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0:
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.0):
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1462,7 +1404,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1471,7 +1413,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.0:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1480,7 +1422,7 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.0):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1489,20 +1431,20 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-typescript/7.21.0_@babel+core@7.21.0:
+ /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.0:
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.0):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1511,17 +1453,17 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.0:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
- /@babel/preset-env/7.20.2_@babel+core@7.21.0:
+ /@babel/preset-env@7.20.2(@babel/core@7.21.0):
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1529,96 +1471,96 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0
- '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0
- '@babel/preset-modules': 0.1.5_@babel+core@7.21.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.0)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.0)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.0)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.0)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.0)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.0)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.0)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.21.0)
'@babel/types': 7.21.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0)
core-js-compat: 3.29.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/preset-modules/0.1.5_@babel+core@7.21.0:
+ /@babel/preset-modules@0.1.5(@babel/core@7.21.0):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.0)
'@babel/types': 7.21.2
esutils: 2.0.3
- /@babel/preset-react/7.18.6_@babel+core@7.21.0:
+ /@babel/preset-react@7.18.6(@babel/core@7.21.0):
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1627,13 +1569,13 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.0)
dev: false
- /@babel/preset-typescript/7.21.0_@babel+core@7.21.0:
+ /@babel/preset-typescript@7.21.0(@babel/core@7.21.0):
resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1642,14 +1584,14 @@ packages:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /@babel/regjsgen/0.8.0:
+ /@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime-corejs3/7.21.0:
+ /@babel/runtime-corejs3@7.21.0:
resolution: {integrity: sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1657,13 +1599,13 @@ packages:
regenerator-runtime: 0.13.11
dev: true
- /@babel/runtime/7.21.0:
+ /@babel/runtime@7.21.0:
resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1671,24 +1613,7 @@ packages:
'@babel/parser': 7.21.2
'@babel/types': 7.21.2
- /@babel/traverse/7.21.2:
- resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.21.1
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.21.2
- '@babel/types': 7.21.2
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- /@babel/traverse/7.21.2_supports-color@5.5.0:
+ /@babel/traverse@7.21.2(supports-color@5.5.0):
resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1700,12 +1625,12 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.21.2
'@babel/types': 7.21.2
- debug: 4.3.4_supports-color@5.5.0
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types/7.21.2:
+ /@babel/types@7.21.2:
resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1713,10 +1638,10 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- /@bcoe/v8-coverage/0.2.3:
+ /@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- /@changesets/apply-release-plan/6.1.3:
+ /@changesets/apply-release-plan@6.1.3:
resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1734,7 +1659,7 @@ packages:
semver: 5.7.1
dev: true
- /@changesets/assemble-release-plan/5.2.3:
+ /@changesets/assemble-release-plan@5.2.3:
resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1745,13 +1670,13 @@ packages:
semver: 5.7.1
dev: true
- /@changesets/changelog-git/0.1.14:
+ /@changesets/changelog-git@0.1.14:
resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==}
dependencies:
'@changesets/types': 5.2.1
dev: true
- /@changesets/changelog-github/0.4.8:
+ /@changesets/changelog-github@0.4.8:
resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==}
dependencies:
'@changesets/get-github-info': 0.5.2
@@ -1761,7 +1686,7 @@ packages:
- encoding
dev: true
- /@changesets/cli/2.26.0:
+ /@changesets/cli@2.26.0:
resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==}
hasBin: true
dependencies:
@@ -1800,7 +1725,7 @@ packages:
tty-table: 4.1.6
dev: true
- /@changesets/config/2.3.0:
+ /@changesets/config@2.3.0:
resolution: {integrity: sha512-EgP/px6mhCx8QeaMAvWtRrgyxW08k/Bx2tpGT+M84jEdX37v3VKfh4Cz1BkwrYKuMV2HZKeHOh8sHvja/HcXfQ==}
dependencies:
'@changesets/errors': 0.1.4
@@ -1812,13 +1737,13 @@ packages:
micromatch: 4.0.5
dev: true
- /@changesets/errors/0.1.4:
+ /@changesets/errors@0.1.4:
resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==}
dependencies:
extendable-error: 0.1.7
dev: true
- /@changesets/get-dependents-graph/1.3.5:
+ /@changesets/get-dependents-graph@1.3.5:
resolution: {integrity: sha512-w1eEvnWlbVDIY8mWXqWuYE9oKhvIaBhzqzo4ITSJY9hgoqQ3RoBqwlcAzg11qHxv/b8ReDWnMrpjpKrW6m1ZTA==}
dependencies:
'@changesets/types': 5.2.1
@@ -1828,7 +1753,7 @@ packages:
semver: 5.7.1
dev: true
- /@changesets/get-github-info/0.5.2:
+ /@changesets/get-github-info@0.5.2:
resolution: {integrity: sha512-JppheLu7S114aEs157fOZDjFqUDpm7eHdq5E8SSR0gUBTEK0cNSHsrSR5a66xs0z3RWuo46QvA3vawp8BxDHvg==}
dependencies:
dataloader: 1.4.0
@@ -1837,7 +1762,7 @@ packages:
- encoding
dev: true
- /@changesets/get-release-plan/3.0.16:
+ /@changesets/get-release-plan@3.0.16:
resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1849,11 +1774,11 @@ packages:
'@manypkg/get-packages': 1.1.3
dev: true
- /@changesets/get-version-range-type/0.3.2:
+ /@changesets/get-version-range-type@0.3.2:
resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
dev: true
- /@changesets/git/2.0.0:
+ /@changesets/git@2.0.0:
resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1865,20 +1790,20 @@ packages:
spawndamnit: 2.0.0
dev: true
- /@changesets/logger/0.0.5:
+ /@changesets/logger@0.0.5:
resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==}
dependencies:
chalk: 2.4.2
dev: true
- /@changesets/parse/0.3.16:
+ /@changesets/parse@0.3.16:
resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==}
dependencies:
'@changesets/types': 5.2.1
js-yaml: 3.14.1
dev: true
- /@changesets/pre/1.0.14:
+ /@changesets/pre@1.0.14:
resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1888,7 +1813,7 @@ packages:
fs-extra: 7.0.1
dev: true
- /@changesets/read/0.5.9:
+ /@changesets/read@0.5.9:
resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1901,15 +1826,15 @@ packages:
p-filter: 2.1.0
dev: true
- /@changesets/types/4.1.0:
+ /@changesets/types@4.1.0:
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
dev: true
- /@changesets/types/5.2.1:
+ /@changesets/types@5.2.1:
resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
dev: true
- /@changesets/write/0.2.3:
+ /@changesets/write@0.2.3:
resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==}
dependencies:
'@babel/runtime': 7.21.0
@@ -1919,20 +1844,20 @@ packages:
prettier: 2.8.6
dev: true
- /@colors/colors/1.5.0:
+ /@colors/colors@1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
requiresBuild: true
optional: true
- /@commitlint/cli/17.4.4_@swc+core@1.3.42:
+ /@commitlint/cli@17.4.4(@swc/core@1.3.42):
resolution: {integrity: sha512-HwKlD7CPVMVGTAeFZylVNy14Vm5POVY0WxPkZr7EXLC/os0LH/obs6z4HRvJtH/nHCMYBvUBQhGwnufKfTjd5g==}
engines: {node: '>=v14'}
hasBin: true
dependencies:
'@commitlint/format': 17.4.4
'@commitlint/lint': 17.4.4
- '@commitlint/load': 17.4.4_@swc+core@1.3.42
+ '@commitlint/load': 17.4.4(@swc/core@1.3.42)
'@commitlint/read': 17.4.4
'@commitlint/types': 17.4.4
execa: 5.1.1
@@ -1945,19 +1870,19 @@ packages:
- '@swc/wasm'
dev: true
- /@commitlint/config-angular-type-enum/17.4.0:
+ /@commitlint/config-angular-type-enum@17.4.0:
resolution: {integrity: sha512-qbmfOfVqQHMKfc6CxS0A9b7+EFsOyEBoh4+i8Qa05uk8YhT/zY1CeIXK5V3wwemMDcHUegyL/ZnwCvWD7g8GxA==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/config-angular/17.4.4:
+ /@commitlint/config-angular@17.4.4:
resolution: {integrity: sha512-ulCgBc1sDWwwW0HKGQDurcfWbWw1PZjwOFzeL2PZq3jcOgPfOzEHqE3dIjycB5DKlWNx4kUMcgwMWaX/zUtBNg==}
engines: {node: '>=v14'}
dependencies:
'@commitlint/config-angular-type-enum': 17.4.0
dev: true
- /@commitlint/config-validator/17.4.4:
+ /@commitlint/config-validator@17.4.4:
resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==}
engines: {node: '>=v14'}
dependencies:
@@ -1965,7 +1890,7 @@ packages:
ajv: 8.12.0
dev: true
- /@commitlint/ensure/17.4.4:
+ /@commitlint/ensure@17.4.4:
resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==}
engines: {node: '>=v14'}
dependencies:
@@ -1977,12 +1902,12 @@ packages:
lodash.upperfirst: 4.3.1
dev: true
- /@commitlint/execute-rule/17.4.0:
+ /@commitlint/execute-rule@17.4.0:
resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/format/17.4.4:
+ /@commitlint/format@17.4.4:
resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==}
engines: {node: '>=v14'}
dependencies:
@@ -1990,7 +1915,7 @@ packages:
chalk: 4.1.2
dev: true
- /@commitlint/is-ignored/17.4.4:
+ /@commitlint/is-ignored@17.4.4:
resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==}
engines: {node: '>=v14'}
dependencies:
@@ -1998,7 +1923,7 @@ packages:
semver: 7.3.8
dev: true
- /@commitlint/lint/17.4.4:
+ /@commitlint/lint@17.4.4:
resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==}
engines: {node: '>=v14'}
dependencies:
@@ -2008,7 +1933,7 @@ packages:
'@commitlint/types': 17.4.4
dev: true
- /@commitlint/load/17.4.4_@swc+core@1.3.42:
+ /@commitlint/load@17.4.4(@swc/core@1.3.42):
resolution: {integrity: sha512-z6uFIQ7wfKX5FGBe1AkOF4l/ShOQsaa1ml/nLMkbW7R/xF8galGS7Zh0yHvzVp/srtfS0brC+0bUfQfmpMPFVQ==}
engines: {node: '>=v14'}
dependencies:
@@ -2019,24 +1944,24 @@ packages:
'@types/node': 18.15.0
chalk: 4.1.2
cosmiconfig: 8.1.0
- cosmiconfig-typescript-loader: 4.3.0_lmcvhluzh3a7wwwkanu7ndhele
+ cosmiconfig-typescript-loader: 4.3.0(@types/node@18.15.0)(cosmiconfig@8.1.0)(ts-node@10.9.1)(typescript@4.9.5)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.1_jb575hq3hgugnbsoqapjmblw4m
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.0)(typescript@4.9.5)
typescript: 4.9.5
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
dev: true
- /@commitlint/message/17.4.2:
+ /@commitlint/message@17.4.2:
resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/parse/17.4.4:
+ /@commitlint/parse@17.4.4:
resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==}
engines: {node: '>=v14'}
dependencies:
@@ -2045,7 +1970,7 @@ packages:
conventional-commits-parser: 3.2.4
dev: true
- /@commitlint/read/17.4.4:
+ /@commitlint/read@17.4.4:
resolution: {integrity: sha512-B2TvUMJKK+Svzs6eji23WXsRJ8PAD+orI44lVuVNsm5zmI7O8RSGJMvdEZEikiA4Vohfb+HevaPoWZ7PiFZ3zA==}
engines: {node: '>=v14'}
dependencies:
@@ -2056,7 +1981,7 @@ packages:
minimist: 1.2.8
dev: true
- /@commitlint/resolve-extends/17.4.4:
+ /@commitlint/resolve-extends@17.4.4:
resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==}
engines: {node: '>=v14'}
dependencies:
@@ -2068,7 +1993,7 @@ packages:
resolve-global: 1.0.0
dev: true
- /@commitlint/rules/17.4.4:
+ /@commitlint/rules@17.4.4:
resolution: {integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==}
engines: {node: '>=v14'}
dependencies:
@@ -2079,32 +2004,32 @@ packages:
execa: 5.1.1
dev: true
- /@commitlint/to-lines/17.4.0:
+ /@commitlint/to-lines@17.4.0:
resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==}
engines: {node: '>=v14'}
dev: true
- /@commitlint/top-level/17.4.0:
+ /@commitlint/top-level@17.4.0:
resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==}
engines: {node: '>=v14'}
dependencies:
find-up: 5.0.0
dev: true
- /@commitlint/types/17.4.4:
+ /@commitlint/types@17.4.4:
resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==}
engines: {node: '>=v14'}
dependencies:
chalk: 4.1.2
dev: true
- /@cspotcode/source-map-support/0.8.1:
+ /@cspotcode/source-map-support@0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/trace-mapping': 0.3.9
- /@cypress/request/2.88.11:
+ /@cypress/request@2.88.11:
resolution: {integrity: sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==}
engines: {node: '>= 6'}
dependencies:
@@ -2127,54 +2052,54 @@ packages:
tunnel-agent: 0.6.0
uuid: 8.3.2
- /@cypress/xvfb/1.2.4_supports-color@8.1.1:
+ /@cypress/xvfb@1.2.4(supports-color@8.1.1):
resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==}
dependencies:
- debug: 3.2.7_supports-color@8.1.1
+ debug: 3.2.7(supports-color@8.1.1)
lodash.once: 4.1.1
transitivePeerDependencies:
- supports-color
- /@emotion/is-prop-valid/1.2.0:
+ /@emotion/is-prop-valid@1.2.0:
resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==}
dependencies:
'@emotion/memoize': 0.8.0
- /@emotion/memoize/0.8.0:
+ /@emotion/memoize@0.8.0:
resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
- /@emotion/stylis/0.8.5:
+ /@emotion/stylis@0.8.5:
resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
- /@emotion/unitless/0.7.5:
+ /@emotion/unitless@0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
- /@envelop/core/3.0.6:
+ /@envelop/core@3.0.6:
resolution: {integrity: sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig==}
dependencies:
'@envelop/types': 3.0.2
tslib: 2.5.0
dev: false
- /@envelop/extended-validation/2.0.6_adj6itjezth6avcd67ktx7eo6a:
+ /@envelop/extended-validation@2.0.6(@envelop/core@3.0.6)(graphql@16.6.0):
resolution: {integrity: sha512-aXAf1bg5Z71YfEKLCZ8OMUZAOYPGHV/a+7avd5TIMFNDxl5wJTmIonep3T+kdMpwRInDphfNPGFD0GcGdGxpHg==}
peerDependencies:
'@envelop/core': ^3.0.6
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@envelop/core': 3.0.6
- '@graphql-tools/utils': 8.13.1_graphql@16.6.0
+ '@graphql-tools/utils': 8.13.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@envelop/types/3.0.2:
+ /@envelop/types@3.0.2:
resolution: {integrity: sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng==}
dependencies:
tslib: 2.5.0
dev: false
- /@envelop/validation-cache/5.1.2_adj6itjezth6avcd67ktx7eo6a:
+ /@envelop/validation-cache@5.1.2(@envelop/core@3.0.6)(graphql@16.6.0):
resolution: {integrity: sha512-APofOvjaHrF+IW71VCXdyG+EbA6EQJXdunUe1EECU9vZzGKYUuQXfVeCOD6IYNF44KKSQArTfU8RhnUlW6VyOQ==}
peerDependencies:
'@envelop/core': ^3.0.6
@@ -2188,23 +2113,23 @@ packages:
tslib: 2.5.0
dev: false
- /@esbuild/android-arm/0.17.13:
- resolution: {integrity: sha512-5tZZ/hLIfBmt7E8JsE5KbsknoAFmoElkg+A/gjyPtmSQvJjPf+9GsSJihid8VMa08lrsYyaEXOT9RLh3xXQONw==}
+ /@esbuild/android-arm64@0.17.13:
+ resolution: {integrity: sha512-F5DgvJMV2ZEpLNpPCO7FEk1wy8O5tg6cikWSB6uvvncsgE1xgbPlm+Boio/4820C2/mj713X83X1h01v0qoeHg==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm64/0.17.13:
- resolution: {integrity: sha512-F5DgvJMV2ZEpLNpPCO7FEk1wy8O5tg6cikWSB6uvvncsgE1xgbPlm+Boio/4820C2/mj713X83X1h01v0qoeHg==}
+ /@esbuild/android-arm@0.17.13:
+ resolution: {integrity: sha512-5tZZ/hLIfBmt7E8JsE5KbsknoAFmoElkg+A/gjyPtmSQvJjPf+9GsSJihid8VMa08lrsYyaEXOT9RLh3xXQONw==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64/0.17.13:
+ /@esbuild/android-x64@0.17.13:
resolution: {integrity: sha512-5m1UUslzpfVrumG3m3Zv2x9VNAcvMOQWJy009y6jt10tcHpzIq2/b0I0k4fz0QYqGSNS1GteRIhVPN4H7OyCXg==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2212,7 +2137,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64/0.17.13:
+ /@esbuild/darwin-arm64@0.17.13:
resolution: {integrity: sha512-TXbXp/05r7heRsG8yWwbHw9diay+wXIyRNcIHFoNARRIGahYbTW/qwJzE37zkfxLIUPHgR/SyLTUlnTICg14ag==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -2220,7 +2145,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-x64/0.17.13:
+ /@esbuild/darwin-x64@0.17.13:
resolution: {integrity: sha512-Ku9Db2sblCxFvQdEO7X9nBaLR/S81uch81e2Q2+Os5z1NcnsFjuqhIYH0Gm6KNNpIKaEbC7gCLbiIPbLLMX4Pg==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2228,7 +2153,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64/0.17.13:
+ /@esbuild/freebsd-arm64@0.17.13:
resolution: {integrity: sha512-t1T5/nIf2j+FdSf1Fa3dcU0cXycr0nK4xJe52qjWa+1I249mM5NBY1ODjiabZxZ0x3CG05y4fd9bxfDLy9kQtA==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -2236,7 +2161,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64/0.17.13:
+ /@esbuild/freebsd-x64@0.17.13:
resolution: {integrity: sha512-/zbkgEO4gY2qGZr9UNAGI38w/FwUY4bx4EC88k9VeiCKNr3ukNgwH/oIgB5Z9/OqpkNLlcS4w9e2d/MIiy5fbw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2244,23 +2169,23 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm/0.17.13:
- resolution: {integrity: sha512-RrhjzrCF6aCDH248nUAQoldnRmN7nHMxv85GOj5AH+qkxxYvcig7fnUmgANngntRu4btXhN9WKHMgQ5seERDMw==}
+ /@esbuild/linux-arm64@0.17.13:
+ resolution: {integrity: sha512-siu3QZrQ7eGrSttvFaRKyjT7kNRbUuHEKzCCyqRh19MbpGokGY13jbIsBEjx6JmH3T50hds325oweS9Ey2ihAQ==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64/0.17.13:
- resolution: {integrity: sha512-siu3QZrQ7eGrSttvFaRKyjT7kNRbUuHEKzCCyqRh19MbpGokGY13jbIsBEjx6JmH3T50hds325oweS9Ey2ihAQ==}
+ /@esbuild/linux-arm@0.17.13:
+ resolution: {integrity: sha512-RrhjzrCF6aCDH248nUAQoldnRmN7nHMxv85GOj5AH+qkxxYvcig7fnUmgANngntRu4btXhN9WKHMgQ5seERDMw==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32/0.17.13:
+ /@esbuild/linux-ia32@0.17.13:
resolution: {integrity: sha512-ADHA1PqP5gIegehVP0RvxMmNPxpLgetI8QCwYOjUheGXKIKWSdUN8ZS3rusQv3NGZmFCpYdMZzFoI0QtzzGAdw==}
engines: {node: '>=12'}
cpu: [ia32]
@@ -2268,7 +2193,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-loong64/0.17.13:
+ /@esbuild/linux-loong64@0.17.13:
resolution: {integrity: sha512-n1JQPxETmR0brkpWlJHeohReEPLH+m00bnJdNnFyHN3zLBt1QypevuZSmnmFWsC+7r7HTwWILj3lBDjtPH3ydg==}
engines: {node: '>=12'}
cpu: [loong64]
@@ -2276,7 +2201,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el/0.17.13:
+ /@esbuild/linux-mips64el@0.17.13:
resolution: {integrity: sha512-d0pnD/j5KKQ43xtSIvOD+wNIy6D/Vh9GbXVRa3u4zCyiJMYWjxkPkbBzlEgNjdDmUM+5gBFen9k7B8Xscy+Myg==}
engines: {node: '>=12'}
cpu: [mips64el]
@@ -2284,7 +2209,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64/0.17.13:
+ /@esbuild/linux-ppc64@0.17.13:
resolution: {integrity: sha512-C9sMpa/VcGLjVtsT01sXtzZNS7bAZ+icUclkKkiUwBQ9hzT+J+/Xpj+EykI5hB3KgtxQVo4XUahanFoZNxbQ1g==}
engines: {node: '>=12'}
cpu: [ppc64]
@@ -2292,7 +2217,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64/0.17.13:
+ /@esbuild/linux-riscv64@0.17.13:
resolution: {integrity: sha512-jYkc5EpNpvjccAHNYekiAtklusVGWftR0VVLtng7dJzDyy+5adAsf1fOG3LllP0WALxS55/w6boLE/728J/bXw==}
engines: {node: '>=12'}
cpu: [riscv64]
@@ -2300,7 +2225,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-s390x/0.17.13:
+ /@esbuild/linux-s390x@0.17.13:
resolution: {integrity: sha512-4jAJI5O6E/hATL4lsrG2A+noDjZ377KlATVFKwV3SWaNHj+OvoXe/T84ScQIXEtPI7ndJyLkMYruXj8RR5Ilyw==}
engines: {node: '>=12'}
cpu: [s390x]
@@ -2308,7 +2233,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-x64/0.17.13:
+ /@esbuild/linux-x64@0.17.13:
resolution: {integrity: sha512-eFLQhJq98qijGRcv9je/9M4Mz1suZ+pOtj62ArsLd0gubNGhhQDz6T30X2X3f1KZ8lkKkr+zN5vtZzx1GAMoFw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2316,7 +2241,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64/0.17.13:
+ /@esbuild/netbsd-x64@0.17.13:
resolution: {integrity: sha512-F8PXDeT+3eQpPjf4bmNJapPLu0SKKlWRGPQvBQqVS+YDGoMKnyyYp2UENLFMV8zT7kS39zKxZRZvUL3fMz/7Ww==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2324,7 +2249,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64/0.17.13:
+ /@esbuild/openbsd-x64@0.17.13:
resolution: {integrity: sha512-9jWfzbFCnIZdHjNs+00KQHArUbp7kjQDNmiuqkwGOQFs67m4/dKNupBv2DP5hTqVlQY4tW4RG3qpb6Y3zOHJeA==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2332,7 +2257,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/sunos-x64/0.17.13:
+ /@esbuild/sunos-x64@0.17.13:
resolution: {integrity: sha512-ALbOMlTIBkAVi6KqYjONa7u2oH95RN7OpetFqMtjufFLBiSaayRuwUzhs2yuR9CfGT4qi0jv6HQDav+EG314TQ==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2340,7 +2265,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-arm64/0.17.13:
+ /@esbuild/win32-arm64@0.17.13:
resolution: {integrity: sha512-FJBLYL4PkrZGeuHzEqme+0DjNetxkJ+XbB+Aoeow7aQ53JCwsA0/mo8sS5aPkDHgCnMkN4A5GLoFTlDj3BKDrQ==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -2348,7 +2273,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-ia32/0.17.13:
+ /@esbuild/win32-ia32@0.17.13:
resolution: {integrity: sha512-Qrvst9RkLz4qgi3hqswNliYuKW92/HGJnd7xLWkGaGPa8S4qsONf81FW0ebDc5iUHb0I7QJwQATutvghTabnFA==}
engines: {node: '>=12'}
cpu: [ia32]
@@ -2356,7 +2281,7 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-x64/0.17.13:
+ /@esbuild/win32-x64@0.17.13:
resolution: {integrity: sha512-pZ/NIgz861XaUPlIkPFjP55nJ4PJa0o/CD4zgeRb1Q9FVE+8GvdB6ifJcK05jRhny5hKExhnRFIdgHmmCYH8vg==}
engines: {node: '>=12'}
cpu: [x64]
@@ -2364,7 +2289,7 @@ packages:
requiresBuild: true
optional: true
- /@eslint-community/eslint-utils/4.3.0_eslint@8.15.0:
+ /@eslint-community/eslint-utils@4.3.0(eslint@8.15.0):
resolution: {integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2374,17 +2299,17 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@eslint-community/regexpp/4.4.0:
+ /@eslint-community/regexpp@4.4.0:
resolution: {integrity: sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
- /@eslint/eslintrc/1.4.1:
+ /@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
espree: 9.4.1
globals: 13.20.0
ignore: 5.2.4
@@ -2395,17 +2320,17 @@ packages:
transitivePeerDependencies:
- supports-color
- /@graphql-codegen/add/4.0.1_graphql@16.6.0:
+ /@graphql-codegen/add@4.0.1(graphql@16.6.0):
resolution: {integrity: sha512-A7k+9eRfrKyyNfhWEN/0eKz09R5cp4XXxUuNLQAVm/aohmVI2xdMV4lM02rTlM6Pyou3cU/v0iZnhgo6IRpqeg==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-codegen/cli/3.2.2_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-codegen/cli@3.2.2(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-u+dm/SW1heLnUL4Tyf5Uv0AxOFhTCmUPHKwRLq2yE8MPhv7+Ti4vxxUP/XGoaMNRuHlN37wLI7tpFLV1Hhm22Q==}
hasBin: true
peerDependencies:
@@ -2414,26 +2339,26 @@ packages:
'@babel/generator': 7.21.1
'@babel/template': 7.20.7
'@babel/types': 7.21.2
- '@graphql-codegen/core': 3.1.0_graphql@16.6.0
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-tools/apollo-engine-loader': 7.3.26_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/code-file-loader': 7.3.21_graphql@16.6.0
- '@graphql-tools/git-loader': 7.2.20_graphql@16.6.0
- '@graphql-tools/github-loader': 7.3.27_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0
- '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0
- '@graphql-tools/load': 7.8.4_graphql@16.6.0
- '@graphql-tools/prisma-loader': 7.2.65_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/url-loader': 7.17.14_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/core': 3.1.0(graphql@16.6.0)
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-tools/apollo-engine-loader': 7.3.26(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/code-file-loader': 7.3.21(graphql@16.6.0)
+ '@graphql-tools/git-loader': 7.2.20(graphql@16.6.0)
+ '@graphql-tools/github-loader': 7.3.27(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/graphql-file-loader': 7.5.16(graphql@16.6.0)
+ '@graphql-tools/json-file-loader': 7.4.17(graphql@16.6.0)
+ '@graphql-tools/load': 7.8.4(graphql@16.6.0)
+ '@graphql-tools/prisma-loader': 7.2.65(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/url-loader': 7.17.14(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@parcel/watcher': 2.1.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
chalk: 4.1.2
cosmiconfig: 7.1.0
debounce: 1.2.1
detect-indent: 6.1.0
graphql: 16.6.0
- graphql-config: 4.5.0_xfoe4adolgvm4tvnio5xigcr6e
+ graphql-config: 4.5.0(@types/node@18.11.9)(graphql@16.6.0)
inquirer: 8.2.5
is-glob: 4.0.3
jiti: 1.18.2
@@ -2458,23 +2383,23 @@ packages:
- utf-8-validate
dev: false
- /@graphql-codegen/client-preset/2.1.1_graphql@16.6.0:
+ /@graphql-codegen/client-preset@2.1.1(graphql@16.6.0):
resolution: {integrity: sha512-yDFiO2CimwjkH/YE5nwRcLkXoAVz31NC+WWvFQdyrR1UKQqe2tqV/bKLUifnSbBGS238ajHJ6AEzVlzIvI8OYQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
- '@graphql-codegen/add': 4.0.1_graphql@16.6.0
- '@graphql-codegen/gql-tag-operations': 2.0.2_graphql@16.6.0
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/typed-document-node': 3.0.2_graphql@16.6.0
- '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0
- '@graphql-codegen/typescript-operations': 3.0.2_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0
- '@graphql-tools/documents': 0.1.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0
+ '@graphql-codegen/add': 4.0.1(graphql@16.6.0)
+ '@graphql-codegen/gql-tag-operations': 2.0.2(graphql@16.6.0)
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/typed-document-node': 3.0.2(graphql@16.6.0)
+ '@graphql-codegen/typescript': 3.0.2(graphql@16.6.0)
+ '@graphql-codegen/typescript-operations': 3.0.2(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0)
+ '@graphql-tools/documents': 0.1.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -2482,26 +2407,26 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/core/3.1.0_graphql@16.6.0:
+ /@graphql-codegen/core@3.1.0(graphql@16.6.0):
resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-tools/schema': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-codegen/gql-tag-operations/2.0.2_graphql@16.6.0:
+ /@graphql-codegen/gql-tag-operations@2.0.2(graphql@16.6.0):
resolution: {integrity: sha512-FB4/Q0xP/lIjwnlxdeGAfGFAiL7AhzIJB9keNrosd4Xe9r8V8NuZ0+0/hGc7KdzHhojYF/ycmJD7V2JLWaf23Q==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.5.0
@@ -2510,12 +2435,12 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/plugin-helpers/2.7.2_graphql@16.6.0:
+ /@graphql-codegen/plugin-helpers@2.7.2(graphql@16.6.0):
resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-tools/utils': 8.13.1_graphql@16.6.0
+ '@graphql-tools/utils': 8.13.1(graphql@16.6.0)
change-case-all: 1.0.14
common-tags: 1.8.2
graphql: 16.6.0
@@ -2524,12 +2449,12 @@ packages:
tslib: 2.4.1
dev: false
- /@graphql-codegen/plugin-helpers/4.1.0_graphql@16.6.0:
+ /@graphql-codegen/plugin-helpers@4.1.0(graphql@16.6.0):
resolution: {integrity: sha512-xvSHJb9OGb5CODIls0AI1rCenLz+FuiaNPCsfHMCNsLDjOZK2u0jAQ9zUBdc/Wb+21YXZujBCc0Vm1QX+Zz0nw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
change-case-all: 1.0.15
common-tags: 1.8.2
graphql: 16.6.0
@@ -2538,24 +2463,24 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-codegen/schema-ast/3.0.1_graphql@16.6.0:
+ /@graphql-codegen/schema-ast@3.0.1(graphql@16.6.0):
resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-codegen/typed-document-node/3.0.1_graphql@16.6.0:
+ /@graphql-codegen/typed-document-node@3.0.1(graphql@16.6.0):
resolution: {integrity: sha512-2plPBbAJZtR72BU6n07N3nIJYlwnCWbFNoe++MQ33S2ML4KwpCiflGEJnTpiwOEhCklQLWg1FEUdEOYS2iluqw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.1(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
graphql: 16.6.0
@@ -2565,13 +2490,13 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typed-document-node/3.0.2_graphql@16.6.0:
+ /@graphql-codegen/typed-document-node@3.0.2(graphql@16.6.0):
resolution: {integrity: sha512-RqX46y0GoMAcCfXjkUabOWpeSQ7tazpS5WyzWJNakpzXxNACx8NACaghU8zTEM+gjqtIp6YbFY/S92HQ34HbRQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
graphql: 16.6.0
@@ -2581,14 +2506,14 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typescript-generic-sdk/3.0.4_graphql@16.6.0:
+ /@graphql-codegen/typescript-generic-sdk@3.0.4(graphql@16.6.0):
resolution: {integrity: sha512-0bPfoifMTaVP0Jh9g/pG6FsDHei2BHiO4f73Qz+XYgP/TNKq3R5AGPd7NzHeabdoO3lhuRvjKqafc5WtjZC/Dw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
graphql-tag: ^2.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 2.13.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.4.1
@@ -2597,14 +2522,14 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typescript-operations/3.0.0_graphql@16.6.0:
+ /@graphql-codegen/typescript-operations@3.0.0(graphql@16.6.0):
resolution: {integrity: sha512-t+Lk+lxkUFDh6F0t8CErowOccP3bZwxhl66qmEeBcOrC7jQrSCnRZoFvOXhFKFBJe/y4DIJiizgSr34AqjiJIQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/typescript': 3.0.2(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.4.1
@@ -2613,14 +2538,14 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typescript-operations/3.0.2_graphql@16.6.0:
+ /@graphql-codegen/typescript-operations@3.0.2(graphql@16.6.0):
resolution: {integrity: sha512-FYi5QcOsBZZvBKlzBQ+jpBCUxMo9g3fTYa2v1+rqooG6SiW/lQyk2CNL5tsYAt6TLmH3rws8rzSUil0DWNsflQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/typescript': 3.0.2(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.5.0
@@ -2629,15 +2554,15 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typescript-resolvers/3.0.0_graphql@16.6.0:
+ /@graphql-codegen/typescript-resolvers@3.0.0(graphql@16.6.0):
resolution: {integrity: sha512-yfRNJF9ZUoiLSPhaBEpQ9E4ymExYzbsKgjU2qJ/0c8l0lViA+o4ALkJMTwb7yU/yTayQtQWgxL5cdDY2I12GpQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/typescript': 3.0.2_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/typescript': 3.0.2(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.4.1
@@ -2646,14 +2571,14 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typescript/3.0.0_graphql@16.6.0:
+ /@graphql-codegen/typescript@3.0.0(graphql@16.6.0):
resolution: {integrity: sha512-FQWyuIUy1y+fxb9+EZfvdBHBQpYExlIBHV5sg2WGNCsyVyCqBTl0mO8icyOtsQPVg6YFMFe8JJO69vQbwHma5w==}
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.4.1
@@ -2662,14 +2587,14 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/typescript/3.0.2_graphql@16.6.0:
+ /@graphql-codegen/typescript@3.0.2(graphql@16.6.0):
resolution: {integrity: sha512-qD6QkTB+2eJmIaZ6Tihv6HRz7daWWLz9uw5vwCmPeZN6XL2RINZGLkR7D8BQzLDlNGMrpQ4SeSM9o3ZALSCIuQ==}
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0
- '@graphql-codegen/visitor-plugin-common': 3.0.2_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0)
+ '@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
tslib: 2.5.0
@@ -2678,20 +2603,20 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/visitor-plugin-common/2.13.1_graphql@16.6.0:
+ /@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.6.0):
resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0
- '@graphql-tools/optimize': 1.3.1_graphql@16.6.0
- '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0
- '@graphql-tools/utils': 8.13.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.6.0)
+ '@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
+ '@graphql-tools/relay-operation-optimizer': 6.5.17(graphql@16.6.0)
+ '@graphql-tools/utils': 8.13.1(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.14
dependency-graph: 0.11.0
graphql: 16.6.0
- graphql-tag: 2.12.6_graphql@16.6.0
+ graphql-tag: 2.12.6(graphql@16.6.0)
parse-filepath: 1.0.2
tslib: 2.4.1
transitivePeerDependencies:
@@ -2699,20 +2624,20 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/visitor-plugin-common/3.0.0_graphql@16.6.0:
+ /@graphql-codegen/visitor-plugin-common@3.0.0(graphql@16.6.0):
resolution: {integrity: sha512-ZoNlCmmkGClB137SpJT9og/nkihLN7Z4Ynl9Ir3OlbDuI20dbpyXsclpr9QGLcxEcfQeVfhGw9CooW7wZJJ8LA==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-tools/optimize': 1.3.1_graphql@16.6.0
- '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
+ '@graphql-tools/relay-operation-optimizer': 6.5.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
graphql: 16.6.0
- graphql-tag: 2.12.6_graphql@16.6.0
+ graphql-tag: 2.12.6(graphql@16.6.0)
parse-filepath: 1.0.2
tslib: 2.4.1
transitivePeerDependencies:
@@ -2720,20 +2645,20 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/visitor-plugin-common/3.0.1_graphql@16.6.0:
+ /@graphql-codegen/visitor-plugin-common@3.0.1(graphql@16.6.0):
resolution: {integrity: sha512-Qek+Ywy094Km7Vc1TzKBN9ICvtYwPdqZUliPO77urMSveP+2+G2O9Tjx546dW4A1O6rhEfexbenc2DqTAe7iLQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-tools/optimize': 1.3.1_graphql@16.6.0
- '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
+ '@graphql-tools/relay-operation-optimizer': 6.5.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
graphql: 16.6.0
- graphql-tag: 2.12.6_graphql@16.6.0
+ graphql-tag: 2.12.6(graphql@16.6.0)
parse-filepath: 1.0.2
tslib: 2.5.0
transitivePeerDependencies:
@@ -2741,20 +2666,20 @@ packages:
- supports-color
dev: false
- /@graphql-codegen/visitor-plugin-common/3.0.2_graphql@16.6.0:
+ /@graphql-codegen/visitor-plugin-common@3.0.2(graphql@16.6.0):
resolution: {integrity: sha512-dKblRFrB0Fdl3+nPlzlLBka+TN/EGwr/q09mwry0H58z3j6gXkMbsdPr+dc8MhgOV7w/8egRvSPIvd7m6eFCnw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0
- '@graphql-tools/optimize': 1.3.1_graphql@16.6.0
- '@graphql-tools/relay-operation-optimizer': 6.5.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0)
+ '@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
+ '@graphql-tools/relay-operation-optimizer': 6.5.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
graphql: 16.6.0
- graphql-tag: 2.12.6_graphql@16.6.0
+ graphql-tag: 2.12.6(graphql@16.6.0)
parse-filepath: 1.0.2
tslib: 2.5.0
transitivePeerDependencies:
@@ -2762,7 +2687,7 @@ packages:
- supports-color
dev: false
- /@graphql-inspector/core/3.3.0_graphql@16.6.0:
+ /@graphql-inspector/core@3.3.0(graphql@16.6.0):
resolution: {integrity: sha512-LRtk9sHgj9qqVPIkkThAVq3iZ7QxgHCx6elEwd0eesZBCmaIYQxD/BFu+VT8jr10YfOURBZuAnVdyGu64vYpBg==}
peerDependencies:
graphql: ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
@@ -2773,14 +2698,14 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-mesh/cache-file/0.9.47_graphql@16.6.0:
+ /@graphql-mesh/cache-file@0.9.47(graphql@16.6.0):
resolution: {integrity: sha512-0qPi/VX2hygUqfQluGNK4fsdoNrgAyWPp9Wk30N4CDyiSYCrE5JUtQPXUVnjLUjbN3BsO1Uu47nQRJmO+SSr9A==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.2.10_graphql@16.6.0
- '@graphql-mesh/types': 0.87.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.42.9_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.2.10(graphql@16.6.0)
+ '@graphql-mesh/types': 0.87.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.42.9(graphql@16.6.0)
dataloader: 2.1.0
graphql: 16.6.0
tslib: 2.5.0
@@ -2789,13 +2714,13 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/cache-localforage/0.7.17_graphql@16.6.0:
+ /@graphql-mesh/cache-localforage@0.7.17(graphql@16.6.0):
resolution: {integrity: sha512-dlG0rGoat/RHadjorrW32JYEZ7F4toWXhzFSKRzxmDukc+c0+D7vEz9HF9vh75v4XLtUQnECamCya3XZWEyWpg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
graphql: 16.6.0
localforage: 1.10.0
tslib: 2.5.0
@@ -2804,41 +2729,41 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/cli/0.82.27_fy5xw2zfnm52di35efvwkyateq:
+ /@graphql-mesh/cli@0.82.27(@swc/core@1.3.42)(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-POct4E2KDLLSy/UCjWc/GW8GWHew52TIvSvKMEh3PZEqobJzHdCnrZCPUmqTt9BC+GCqqCZcAeU1zWlnbsNVSw==}
hasBin: true
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-codegen/core': 3.1.0_graphql@16.6.0
- '@graphql-codegen/typed-document-node': 3.0.1_graphql@16.6.0
- '@graphql-codegen/typescript': 3.0.0_graphql@16.6.0
- '@graphql-codegen/typescript-generic-sdk': 3.0.4_graphql@16.6.0
- '@graphql-codegen/typescript-operations': 3.0.0_graphql@16.6.0
- '@graphql-codegen/typescript-resolvers': 3.0.0_graphql@16.6.0
- '@graphql-mesh/config': 10.1.10_uztof5fq254zxlu3yboyslhj64
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/http': 0.3.23_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/runtime': 0.46.18_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-codegen/core': 3.1.0(graphql@16.6.0)
+ '@graphql-codegen/typed-document-node': 3.0.1(graphql@16.6.0)
+ '@graphql-codegen/typescript': 3.0.0(graphql@16.6.0)
+ '@graphql-codegen/typescript-generic-sdk': 3.0.4(graphql@16.6.0)
+ '@graphql-codegen/typescript-operations': 3.0.0(graphql@16.6.0)
+ '@graphql-codegen/typescript-resolvers': 3.0.0(graphql@16.6.0)
+ '@graphql-mesh/config': 10.1.10(@graphql-mesh/runtime@0.46.18)(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/http': 0.3.23(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/runtime': 0.46.18(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
ajv: 8.12.0
change-case: 4.1.2
cosmiconfig: 8.1.0
dnscache: 1.0.2
dotenv: 16.0.3
graphql: 16.6.0
- graphql-import-node: 0.0.5_graphql@16.6.0
- graphql-ws: 5.11.3_graphql@16.6.0
+ graphql-import-node: 0.0.5(graphql@16.6.0)
+ graphql-ws: 5.11.3(graphql@16.6.0)
json-bigint-patch: 0.0.8
json5: 2.2.3
mkdirp: 2.1.3
open: 7.4.2
pascal-case: 3.1.2
rimraf: 4.1.2
- ts-node: 10.9.1_holozwahehfpumerqg2n4zzbai
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.9.5)
tsconfig-paths: 4.1.2
tslib: 2.5.0
typescript: 4.9.5
@@ -2858,26 +2783,26 @@ packages:
- utf-8-validate
dev: false
- /@graphql-mesh/config/10.1.10_uztof5fq254zxlu3yboyslhj64:
+ /@graphql-mesh/config@10.1.10(@graphql-mesh/runtime@0.46.18)(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-s2iM4kXVHhBd35nD+5BfM/6gsNgeFBNylDAYNmwXe4YuGSDIskKblhfB6t6C/lSsh3hwvTMHFhfQKN4TcLhwSQ==}
peerDependencies:
'@graphql-mesh/runtime': ^0.46.18
graphql: '*'
dependencies:
'@envelop/core': 3.0.6
- '@graphql-mesh/cache-localforage': 0.7.17_graphql@16.6.0
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/merger-bare': 0.16.19_graphql@16.6.0
- '@graphql-mesh/merger-stitching': 0.18.19_graphql@16.6.0
- '@graphql-mesh/runtime': 0.46.18_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/code-file-loader': 7.3.21_graphql@16.6.0
- '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0
- '@graphql-tools/load': 7.8.12_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@graphql-mesh/cache-localforage': 0.7.17(graphql@16.6.0)
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/merger-bare': 0.16.19(graphql@16.6.0)
+ '@graphql-mesh/merger-stitching': 0.18.19(graphql@16.6.0)
+ '@graphql-mesh/runtime': 0.46.18(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/code-file-loader': 7.3.21(graphql@16.6.0)
+ '@graphql-tools/graphql-file-loader': 7.5.16(graphql@16.6.0)
+ '@graphql-tools/load': 7.8.12(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
camel-case: 4.1.2
graphql: 16.6.0
param-case: 3.0.4
@@ -2891,10 +2816,10 @@ packages:
- supports-color
dev: false
- /@graphql-mesh/cross-helpers/0.2.10_graphql@16.6.0:
+ /@graphql-mesh/cross-helpers@0.2.10(graphql@16.6.0):
resolution: {integrity: sha512-AqDYxe8Ic1onjfF7RHtKrIywICLlpczBSV7oYA6OxSsmKwBPkcQuWTgLM7lrv0sPMbrlWsg3FPoGemWGDLgHpw==}
dependencies:
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
path-browserify: 1.0.1
react-native-fs: 2.20.0
react-native-path: 0.0.5
@@ -2904,10 +2829,10 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/cross-helpers/0.2.2_graphql@16.6.0:
+ /@graphql-mesh/cross-helpers@0.2.2(graphql@16.6.0):
resolution: {integrity: sha512-6khb9577zeHtYbhs54yPcoUMSFPpN1JpkshdFTqgQdWe/AlyVcYRgwt0JNNrYC7MK7UCHmZqlAhnzBL11CrREg==}
dependencies:
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
path-browserify: 1.0.1
react-native-fs: 2.20.0
react-native-path: 0.0.5
@@ -2917,12 +2842,12 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/cross-helpers/0.3.3_graphql@16.6.0:
+ /@graphql-mesh/cross-helpers@0.3.3(graphql@16.6.0):
resolution: {integrity: sha512-L2T4H1Gtsq+IbuKUuHv9loytn24zontH+WC7oz7W+gvv8PtnOYsWbwnNRr45YBQMcXOvo+qeOJPSZ6RXSkPbCg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
path-browserify: 1.0.1
react-native-fs: 2.20.0
@@ -2932,20 +2857,20 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/graphql/0.34.10_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/graphql@0.34.10(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-q39fLdG0Nvs2RLPAvbumUp86X7JdNOZjV8/jQvpORDeeeeDuTivXsHGDWxq8nVFH46S5QR3LG5qP7TI9venLwQ==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/url-loader': 7.17.13_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-tools/wrap': 9.3.7_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/url-loader': 7.17.13(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-tools/wrap': 9.3.7(graphql@16.6.0)
graphql: 16.6.0
lodash.get: 4.4.2
tslib: 2.5.0
@@ -2958,18 +2883,18 @@ packages:
- utf-8-validate
dev: false
- /@graphql-mesh/http/0.3.23_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/http@0.3.23(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-am8VPuRuz1A1y08RpxglcUdNZGr8JUsH9wvshGYj4OZ4TVZfMkFfDGYM0Nnbho83RhrBDt2/fgRlbPkGXY/o0A==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/runtime': 0.46.18_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@whatwg-node/router': 0.3.0_@types+node@18.11.9
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/runtime': 0.46.18(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@whatwg-node/router': 0.3.0(@types/node@18.11.9)
graphql: 16.6.0
- graphql-yoga: 3.7.0_xfoe4adolgvm4tvnio5xigcr6e
+ graphql-yoga: 3.7.0(@types/node@18.11.9)(graphql@16.6.0)
tslib: 2.5.0
transitivePeerDependencies:
- '@types/node'
@@ -2977,22 +2902,22 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/json-schema/0.37.21_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/json-schema@0.37.21(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-hhgmLdNgGSW0sousE2ISo+04rr6NJXgnWkaPBB18TCdtPti9gnWgrrXp/gXjVFVj3FQeR0/YeNWBl4JQxVruYQ==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@json-schema-tools/meta-schema': 1.7.0
- '@omnigraph/json-schema': 0.38.21_xfoe4adolgvm4tvnio5xigcr6e
+ '@omnigraph/json-schema': 0.38.21(@types/node@18.11.9)(graphql@16.6.0)
graphql: 16.6.0
- graphql-compose: 9.0.10_graphql@16.6.0
- json-machete: 0.18.17_xfoe4adolgvm4tvnio5xigcr6e
+ graphql-compose: 9.0.10(graphql@16.6.0)
+ json-machete: 0.18.17(@types/node@18.11.9)(graphql@16.6.0)
tslib: 2.5.0
transitivePeerDependencies:
- '@types/node'
@@ -3000,16 +2925,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/merger-bare/0.16.19_graphql@16.6.0:
+ /@graphql-mesh/merger-bare@0.16.19(graphql@16.6.0):
resolution: {integrity: sha512-YHWPJ7kQm4E2dqUySdNrI8QR1ngLMyeyEiu8r+qpaUZdevpWifk+Ms+vra+mm9F5daDXZDAASl9gdcuw/2+FAQ==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/merger-stitching': 0.18.19_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/merger-stitching': 0.18.19(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3017,19 +2942,19 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/merger-stitching/0.18.19_graphql@16.6.0:
+ /@graphql-mesh/merger-stitching@0.18.19(graphql@16.6.0):
resolution: {integrity: sha512-LF3TONaAqxfCD54oEnXE/4zvMOJSV/0U0nnadYyXRvqztvDEbJGpzi1K1xYfxsY5Xtc3sA8M3cerX+5gbTg2Ww==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/stitch': 8.7.42_graphql@16.6.0
- '@graphql-tools/stitching-directives': 2.3.31_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/stitch': 8.7.42(graphql@16.6.0)
+ '@graphql-tools/stitching-directives': 2.3.31(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3037,22 +2962,22 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/mysql/0.19.17_graphql@16.6.0:
+ /@graphql-mesh/mysql@0.19.17(graphql@16.6.0):
resolution: {integrity: sha512-/pZDBq+wiep2kp1r/WCwDN4OGeJKlDA1F6+/0acAu3Yslev+5UK6jPsrhGJYDhQzw10dltEDGfyQ7+bGORoWqg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
- graphql-compose: 9.0.10_graphql@16.6.0
+ graphql-compose: 9.0.10(graphql@16.6.0)
graphql-fields: 2.0.3
- graphql-scalars: 1.20.4_graphql@16.6.0
+ graphql-scalars: 1.20.4(graphql@16.6.0)
mysql: 2.18.1
mysql-utilities: 1.1.4
tslib: 2.5.0
@@ -3061,20 +2986,20 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/neo4j/0.22.19_graphql@16.6.0:
+ /@graphql-mesh/neo4j@0.22.19(graphql@16.6.0):
resolution: {integrity: sha512-meCs+pluDjkoVcbmdzB6gyp32kM1jFHka7Miual/FNq4ET/pb5OnpUqIqHPA7TrI9M/qhbq6ie95XVATmMNWug==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@neo4j/graphql': 3.17.0_quzuzoqs7mgcxdjqiv5cwbeati
- '@neo4j/introspector': 1.0.3_neo4j-driver@5.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@neo4j/graphql': 3.17.0(graphql@16.6.0)(neo4j-driver@5.6.0)
+ '@neo4j/introspector': 1.0.3(neo4j-driver@5.6.0)
graphql: 16.6.0
- graphql-scalars: 1.20.4_graphql@16.6.0
+ graphql-scalars: 1.20.4(graphql@16.6.0)
neo4j-driver: 5.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3083,16 +3008,16 @@ packages:
- supports-color
dev: false
- /@graphql-mesh/new-openapi/0.8.2_graphql@16.6.0:
+ /@graphql-mesh/new-openapi@0.8.2(graphql@16.6.0):
resolution: {integrity: sha512-cUaLqgIBopEx2hxHIKtDF8H/aeGIsD/zLu3Xu8C1lIMp/+UHmpV0zFYVMXmGmogO27N5S5fg2QKVv4hBBeG3hA==}
deprecated: This handler is now available under '@graphql-mesh/openapi'. Please no longer use this package, and use the latest OpenAPI handler; https://www.graphql-mesh.com/docs/handlers/openapi
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.8.31_graphql@16.6.0
- '@graphql-mesh/types': 0.80.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.39.0_graphql@16.6.0
- '@omnigraph/openapi': 0.11.2_graphql@16.6.0
+ '@graphql-mesh/store': 0.8.31(graphql@16.6.0)
+ '@graphql-mesh/types': 0.80.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.39.0(graphql@16.6.0)
+ '@omnigraph/openapi': 0.11.2(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3101,25 +3026,25 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/odata/0.22.18_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/odata@0.22.18(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-hgSc+IZH5l3UGTwosYcZz/QRshPiSwyzCeotz7+7ZwlnsB/ooykJHFqUP+KGQ9CVmElhFNm1hrsoUlCq0efaGg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
dataloader: 2.2.2
fast-xml-parser: 4.1.3
graphql: 16.6.0
- graphql-compose: 9.0.10_graphql@16.6.0
- graphql-parse-resolve-info: 4.13.0_graphql@16.6.0
- graphql-scalars: 1.20.4_graphql@16.6.0
+ graphql-compose: 9.0.10(graphql@16.6.0)
+ graphql-parse-resolve-info: 4.13.0(graphql@16.6.0)
+ graphql-scalars: 1.20.4(graphql@16.6.0)
http-string-parser: 0.0.6
pascal-case: 3.1.2
tslib: 2.5.0
@@ -3131,16 +3056,16 @@ packages:
- supports-color
dev: false
- /@graphql-mesh/openapi/0.35.23_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/openapi@0.35.23(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-IHhM068NjgdCHtwkLqET6NBJoYYDM2a5YxKZgLh+YhE8XP2d5kdPBkizanvy0nFW453p90ap8UZrGCHYz6mldw==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@omnigraph/openapi': 0.19.23_xfoe4adolgvm4tvnio5xigcr6e
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@omnigraph/openapi': 0.19.23(@types/node@18.11.9)(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3149,37 +3074,37 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/plugin-mock/0.1.18_graphql@16.6.0:
+ /@graphql-mesh/plugin-mock@0.1.18(graphql@16.6.0):
resolution: {integrity: sha512-ye2PAqFXbjhQJ9te/pc45QvQRf63EXhEAyStun8kft+8u/1KTvyi3WdCwgK5VlDj0Kz34Z8EhSa/X5o0QCfSZA==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/mock': 8.7.18_graphql@16.6.0
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/mock': 8.7.18(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
faker: 5.5.3
graphql: 16.6.0
- graphql-scalars: 1.20.4_graphql@16.6.0
+ graphql-scalars: 1.20.4(graphql@16.6.0)
tslib: 2.5.0
transitivePeerDependencies:
- react-native
- react-native-windows
dev: false
- /@graphql-mesh/plugin-snapshot/0.1.20_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/plugin-snapshot@0.1.20(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-6PnvMzmbS+ZOj2T/7FDgDH+/ydTEWI0wLqgfKINwv5+GIm3GIcYK1GkK7PGP6pIu8uj2fuJwDnUx7qdwakTq7Q==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@whatwg-node/fetch': 0.8.1_@types+node@18.11.9
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@whatwg-node/fetch': 0.8.1(@types/node@18.11.9)
graphql: 16.6.0
minimatch: 7.3.0
tslib: 2.5.0
@@ -3189,23 +3114,23 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/runtime/0.46.18_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-mesh/runtime@0.46.18(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-H/u4rrYh7g2dLmpvWI6qefLqfQwncnpmOoNkl5Ra8CfLWR+0PxtiGuMmuXfykJI7ZM0DCGY+roTVJ7zn37vdRg==}
peerDependencies:
graphql: '*'
dependencies:
'@envelop/core': 3.0.6
- '@envelop/extended-validation': 2.0.6_adj6itjezth6avcd67ktx7eo6a
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/batch-delegate': 8.4.21_graphql@16.6.0
- '@graphql-tools/batch-execute': 8.5.18_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-tools/wrap': 9.3.7_graphql@16.6.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@envelop/extended-validation': 2.0.6(@envelop/core@3.0.6)(graphql@16.6.0)
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/batch-delegate': 8.4.21(graphql@16.6.0)
+ '@graphql-tools/batch-execute': 8.5.18(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-tools/wrap': 9.3.7(graphql@16.6.0)
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3214,16 +3139,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/soap/0.17.20_graphql@16.6.0:
+ /@graphql-mesh/soap@0.17.20(graphql@16.6.0):
resolution: {integrity: sha512-kvfUfN8ck2Nt/EwajnLiBwfwfwrwRAGEnwO1+XUP4g+rCHRo5Y0C9DX5UEVs+2rOjBx49JDjkHcgERzVjCy6Kg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@omnigraph/soap': 0.4.19_graphql@16.6.0
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@omnigraph/soap': 0.4.19(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3231,16 +3156,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/store/0.8.31_graphql@16.6.0:
+ /@graphql-mesh/store@0.8.31(graphql@16.6.0):
resolution: {integrity: sha512-a+zOt13hyh1SemgJiI9qibR22DlCsn4/KkW57C+VgJa4WddJqHYcMwsvEq4kJrGEAk8rFXY44WnYtFaft1XgOQ==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-inspector/core': 3.3.0_graphql@16.6.0
- '@graphql-mesh/cross-helpers': 0.2.2_graphql@16.6.0
- '@graphql-mesh/types': 0.80.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.39.0_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-inspector/core': 3.3.0(graphql@16.6.0)
+ '@graphql-mesh/cross-helpers': 0.2.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.80.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.39.0(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3248,16 +3173,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/store/0.8.65_graphql@16.6.0:
+ /@graphql-mesh/store@0.8.65(graphql@16.6.0):
resolution: {integrity: sha512-WzhP8/0a4mRr8nl3AsJN9AtArw6KTXjox/ClhMCgn4vQozzWf94KI48d5byQh9unEqKmi5K/a8PchmhKWGuGOA==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-inspector/core': 3.3.0_graphql@16.6.0
- '@graphql-mesh/cross-helpers': 0.2.10_graphql@16.6.0
- '@graphql-mesh/types': 0.87.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.42.9_graphql@16.6.0
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-inspector/core': 3.3.0(graphql@16.6.0)
+ '@graphql-mesh/cross-helpers': 0.2.10(graphql@16.6.0)
+ '@graphql-mesh/types': 0.87.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.42.9(graphql@16.6.0)
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3265,16 +3190,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/store/0.9.17_graphql@16.6.0:
+ /@graphql-mesh/store@0.9.17(graphql@16.6.0):
resolution: {integrity: sha512-6efwfabFkWvdCu4gKfODwL7MGwnG9RwDh44M9cZglpr58LDAEffr3mmCbTFIJn7cqpFE1KUGxwKqU3BaHey7Zg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-inspector/core': 3.3.0_graphql@16.6.0
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-inspector/core': 3.3.0(graphql@16.6.0)
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3282,7 +3207,7 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/string-interpolation/0.3.2_graphql@16.6.0:
+ /@graphql-mesh/string-interpolation@0.3.2(graphql@16.6.0):
resolution: {integrity: sha512-90iJtsxbMIcTk1AOWj6ItXc0SzMEgsu/hLt55qKXHoV6SiCYoyh/pBSLlQVwziWE9vI2RjeMIFQsvHWfcuxgbA==}
peerDependencies:
graphql: '*'
@@ -3293,7 +3218,7 @@ packages:
lodash.get: 4.4.2
dev: false
- /@graphql-mesh/string-interpolation/0.3.3_graphql@16.6.0:
+ /@graphql-mesh/string-interpolation@0.3.3(graphql@16.6.0):
resolution: {integrity: sha512-yLvnUVo4VqWmXrIdPCwQTw3kxf1dUUDEPy2UJoADdqDfJoUoqG1mx9+pJvSRuqouANWiL9LTzdI/rSsY2j+1/g==}
peerDependencies:
graphql: '*'
@@ -3304,7 +3229,7 @@ packages:
lodash.get: 4.4.2
dev: false
- /@graphql-mesh/string-interpolation/0.4.2_graphql@16.6.0:
+ /@graphql-mesh/string-interpolation@0.4.2(graphql@16.6.0):
resolution: {integrity: sha512-xUSLpir2F4QlAZPVr9GTZ8fOeHYL4PCanykFhIH+CJRFWgolbsUSkTbNBUginQ8pjbQNFEpD2YGgz7N9aJKQ0w==}
peerDependencies:
graphql: '*'
@@ -3316,15 +3241,15 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-mesh/types/0.80.1_graphql@16.6.0:
+ /@graphql-mesh/types@0.80.1(graphql@16.6.0):
resolution: {integrity: sha512-+qXU1cSGRugD9yOOIV3KBMSWIPTsAGZyTeliycQhBwoG5T0G05m2/gM376IMvYiXtt6/ti9M8RvwXjgULO8y4w==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.8.31_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.3_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0
+ '@graphql-mesh/store': 0.8.31(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.3(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3332,16 +3257,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/types/0.87.1_graphql@16.6.0:
+ /@graphql-mesh/types@0.87.1(graphql@16.6.0):
resolution: {integrity: sha512-lPYgDmbcDc9Ttg27M67zMRc/FG8yIflhmlbQbOIDmElWLDmCgGL/l03bPWKoXBeGQ6u3vmcfY/v8eVpPRXTSYA==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.8.65_graphql@16.6.0
- '@graphql-tools/batch-delegate': 8.4.10_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0
+ '@graphql-mesh/store': 0.8.65(graphql@16.6.0)
+ '@graphql-tools/batch-delegate': 8.4.10(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3349,16 +3274,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/types/0.91.9_graphql@16.6.0:
+ /@graphql-mesh/types@0.91.9(graphql@16.6.0):
resolution: {integrity: sha512-810w8+f3kRTwtyzGNjD4ELGqF6xNj43dMGDnvTZHjT5yU0vskmp8f6hB76INFvcKVf5RTwFYRQan3ewpDqzw6Q==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/store': 0.9.17_graphql@16.6.0
- '@graphql-tools/batch-delegate': 8.4.21_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0
+ '@graphql-mesh/store': 0.9.17(graphql@16.6.0)
+ '@graphql-tools/batch-delegate': 8.4.21(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3366,17 +3291,17 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/utils/0.39.0_graphql@16.6.0:
+ /@graphql-mesh/utils@0.39.0(graphql@16.6.0):
resolution: {integrity: sha512-GNWd0YPuLhKK1BWTnksyZMkmqjdg3w85uYxryyleYIm+vfM9qH+xHXCYLD13ETz5p4ZOZTzlXTiDGVDAvaPSlg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.2.2_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.3.2_graphql@16.6.0
- '@graphql-mesh/types': 0.80.1_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.3_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.2.2(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.3.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.80.1(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.3(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0)
file-uri-to-path: 2.0.0
graphql: 16.6.0
js-yaml: 4.1.0
@@ -3390,16 +3315,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/utils/0.42.9_graphql@16.6.0:
+ /@graphql-mesh/utils@0.42.9(graphql@16.6.0):
resolution: {integrity: sha512-Dr2pgN+RXyCJef5oS8DLuWoUdz9FapSxykBjQyNB1twzRJmiWt7gKkJ/YcrzWj56aNEK/1ntmPHGn2c1noXEnQ==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.2.10_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.3.3_graphql@16.6.0
- '@graphql-mesh/types': 0.87.1_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.2.10(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/types': 0.87.1(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
graphql: 16.6.0
js-yaml: 4.1.0
lodash.get: 4.4.2
@@ -3412,16 +3337,16 @@ packages:
- react-native-windows
dev: false
- /@graphql-mesh/utils/0.43.17_graphql@16.6.0:
+ /@graphql-mesh/utils@0.43.17(graphql@16.6.0):
resolution: {integrity: sha512-huTgWOePnzZIp+alMNw6JL/qnxObJb0CGLd1G5WWKdNnQttZRjzZx/jz2oJ7fmbFvPsrG2YpOW0HYNVD+2Flbw==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
dset: 3.1.2
graphql: 16.6.0
js-yaml: 4.1.0
@@ -3434,14 +3359,14 @@ packages:
- react-native-windows
dev: false
- /@graphql-tools/apollo-engine-loader/7.3.26_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-tools/apollo-engine-loader@7.3.26(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3449,73 +3374,73 @@ packages:
- encoding
dev: false
- /@graphql-tools/batch-delegate/8.4.10_graphql@16.6.0:
+ /@graphql-tools/batch-delegate@8.4.10(graphql@16.6.0):
resolution: {integrity: sha512-6D/lM3S+V2bOSOCJVkceFFgXH7knkUSo2z14D6kN5SN+ZTjQfzYosXD5JmCaxdStWGBAZJGHfPoRSyNtgLVBJg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
dataloader: 2.1.0
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/batch-delegate/8.4.21_graphql@16.6.0:
+ /@graphql-tools/batch-delegate@8.4.21(graphql@16.6.0):
resolution: {integrity: sha512-NrnMGF6SHv7b0OWSyPUURZDoPGKEFTmTyYwVQ+iM950ZPBx3gOUPODZaXWpFVlFK2UGVNk6atvbigPDHnwSZnw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
dataloader: 2.2.2
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/batch-execute/8.5.12_graphql@16.6.0:
+ /@graphql-tools/batch-execute@8.5.12(graphql@16.6.0):
resolution: {integrity: sha512-eNdN5CirW3ILoBaVyy4GI6JpLoJELeH0A7+uLRjwZuMFxpe4cljSrY8P+id28m43+uvBzB3rvNTv0+mnRjrMRw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
dataloader: 2.1.0
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/batch-execute/8.5.18_graphql@16.6.0:
+ /@graphql-tools/batch-execute@8.5.18(graphql@16.6.0):
resolution: {integrity: sha512-mNv5bpZMLLwhkmPA6+RP81A6u3KF4CSKLf3VX9hbomOkQR4db8pNs8BOvpZU54wKsUzMzdlws/2g/Dabyb2Vsg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
dataloader: 2.2.2
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/batch-execute/8.5.3_graphql@16.6.0:
+ /@graphql-tools/batch-execute@8.5.3(graphql@16.6.0):
resolution: {integrity: sha512-dvP1bM02/NSDuAS5A6sLIUUJgs0fuMSk3Ib2jc3pL7HG7jzm/IXfvPURs48pJlMnxcawjVDC8fLh1oWfjmoAGg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
dataloader: 2.1.0
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/code-file-loader/7.3.21_graphql@16.6.0:
+ /@graphql-tools/code-file-loader@7.3.21(graphql@16.6.0):
resolution: {integrity: sha512-dj+OLnz1b8SYkXcuiy0CUQ25DWnOEyandDlOcdBqU3WVwh5EEVbn0oXUYm90fDlq2/uut00OrtC5Wpyhi3tAvA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 7.5.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/graphql-tag-pluck': 7.5.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
globby: 11.1.0
graphql: 16.6.0
tslib: 2.5.0
@@ -3525,51 +3450,51 @@ packages:
- supports-color
dev: false
- /@graphql-tools/delegate/9.0.17_graphql@16.6.0:
+ /@graphql-tools/delegate@9.0.17(graphql@16.6.0):
resolution: {integrity: sha512-y7h5H+hOhQWEkG67A4wurlphHMYJuMlQIEY7wZPVpmViuV6TuSPB7qkLITsM99XiNQhX+v1VayN2cuaP/8nIhw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/batch-execute': 8.5.12_graphql@16.6.0
- '@graphql-tools/executor': 0.0.9_graphql@16.6.0
- '@graphql-tools/schema': 9.0.10_graphql@16.6.0
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-tools/batch-execute': 8.5.12(graphql@16.6.0)
+ '@graphql-tools/executor': 0.0.9(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.10(graphql@16.6.0)
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
dataloader: 2.1.0
graphql: 16.6.0
tslib: 2.4.1
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/delegate/9.0.28_graphql@16.6.0:
+ /@graphql-tools/delegate@9.0.28(graphql@16.6.0):
resolution: {integrity: sha512-8j23JCs2mgXqnp+5K0v4J3QBQU/5sXd9miaLvMfRf/6963DznOXTECyS9Gcvj1VEeR5CXIw6+aX/BvRDKDdN1g==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/batch-execute': 8.5.18_graphql@16.6.0
- '@graphql-tools/executor': 0.0.15_graphql@16.6.0
- '@graphql-tools/schema': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/batch-execute': 8.5.18(graphql@16.6.0)
+ '@graphql-tools/executor': 0.0.15(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
dataloader: 2.2.2
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/delegate/9.0.3_graphql@16.6.0:
+ /@graphql-tools/delegate@9.0.3(graphql@16.6.0):
resolution: {integrity: sha512-4noYCEL/0UeH+5KVRkkqLYH3iyXBb56hh120Y9DEc/JFmb1ldhgxGH2BuoINE2kt35dYhzRk9QA1+HG8FXIBWQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/batch-execute': 8.5.3_graphql@16.6.0
- '@graphql-tools/schema': 9.0.1_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-tools/batch-execute': 8.5.3(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.1(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
dataloader: 2.1.0
graphql: 16.6.0
tslib: 2.4.1
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/documents/0.1.0_graphql@16.6.0:
+ /@graphql-tools/documents@0.1.0(graphql@16.6.0):
resolution: {integrity: sha512-1WQeovHv5S1M3xMzQxbSrG3yl6QOnsq2JUBnlg5/0aMM5R4GNMx6Ms+ROByez/dnuA81kstRuSK+2qpe+GaRIw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -3579,17 +3504,17 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-tools/executor-graphql-ws/0.0.11_graphql@16.6.0:
+ /@graphql-tools/executor-graphql-ws@0.0.11(graphql@16.6.0):
resolution: {integrity: sha512-muRj6j897ks2iKqe3HchWFFzd+jFInSRuLPvHJ7e4WPrejFvaZx3BQ9gndfJvVkfYUZIFm13stCGXaJJTbVM0Q==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@repeaterjs/repeater': 3.0.4
'@types/ws': 8.5.4
graphql: 16.6.0
- graphql-ws: 5.11.3_graphql@16.6.0
- isomorphic-ws: 5.0.0_ws@8.12.1
+ graphql-ws: 5.11.3(graphql@16.6.0)
+ isomorphic-ws: 5.0.0(ws@8.12.1)
tslib: 2.5.0
ws: 8.12.1
transitivePeerDependencies:
@@ -3597,17 +3522,17 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/executor-graphql-ws/0.0.12_graphql@16.6.0:
+ /@graphql-tools/executor-graphql-ws@0.0.12(graphql@16.6.0):
resolution: {integrity: sha512-aFD79i9l282Ob5dOZ7JsyhhXXP1o8eQh0prYkSSVo/OU2ndzWigfANz4DJgWgS3LwBjLDlMcmaXPZZeXt3m4Tg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@repeaterjs/repeater': 3.0.4
'@types/ws': 8.5.4
graphql: 16.6.0
- graphql-ws: 5.12.0_graphql@16.6.0
- isomorphic-ws: 5.0.0_ws@8.12.1
+ graphql-ws: 5.12.0(graphql@16.6.0)
+ isomorphic-ws: 5.0.0(ws@8.12.1)
tslib: 2.5.0
ws: 8.12.1
transitivePeerDependencies:
@@ -3615,33 +3540,33 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/executor-http/0.1.9_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-tools/executor-http@0.1.9(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-tNzMt5qc1ptlHKfpSv9wVBVKCZ7gks6Yb/JcYJluxZIT4qRV+TtOFjpptfBU63usgrGVOVcGjzWc/mt7KhmmpQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@repeaterjs/repeater': 3.0.4
- '@whatwg-node/fetch': 0.8.3_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.3(@types/node@18.11.9)
dset: 3.1.2
extract-files: 11.0.0
graphql: 16.6.0
- meros: 1.2.1_@types+node@18.11.9
+ meros: 1.2.1(@types/node@18.11.9)
tslib: 2.5.0
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
dev: false
- /@graphql-tools/executor-legacy-ws/0.0.9_graphql@16.6.0:
+ /@graphql-tools/executor-legacy-ws@0.0.9(graphql@16.6.0):
resolution: {integrity: sha512-L7oDv7R5yoXzMH+KLKDB2WHVijfVW4dB2H+Ae1RdW3MFvwbYjhnIB6QzHqKEqksjp/FndtxZkbuTIuAOsYGTYw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@types/ws': 8.5.4
graphql: 16.6.0
- isomorphic-ws: 5.0.0_ws@8.12.1
+ isomorphic-ws: 5.0.0(ws@8.12.1)
tslib: 2.5.0
ws: 8.12.1
transitivePeerDependencies:
@@ -3649,52 +3574,52 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/executor/0.0.14_graphql@16.6.0:
+ /@graphql-tools/executor@0.0.14(graphql@16.6.0):
resolution: {integrity: sha512-YiBbN9NT0FgqPJ35+Eg0ty1s5scOZTgiPf+6hLVJBd5zHEURwojEMCTKJ9e0RNZHETp2lN+YaTFGTSoRk0t4Sw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0)
'@repeaterjs/repeater': 3.0.4
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/executor/0.0.15_graphql@16.6.0:
+ /@graphql-tools/executor@0.0.15(graphql@16.6.0):
resolution: {integrity: sha512-6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0)
'@repeaterjs/repeater': 3.0.4
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/executor/0.0.9_graphql@16.6.0:
+ /@graphql-tools/executor@0.0.9(graphql@16.6.0):
resolution: {integrity: sha512-qLhQWXTxTS6gbL9INAQa4FJIqTd2tccnbs4HswOx35KnyLaLtREuQ8uTfU+5qMrRIBhuzpGdkP2ssqxLyOJ5rA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
- '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
+ '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0)
'@repeaterjs/repeater': 3.0.4
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/git-loader/7.2.20_graphql@16.6.0:
+ /@graphql-tools/git-loader@7.2.20(graphql@16.6.0):
resolution: {integrity: sha512-D/3uwTzlXxG50HI8BEixqirT4xiUp6AesTdfotRXAs2d4CT9wC6yuIWOHkSBqgI1cwKWZb6KXZr467YPS5ob1w==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/graphql-tag-pluck': 7.5.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/graphql-tag-pluck': 7.5.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
is-glob: 4.0.3
micromatch: 4.0.5
@@ -3705,15 +3630,15 @@ packages:
- supports-color
dev: false
- /@graphql-tools/github-loader/7.3.27_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-tools/github-loader@7.3.27(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-fFFC35qenyhjb8pfcYXKknAt0CXP5CkQYtLfJXgTXSgBjIsfAVMrqxQ/Y0ejeM19XNF/C3VWJ7rE308yOX6ywA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/graphql-tag-pluck': 7.5.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@graphql-tools/graphql-tag-pluck': 7.5.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3723,29 +3648,29 @@ packages:
- supports-color
dev: false
- /@graphql-tools/graphql-file-loader/7.5.16_graphql@16.6.0:
+ /@graphql-tools/graphql-file-loader@7.5.16(graphql@16.6.0):
resolution: {integrity: sha512-lK1N3Y2I634FS12nd4bu7oAJbai3bUc28yeX+boT+C83KTO4ujGHm+6hPC8X/FRGwhKOnZBxUM7I5nvb3HiUxw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/import': 6.7.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/import': 6.7.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
globby: 11.1.0
graphql: 16.6.0
tslib: 2.5.0
unixify: 1.0.0
dev: false
- /@graphql-tools/graphql-tag-pluck/7.5.0_graphql@16.6.0:
+ /@graphql-tools/graphql-tag-pluck@7.5.0(graphql@16.6.0):
resolution: {integrity: sha512-76SYzhSlH50ZWkhWH6OI94qrxa8Ww1ZeOU04MdtpSeQZVT2rjGWeTb3xM3kjTVWQJsr/YJBhDeNPGlwNUWfX4Q==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@babel/parser': 7.21.2
- '@babel/plugin-syntax-import-assertions': 7.20.0
- '@babel/traverse': 7.21.2
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.0)
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3753,116 +3678,116 @@ packages:
- supports-color
dev: false
- /@graphql-tools/import/6.7.17_graphql@16.6.0:
+ /@graphql-tools/import@6.7.17(graphql@16.6.0):
resolution: {integrity: sha512-bn9SgrECXq3WIasgNP7ful/uON51wBajPXtxdY+z/ce7jLWaFE6lzwTDB/GAgiZ+jo7nb0ravlxteSAz2qZmuA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
resolve-from: 5.0.0
tslib: 2.5.0
dev: false
- /@graphql-tools/json-file-loader/7.4.17_graphql@16.6.0:
+ /@graphql-tools/json-file-loader@7.4.17(graphql@16.6.0):
resolution: {integrity: sha512-KOSTP43nwjPfXgas90rLHAFgbcSep4nmiYyR9xRVz4ZAmw8VYHcKhOLTSGylCAzi7KUfyBXajoW+6Z7dQwdn3g==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
globby: 11.1.0
graphql: 16.6.0
tslib: 2.5.0
unixify: 1.0.0
dev: false
- /@graphql-tools/load/7.8.12_graphql@16.6.0:
+ /@graphql-tools/load@7.8.12(graphql@16.6.0):
resolution: {integrity: sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
p-limit: 3.1.0
tslib: 2.5.0
dev: false
- /@graphql-tools/load/7.8.4_graphql@16.6.0:
+ /@graphql-tools/load@7.8.4(graphql@16.6.0):
resolution: {integrity: sha512-swS3sJx/gVpSw1CfI18zSwLlTFbN6PVlkfaLZJ8VN3d/3C+ESff553LLleXGgzOY9X0H1x3VHZeAR2+HUCrbbw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/schema': 9.0.8_graphql@16.6.0
- '@graphql-tools/utils': 9.0.1_graphql@16.6.0
+ '@graphql-tools/schema': 9.0.8(graphql@16.6.0)
+ '@graphql-tools/utils': 9.0.1(graphql@16.6.0)
graphql: 16.6.0
p-limit: 3.1.0
tslib: 2.5.0
dev: false
- /@graphql-tools/merge/8.3.10_graphql@16.6.0:
+ /@graphql-tools/merge@8.3.10(graphql@16.6.0):
resolution: {integrity: sha512-/hSg69JwqEA+t01wQmMGKPuaJ9VJBSz6uAXhbNNrTBJu8bmXljw305NVXM49pCwDKFVUGtbTqYrBeLcfT3RoYw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.0.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.0.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/merge/8.3.12_graphql@16.6.0:
+ /@graphql-tools/merge@8.3.12(graphql@16.6.0):
resolution: {integrity: sha512-BFL8r4+FrqecPnIW0H8UJCBRQ4Y8Ep60aujw9c/sQuFmQTiqgWgpphswMGfaosP2zUinDE3ojU5wwcS2IJnumA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/merge/8.3.18_graphql@16.6.0:
+ /@graphql-tools/merge@8.3.18(graphql@16.6.0):
resolution: {integrity: sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/merge/8.3.3_graphql@16.6.0:
+ /@graphql-tools/merge@8.3.3(graphql@16.6.0):
resolution: {integrity: sha512-EfULshN2s2s2mhBwbV9WpGnoehRLe7eIMdZrKfHhxlBWOvtNUd3KSCN0PUdAMd7lj1jXUW9KYdn624JrVn6qzg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/merge/8.4.0_graphql@16.6.0:
+ /@graphql-tools/merge@8.4.0(graphql@16.6.0):
resolution: {integrity: sha512-3XYCWe0d3I4F1azNj1CdShlbHfTIfiDgj00R9uvFH8tHKh7i1IWN3F7QQYovcHKhayaR6zPok3YYMESYQcBoaA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/mock/8.7.18_graphql@16.6.0:
+ /@graphql-tools/mock@8.7.18(graphql@16.6.0):
resolution: {integrity: sha512-ZbXMp86V0DmfgUZhr5aGHtNIS2hBazhvTpPlFCyNOP+RMio3ErKnSsma3T1jV1ZyMo11l7QrxV9Xxn3uA0dv+w==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
fast-json-stable-stringify: 2.1.0
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/optimize/1.3.1_graphql@16.6.0:
+ /@graphql-tools/optimize@1.3.1(graphql@16.6.0):
resolution: {integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -3871,20 +3796,20 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-tools/prisma-loader/7.2.65_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-tools/prisma-loader@7.2.65(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-MuX4XrJEuOE6qYbjR9WhSInPX8iji07wA6K72hVgkvG2UBXBUAcVC/1H6iOFbs1d7rLLU2r6aWsYnD6zwzw+eA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/url-loader': 7.17.14_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/url-loader': 7.17.14(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@types/js-yaml': 4.0.5
'@types/json-stable-stringify': 1.0.34
chalk: 4.1.2
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
dotenv: 16.0.3
graphql: 16.6.0
- graphql-request: 5.2.0_graphql@16.6.0
+ graphql-request: 5.2.0(graphql@16.6.0)
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
isomorphic-fetch: 3.0.0
@@ -3903,13 +3828,13 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/relay-operation-optimizer/6.5.17_graphql@16.6.0:
+ /@graphql-tools/relay-operation-optimizer@6.5.17(graphql@16.6.0):
resolution: {integrity: sha512-hHPEX6ccRF3+9kfVz0A3In//Dej7QrHOLGZEokBmPDMDqn9CS7qUjpjyGzclbOX0tRBtLfuFUZ68ABSac3P1nA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@ardatan/relay-compiler': 12.0.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -3917,121 +3842,121 @@ packages:
- supports-color
dev: false
- /@graphql-tools/resolvers-composition/6.5.17_graphql@16.6.0:
+ /@graphql-tools/resolvers-composition@6.5.17(graphql@16.6.0):
resolution: {integrity: sha512-9VGQUt71wdwoKBda2Yln6X1ulTrhknIsO9G7+S1szTeadzDFnBDFXjlzTINd6/+3hmfDiUg0ps5VLzgivQwzpg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
lodash: 4.17.21
micromatch: 4.0.5
tslib: 2.5.0
dev: false
- /@graphql-tools/schema/9.0.10_graphql@16.6.0:
- resolution: {integrity: sha512-lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ==}
+ /@graphql-tools/schema@9.0.1(graphql@16.6.0):
+ resolution: {integrity: sha512-Y6apeiBmvXEz082IAuS/ainnEEQrzMECP1MRIV72eo2WPa6ZtLYPycvIbd56Z5uU2LKP4XcWRgK6WUbCyN16Rw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 8.3.12_graphql@16.6.0
- '@graphql-tools/utils': 9.1.1_graphql@16.6.0
+ '@graphql-tools/merge': 8.3.3(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/schema/9.0.16_graphql@16.6.0:
- resolution: {integrity: sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==}
+ /@graphql-tools/schema@9.0.10(graphql@16.6.0):
+ resolution: {integrity: sha512-lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 8.3.18_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/merge': 8.3.12(graphql@16.6.0)
+ '@graphql-tools/utils': 9.1.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
- value-or-promise: 1.0.12
+ value-or-promise: 1.0.11
dev: false
- /@graphql-tools/schema/9.0.17_graphql@16.6.0:
- resolution: {integrity: sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==}
+ /@graphql-tools/schema@9.0.16(graphql@16.6.0):
+ resolution: {integrity: sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 8.4.0_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/merge': 8.3.18(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/schema/9.0.1_graphql@16.6.0:
- resolution: {integrity: sha512-Y6apeiBmvXEz082IAuS/ainnEEQrzMECP1MRIV72eo2WPa6ZtLYPycvIbd56Z5uU2LKP4XcWRgK6WUbCyN16Rw==}
+ /@graphql-tools/schema@9.0.17(graphql@16.6.0):
+ resolution: {integrity: sha512-HVLq0ecbkuXhJlpZ50IHP5nlISqH2GbNgjBJhhRzHeXhfwlUOT4ISXGquWTmuq61K0xSaO0aCjMpxe4QYbKTng==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 8.3.3_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-tools/merge': 8.4.0(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
- value-or-promise: 1.0.11
+ value-or-promise: 1.0.12
dev: false
- /@graphql-tools/schema/9.0.8_graphql@16.6.0:
+ /@graphql-tools/schema@9.0.8(graphql@16.6.0):
resolution: {integrity: sha512-PnES7sNkhQ/FdPQhP7cup0OIzwzQh+nfjklilU7YJzE209ACIyEQtxoNCfvPW5eV6hc9bWsBQeI3Jm4mMtwxNA==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/merge': 8.3.10_graphql@16.6.0
- '@graphql-tools/utils': 9.0.1_graphql@16.6.0
+ '@graphql-tools/merge': 8.3.10(graphql@16.6.0)
+ '@graphql-tools/utils': 9.0.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.11
dev: false
- /@graphql-tools/stitch/8.7.42_graphql@16.6.0:
+ /@graphql-tools/stitch@8.7.42(graphql@16.6.0):
resolution: {integrity: sha512-3GmHcxG2UB+r6qGWe2VzvTyFuCuDuBUquAkvWcx+mESiIDOxNdNTQKN69VGNkie+RavlCWUHE3SmhY8u7Z+7wQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/batch-delegate': 8.4.21_graphql@16.6.0
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/merge': 8.3.18_graphql@16.6.0
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-tools/wrap': 9.3.7_graphql@16.6.0
+ '@graphql-tools/batch-delegate': 8.4.21(graphql@16.6.0)
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/merge': 8.3.18(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-tools/wrap': 9.3.7(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/stitching-directives/2.3.31_graphql@16.6.0:
+ /@graphql-tools/stitching-directives@2.3.31(graphql@16.6.0):
resolution: {integrity: sha512-XX81hqZy4IHB2OwrG1escEA5yT5ZBxUYoHaxohAa8gaYUij5Xc6l4qzZ8HT05T1x1mNhFFNILEgQaJA1EDGv/A==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/url-loader/7.17.13_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-tools/url-loader@7.17.13(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-FEmbvw68kxeZLn4VYGAl+NuBPk09ZnxymjW07A6mCtiDayFgYfHdWeRzXn/iM5PzsEuCD73R1sExtNQ/ISiajg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/executor-graphql-ws': 0.0.11_graphql@16.6.0
- '@graphql-tools/executor-http': 0.1.9_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/executor-legacy-ws': 0.0.9_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-tools/wrap': 9.3.8_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/executor-graphql-ws': 0.0.11(graphql@16.6.0)
+ '@graphql-tools/executor-http': 0.1.9(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/executor-legacy-ws': 0.0.9(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-tools/wrap': 9.3.8(graphql@16.6.0)
'@types/ws': 8.5.4
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
graphql: 16.6.0
- isomorphic-ws: 5.0.0_ws@8.13.0
+ isomorphic-ws: 5.0.0(ws@8.13.0)
tslib: 2.5.0
value-or-promise: 1.0.12
ws: 8.13.0
@@ -4042,22 +3967,22 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/url-loader/7.17.14_xfoe4adolgvm4tvnio5xigcr6e:
+ /@graphql-tools/url-loader@7.17.14(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-7boEmrZlbViqQSSvu2VFCGi9YAY7E0BCVObiv1sLYbFR+62mo825As0haU5l7wlx1zCDyUlOleNz+X2jVvBbSQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/executor-graphql-ws': 0.0.12_graphql@16.6.0
- '@graphql-tools/executor-http': 0.1.9_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/executor-legacy-ws': 0.0.9_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
- '@graphql-tools/wrap': 9.3.8_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/executor-graphql-ws': 0.0.12(graphql@16.6.0)
+ '@graphql-tools/executor-http': 0.1.9(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/executor-legacy-ws': 0.0.9(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
+ '@graphql-tools/wrap': 9.3.8(graphql@16.6.0)
'@types/ws': 8.5.4
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
graphql: 16.6.0
- isomorphic-ws: 5.0.0_ws@8.13.0
+ isomorphic-ws: 5.0.0(ws@8.13.0)
tslib: 2.5.0
value-or-promise: 1.0.12
ws: 8.13.0
@@ -4068,7 +3993,7 @@ packages:
- utf-8-validate
dev: false
- /@graphql-tools/utils/8.10.0_graphql@16.6.0:
+ /@graphql-tools/utils@8.10.0(graphql@16.6.0):
resolution: {integrity: sha512-yI+V373FdXQbYfqdarehn9vRWDZZYuvyQ/xwiv5ez2BbobHrqsexF7qs56plLRaQ8ESYpVAjMQvJWe9s23O0Jg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4077,7 +4002,7 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-tools/utils/8.13.1_graphql@16.6.0:
+ /@graphql-tools/utils@8.13.1(graphql@16.6.0):
resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4086,7 +4011,7 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-tools/utils/9.0.1_graphql@16.6.0:
+ /@graphql-tools/utils@9.0.1(graphql@16.6.0):
resolution: {integrity: sha512-z6FimVa5E44bHKmqK0/uMp9hHvHo2Tkt9A5rlLb40ReD/8IFKehSXLzM4b2N1vcP7mSsbXIdDK9Aoc8jT/he1Q==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4095,7 +4020,7 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-tools/utils/9.1.1_graphql@16.6.0:
+ /@graphql-tools/utils@9.1.1(graphql@16.6.0):
resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4104,43 +4029,43 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-tools/utils/9.2.1_graphql@16.6.0:
+ /@graphql-tools/utils@9.2.1(graphql@16.6.0):
resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0
+ '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
dev: false
- /@graphql-tools/wrap/9.3.7_graphql@16.6.0:
+ /@graphql-tools/wrap@9.3.7(graphql@16.6.0):
resolution: {integrity: sha512-gavfiWLKgvmC2VPamnMzml3zmkBoo0yt+EmOLIHY6O92o4uMTR281WGM77tZIfq+jzLtjoIOThUSjC/cN/6XKg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/wrap/9.3.8_graphql@16.6.0:
+ /@graphql-tools/wrap@9.3.8(graphql@16.6.0):
resolution: {integrity: sha512-MGsExYPiILMw4Qff7HcvE9MMSYdjb/tr5IQYJbxJIU4/TrBHox1/smne8HG+Bd7kmDlTTj7nU/Z8sxmoRd0hOQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/delegate': 9.0.28_graphql@16.6.0
- '@graphql-tools/schema': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/delegate': 9.0.28(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
graphql: 16.6.0
tslib: 2.5.0
value-or-promise: 1.0.12
dev: false
- /@graphql-typed-document-node/core/3.1.1_graphql@16.6.0:
+ /@graphql-typed-document-node/core@3.1.1(graphql@16.6.0):
resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
@@ -4148,7 +4073,7 @@ packages:
graphql: 16.6.0
dev: false
- /@graphql-typed-document-node/core/3.1.2_graphql@16.6.0:
+ /@graphql-typed-document-node/core@3.1.2(graphql@16.6.0):
resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -4156,7 +4081,7 @@ packages:
graphql: 16.6.0
dev: false
- /@graphql-yoga/subscription/3.1.0:
+ /@graphql-yoga/subscription@3.1.0:
resolution: {integrity: sha512-Vc9lh8KzIHyS3n4jBlCbz7zCjcbtQnOBpsymcRvHhFr2cuH+knmRn0EmzimMQ58jQ8kxoRXXC3KJS3RIxSdPIg==}
dependencies:
'@graphql-yoga/typed-event-target': 1.0.0
@@ -4165,27 +4090,27 @@ packages:
tslib: 2.5.0
dev: false
- /@graphql-yoga/typed-event-target/1.0.0:
+ /@graphql-yoga/typed-event-target@1.0.0:
resolution: {integrity: sha512-Mqni6AEvl3VbpMtKw+TIjc9qS9a8hKhiAjFtqX488yq5oJtj9TkNlFTIacAVS3vnPiswNsmDiQqvwUOcJgi1DA==}
dependencies:
'@repeaterjs/repeater': 3.0.4
tslib: 2.5.0
dev: false
- /@humanwhocodes/config-array/0.9.5:
+ /@humanwhocodes/config-array@0.9.5:
resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- /@humanwhocodes/object-schema/1.2.1:
+ /@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- /@istanbuljs/load-nyc-config/1.1.0:
+ /@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
dependencies:
@@ -4195,11 +4120,11 @@ packages:
js-yaml: 3.14.1
resolve-from: 5.0.0
- /@istanbuljs/schema/0.1.3:
+ /@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- /@jest/console/28.1.3:
+ /@jest/console@28.1.3:
resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4210,7 +4135,7 @@ packages:
jest-util: 28.1.3
slash: 3.0.0
- /@jest/core/28.1.3_ts-node@10.9.1:
+ /@jest/core@28.1.3(ts-node@10.9.1):
resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -4231,7 +4156,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.10
jest-changed-files: 28.1.3
- jest-config: 28.1.3_skxcisbnntvwqykzjpzwatlj3a
+ jest-config: 28.1.3(@types/node@18.15.0)(ts-node@10.9.1)
jest-haste-map: 28.1.3
jest-message-util: 28.1.3
jest-regex-util: 28.0.2
@@ -4253,13 +4178,13 @@ packages:
- ts-node
dev: true
- /@jest/create-cache-key-function/27.5.1:
+ /@jest/create-cache-key-function@27.5.1:
resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- /@jest/environment/28.1.3:
+ /@jest/environment@28.1.3:
resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4268,13 +4193,13 @@ packages:
'@types/node': 18.15.0
jest-mock: 28.1.3
- /@jest/expect-utils/28.1.3:
+ /@jest/expect-utils@28.1.3:
resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
jest-get-type: 28.0.2
- /@jest/expect/28.1.3:
+ /@jest/expect@28.1.3:
resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4283,7 +4208,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/fake-timers/28.1.3:
+ /@jest/fake-timers@28.1.3:
resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4294,7 +4219,7 @@ packages:
jest-mock: 28.1.3
jest-util: 28.1.3
- /@jest/globals/28.1.3:
+ /@jest/globals@28.1.3:
resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4304,7 +4229,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/reporters/28.1.1:
+ /@jest/reporters@28.1.1:
resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -4341,7 +4266,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/reporters/28.1.3:
+ /@jest/reporters@28.1.3:
resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -4379,13 +4304,13 @@ packages:
- supports-color
dev: true
- /@jest/schemas/28.1.3:
+ /@jest/schemas@28.1.3:
resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@sinclair/typebox': 0.24.51
- /@jest/source-map/28.1.2:
+ /@jest/source-map@28.1.2:
resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4393,7 +4318,7 @@ packages:
callsites: 3.1.0
graceful-fs: 4.2.10
- /@jest/test-result/28.1.1:
+ /@jest/test-result@28.1.1:
resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4402,7 +4327,7 @@ packages:
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.1
- /@jest/test-result/28.1.3:
+ /@jest/test-result@28.1.3:
resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4411,7 +4336,7 @@ packages:
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.1
- /@jest/test-sequencer/28.1.3:
+ /@jest/test-sequencer@28.1.3:
resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4420,7 +4345,7 @@ packages:
jest-haste-map: 28.1.3
slash: 3.0.0
- /@jest/transform/28.1.3:
+ /@jest/transform@28.1.3:
resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4442,7 +4367,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@jest/types/27.5.1:
+ /@jest/types@27.5.1:
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -4452,7 +4377,7 @@ packages:
'@types/yargs': 16.0.5
chalk: 4.1.2
- /@jest/types/28.1.3:
+ /@jest/types@28.1.3:
resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -4463,14 +4388,14 @@ packages:
'@types/yargs': 17.0.22
chalk: 4.1.2
- /@jridgewell/gen-mapping/0.1.1:
+ /@jridgewell/gen-mapping@0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.14
- /@jridgewell/gen-mapping/0.3.2:
+ /@jridgewell/gen-mapping@0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -4478,47 +4403,47 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
'@jridgewell/trace-mapping': 0.3.17
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map/0.3.2:
+ /@jridgewell/source-map@0.3.2:
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
dependencies:
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.17
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
- /@jridgewell/trace-mapping/0.3.17:
+ /@jridgewell/trace-mapping@0.3.17:
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@jridgewell/trace-mapping/0.3.9:
+ /@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@json-schema-tools/meta-schema/1.6.19:
+ /@json-schema-tools/meta-schema@1.6.19:
resolution: {integrity: sha512-55zuWFW7tr4tf/G5AYmybcPdGOkVAreQbt2JdnogX4I2r/zkxZiimYPJESDf5je9BI2oRveak2p296HzDppeaA==}
dev: false
- /@json-schema-tools/meta-schema/1.7.0:
+ /@json-schema-tools/meta-schema@1.7.0:
resolution: {integrity: sha512-3pDzVUssW3hVnf8gvSu1sKaVIpLyvmpbxgGfkUoaBiErFKRS2CZOufHD0pUFoa5e6Cd5oa72s402nJbnDz76CA==}
dev: false
- /@leichtgewicht/ip-codec/2.0.4:
+ /@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
- /@manypkg/find-root/1.1.0:
+ /@manypkg/find-root@1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
'@babel/runtime': 7.21.0
@@ -4527,7 +4452,7 @@ packages:
fs-extra: 8.1.0
dev: true
- /@manypkg/get-packages/1.1.3:
+ /@manypkg/get-packages@1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
'@babel/runtime': 7.21.0
@@ -4538,24 +4463,24 @@ packages:
read-yaml-file: 1.1.0
dev: true
- /@microsoft/api-extractor-model/7.26.4_@types+node@18.11.9:
+ /@microsoft/api-extractor-model@7.26.4(@types/node@18.11.9):
resolution: {integrity: sha512-PDCgCzXDo+SLY5bsfl4bS7hxaeEtnXj7XtuzEE+BtALp7B5mK/NrS2kHWU69pohgsRmEALycQdaQPXoyT2i5MQ==}
dependencies:
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 3.55.2_@types+node@18.11.9
+ '@rushstack/node-core-library': 3.55.2(@types/node@18.11.9)
transitivePeerDependencies:
- '@types/node'
dev: true
- /@microsoft/api-extractor/7.34.4_@types+node@18.11.9:
+ /@microsoft/api-extractor@7.34.4(@types/node@18.11.9):
resolution: {integrity: sha512-HOdcci2nT40ejhwPC3Xja9G+WSJmWhCUKKryRfQYsmE9cD+pxmBaKBKCbuS9jUcl6bLLb4Gz+h7xEN5r0QiXnQ==}
hasBin: true
dependencies:
- '@microsoft/api-extractor-model': 7.26.4_@types+node@18.11.9
+ '@microsoft/api-extractor-model': 7.26.4(@types/node@18.11.9)
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 3.55.2_@types+node@18.11.9
+ '@rushstack/node-core-library': 3.55.2(@types/node@18.11.9)
'@rushstack/rig-package': 0.3.18
'@rushstack/ts-command-line': 4.13.2
colors: 1.2.5
@@ -4568,7 +4493,7 @@ packages:
- '@types/node'
dev: true
- /@microsoft/eslint-formatter-sarif/3.0.0:
+ /@microsoft/eslint-formatter-sarif@3.0.0:
resolution: {integrity: sha512-KIKkT44hEqCzqxODYwFMUvYEK0CrdHx/Ll9xiOWgFbBSRuzbxmVy4d/tzfgoucGz72HJZNOMjuyzFTBKntRK5Q==}
engines: {node: '>= 14'}
dependencies:
@@ -4580,7 +4505,7 @@ packages:
- supports-color
dev: true
- /@microsoft/tsdoc-config/0.16.2:
+ /@microsoft/tsdoc-config@0.16.2:
resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
dependencies:
'@microsoft/tsdoc': 0.14.2
@@ -4589,11 +4514,11 @@ packages:
resolve: 1.19.0
dev: true
- /@microsoft/tsdoc/0.14.2:
+ /@microsoft/tsdoc@0.14.2:
resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
dev: true
- /@mole-inc/bin-wrapper/8.0.1:
+ /@mole-inc/bin-wrapper@8.0.1:
resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -4607,30 +4532,30 @@ packages:
os-filter-obj: 2.0.0
dev: true
- /@neo4j/cypher-builder/0.2.1:
+ /@neo4j/cypher-builder@0.2.1:
resolution: {integrity: sha512-dq127avTXg9lLo/Z2EMhaucZed/TeAUheav0ZT174vsWdhENYFVbCxMTfXgymQrHRnqysYrXR6zUpRDl7SCEug==}
dev: false
- /@neo4j/graphql/3.17.0_quzuzoqs7mgcxdjqiv5cwbeati:
+ /@neo4j/graphql@3.17.0(graphql@16.6.0)(neo4j-driver@5.6.0):
resolution: {integrity: sha512-yzdFX1SW8ylawSHjiub4iwZkAPFgjI84ETvCYBgw2mYpWC7sEAsGYhaB5+js2gm4I3MyDC3Q7qLxe2lY4lh7jg==}
peerDependencies:
graphql: ^16.0.0
neo4j-driver: ^4.1.0 || ^5.0.0
dependencies:
- '@apollo/subgraph': 2.4.0_graphql@16.6.0
- '@graphql-tools/merge': 8.4.0_graphql@16.6.0
- '@graphql-tools/resolvers-composition': 6.5.17_graphql@16.6.0
- '@graphql-tools/schema': 9.0.16_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@apollo/subgraph': 2.4.0(graphql@16.6.0)
+ '@graphql-tools/merge': 8.4.0(graphql@16.6.0)
+ '@graphql-tools/resolvers-composition': 6.5.17(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.16(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@neo4j/cypher-builder': 0.2.1
camelcase: 6.3.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
deep-equal: 2.2.0
dot-prop: 6.0.1
graphql: 16.6.0
- graphql-compose: 9.0.10_graphql@16.6.0
- graphql-parse-resolve-info: 4.13.0_graphql@16.6.0
- graphql-relay: 0.10.0_graphql@16.6.0
+ graphql-compose: 9.0.10(graphql@16.6.0)
+ graphql-parse-resolve-info: 4.13.0(graphql@16.6.0)
+ graphql-relay: 0.10.0(graphql@16.6.0)
neo4j-driver: 5.6.0
pluralize: 8.0.0
semver: 7.3.8
@@ -4639,30 +4564,30 @@ packages:
- supports-color
dev: false
- /@neo4j/introspector/1.0.3_neo4j-driver@5.6.0:
+ /@neo4j/introspector@1.0.3(neo4j-driver@5.6.0):
resolution: {integrity: sha512-dkFdpkuu1VGy0t2WKicttREkQyi2Phc8aaC15pP2hdrdhWwic8VjMvDqpNx0rEZwC6dR9efHSekbnm7JlDP4vA==}
peerDependencies:
neo4j-driver: ^4.1.0 || ^5.0.0
dependencies:
camelcase: 6.3.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
neo4j-driver: 5.6.0
pluralize: 8.0.0
transitivePeerDependencies:
- supports-color
dev: false
- /@next/env/13.1.1:
+ /@next/env@13.1.1:
resolution: {integrity: sha512-vFMyXtPjSAiOXOywMojxfKIqE3VWN5RCAx+tT3AS3pcKjMLFTCJFUWsKv8hC+87Z1F4W3r68qTwDFZIFmd5Xkw==}
dev: false
- /@next/eslint-plugin-next/13.1.1:
+ /@next/eslint-plugin-next@13.1.1:
resolution: {integrity: sha512-SBrOFS8PC3nQ5aeZmawJkjKkWjwK9RoxvBSv/86nZp0ubdoVQoko8r8htALd9ufp16NhacCdqhu9bzZLDWtALQ==}
dependencies:
glob: 7.1.7
dev: true
- /@next/swc-android-arm-eabi/13.1.1:
+ /@next/swc-android-arm-eabi@13.1.1:
resolution: {integrity: sha512-qnFCx1kT3JTWhWve4VkeWuZiyjG0b5T6J2iWuin74lORCupdrNukxkq9Pm+Z7PsatxuwVJMhjUoYz7H4cWzx2A==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -4671,7 +4596,7 @@ packages:
dev: false
optional: true
- /@next/swc-android-arm64/13.1.1:
+ /@next/swc-android-arm64@13.1.1:
resolution: {integrity: sha512-eCiZhTzjySubNqUnNkQCjU3Fh+ep3C6b5DCM5FKzsTH/3Gr/4Y7EiaPZKILbvnXmhWtKPIdcY6Zjx51t4VeTfA==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -4680,7 +4605,7 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-arm64/13.1.1:
+ /@next/swc-darwin-arm64@13.1.1:
resolution: {integrity: sha512-9zRJSSIwER5tu9ADDkPw5rIZ+Np44HTXpYMr0rkM656IvssowPxmhK0rTreC1gpUCYwFsRbxarUJnJsTWiutPg==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -4689,7 +4614,7 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64/13.1.1:
+ /@next/swc-darwin-x64@13.1.1:
resolution: {integrity: sha512-qWr9qEn5nrnlhB0rtjSdR00RRZEtxg4EGvicIipqZWEyayPxhUu6NwKiG8wZiYZCLfJ5KWr66PGSNeDMGlNaiA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -4698,7 +4623,7 @@ packages:
dev: false
optional: true
- /@next/swc-freebsd-x64/13.1.1:
+ /@next/swc-freebsd-x64@13.1.1:
resolution: {integrity: sha512-UwP4w/NcQ7V/VJEj3tGVszgb4pyUCt3lzJfUhjDMUmQbzG9LDvgiZgAGMYH6L21MoyAATJQPDGiAMWAPKsmumA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -4707,7 +4632,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/13.1.1:
+ /@next/swc-linux-arm-gnueabihf@13.1.1:
resolution: {integrity: sha512-CnsxmKHco9sosBs1XcvCXP845Db+Wx1G0qouV5+Gr+HT/ZlDYEWKoHVDgnJXLVEQzq4FmHddBNGbXvgqM1Gfkg==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -4716,7 +4641,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-gnu/13.1.1:
+ /@next/swc-linux-arm64-gnu@13.1.1:
resolution: {integrity: sha512-JfDq1eri5Dif+VDpTkONRd083780nsMCOKoFG87wA0sa4xL8LGcXIBAkUGIC1uVy9SMsr2scA9CySLD/i+Oqiw==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -4725,7 +4650,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl/13.1.1:
+ /@next/swc-linux-arm64-musl@13.1.1:
resolution: {integrity: sha512-GA67ZbDq2AW0CY07zzGt07M5b5Yaq5qUpFIoW3UFfjOPgb0Sqf3DAW7GtFMK1sF4ROHsRDMGQ9rnT0VM2dVfKA==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -4734,7 +4659,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu/13.1.1:
+ /@next/swc-linux-x64-gnu@13.1.1:
resolution: {integrity: sha512-nnjuBrbzvqaOJaV+XgT8/+lmXrSCOt1YYZn/irbDb2fR2QprL6Q7WJNgwsZNxiLSfLdv+2RJGGegBx9sLBEzGA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -4743,7 +4668,7 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl/13.1.1:
+ /@next/swc-linux-x64-musl@13.1.1:
resolution: {integrity: sha512-CM9xnAQNIZ8zf/igbIT/i3xWbQZYaF397H+JroF5VMOCUleElaMdQLL5riJml8wUfPoN3dtfn2s4peSr3azz/g==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -4752,7 +4677,7 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc/13.1.1:
+ /@next/swc-win32-arm64-msvc@13.1.1:
resolution: {integrity: sha512-pzUHOGrbgfGgPlOMx9xk3QdPJoRPU+om84hqVoe6u+E0RdwOG0Ho/2UxCgDqmvpUrMab1Deltlt6RqcXFpnigQ==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -4761,7 +4686,7 @@ packages:
dev: false
optional: true
- /@next/swc-win32-ia32-msvc/13.1.1:
+ /@next/swc-win32-ia32-msvc@13.1.1:
resolution: {integrity: sha512-WeX8kVS46aobM9a7Xr/kEPcrTyiwJqQv/tbw6nhJ4fH9xNZ+cEcyPoQkwPo570dCOLz3Zo9S2q0E6lJ/EAUOBg==}
engines: {node: '>= 10'}
cpu: [ia32]
@@ -4770,7 +4695,7 @@ packages:
dev: false
optional: true
- /@next/swc-win32-x64-msvc/13.1.1:
+ /@next/swc-win32-x64-msvc@13.1.1:
resolution: {integrity: sha512-mVF0/3/5QAc5EGVnb8ll31nNvf3BWpPY4pBb84tk+BfQglWLqc5AC9q1Ht/YMWiEgs8ALNKEQ3GQnbY0bJF2Gg==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -4779,44 +4704,44 @@ packages:
dev: false
optional: true
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- /@nrwl/cli/15.7.1_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/cli@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42):
resolution: {integrity: sha512-33RcH5Af2BidQvnTGlDTrUWJ6Eul5aA0LeqYmEavYb+I0kzYMqdBzBCLgQT/13gAdoQauTWUO4g3eFhoHnCNrg==}
dependencies:
- nx: 15.7.1_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
- /@nrwl/cli/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/cli@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42):
resolution: {integrity: sha512-voy16nUO1MxRMRqCpLlhDB9U4KyPfGHZABXtfMEIQk+W3alncatFMMSVvMQZmi8HXwubM8LxWSOnPtTtOCKBrQ==}
dependencies:
- nx: 15.8.5_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
dev: false
- /@nrwl/cypress/15.7.1_cikm2sai6zdse2hr3skwwhi3pq:
+ /@nrwl/cypress@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-Tpc7kwar9HZ42PCtzGD+N0ZX0UHAG8erT85yO6lTQc2pgtx8WzSd5oc0n38QerKbrhJCIZrNyaDQ9aJOKRMOiA==}
peerDependencies:
cypress: '>= 3 < 13'
@@ -4824,10 +4749,10 @@ packages:
cypress:
optional: true
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
cypress: 12.7.0
dotenv: 10.0.0
semver: 7.3.4
@@ -4840,7 +4765,7 @@ packages:
- prettier
- typescript
- /@nrwl/cypress/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/cypress@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-y9+mLL5Yw8RRaCBkdmFG8br39rYUPF03P3kx2AI7KbCs0e1kfPe6E7TaPOgdtEeSTvitjE9YeamFlWfOEHXp0A==}
peerDependencies:
cypress: '>= 3 < 13'
@@ -4848,14 +4773,16 @@ packages:
cypress:
optional: true
dependencies:
- '@nrwl/devkit': 15.8.5
- '@nrwl/js': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/linter': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/workspace': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@phenomnomnominal/tsquery': 4.1.1
+ '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
+ cypress: 12.7.0
dotenv: 10.0.0
semver: 7.3.4
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -4866,28 +4793,29 @@ packages:
- typescript
dev: false
- /@nrwl/devkit/15.7.1_nx@15.7.1+typescript@4.8.4:
+ /@nrwl/devkit@15.7.1(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-u+4iBukrvrSQbKktnAcEuFzthq5ZGLpjE+SYUgg5+H6R76U0uelupdJ14qTWzIbSjlWLG53YmRZsJaIJ9EUG/w==}
peerDependencies:
nx: '>= 14.1 <= 16'
dependencies:
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
ejs: 3.1.8
ignore: 5.2.4
- nx: 15.7.1_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
semver: 7.3.4
tslib: 2.5.0
transitivePeerDependencies:
- typescript
- /@nrwl/devkit/15.8.5:
+ /@nrwl/devkit@15.8.5(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==}
peerDependencies:
nx: '>= 14.1 <= 16'
dependencies:
- '@phenomnomnominal/tsquery': 4.1.1
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
ejs: 3.1.8
ignore: 5.2.4
+ nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
semver: 7.3.4
tmp: 0.2.1
tslib: 2.5.0
@@ -4895,15 +4823,15 @@ packages:
- typescript
dev: false
- /@nrwl/devkit/15.8.5_nx@15.8.5:
+ /@nrwl/devkit@15.8.5(nx@15.8.5)(typescript@4.8.4):
resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==}
peerDependencies:
nx: '>= 14.1 <= 16'
dependencies:
- '@phenomnomnominal/tsquery': 4.1.1
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
ejs: 3.1.8
ignore: 5.2.4
- nx: 15.8.5_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
semver: 7.3.4
tmp: 0.2.1
tslib: 2.5.0
@@ -4911,7 +4839,7 @@ packages:
- typescript
dev: false
- /@nrwl/eslint-plugin-nx/15.7.1_ts3grcxlv7w34ma47oc43ckm6u:
+ /@nrwl/eslint-plugin-nx@15.7.1(@typescript-eslint/parser@5.56.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-6TGCf+SDWNO1Z/uyQaazqakb3iEUWKXUAUsXrZUWrdHca8/Ql9QQHNV6wbQ3ciT8zrV6TG0d9P+uAX97oORwQQ==}
peerDependencies:
'@typescript-eslint/parser': ^5.29.0
@@ -4920,12 +4848,12 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- '@typescript-eslint/utils': 5.54.1_oy7hgmlo6357d5kkcjbkfgtg4q
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@typescript-eslint/parser': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
+ '@typescript-eslint/utils': 5.54.1(eslint@8.15.0)(typescript@4.8.4)
chalk: 4.1.2
confusing-browser-globals: 1.0.11
- eslint-config-prettier: 8.1.0_eslint@8.15.0
+ eslint-config-prettier: 8.1.0(eslint@8.15.0)
semver: 7.3.4
transitivePeerDependencies:
- eslint
@@ -4934,17 +4862,17 @@ packages:
- typescript
dev: true
- /@nrwl/jest/15.7.1_x2izlteguqig6fi4rlok6uurpq:
+ /@nrwl/jest@15.7.1(@types/node@18.11.9)(nx@15.7.1)(ts-node@10.9.1)(typescript@4.8.4):
resolution: {integrity: sha512-WFZrqp7P52H+4vKzCCS6HwJYY5EUOwzy+ZF68yfd6ofvLVBLlfsfOht/7YuR+DW1EBpXhMvry93hOtvY3tNudA==}
dependencies:
'@jest/reporters': 28.1.1
'@jest/test-result': 28.1.1
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
chalk: 4.1.2
dotenv: 10.0.0
identity-obj-proxy: 3.0.0
- jest-config: 28.1.1_odkjkoia5xunhxkdrka32ib6vi
+ jest-config: 28.1.1(@types/node@18.11.9)(ts-node@10.9.1)
jest-resolve: 28.1.1
jest-util: 28.1.1
resolve.exports: 1.1.0
@@ -4957,23 +4885,24 @@ packages:
- ts-node
- typescript
- /@nrwl/jest/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/jest@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4):
resolution: {integrity: sha512-19je0KLYqQnjGvjt8CN4jBnGquRnNnRUnH948atIRjW0AyV1INeHxqtrYUJKaOx3m8snQCa01FqJvJjVjl1oAg==}
dependencies:
'@jest/reporters': 28.1.1
'@jest/test-result': 28.1.1
- '@nrwl/devkit': 15.8.5
- '@nrwl/js': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@phenomnomnominal/tsquery': 4.1.1
+ '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
chalk: 4.1.2
dotenv: 10.0.0
identity-obj-proxy: 3.0.0
- jest-config: 28.1.1
+ jest-config: 28.1.1(@types/node@18.11.9)(ts-node@10.9.1)
jest-resolve: 28.1.1
jest-util: 28.1.1
resolve.exports: 1.1.0
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- '@types/node'
@@ -4987,22 +4916,22 @@ packages:
- typescript
dev: false
- /@nrwl/js/15.7.1_vrlzavbrlewom5mddifopf3ydy:
+ /@nrwl/js@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-j5obLQoL+U4PwIDBMf4XqO8o/Fi4R/mr+9rQXSXHPKwLzbD7rrxw0N7Rq0vnRrpeAfTKX49e+JjGKwNZ31uMbA==}
dependencies:
'@babel/core': 7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0
- '@babel/preset-env': 7.20.2_@babel+core@7.21.0
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.0)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.0)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0)
'@babel/runtime': 7.21.0
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
- babel-plugin-const-enum: 1.2.0_@babel+core@7.21.0
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0)
babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.0)
chalk: 4.1.2
fast-glob: 3.2.7
fs-extra: 11.1.0
@@ -5013,6 +4942,7 @@ packages:
tree-kill: 1.2.2
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -5022,22 +4952,22 @@ packages:
- supports-color
- typescript
- /@nrwl/js/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/js@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-G9CADL++MQCAgiPTUuWs2YIGrhDKU92dVb39e37p/2WH75vEnMoYykW7nCHItGCGVa726INYBPjStqL6GxH8XQ==}
dependencies:
'@babel/core': 7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0
- '@babel/preset-env': 7.20.2_@babel+core@7.21.0
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.0)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.0)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0)
'@babel/runtime': 7.21.0
- '@nrwl/devkit': 15.8.5
- '@nrwl/workspace': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@phenomnomnominal/tsquery': 4.1.1
- babel-plugin-const-enum: 1.2.0_@babel+core@7.21.0
+ '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0)
babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.0)
chalk: 4.1.2
fast-glob: 3.2.7
fs-extra: 11.1.0
@@ -5048,6 +4978,7 @@ packages:
tree-kill: 1.2.2
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -5058,38 +4989,7 @@ packages:
- typescript
dev: false
- /@nrwl/js/15.8.5_nx@15.8.5:
- resolution: {integrity: sha512-G9CADL++MQCAgiPTUuWs2YIGrhDKU92dVb39e37p/2WH75vEnMoYykW7nCHItGCGVa726INYBPjStqL6GxH8XQ==}
- dependencies:
- '@babel/core': 7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0
- '@babel/preset-env': 7.20.2_@babel+core@7.21.0
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0
- '@babel/runtime': 7.21.0
- '@nrwl/devkit': 15.8.5_nx@15.8.5
- '@nrwl/workspace': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@phenomnomnominal/tsquery': 4.1.1
- babel-plugin-const-enum: 1.2.0_@babel+core@7.21.0
- babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2
- chalk: 4.1.2
- fast-glob: 3.2.7
- fs-extra: 11.1.0
- ignore: 5.2.4
- js-tokens: 4.0.0
- minimatch: 3.0.5
- source-map-support: 0.5.19
- tree-kill: 1.2.2
- tslib: 2.5.0
- transitivePeerDependencies:
- - nx
- - supports-color
- - typescript
- dev: false
-
- /@nrwl/linter/15.7.1_iqgqupxdglb7pgajvbq75etfrq:
+ /@nrwl/linter@15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-m0Wca+qEuiIecsl99TisDgW12wM69vcpF771eRAb3+Tis9YgUyLhRd1rmwhej+YeO7gBJlVI2AR84izZRSoguw==}
peerDependencies:
eslint: ^8.0.0
@@ -5097,8 +4997,8 @@ packages:
eslint:
optional: true
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
eslint: 8.15.0
tmp: 0.2.1
tslib: 2.5.0
@@ -5106,7 +5006,7 @@ packages:
- nx
- typescript
- /@nrwl/linter/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/linter@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==}
peerDependencies:
eslint: ^8.0.0
@@ -5114,12 +5014,14 @@ packages:
eslint:
optional: true
dependencies:
- '@nrwl/devkit': 15.8.5
- '@nrwl/js': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@phenomnomnominal/tsquery': 4.1.1
+ '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
+ eslint: 8.15.0
tmp: 0.2.1
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -5129,52 +5031,34 @@ packages:
- typescript
dev: false
- /@nrwl/linter/15.8.5_nx@15.8.5:
- resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==}
- peerDependencies:
- eslint: ^8.0.0
- peerDependenciesMeta:
- eslint:
- optional: true
- dependencies:
- '@nrwl/devkit': 15.8.5_nx@15.8.5
- '@nrwl/js': 15.8.5_nx@15.8.5
- '@phenomnomnominal/tsquery': 4.1.1
- tmp: 0.2.1
- tslib: 2.5.0
- transitivePeerDependencies:
- - nx
- - supports-color
- - typescript
- dev: false
-
- /@nrwl/next/15.7.1_jmpzvycvjmzqxbqwghcstg5ecy:
+ /@nrwl/next@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(cypress@12.7.0)(eslint@8.15.0)(next@13.1.1)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-X0+kXNfm4BwCXBGRiG3ZgFOsvkYIQ5A+jFlyIHwRhbee2IZaEGT7Nf438UahuaDgxnbI99xo0fHUwf0y3KBwWg==}
peerDependencies:
next: ^13.0.0
dependencies:
- '@babel/plugin-proposal-decorators': 7.21.0
- '@nrwl/cypress': 15.7.1_cikm2sai6zdse2hr3skwwhi3pq
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/jest': 15.7.1_x2izlteguqig6fi4rlok6uurpq
- '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
- '@nrwl/react': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/webpack': 15.7.1_xtevnxuk7fbn4jltywqimgcx4i
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
+ '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0)
+ '@nrwl/cypress': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/jest': 15.7.1(@types/node@18.11.9)(nx@15.7.1)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/react': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/webpack': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
'@svgr/webpack': 6.5.1
chalk: 4.1.2
dotenv: 10.0.0
fs-extra: 11.1.0
ignore: 5.2.4
- next: 13.1.1_biqbaboplfbrettd7655fr4n2y
+ next: 13.1.1(react-dom@18.2.0)(react@18.2.0)
semver: 7.3.4
- ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
tsconfig-paths: 4.1.2
url-loader: 4.1.1
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@babel/core'
+ - '@babel/traverse'
- '@parcel/css'
- '@swc-node/register'
- '@swc/core'
@@ -5204,18 +5088,19 @@ packages:
- webpack-cli
dev: false
- /@nrwl/node/15.7.1_vcikiox2al4nh7lor6nffaclbi:
+ /@nrwl/node@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4):
resolution: {integrity: sha512-ex5waYw2RYKhoaYFFJaPraYgeGDO2P8hFOmtxz4+kuODgRyinq3EAUrrCvNf7oRUi1NabPzuhZB3inm9BcYuXw==}
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/jest': 15.7.1_x2izlteguqig6fi4rlok6uurpq
- '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
- '@nrwl/webpack': 15.7.1_xtevnxuk7fbn4jltywqimgcx4i
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/jest': 15.7.1(@types/node@18.11.9)(nx@15.7.1)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/webpack': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
tslib: 2.5.0
transitivePeerDependencies:
- '@babel/core'
+ - '@babel/traverse'
- '@parcel/css'
- '@swc-node/register'
- '@swc/core'
@@ -5243,18 +5128,19 @@ packages:
- webpack-cli
dev: true
- /@nrwl/node/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/node@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4):
resolution: {integrity: sha512-d3SsuplX3/GS6oXnwc1u9aR3n4A9CXglqHCtRVppYATVTHvYS6NODjjwXonu7m/rnyXpirqueWQ9BbGvEej6tw==}
dependencies:
- '@nrwl/devkit': 15.8.5
- '@nrwl/jest': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/js': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/linter': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/webpack': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/workspace': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
+ '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/jest': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/webpack': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
tslib: 2.5.0
transitivePeerDependencies:
- '@babel/core'
+ - '@babel/traverse'
- '@parcel/css'
- '@swc-node/register'
- '@swc/core'
@@ -5282,7 +5168,7 @@ packages:
- webpack-cli
dev: false
- /@nrwl/nx-cloud/15.2.1:
+ /@nrwl/nx-cloud@15.2.1:
resolution: {integrity: sha512-T4ycGSx77TdvS0j6tKI/6zmh6YtsPHyfB2li+wDR+BW9wjGGqOTX1QvG3gf0k2enhA3dxLgYnmeDZoEUek6MOw==}
hasBin: true
dependencies:
@@ -5298,7 +5184,7 @@ packages:
- debug
dev: true
- /@nrwl/nx-darwin-arm64/15.7.1:
+ /@nrwl/nx-darwin-arm64@15.7.1:
resolution: {integrity: sha512-YaNq1kP0xoaG2SDTjAzc0ZXAzRHE4obnEtVbisMzGRJkMld7SiOzYZAoaLJI6mZJuc7cIzUlA+wFkE2e21q5tQ==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5306,7 +5192,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-darwin-arm64/15.8.5:
+ /@nrwl/nx-darwin-arm64@15.8.5:
resolution: {integrity: sha512-/8yXbh1J3k85MAW/A6cDiPeEnbt66SE9BPnM2IPlGoZrXakQvAXEn+gsjQlvnP3q2EaEyv7e5+GA+8d+p6mT5A==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5315,7 +5201,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-darwin-x64/15.7.1:
+ /@nrwl/nx-darwin-x64@15.7.1:
resolution: {integrity: sha512-G/0joeAQfZm4FuqaDyOAam912EfVS6mlG1gFrzp3P/kzzE+gxt/I+iQHNmEOl8Dnp4ercTgW6epUEQ03teRLOA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5323,7 +5209,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-darwin-x64/15.8.5:
+ /@nrwl/nx-darwin-x64@15.8.5:
resolution: {integrity: sha512-zEVoi0d+YChLrQMypoGFwu73t3YiD8UkXSozMtUEa2mg/se4e7jh+15tB6Te+Oq5aL0JKwQpr027GE4YtAmpLw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5332,7 +5218,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-linux-arm-gnueabihf/15.7.1:
+ /@nrwl/nx-linux-arm-gnueabihf@15.7.1:
resolution: {integrity: sha512-WeZndiNyAPolRc08C4LLY7y+b3g9wAsJVVTWugW9PyaTMD19KY6oFkNG5gg1W0InoGISazW5fUissE+911kgog==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -5340,7 +5226,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-linux-arm-gnueabihf/15.8.5:
+ /@nrwl/nx-linux-arm-gnueabihf@15.8.5:
resolution: {integrity: sha512-4C5wN0C7gQD6/lC9+UKUsB6mbHvowKhlaO529GIgtzrCLmfEh/LJ/CybnnKGpFEB/8Y5GpCa2uTWyA1XcPDzUw==}
engines: {node: '>= 10'}
cpu: [arm]
@@ -5349,7 +5235,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-linux-arm64-gnu/15.7.1:
+ /@nrwl/nx-linux-arm64-gnu@15.7.1:
resolution: {integrity: sha512-efDPQl2Z1YLnUlEKyu7lsvRnFIRXmvnbkH2nRv3HNHVufnHjjQ41UBw2Gqz4WUrEpmBz2Xq31cYUZluUP7/o6Q==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5357,7 +5243,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-linux-arm64-gnu/15.8.5:
+ /@nrwl/nx-linux-arm64-gnu@15.8.5:
resolution: {integrity: sha512-SMQ+oIsyK75JiKeSMprmb8VXce6MLdfcS5GWWOihpoDWfUC9FoQHAu4X1OtxHbVTmJfoEOInJKAhPxXAi5obdw==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5366,7 +5252,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-linux-arm64-musl/15.7.1:
+ /@nrwl/nx-linux-arm64-musl@15.7.1:
resolution: {integrity: sha512-Esv+ko6vMrI0HLnIXs76up7zUCaDfjArgn2TfMxvPjDEp4qmExiI8gmSh5JM1kC0MkHb4HghCnsSQ86Gg1BRiQ==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5374,7 +5260,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-linux-arm64-musl/15.8.5:
+ /@nrwl/nx-linux-arm64-musl@15.8.5:
resolution: {integrity: sha512-GVENjltZ17aJ6KOCibdBtLXQcGY5lpBqKolB9+rIYJvTWuV1k/uHOkYJDG7Vl70Rj46rC8K0Jp6BCpJHCv1ksQ==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5383,7 +5269,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-linux-x64-gnu/15.7.1:
+ /@nrwl/nx-linux-x64-gnu@15.7.1:
resolution: {integrity: sha512-9ZkeCHhk+a3ok8CBEcbIheWrlp+gY1KdhmHOksJuDsHTcRMirbZ9HWm+/UIYB2FVaEENCBgcA4akwXRDaxrmYw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5391,7 +5277,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-linux-x64-gnu/15.8.5:
+ /@nrwl/nx-linux-x64-gnu@15.8.5:
resolution: {integrity: sha512-AW8YjhZv3c+LRUoLvHLx4BZaDakQbPCPx70+c/uQyDkQP/ckYJc0gRjoZukolcI6+AvNcBhkI559RL9W4qb9iw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5400,7 +5286,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-linux-x64-musl/15.7.1:
+ /@nrwl/nx-linux-x64-musl@15.7.1:
resolution: {integrity: sha512-FOs8FhcACKfYjL5l/mIHUESs25KPsZsp3TWrpCYgQNkrvNV9lWbrQ+h9acWf23hR2FYVk7xKVo4wFYsUqF+DbA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5408,7 +5294,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-linux-x64-musl/15.8.5:
+ /@nrwl/nx-linux-x64-musl@15.8.5:
resolution: {integrity: sha512-m4Iy/pbzH0LTsADq/X+74nfVzm2Tt0zorOXXy/uQN4ozL/JNGVpwvxdOFxZ7e3RBXDX4u6awUzSE52Z2d2f0uA==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5417,17 +5303,18 @@ packages:
dev: false
optional: true
- /@nrwl/nx-plugin/15.7.1_vcikiox2al4nh7lor6nffaclbi:
+ /@nrwl/nx-plugin@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4):
resolution: {integrity: sha512-lMDdw8gmSafG8bnokHz8VDRWvalimjCAPLJi7lsYhJFKf9xRYsiPmSJhznDCTR8cYaB3X+46RyD17i2AAWwAnA==}
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/jest': 15.7.1_x2izlteguqig6fi4rlok6uurpq
- '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/jest': 15.7.1(@types/node@18.11.9)(nx@15.7.1)(ts-node@10.9.1)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
dotenv: 10.0.0
fs-extra: 11.1.0
tslib: 2.5.0
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- '@types/node'
@@ -5441,7 +5328,7 @@ packages:
- typescript
dev: true
- /@nrwl/nx-win32-arm64-msvc/15.7.1:
+ /@nrwl/nx-win32-arm64-msvc@15.7.1:
resolution: {integrity: sha512-JEhy0ac+ivhIdAPWqEfAN9EqFznKA5vt4oVjIqjDysqgzN9GBKOeo7gphdii9WyqrIKEbOs1L++ADWXw1gev6Q==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5449,7 +5336,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-win32-arm64-msvc/15.8.5:
+ /@nrwl/nx-win32-arm64-msvc@15.8.5:
resolution: {integrity: sha512-4AT1PHo5At8AXvgE5XlQbimE0THeSji6J3XZ1UTqq7n3L26QicNdnZcaHGyL1ukMtXRIwT/yed+xu1PFkXF4QA==}
engines: {node: '>= 10'}
cpu: [arm64]
@@ -5458,7 +5345,7 @@ packages:
dev: false
optional: true
- /@nrwl/nx-win32-x64-msvc/15.7.1:
+ /@nrwl/nx-win32-x64-msvc@15.7.1:
resolution: {integrity: sha512-GLh5TXKViRb55jBviZSZweavilUr2frmb/8iv3Fz7MPS6VvA+axIqNhuVcTJP1H3C/1yt3Nx5wwsXdWgg3mZpw==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5466,7 +5353,7 @@ packages:
requiresBuild: true
optional: true
- /@nrwl/nx-win32-x64-msvc/15.8.5:
+ /@nrwl/nx-win32-x64-msvc@15.8.5:
resolution: {integrity: sha512-53vzsQErvN4OeF/qBgfPg6OZ3smX4V8Lza59bwql9aAjjlMe1Ff9Su0BgAqlhVfSiYGxAirfHljgA6aWFqpCHQ==}
engines: {node: '>= 10'}
cpu: [x64]
@@ -5475,13 +5362,13 @@ packages:
dev: false
optional: true
- /@nrwl/react/15.7.1_vrlzavbrlewom5mddifopf3ydy:
+ /@nrwl/react@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-UT0tPLN5IPi5d3qWAHJNLS9zSqGmEj10RrjiGI95JzYRnjXneKtuCa8kZKPJkCFQftI3T6Pzpg8AWP3GIa/siA==}
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
chalk: 4.1.2
minimatch: 3.0.5
transitivePeerDependencies:
@@ -5493,43 +5380,44 @@ packages:
- prettier
- typescript
- /@nrwl/tao/15.7.1_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/tao@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42):
resolution: {integrity: sha512-pCKIijUGUAht+Lfy9P4WaHxTHnqqr+vaC00vX6XSlkRoFAUFYh7lhbOHDSKOwBG016ZoG73P1IIMg0um4ybd5w==}
hasBin: true
dependencies:
- nx: 15.7.1_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
- /@nrwl/tao/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/tao@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42):
resolution: {integrity: sha512-pb/hUprOOv2vgvbevGz9hiu8LLOtK7KKuBe4JLSXrFxfHEQjMFsK/2aymnts0ZQrA83QlIG2Mr0tuSKj6/iWvg==}
hasBin: true
dependencies:
- nx: 15.8.5_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
- debug
dev: false
- /@nrwl/vite/15.7.1_nc4yi2csj5owjlmjsrwcdxdxcm:
+ /@nrwl/vite@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)(vite@4.2.1)(vitest@0.25.8):
resolution: {integrity: sha512-rnud9y4rm3iD5i3JlHlKwvpRifCeKCdUF8LgQG8R7M3gQJD2mDaOFwG6Pd81p7JAhjGm42geMVhNFEW3uiaLCA==}
peerDependencies:
vite: ^4.0.1
vitest: ^0.25.8
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
- '@phenomnomnominal/tsquery': 4.1.1_typescript@4.8.4
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
'@swc/helpers': 0.4.14
dotenv: 10.0.0
enquirer: 2.3.6
- vite: 4.2.1_@types+node@18.11.9
- vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq
+ vite: 4.2.1(@types/node@18.11.9)
+ vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -5540,52 +5428,53 @@ packages:
- typescript
dev: true
- /@nrwl/webpack/15.7.1_xtevnxuk7fbn4jltywqimgcx4i:
+ /@nrwl/webpack@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-g+o/kqwtLP1E5RE04TjaM1qP7fGWV32RMSK3w5/Lb4lvL3nLgXvv8AsYsV0j9nY/cn/7EFj+zxb8hAgFsPoESg==}
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/js': 15.7.1_vrlzavbrlewom5mddifopf3ydy
- '@nrwl/workspace': 15.7.1_rjvtl4nds7aw5cb3weefmbx74u
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 9.1.2_webpack@5.76.0
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ babel-loader: 9.1.2(webpack@5.76.0)
chalk: 4.1.2
chokidar: 3.5.3
- copy-webpack-plugin: 10.2.4_webpack@5.76.0
- css-loader: 6.7.3_webpack@5.76.0
- css-minimizer-webpack-plugin: 3.4.1_webpack@5.76.0
+ copy-webpack-plugin: 10.2.4(webpack@5.76.0)
+ css-loader: 6.7.3(webpack@5.76.0)
+ css-minimizer-webpack-plugin: 3.4.1(webpack@5.76.0)
dotenv: 10.0.0
- file-loader: 6.2.0_webpack@5.76.0
- fork-ts-checker-webpack-plugin: 7.2.13_lns664hb3xkjxqouckgcmczr7a
+ file-loader: 6.2.0(webpack@5.76.0)
+ fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.8.4)(webpack@5.76.0)
ignore: 5.2.4
less: 3.12.2
- less-loader: 11.1.0_less@3.12.2+webpack@5.76.0
- license-webpack-plugin: 4.0.2_webpack@5.76.0
+ less-loader: 11.1.0(less@3.12.2)(webpack@5.76.0)
+ license-webpack-plugin: 4.0.2(webpack@5.76.0)
loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7_webpack@5.76.0
+ mini-css-extract-plugin: 2.4.7(webpack@5.76.0)
parse5: 4.0.0
postcss: 8.4.21
- postcss-import: 14.1.0_postcss@8.4.21
- postcss-loader: 6.2.1_ynsp4hpcl6ftpkdbhj2ssg4tva
+ postcss-import: 14.1.0(postcss@8.4.21)
+ postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.76.0)
rxjs: 6.6.7
sass: 1.58.3
- sass-loader: 12.6.0_sass@1.58.3+webpack@5.76.0
- source-map-loader: 3.0.2_webpack@5.76.0
- style-loader: 3.3.1_webpack@5.76.0
+ sass-loader: 12.6.0(sass@1.58.3)(webpack@5.76.0)
+ source-map-loader: 3.0.2(webpack@5.76.0)
+ style-loader: 3.3.1(webpack@5.76.0)
stylus: 0.55.0
- stylus-loader: 7.1.0_iwz5udw2ibqtb725jnip3p6uoy
- terser-webpack-plugin: 5.3.7_dpvlzh65cpfi2dmf4cqga3th74
- ts-loader: 9.4.2_lns664hb3xkjxqouckgcmczr7a
- ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
+ stylus-loader: 7.1.0(stylus@0.55.0)(webpack@5.76.0)
+ terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.0)
+ ts-loader: 9.4.2(typescript@4.8.4)(webpack@5.76.0)
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
tsconfig-paths: 4.1.2
tsconfig-paths-webpack-plugin: 4.0.0
tslib: 2.5.0
- webpack: 5.76.0_@swc+core@1.3.42
- webpack-dev-server: 4.11.1_webpack@5.76.0
+ webpack: 5.76.0(@swc/core@1.3.42)
+ webpack-dev-server: 4.11.1(webpack@5.76.0)
webpack-merge: 5.8.0
webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0_webpack@5.76.0
+ webpack-subresource-integrity: 5.1.0(webpack@5.76.0)
transitivePeerDependencies:
- '@babel/core'
+ - '@babel/traverse'
- '@parcel/css'
- '@swc-node/register'
- '@swc/core'
@@ -5610,51 +5499,52 @@ packages:
- vue-template-compiler
- webpack-cli
- /@nrwl/webpack/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/webpack@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-oN0ZCK6Bak8w5YOpyBxQRNxGwNbq31XneRvKPb9gSs71eJZtqLr5wwANfOOHe4m43CgDayp+nVOCQMNhsdxNFg==}
dependencies:
- '@nrwl/devkit': 15.8.5
- '@nrwl/js': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/workspace': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 9.1.2_webpack@5.76.0
+ '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ babel-loader: 9.1.2(webpack@5.76.0)
chalk: 4.1.2
chokidar: 3.5.3
- copy-webpack-plugin: 10.2.4_webpack@5.76.0
- css-loader: 6.7.3_webpack@5.76.0
- css-minimizer-webpack-plugin: 3.4.1_webpack@5.76.0
+ copy-webpack-plugin: 10.2.4(webpack@5.76.0)
+ css-loader: 6.7.3(webpack@5.76.0)
+ css-minimizer-webpack-plugin: 3.4.1(webpack@5.76.0)
dotenv: 10.0.0
- file-loader: 6.2.0_webpack@5.76.0
- fork-ts-checker-webpack-plugin: 7.2.13_webpack@5.76.0
+ file-loader: 6.2.0(webpack@5.76.0)
+ fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.8.4)(webpack@5.76.0)
ignore: 5.2.4
less: 4.1.3
- less-loader: 11.1.0_less@4.1.3+webpack@5.76.0
- license-webpack-plugin: 4.0.2_webpack@5.76.0
+ less-loader: 11.1.0(less@4.1.3)(webpack@5.76.0)
+ license-webpack-plugin: 4.0.2(webpack@5.76.0)
loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7_webpack@5.76.0
+ mini-css-extract-plugin: 2.4.7(webpack@5.76.0)
parse5: 4.0.0
postcss: 8.4.21
- postcss-import: 14.1.0_postcss@8.4.21
- postcss-loader: 6.2.1_ynsp4hpcl6ftpkdbhj2ssg4tva
+ postcss-import: 14.1.0(postcss@8.4.21)
+ postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.76.0)
rxjs: 6.6.7
sass: 1.58.3
- sass-loader: 12.6.0_sass@1.58.3+webpack@5.76.0
- source-map-loader: 3.0.2_webpack@5.76.0
- style-loader: 3.3.1_webpack@5.76.0
+ sass-loader: 12.6.0(sass@1.58.3)(webpack@5.76.0)
+ source-map-loader: 3.0.2(webpack@5.76.0)
+ style-loader: 3.3.1(webpack@5.76.0)
stylus: 0.55.0
- stylus-loader: 7.1.0_iwz5udw2ibqtb725jnip3p6uoy
- terser-webpack-plugin: 5.3.7_dpvlzh65cpfi2dmf4cqga3th74
- ts-loader: 9.4.2_webpack@5.76.0
- ts-node: 10.9.1_@swc+core@1.3.42
+ stylus-loader: 7.1.0(stylus@0.55.0)(webpack@5.76.0)
+ terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.0)
+ ts-loader: 9.4.2(typescript@4.8.4)(webpack@5.76.0)
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
tsconfig-paths: 4.1.2
tsconfig-paths-webpack-plugin: 4.0.0
tslib: 2.5.0
- webpack: 5.76.0_@swc+core@1.3.42
- webpack-dev-server: 4.11.1_webpack@5.76.0
+ webpack: 5.76.0(@swc/core@1.3.42)
+ webpack-dev-server: 4.11.1(webpack@5.76.0)
webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0_webpack@5.76.0
+ webpack-subresource-integrity: 5.1.0(webpack@5.76.0)
transitivePeerDependencies:
- '@babel/core'
+ - '@babel/traverse'
- '@parcel/css'
- '@swc-node/register'
- '@swc/core'
@@ -5680,7 +5570,7 @@ packages:
- webpack-cli
dev: false
- /@nrwl/workspace/15.7.1_rjvtl4nds7aw5cb3weefmbx74u:
+ /@nrwl/workspace@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-vwqcPnlTdgQfWLdG9UkZqwXDQy1P/vENHzUlN1dKeml56Vdjf3LGFiHnJ3LdRYlBSfwPMQNZQHQz167laYw1eg==}
peerDependencies:
prettier: ^2.6.2
@@ -5688,8 +5578,8 @@ packages:
prettier:
optional: true
dependencies:
- '@nrwl/devkit': 15.7.1_nx@15.7.1+typescript@4.8.4
- '@nrwl/linter': 15.7.1_iqgqupxdglb7pgajvbq75etfrq
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
'@parcel/watcher': 2.0.4
chalk: 4.1.2
chokidar: 3.5.3
@@ -5704,7 +5594,7 @@ packages:
jsonc-parser: 3.2.0
minimatch: 3.0.5
npm-run-path: 4.0.1
- nx: 15.7.1_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
open: 8.4.2
prettier: 2.8.6
rxjs: 6.6.7
@@ -5720,7 +5610,7 @@ packages:
- eslint
- typescript
- /@nrwl/workspace/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /@nrwl/workspace@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-+BGJDbATbwpk+3FkdBzdIziN/XKku55SEGg3uyH+JnK0sjmHvvS7mvPiYLRy91tOyF4QXnnWL6PuT+Z9KK8POQ==}
peerDependencies:
prettier: ^2.6.2
@@ -5728,8 +5618,8 @@ packages:
prettier:
optional: true
dependencies:
- '@nrwl/devkit': 15.8.5_nx@15.8.5
- '@nrwl/linter': 15.8.5_nx@15.8.5
+ '@nrwl/devkit': 15.8.5(nx@15.8.5)(typescript@4.8.4)
+ '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@parcel/watcher': 2.0.4
chalk: 4.1.2
chokidar: 3.5.3
@@ -5742,8 +5632,9 @@ packages:
ignore: 5.2.4
minimatch: 3.0.5
npm-run-path: 4.0.1
- nx: 15.8.5_cuaypwimdup25vwsqc5i3ttbya
+ nx: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
open: 8.4.2
+ prettier: 2.8.6
rxjs: 6.6.7
semver: 7.3.4
tmp: 0.2.1
@@ -5751,6 +5642,7 @@ packages:
yargs: 17.7.1
yargs-parser: 21.1.1
transitivePeerDependencies:
+ - '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- debug
@@ -5759,24 +5651,24 @@ packages:
- typescript
dev: false
- /@omnigraph/json-schema/0.29.2_graphql@16.6.0:
+ /@omnigraph/json-schema@0.29.2(graphql@16.6.0):
resolution: {integrity: sha512-+71SLa9uJ9dQHmoEA58xIZqVuNBTyvP4FWp/v9O61oQBhAInjYgh+uBrnORBfSkZfiw6RIFhbo3mnYcO0HQobg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.2.2_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.3.2_graphql@16.6.0
- '@graphql-mesh/types': 0.80.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.39.0_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.2.2(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.3.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.80.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.39.0(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
'@json-schema-tools/meta-schema': 1.6.19
'@whatwg-node/fetch': 0.3.2
ajv: 8.11.0
ajv-formats: 2.1.1
graphql: 16.6.0
- graphql-compose: 9.0.8_graphql@16.6.0
- graphql-scalars: 1.18.0_graphql@16.6.0
- json-machete: 0.13.1_graphql@16.6.0
+ graphql-compose: 9.0.8(graphql@16.6.0)
+ graphql-scalars: 1.18.0(graphql@16.6.0)
+ json-machete: 0.13.1(graphql@16.6.0)
lodash.set: 4.3.2
pascal-case: 3.1.2
qs: 6.11.0
@@ -5789,25 +5681,25 @@ packages:
- react-native-windows
dev: false
- /@omnigraph/json-schema/0.38.21_xfoe4adolgvm4tvnio5xigcr6e:
+ /@omnigraph/json-schema@0.38.21(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-MXSr1Wg4TPo1lmK47LBeXazM6Sb1UmehHV+UrjXrNAL4WXk/5POhixK6TRbGbdnd603uqnNjihaPLqw/ojwaGQ==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@json-schema-tools/meta-schema': 1.7.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
ajv: 8.12.0
ajv-formats: 2.1.1
dset: 3.1.2
graphql: 16.6.0
- graphql-compose: 9.0.10_graphql@16.6.0
- graphql-scalars: 1.20.4_graphql@16.6.0
- json-machete: 0.18.17_xfoe4adolgvm4tvnio5xigcr6e
+ graphql-compose: 9.0.10(graphql@16.6.0)
+ graphql-scalars: 1.20.4(graphql@16.6.0)
+ json-machete: 0.18.17(@types/node@18.11.9)(graphql@16.6.0)
pascal-case: 3.1.2
qs: 6.11.0
to-json-schema: 0.2.5
@@ -5819,19 +5711,19 @@ packages:
- react-native-windows
dev: false
- /@omnigraph/openapi/0.11.2_graphql@16.6.0:
+ /@omnigraph/openapi@0.11.2(graphql@16.6.0):
resolution: {integrity: sha512-o0HJh0Y62uyMq+Pk73uM7Wr+slmkIAz1TbyYuM12eb6KJfaEozrMuQVP9g/MVAmnU6p5e2jCrbemTIIF3DitNA==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.2.2_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.3.2_graphql@16.6.0
- '@graphql-mesh/types': 0.80.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.39.0_graphql@16.6.0
- '@omnigraph/json-schema': 0.29.2_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.2.2(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.3.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.80.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.39.0(graphql@16.6.0)
+ '@omnigraph/json-schema': 0.29.2(graphql@16.6.0)
change-case: 4.1.2
graphql: 16.6.0
- json-machete: 0.13.1_graphql@16.6.0
+ json-machete: 0.13.1(graphql@16.6.0)
openapi-types: 12.0.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -5840,19 +5732,19 @@ packages:
- react-native-windows
dev: false
- /@omnigraph/openapi/0.19.23_xfoe4adolgvm4tvnio5xigcr6e:
+ /@omnigraph/openapi@0.19.23(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-bunHfdU0+yCrlWYMclsVCyJeRTTodbi/kB8Q1FTkRJmc+jPjid/d/yhRIjUm305BSNK7Ingo30ESt1614mRfNg==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/string-interpolation': 0.4.2_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@omnigraph/json-schema': 0.38.21_xfoe4adolgvm4tvnio5xigcr6e
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/string-interpolation': 0.4.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@omnigraph/json-schema': 0.38.21(@types/node@18.11.9)(graphql@16.6.0)
change-case: 4.1.2
graphql: 16.6.0
- json-machete: 0.18.17_xfoe4adolgvm4tvnio5xigcr6e
+ json-machete: 0.18.17(@types/node@18.11.9)(graphql@16.6.0)
openapi-types: 12.1.0
tslib: 2.5.0
transitivePeerDependencies:
@@ -5861,24 +5753,24 @@ packages:
- react-native-windows
dev: false
- /@omnigraph/soap/0.4.19_graphql@16.6.0:
+ /@omnigraph/soap@0.4.19(graphql@16.6.0):
resolution: {integrity: sha512-Mhvsac6aPkM38z5PG1j6d+FaaGfCHSbQ3aMBbATbPBmM+fivjxSg8Gp+Wyi1q1FrJ49AqkjmBRZm5Ik+0VI9/Q==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
fast-xml-parser: 4.1.3
graphql: 16.6.0
- graphql-compose: 9.0.10_graphql@16.6.0
- graphql-scalars: 1.20.4_graphql@16.6.0
+ graphql-compose: 9.0.10(graphql@16.6.0)
+ graphql-scalars: 1.20.4(graphql@16.6.0)
transitivePeerDependencies:
- react-native
- react-native-windows
dev: false
- /@parcel/watcher/2.0.4:
+ /@parcel/watcher@2.0.4:
resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==}
engines: {node: '>= 10.0.0'}
requiresBuild: true
@@ -5886,7 +5778,7 @@ packages:
node-addon-api: 3.2.1
node-gyp-build: 4.6.0
- /@parcel/watcher/2.1.0:
+ /@parcel/watcher@2.1.0:
resolution: {integrity: sha512-8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw==}
engines: {node: '>= 10.0.0'}
requiresBuild: true
@@ -5897,7 +5789,7 @@ packages:
node-gyp-build: 4.6.0
dev: false
- /@peculiar/asn1-schema/2.3.3:
+ /@peculiar/asn1-schema@2.3.3:
resolution: {integrity: sha512-6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ==}
dependencies:
asn1js: 3.0.5
@@ -5905,14 +5797,14 @@ packages:
tslib: 2.5.0
dev: false
- /@peculiar/json-schema/1.1.12:
+ /@peculiar/json-schema@1.1.12:
resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==}
engines: {node: '>=8.0.0'}
dependencies:
tslib: 2.5.0
dev: false
- /@peculiar/webcrypto/1.4.1:
+ /@peculiar/webcrypto@1.4.1:
resolution: {integrity: sha512-eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==}
engines: {node: '>=10.12.0'}
dependencies:
@@ -5923,15 +5815,7 @@ packages:
webcrypto-core: 1.7.6
dev: false
- /@phenomnomnominal/tsquery/4.1.1:
- resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==}
- peerDependencies:
- typescript: ^3 || ^4
- dependencies:
- esquery: 1.5.0
- dev: false
-
- /@phenomnomnominal/tsquery/4.1.1_typescript@4.8.4:
+ /@phenomnomnominal/tsquery@4.1.1(typescript@4.8.4):
resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==}
peerDependencies:
typescript: ^3 || ^4
@@ -5939,7 +5823,7 @@ packages:
esquery: 1.5.0
typescript: 4.8.4
- /@pkgr/utils/2.3.1:
+ /@pkgr/utils@2.3.1:
resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
dependencies:
@@ -5951,15 +5835,15 @@ packages:
tslib: 2.5.0
dev: true
- /@polka/url/1.0.0-next.21:
+ /@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: true
- /@repeaterjs/repeater/3.0.4:
+ /@repeaterjs/repeater@3.0.4:
resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==}
dev: false
- /@rollup/pluginutils/4.2.1:
+ /@rollup/pluginutils@4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
dependencies:
@@ -5967,7 +5851,7 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/pluginutils/5.0.2:
+ /@rollup/pluginutils@5.0.2:
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -5981,11 +5865,11 @@ packages:
picomatch: 2.3.1
dev: true
- /@rushstack/eslint-patch/1.2.0:
+ /@rushstack/eslint-patch@1.2.0:
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
dev: true
- /@rushstack/node-core-library/3.55.2_@types+node@18.11.9:
+ /@rushstack/node-core-library@3.55.2(@types/node@18.11.9):
resolution: {integrity: sha512-SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A==}
peerDependencies:
'@types/node': '*'
@@ -6003,14 +5887,14 @@ packages:
z-schema: 5.0.5
dev: true
- /@rushstack/rig-package/0.3.18:
+ /@rushstack/rig-package@0.3.18:
resolution: {integrity: sha512-SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ==}
dependencies:
resolve: 1.22.1
strip-json-comments: 3.1.1
dev: true
- /@rushstack/ts-command-line/4.13.2:
+ /@rushstack/ts-command-line@4.13.2:
resolution: {integrity: sha512-bCU8qoL9HyWiciltfzg7GqdfODUeda/JpI0602kbN5YH22rzTxyqYvv7aRLENCM7XCQ1VRs7nMkEqgJUOU8Sag==}
dependencies:
'@types/argparse': 1.0.38
@@ -6019,25 +5903,25 @@ packages:
string-argv: 0.3.1
dev: true
- /@sinclair/typebox/0.24.51:
+ /@sinclair/typebox@0.24.51:
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
- /@sindresorhus/is/4.6.0:
+ /@sindresorhus/is@4.6.0:
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
dev: true
- /@sinonjs/commons/1.8.6:
+ /@sinonjs/commons@1.8.6:
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
dependencies:
type-detect: 4.0.8
- /@sinonjs/fake-timers/9.1.2:
+ /@sinonjs/fake-timers@9.1.2:
resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==}
dependencies:
'@sinonjs/commons': 1.8.6
- /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -6046,7 +5930,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.21.0:
+ /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.21.0):
resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==}
engines: {node: '>=10'}
peerDependencies:
@@ -6055,7 +5939,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.21.0:
+ /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.21.0):
resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==}
engines: {node: '>=10'}
peerDependencies:
@@ -6064,7 +5948,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
@@ -6073,7 +5957,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
@@ -6082,7 +5966,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
@@ -6091,7 +5975,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
@@ -6100,7 +5984,7 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -6109,37 +5993,37 @@ packages:
'@babel/core': 7.21.0
dev: false
- /@svgr/babel-preset/6.5.1_@babel+core@7.21.0:
+ /@svgr/babel-preset@6.5.1(@babel/core@7.21.0):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.21.0
- '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.21.0
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.21.0
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.21.0
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.21.0
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.21.0
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.21.0
- '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.21.0
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.0)
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.21.0)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.21.0)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.0)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.0)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.0)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.0)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.0)
dev: false
- /@svgr/core/6.5.1:
+ /@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.21.0
- '@svgr/babel-preset': 6.5.1_@babel+core@7.21.0
- '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.21.0)
+ '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
transitivePeerDependencies:
- supports-color
dev: false
- /@svgr/hast-util-to-babel-ast/6.5.1:
+ /@svgr/hast-util-to-babel-ast@6.5.1:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
@@ -6147,14 +6031,14 @@ packages:
entities: 4.4.0
dev: false
- /@svgr/plugin-jsx/6.5.1_@svgr+core@6.5.1:
+ /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1):
resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==}
engines: {node: '>=10'}
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
'@babel/core': 7.21.0
- '@svgr/babel-preset': 6.5.1_@babel+core@7.21.0
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.21.0)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -6162,7 +6046,7 @@ packages:
- supports-color
dev: false
- /@svgr/plugin-svgo/6.5.1_@svgr+core@6.5.1:
+ /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1):
resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -6174,23 +6058,23 @@ packages:
svgo: 2.8.0
dev: false
- /@svgr/webpack/6.5.1:
+ /@svgr/webpack@6.5.1:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.21.0
- '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.21.0
- '@babel/preset-env': 7.20.2_@babel+core@7.21.0
- '@babel/preset-react': 7.18.6_@babel+core@7.21.0
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-react-constant-elements': 7.20.2(@babel/core@7.21.0)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.0)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.0)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0)
'@svgr/core': 6.5.1
- '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
- '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1
+ '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
+ '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
transitivePeerDependencies:
- supports-color
dev: false
- /@swc-node/core/1.10.1_@swc+core@1.3.42:
+ /@swc-node/core@1.10.1(@swc/core@1.3.42):
resolution: {integrity: sha512-4aiqLb5Uz+zDt7oIMAtH69+l1BvKV3k7fMYNNLjgdSM7qmFwrpHwu+Ss9nOYPTCFlbKCUMP/70aD5Gt2skmJaw==}
engines: {node: '>= 10'}
peerDependencies:
@@ -6198,47 +6082,30 @@ packages:
dependencies:
'@swc/core': 1.3.42
- /@swc-node/register/1.6.2_@swc+core@1.3.42:
- resolution: {integrity: sha512-7kzUOrw5RhSW23VU9RtEOlH71MQZ4cfUPgu245f3tKjYIu1CkxNJVX48FAiGJ6+3QgJMXLr1anT9FeeCmX12xw==}
- peerDependencies:
- '@swc/core': '>= 1.3'
- typescript: '>= 4.3'
- dependencies:
- '@swc-node/core': 1.10.1_@swc+core@1.3.42
- '@swc-node/sourcemap-support': 0.3.0
- '@swc/core': 1.3.42
- colorette: 2.0.19
- debug: 4.3.4
- pirates: 4.0.5
- tslib: 2.5.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@swc-node/register/1.6.2_un75kqwz4lxw3jlrcmkimcdqmi:
+ /@swc-node/register@1.6.2(@swc/core@1.3.42)(typescript@4.8.4):
resolution: {integrity: sha512-7kzUOrw5RhSW23VU9RtEOlH71MQZ4cfUPgu245f3tKjYIu1CkxNJVX48FAiGJ6+3QgJMXLr1anT9FeeCmX12xw==}
peerDependencies:
'@swc/core': '>= 1.3'
typescript: '>= 4.3'
dependencies:
- '@swc-node/core': 1.10.1_@swc+core@1.3.42
+ '@swc-node/core': 1.10.1(@swc/core@1.3.42)
'@swc-node/sourcemap-support': 0.3.0
'@swc/core': 1.3.42
colorette: 2.0.19
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
pirates: 4.0.5
tslib: 2.5.0
typescript: 4.8.4
transitivePeerDependencies:
- supports-color
- /@swc-node/sourcemap-support/0.3.0:
+ /@swc-node/sourcemap-support@0.3.0:
resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==}
dependencies:
source-map-support: 0.5.21
tslib: 2.5.0
- /@swc/cli/0.1.62_@swc+core@1.3.42:
+ /@swc/cli@0.1.62(@swc/core@1.3.42):
resolution: {integrity: sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==}
engines: {node: '>= 12.13'}
hasBin: true
@@ -6258,7 +6125,7 @@ packages:
source-map: 0.7.4
dev: true
- /@swc/core-darwin-arm64/1.3.42:
+ /@swc/core-darwin-arm64@1.3.42:
resolution: {integrity: sha512-hM6RrZFyoCM9mX3cj/zM5oXwhAqjUdOCLXJx7KTQps7NIkv/Qjvobgvyf2gAb89j3ARNo9NdIoLjTjJ6oALtiA==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -6266,7 +6133,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-darwin-x64/1.3.42:
+ /@swc/core-darwin-x64@1.3.42:
resolution: {integrity: sha512-bjsWtHMb6wJK1+RGlBs2USvgZ0txlMk11y0qBLKo32gLKTqzUwRw0Fmfzuf6Ue2a/w//7eqMlPFEre4LvJajGw==}
engines: {node: '>=10'}
cpu: [x64]
@@ -6274,7 +6141,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm-gnueabihf/1.3.42:
+ /@swc/core-linux-arm-gnueabihf@1.3.42:
resolution: {integrity: sha512-Oe0ggMz3MyqXNfeVmY+bBTL0hFSNY3bx8dhcqsh4vXk/ZVGse94QoC4dd92LuPHmKT0x6nsUzB86x2jU9QHW5g==}
engines: {node: '>=10'}
cpu: [arm]
@@ -6282,7 +6149,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-gnu/1.3.42:
+ /@swc/core-linux-arm64-gnu@1.3.42:
resolution: {integrity: sha512-ZJsa8NIW1RLmmHGTJCbM7OPSbBZ9rOMrLqDtUOGrT0uoJXZnnQqolflamB5wviW0X6h3Z3/PSTNGNDCJ3u3Lqg==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -6290,7 +6157,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-musl/1.3.42:
+ /@swc/core-linux-arm64-musl@1.3.42:
resolution: {integrity: sha512-YpZwlFAfOp5vkm/uVUJX1O7N3yJDO1fDQRWqsOPPNyIJkI2ydlRQtgN6ZylC159Qv+TimfXnGTlNr7o3iBAqjg==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -6298,7 +6165,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-x64-gnu/1.3.42:
+ /@swc/core-linux-x64-gnu@1.3.42:
resolution: {integrity: sha512-0ccpKnsZbyHBzaQFdP8U9i29nvOfKitm6oJfdJzlqsY/jCqwvD8kv2CAKSK8WhJz//ExI2LqNrDI0yazx5j7+A==}
engines: {node: '>=10'}
cpu: [x64]
@@ -6306,7 +6173,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-linux-x64-musl/1.3.42:
+ /@swc/core-linux-x64-musl@1.3.42:
resolution: {integrity: sha512-7eckRRuTZ6+3K21uyfXXgc2ZCg0mSWRRNwNT3wap2bYkKPeqTgb8pm8xYSZNEiMuDonHEat6XCCV36lFY6kOdQ==}
engines: {node: '>=10'}
cpu: [x64]
@@ -6314,7 +6181,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-arm64-msvc/1.3.42:
+ /@swc/core-win32-arm64-msvc@1.3.42:
resolution: {integrity: sha512-t27dJkdw0GWANdN4TV0lY/V5vTYSx5SRjyzzZolep358ueCGuN1XFf1R0JcCbd1ojosnkQg2L7A7991UjXingg==}
engines: {node: '>=10'}
cpu: [arm64]
@@ -6322,7 +6189,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-ia32-msvc/1.3.42:
+ /@swc/core-win32-ia32-msvc@1.3.42:
resolution: {integrity: sha512-xfpc/Zt/aMILX4IX0e3loZaFyrae37u3MJCv1gJxgqrpeLi7efIQr3AmERkTK3mxTO6R5urSliWw2W3FyZ7D3Q==}
engines: {node: '>=10'}
cpu: [ia32]
@@ -6330,7 +6197,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core-win32-x64-msvc/1.3.42:
+ /@swc/core-win32-x64-msvc@1.3.42:
resolution: {integrity: sha512-ra2K4Tu++EJLPhzZ6L8hWUsk94TdK/2UKhL9dzCBhtzKUixsGCEqhtqH1zISXNvW8qaVLFIMUP37ULe80/IJaA==}
engines: {node: '>=10'}
cpu: [x64]
@@ -6338,7 +6205,7 @@ packages:
requiresBuild: true
optional: true
- /@swc/core/1.3.42:
+ /@swc/core@1.3.42:
resolution: {integrity: sha512-nVFUd5+7tGniM2cT3LXaqnu3735Cu4az8A9gAKK+8sdpASI52SWuqfDBmjFCK9xG90MiVDVp2PTZr0BWqCIzpw==}
engines: {node: '>=10'}
requiresBuild: true
@@ -6354,12 +6221,12 @@ packages:
'@swc/core-win32-ia32-msvc': 1.3.42
'@swc/core-win32-x64-msvc': 1.3.42
- /@swc/helpers/0.4.14:
+ /@swc/helpers@0.4.14:
resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
dependencies:
tslib: 2.5.0
- /@swc/jest/0.2.20_@swc+core@1.3.42:
+ /@swc/jest@0.2.20(@swc/core@1.3.42):
resolution: {integrity: sha512-5qSUBYY1wyIMn7p0Vl9qqV4hMI69oJwZCIPUpBsTFWN2wlwn6RDugzdgCn+bLXVYh+Cxi8bJcZ1uumDgsoL+FA==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
@@ -6368,14 +6235,14 @@ packages:
'@jest/create-cache-key-function': 27.5.1
'@swc/core': 1.3.42
- /@szmarczak/http-timer/4.0.6:
+ /@szmarczak/http-timer@4.0.6:
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
engines: {node: '>=10'}
dependencies:
defer-to-connect: 2.0.1
dev: true
- /@testing-library/dom/8.20.0:
+ /@testing-library/dom@8.20.0:
resolution: {integrity: sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==}
engines: {node: '>=12'}
dependencies:
@@ -6389,7 +6256,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /@testing-library/react/13.4.0_biqbaboplfbrettd7655fr4n2y:
+ /@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==}
engines: {node: '>=12'}
peerDependencies:
@@ -6400,22 +6267,22 @@ packages:
'@testing-library/dom': 8.20.0
'@types/react-dom': 18.0.9
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: true
- /@tokenizer/token/0.3.0:
+ /@tokenizer/token@0.3.0:
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
dev: true
- /@tootallnate/once/2.0.0:
+ /@tootallnate/once@2.0.0:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@ts-morph/common/0.18.1:
+ /@ts-morph/common@0.18.1:
resolution: {integrity: sha512-RVE+zSRICWRsfrkAw5qCAK+4ZH9kwEFv5h0+/YeHTLieWP7F4wWq4JsKFuNWG+fYh/KF+8rAtgdj5zb2mm+DVA==}
dependencies:
fast-glob: 3.2.12
@@ -6424,27 +6291,27 @@ packages:
path-browserify: 1.0.1
dev: true
- /@tsconfig/node10/1.0.9:
+ /@tsconfig/node10@1.0.9:
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
- /@tsconfig/node12/1.0.11:
+ /@tsconfig/node12@1.0.11:
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
- /@tsconfig/node14/1.0.3:
+ /@tsconfig/node14@1.0.3:
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
- /@tsconfig/node16/1.0.3:
+ /@tsconfig/node16@1.0.3:
resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==}
- /@types/argparse/1.0.38:
+ /@types/argparse@1.0.38:
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
dev: true
- /@types/aria-query/5.0.1:
+ /@types/aria-query@5.0.1:
resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
dev: true
- /@types/babel__core/7.20.0:
+ /@types/babel__core@7.20.0:
resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
dependencies:
'@babel/parser': 7.21.2
@@ -6453,34 +6320,34 @@ packages:
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.3
- /@types/babel__generator/7.6.4:
+ /@types/babel__generator@7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
'@babel/types': 7.21.2
- /@types/babel__template/7.4.1:
+ /@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
'@babel/parser': 7.21.2
'@babel/types': 7.21.2
- /@types/babel__traverse/7.18.3:
+ /@types/babel__traverse@7.18.3:
resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==}
dependencies:
'@babel/types': 7.21.2
- /@types/body-parser/1.19.2:
+ /@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
'@types/node': 18.15.0
- /@types/bonjour/3.5.10:
+ /@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
'@types/node': 18.15.0
- /@types/cacheable-request/6.0.3:
+ /@types/cacheable-request@6.0.3:
resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
dependencies:
'@types/http-cache-semantics': 4.0.1
@@ -6489,53 +6356,53 @@ packages:
'@types/responselike': 1.0.0
dev: true
- /@types/chai-subset/1.3.3:
+ /@types/chai-subset@1.3.3:
resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
dependencies:
'@types/chai': 4.3.4
dev: true
- /@types/chai/4.3.4:
+ /@types/chai@4.3.4:
resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==}
dev: true
- /@types/connect-history-api-fallback/1.3.5:
+ /@types/connect-history-api-fallback@1.3.5:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
'@types/express-serve-static-core': 4.17.33
'@types/node': 18.15.0
- /@types/connect/3.4.35:
+ /@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
'@types/node': 18.15.0
- /@types/eslint-scope/3.7.4:
+ /@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
'@types/eslint': 8.21.1
'@types/estree': 1.0.0
- /@types/eslint/8.21.1:
+ /@types/eslint@8.21.1:
resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==}
dependencies:
'@types/estree': 1.0.0
'@types/json-schema': 7.0.11
- /@types/estree/0.0.51:
+ /@types/estree@0.0.51:
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- /@types/estree/1.0.0:
+ /@types/estree@1.0.0:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
- /@types/express-serve-static-core/4.17.33:
+ /@types/express-serve-static-core@4.17.33:
resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==}
dependencies:
'@types/node': 18.15.0
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
- /@types/express/4.17.17:
+ /@types/express@4.17.17:
resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
dependencies:
'@types/body-parser': 1.19.2
@@ -6543,64 +6410,64 @@ packages:
'@types/qs': 6.9.7
'@types/serve-static': 1.15.1
- /@types/fs-extra/9.0.13:
+ /@types/fs-extra@9.0.13:
resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
dependencies:
'@types/node': 18.11.9
dev: true
- /@types/graceful-fs/4.1.6:
+ /@types/graceful-fs@4.1.6:
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
'@types/node': 18.15.0
- /@types/hoist-non-react-statics/3.3.1:
+ /@types/hoist-non-react-statics@3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
dependencies:
'@types/react': 18.0.25
hoist-non-react-statics: 3.3.2
dev: true
- /@types/http-cache-semantics/4.0.1:
+ /@types/http-cache-semantics@4.0.1:
resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==}
dev: true
- /@types/http-proxy/1.17.10:
+ /@types/http-proxy@1.17.10:
resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==}
dependencies:
'@types/node': 18.15.0
- /@types/is-ci/3.0.0:
+ /@types/is-ci@3.0.0:
resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==}
dependencies:
ci-info: 3.8.0
dev: true
- /@types/istanbul-lib-coverage/2.0.4:
+ /@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- /@types/istanbul-reports/3.0.1:
+ /@types/istanbul-reports@3.0.1:
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
dependencies:
'@types/istanbul-lib-report': 3.0.0
- /@types/jest/28.1.8:
+ /@types/jest@28.1.8:
resolution: {integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==}
dependencies:
expect: 28.1.3
pretty-format: 28.1.3
dev: true
- /@types/js-yaml/4.0.5:
+ /@types/js-yaml@4.0.5:
resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==}
dev: false
- /@types/jsdom/16.2.15:
+ /@types/jsdom@16.2.15:
resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==}
dependencies:
'@types/node': 18.15.0
@@ -6608,80 +6475,80 @@ packages:
'@types/tough-cookie': 4.0.2
dev: true
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
- /@types/json-stable-stringify/1.0.34:
+ /@types/json-stable-stringify@1.0.34:
resolution: {integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==}
dev: false
- /@types/json5/0.0.29:
+ /@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/keyv/3.1.4:
+ /@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
'@types/node': 18.15.0
dev: true
- /@types/mime/3.0.1:
+ /@types/mime@3.0.1:
resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
- /@types/minimist/1.2.2:
+ /@types/minimist@1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/node/12.20.55:
+ /@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: true
- /@types/node/14.18.37:
+ /@types/node@14.18.37:
resolution: {integrity: sha512-7GgtHCs/QZrBrDzgIJnQtuSvhFSwhyYSI2uafSwZoNt1iOGhEN5fwNrQMjtONyHm9+/LoA4453jH0CMYcr06Pg==}
- /@types/node/18.11.9:
+ /@types/node@18.11.9:
resolution: {integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==}
- /@types/node/18.15.0:
+ /@types/node@18.15.0:
resolution: {integrity: sha512-z6nr0TTEOBGkzLGmbypWOGnpSpSIBorEhC4L+4HeQ2iezKCi4f77kyslRwvHeNitymGQ+oFyIWGP96l/DPSV9w==}
- /@types/normalize-package-data/2.4.1:
+ /@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
dev: true
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
- /@types/parse5/6.0.3:
+ /@types/parse5@6.0.3:
resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
dev: true
- /@types/prettier/2.7.2:
+ /@types/prettier@2.7.2:
resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==}
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: true
- /@types/qs/6.9.7:
+ /@types/qs@6.9.7:
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
- /@types/range-parser/1.2.4:
+ /@types/range-parser@1.2.4:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
- /@types/react-dom/18.0.9:
+ /@types/react-dom@18.0.9:
resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==}
dependencies:
'@types/react': 18.0.25
dev: true
- /@types/react-is/17.0.3:
+ /@types/react-is@17.0.3:
resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==}
dependencies:
'@types/react': 18.0.25
dev: true
- /@types/react/18.0.25:
+ /@types/react@18.0.25:
resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==}
dependencies:
'@types/prop-types': 15.7.5
@@ -6689,53 +6556,53 @@ packages:
csstype: 3.1.1
dev: true
- /@types/responselike/1.0.0:
+ /@types/responselike@1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
'@types/node': 18.15.0
dev: true
- /@types/retry/0.12.0:
+ /@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- /@types/scheduler/0.16.2:
+ /@types/scheduler@0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
dev: true
- /@types/semver/6.2.3:
+ /@types/semver@6.2.3:
resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==}
dev: true
- /@types/semver/7.3.13:
+ /@types/semver@7.3.13:
resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
dev: true
- /@types/serve-index/1.9.1:
+ /@types/serve-index@1.9.1:
resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
dependencies:
'@types/express': 4.17.17
- /@types/serve-static/1.15.1:
+ /@types/serve-static@1.15.1:
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
dependencies:
'@types/mime': 3.0.1
'@types/node': 18.15.0
- /@types/sinonjs__fake-timers/8.1.1:
+ /@types/sinonjs__fake-timers@8.1.1:
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
- /@types/sizzle/2.3.3:
+ /@types/sizzle@2.3.3:
resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==}
- /@types/sockjs/0.3.33:
+ /@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
'@types/node': 18.15.0
- /@types/stack-utils/2.0.1:
+ /@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
- /@types/styled-components/5.1.26:
+ /@types/styled-components@5.1.26:
resolution: {integrity: sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw==}
dependencies:
'@types/hoist-non-react-statics': 3.3.1
@@ -6743,47 +6610,47 @@ packages:
csstype: 3.1.1
dev: true
- /@types/tough-cookie/4.0.2:
+ /@types/tough-cookie@4.0.2:
resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
dev: true
- /@types/uuid/9.0.1:
+ /@types/uuid@9.0.1:
resolution: {integrity: sha512-rFT3ak0/2trgvp4yYZo5iKFEPsET7vKydKF+VRCxlQ9bpheehyAJH89dAkaLEq/j/RZXJIqcgsmPJKUP1Z28HA==}
dev: false
- /@types/watchpack/2.4.0:
+ /@types/watchpack@2.4.0:
resolution: {integrity: sha512-PSAD+o9hezvfUFFzrYB/PO6Je7kwiZ2BSnB3/EZ9le+jTDKB6x5NJ96WWzQz1h/AyGJ/de3/1KpuBTkUFZm77A==}
dependencies:
'@types/graceful-fs': 4.1.6
'@types/node': 18.15.0
dev: true
- /@types/ws/8.5.4:
+ /@types/ws@8.5.4:
resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
dependencies:
'@types/node': 18.15.0
- /@types/yargs-parser/21.0.0:
+ /@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
- /@types/yargs/16.0.5:
+ /@types/yargs@16.0.5:
resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
dependencies:
'@types/yargs-parser': 21.0.0
- /@types/yargs/17.0.22:
+ /@types/yargs@17.0.22:
resolution: {integrity: sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==}
dependencies:
'@types/yargs-parser': 21.0.0
- /@types/yauzl/2.10.0:
+ /@types/yauzl@2.10.0:
resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
requiresBuild: true
dependencies:
'@types/node': 18.15.0
optional: true
- /@typescript-eslint/eslint-plugin/5.56.0_ldbltef7towbem5h7qak2pmw6e:
+ /@typescript-eslint/eslint-plugin@5.56.0(@typescript-eslint/parser@5.56.0)(eslint@8.15.0)(typescript@4.8.4):
resolution: {integrity: sha512-ZNW37Ccl3oMZkzxrYDUX4o7cnuPgU+YrcaYXzsRtLB16I1FR5SHMqga3zGsaSliZADCWo2v8qHWqAYIj8nWCCg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6795,23 +6662,23 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.4.0
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
+ '@typescript-eslint/parser': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
'@typescript-eslint/scope-manager': 5.56.0
- '@typescript-eslint/type-utils': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- '@typescript-eslint/utils': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- debug: 4.3.4
+ '@typescript-eslint/type-utils': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
+ '@typescript-eslint/utils': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
+ debug: 4.3.4(supports-color@5.5.0)
eslint: 8.15.0
grapheme-splitter: 1.0.4
ignore: 5.2.4
natural-compare-lite: 1.4.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
+ tsutils: 3.21.0(typescript@4.8.4)
typescript: 4.8.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q:
+ /@typescript-eslint/parser@5.56.0(eslint@8.15.0)(typescript@4.8.4):
resolution: {integrity: sha512-sn1OZmBxUsgxMmR8a8U5QM/Wl+tyqlH//jTqCg8daTAmhAk26L2PFhcqPLlYBhYUJMZJK276qLXlHN3a83o2cg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6823,15 +6690,15 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.56.0
'@typescript-eslint/types': 5.56.0
- '@typescript-eslint/typescript-estree': 5.56.0_typescript@4.8.4
- debug: 4.3.4
+ '@typescript-eslint/typescript-estree': 5.56.0(typescript@4.8.4)
+ debug: 4.3.4(supports-color@5.5.0)
eslint: 8.15.0
typescript: 4.8.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.54.1:
+ /@typescript-eslint/scope-manager@5.54.1:
resolution: {integrity: sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -6839,7 +6706,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.54.1
dev: true
- /@typescript-eslint/scope-manager/5.56.0:
+ /@typescript-eslint/scope-manager@5.56.0:
resolution: {integrity: sha512-jGYKyt+iBakD0SA5Ww8vFqGpoV2asSjwt60Gl6YcO8ksQ8s2HlUEyHBMSa38bdLopYqGf7EYQMUIGdT/Luw+sw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -6847,7 +6714,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.56.0
dev: true
- /@typescript-eslint/type-utils/5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q:
+ /@typescript-eslint/type-utils@5.56.0(eslint@8.15.0)(typescript@4.8.4):
resolution: {integrity: sha512-8WxgOgJjWRy6m4xg9KoSHPzBNZeQbGlQOH7l2QEhQID/+YseaFxg5J/DLwWSsi9Axj4e/cCiKx7PVzOq38tY4A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6857,27 +6724,27 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.56.0_typescript@4.8.4
- '@typescript-eslint/utils': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- debug: 4.3.4
+ '@typescript-eslint/typescript-estree': 5.56.0(typescript@4.8.4)
+ '@typescript-eslint/utils': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
+ debug: 4.3.4(supports-color@5.5.0)
eslint: 8.15.0
- tsutils: 3.21.0_typescript@4.8.4
+ tsutils: 3.21.0(typescript@4.8.4)
typescript: 4.8.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.54.1:
+ /@typescript-eslint/types@5.54.1:
resolution: {integrity: sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types/5.56.0:
+ /@typescript-eslint/types@5.56.0:
resolution: {integrity: sha512-JyAzbTJcIyhuUhogmiu+t79AkdnqgPUEsxMTMc/dCZczGMJQh1MK2wgrju++yMN6AWroVAy2jxyPcPr3SWCq5w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.54.1_typescript@4.8.4:
+ /@typescript-eslint/typescript-estree@5.54.1(typescript@4.8.4):
resolution: {integrity: sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6888,17 +6755,17 @@ packages:
dependencies:
'@typescript-eslint/types': 5.54.1
'@typescript-eslint/visitor-keys': 5.54.1
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
+ tsutils: 3.21.0(typescript@4.8.4)
typescript: 4.8.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.56.0_typescript@4.8.4:
+ /@typescript-eslint/typescript-estree@5.56.0(typescript@4.8.4):
resolution: {integrity: sha512-41CH/GncsLXOJi0jb74SnC7jVPWeVJ0pxQj8bOjH1h2O26jXN3YHKDT1ejkVz5YeTEQPeLCCRY0U2r68tfNOcg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6909,17 +6776,17 @@ packages:
dependencies:
'@typescript-eslint/types': 5.56.0
'@typescript-eslint/visitor-keys': 5.56.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
+ tsutils: 3.21.0(typescript@4.8.4)
typescript: 4.8.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.54.1_oy7hgmlo6357d5kkcjbkfgtg4q:
+ /@typescript-eslint/utils@5.54.1(eslint@8.15.0)(typescript@4.8.4):
resolution: {integrity: sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6929,28 +6796,28 @@ packages:
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.54.1
'@typescript-eslint/types': 5.54.1
- '@typescript-eslint/typescript-estree': 5.54.1_typescript@4.8.4
+ '@typescript-eslint/typescript-estree': 5.54.1(typescript@4.8.4)
eslint: 8.15.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.15.0
+ eslint-utils: 3.0.0(eslint@8.15.0)
semver: 7.3.8
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/utils/5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q:
+ /@typescript-eslint/utils@5.56.0(eslint@8.15.0)(typescript@4.8.4):
resolution: {integrity: sha512-XhZDVdLnUJNtbzaJeDSCIYaM+Tgr59gZGbFuELgF7m0IY03PlciidS7UQNKLE0+WpUTn1GlycEr6Ivb/afjbhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.3.0_eslint@8.15.0
+ '@eslint-community/eslint-utils': 4.3.0(eslint@8.15.0)
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.56.0
'@typescript-eslint/types': 5.56.0
- '@typescript-eslint/typescript-estree': 5.56.0_typescript@4.8.4
+ '@typescript-eslint/typescript-estree': 5.56.0(typescript@4.8.4)
eslint: 8.15.0
eslint-scope: 5.1.1
semver: 7.3.8
@@ -6959,7 +6826,7 @@ packages:
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.54.1:
+ /@typescript-eslint/visitor-keys@5.54.1:
resolution: {integrity: sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -6967,7 +6834,7 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@typescript-eslint/visitor-keys/5.56.0:
+ /@typescript-eslint/visitor-keys@5.56.0:
resolution: {integrity: sha512-1mFdED7u5bZpX6Xxf5N9U2c18sb+8EvU3tyOIj6LQZ5OOvnmj8BVeNNP603OFPm5KkS1a7IvCIcwrdHXaEMG/Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -6975,38 +6842,38 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@vitest/ui/0.25.8:
+ /@vitest/ui@0.25.8:
resolution: {integrity: sha512-wfuhghldD5QHLYpS46GK8Ru8P3XcMrWvFjRQD21KNzc9Y/qtJsqoC8KmT6xWVkMNw4oHYixpo3a4ZySRJdserw==}
dependencies:
sirv: 2.0.2
dev: true
- /@webassemblyjs/ast/1.11.1:
+ /@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
dependencies:
'@webassemblyjs/helper-numbers': 1.11.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
+ /@webassemblyjs/floating-point-hex-parser@1.11.1:
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- /@webassemblyjs/helper-api-error/1.11.1:
+ /@webassemblyjs/helper-api-error@1.11.1:
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- /@webassemblyjs/helper-buffer/1.11.1:
+ /@webassemblyjs/helper-buffer@1.11.1:
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- /@webassemblyjs/helper-numbers/1.11.1:
+ /@webassemblyjs/helper-numbers@1.11.1:
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.1
'@webassemblyjs/helper-api-error': 1.11.1
'@xtuc/long': 4.2.2
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
+ /@webassemblyjs/helper-wasm-bytecode@1.11.1:
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- /@webassemblyjs/helper-wasm-section/1.11.1:
+ /@webassemblyjs/helper-wasm-section@1.11.1:
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -7014,20 +6881,20 @@ packages:
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
'@webassemblyjs/wasm-gen': 1.11.1
- /@webassemblyjs/ieee754/1.11.1:
+ /@webassemblyjs/ieee754@1.11.1:
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
dependencies:
'@xtuc/ieee754': 1.2.0
- /@webassemblyjs/leb128/1.11.1:
+ /@webassemblyjs/leb128@1.11.1:
resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
dependencies:
'@xtuc/long': 4.2.2
- /@webassemblyjs/utf8/1.11.1:
+ /@webassemblyjs/utf8@1.11.1:
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- /@webassemblyjs/wasm-edit/1.11.1:
+ /@webassemblyjs/wasm-edit@1.11.1:
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -7039,7 +6906,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
'@webassemblyjs/wast-printer': 1.11.1
- /@webassemblyjs/wasm-gen/1.11.1:
+ /@webassemblyjs/wasm-gen@1.11.1:
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -7048,7 +6915,7 @@ packages:
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- /@webassemblyjs/wasm-opt/1.11.1:
+ /@webassemblyjs/wasm-opt@1.11.1:
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -7056,7 +6923,7 @@ packages:
'@webassemblyjs/wasm-gen': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- /@webassemblyjs/wasm-parser/1.11.1:
+ /@webassemblyjs/wasm-parser@1.11.1:
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -7066,17 +6933,17 @@ packages:
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- /@webassemblyjs/wast-printer/1.11.1:
+ /@webassemblyjs/wast-printer@1.11.1:
resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
'@xtuc/long': 4.2.2
- /@whatwg-node/events/0.0.2:
+ /@whatwg-node/events@0.0.2:
resolution: {integrity: sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w==}
dev: false
- /@whatwg-node/fetch/0.3.2:
+ /@whatwg-node/fetch@0.3.2:
resolution: {integrity: sha512-Bs5zAWQs0tXsLa4mRmLw7Psps1EN78vPtgcLpw3qPY8s6UYPUM67zFZ9cy+7tZ64PXhfwzxJn+m7RH2Lq48RNQ==}
dependencies:
'@peculiar/webcrypto': 1.4.1
@@ -7092,11 +6959,11 @@ packages:
- encoding
dev: false
- /@whatwg-node/fetch/0.8.1_@types+node@18.11.9:
+ /@whatwg-node/fetch@0.8.1(@types/node@18.11.9):
resolution: {integrity: sha512-Fkd1qQHK2tAWxKlC85h9L86Lgbq3BzxMnHSnTsnzNZMMzn6Xi+HlN8/LJ90LxorhSqD54td+Q864LgwUaYDj1Q==}
dependencies:
'@peculiar/webcrypto': 1.4.1
- '@whatwg-node/node-fetch': 0.3.1_@types+node@18.11.9
+ '@whatwg-node/node-fetch': 0.3.1(@types/node@18.11.9)
busboy: 1.6.0
urlpattern-polyfill: 6.0.2
web-streams-polyfill: 3.2.1
@@ -7104,11 +6971,11 @@ packages:
- '@types/node'
dev: false
- /@whatwg-node/fetch/0.8.2_@types+node@18.11.9:
+ /@whatwg-node/fetch@0.8.2(@types/node@18.11.9):
resolution: {integrity: sha512-6u1xGzFZvskJpQXhWreR9s1/4nsuY4iFRsTb4BC3NiDHmzgj/Hu1Ovt4iHs5KAjLzbnsjaQOI5f5bQPucqvPsQ==}
dependencies:
'@peculiar/webcrypto': 1.4.1
- '@whatwg-node/node-fetch': 0.3.1_@types+node@18.11.9
+ '@whatwg-node/node-fetch': 0.3.1(@types/node@18.11.9)
busboy: 1.6.0
urlpattern-polyfill: 6.0.2
web-streams-polyfill: 3.2.1
@@ -7116,11 +6983,11 @@ packages:
- '@types/node'
dev: false
- /@whatwg-node/fetch/0.8.3_@types+node@18.11.9:
+ /@whatwg-node/fetch@0.8.3(@types/node@18.11.9):
resolution: {integrity: sha512-qpacTdzO8z36pa3HpEXEE2PoCXS7sn3LNqr7IjDETEPWJWS0RTJMD49fL1ZKdjQrfHZNBQCRwVNOcT1RZv/xVg==}
dependencies:
'@peculiar/webcrypto': 1.4.1
- '@whatwg-node/node-fetch': 0.3.3_@types+node@18.11.9
+ '@whatwg-node/node-fetch': 0.3.3(@types/node@18.11.9)
busboy: 1.6.0
urlpattern-polyfill: 6.0.2
web-streams-polyfill: 3.2.1
@@ -7128,7 +6995,7 @@ packages:
- '@types/node'
dev: false
- /@whatwg-node/node-fetch/0.3.1_@types+node@18.11.9:
+ /@whatwg-node/node-fetch@0.3.1(@types/node@18.11.9):
resolution: {integrity: sha512-/U4onp5eBkRHfFe/VL+ppyupqj7z6iBtjcuPSosQNH2/y+LxRn5lyFb7Vqhb5DokjrDMjssLcqiVYnx+UABFsw==}
peerDependencies:
'@types/node': ^18.0.6
@@ -7141,7 +7008,7 @@ packages:
tslib: 2.5.0
dev: false
- /@whatwg-node/node-fetch/0.3.3_@types+node@18.11.9:
+ /@whatwg-node/node-fetch@0.3.3(@types/node@18.11.9):
resolution: {integrity: sha512-WMnvPE/59cgpqfCAKPiid536LX9ugo0TehID26KYZzKzNNvk5hxyJZ7sBWoNFRRBcZsySI3b47BTevtg6FRILA==}
peerDependencies:
'@types/node': ^18.0.6
@@ -7154,57 +7021,57 @@ packages:
tslib: 2.5.0
dev: false
- /@whatwg-node/router/0.3.0_@types+node@18.11.9:
+ /@whatwg-node/router@0.3.0(@types/node@18.11.9):
resolution: {integrity: sha512-d7qzIvbbBm6d0VpJGlRbp/G9PTLRCcpS9fRNnfjE87ZbWbB05vBzHkaUyOs2zaTny/GPuBzrEY2QewoLj4+5JQ==}
dependencies:
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
- '@whatwg-node/server': 0.7.5_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
+ '@whatwg-node/server': 0.7.5(@types/node@18.11.9)
tslib: 2.5.0
transitivePeerDependencies:
- '@types/node'
dev: false
- /@whatwg-node/server/0.6.7_@types+node@18.11.9:
+ /@whatwg-node/server@0.6.7(@types/node@18.11.9):
resolution: {integrity: sha512-M4zHWdJ6M1IdcxnZBdDmiUh1bHQ4gPYRxzkH0gh8Qf6MpWJmX6I/MNftqem3GNn+qn1y47qqlGSed7T7nzsRFw==}
dependencies:
- '@whatwg-node/fetch': 0.8.3_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.3(@types/node@18.11.9)
tslib: 2.5.0
transitivePeerDependencies:
- '@types/node'
dev: false
- /@whatwg-node/server/0.7.5_@types+node@18.11.9:
+ /@whatwg-node/server@0.7.5(@types/node@18.11.9):
resolution: {integrity: sha512-xTDJdPqr/wULxW3mGXQXD92SRXUm6jwQxqIvyHG17dykRTd21HuCaS2ggBn5lSAM/sYjjrT+OYv3fXbtS4+Mjw==}
dependencies:
- '@whatwg-node/fetch': 0.8.3_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.3(@types/node@18.11.9)
tslib: 2.5.0
transitivePeerDependencies:
- '@types/node'
dev: false
- /@xtuc/ieee754/1.2.0:
+ /@xtuc/ieee754@1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- /@xtuc/long/4.2.2:
+ /@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- /@yarnpkg/lockfile/1.1.0:
+ /@yarnpkg/lockfile@1.1.0:
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
- /@yarnpkg/parsers/3.0.0-rc.40:
+ /@yarnpkg/parsers@3.0.0-rc.40:
resolution: {integrity: sha512-sKbi5XhHKXCjzb5m0ftGuQuODM2iUXEsrCSl8MkKexNWHepCmU3IPaGTPC5gHZy4sOvsb9JqTLaZEez+kDzG+Q==}
engines: {node: '>=14.15.0'}
dependencies:
js-yaml: 3.14.1
tslib: 2.5.0
- /@zkochan/js-yaml/0.0.6:
+ /@zkochan/js-yaml@0.0.6:
resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==}
hasBin: true
dependencies:
argparse: 2.0.1
- /JSONStream/1.3.5:
+ /JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
dependencies:
@@ -7212,87 +7079,87 @@ packages:
through: 2.3.8
dev: true
- /abab/2.0.6:
+ /abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
- /abort-controller/3.0.0:
+ /abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
dependencies:
event-target-shim: 5.0.1
dev: false
- /accepts/1.3.8:
+ /accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
- /acorn-globals/6.0.0:
+ /acorn-globals@6.0.0:
resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
dev: true
- /acorn-globals/7.0.1:
+ /acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
dependencies:
acorn: 8.8.2
acorn-walk: 8.2.0
dev: true
- /acorn-import-assertions/1.8.0_acorn@8.8.2:
+ /acorn-import-assertions@1.8.0(acorn@8.8.2):
resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
peerDependencies:
acorn: ^8
dependencies:
acorn: 8.8.2
- /acorn-jsx/5.3.2_acorn@8.8.2:
+ /acorn-jsx@5.3.2(acorn@8.8.2):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 8.8.2
- /acorn-walk/7.2.0:
+ /acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn-walk/8.2.0:
+ /acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
- /acorn/7.4.1:
+ /acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
- /acorn/8.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
hasBin: true
- /agent-base/6.0.2:
+ /agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- /aggregate-error/3.1.0:
+ /aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
- /ajv-formats/2.1.1:
+ /ajv-formats@2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependenciesMeta:
ajv:
@@ -7300,14 +7167,14 @@ packages:
dependencies:
ajv: 8.12.0
- /ajv-keywords/3.5.2_ajv@6.12.6:
+ /ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
dependencies:
ajv: 6.12.6
- /ajv-keywords/5.1.0_ajv@8.12.0:
+ /ajv-keywords@5.1.0(ajv@8.12.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
@@ -7315,7 +7182,7 @@ packages:
ajv: 8.12.0
fast-deep-equal: 3.1.3
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -7323,7 +7190,7 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.11.0:
+ /ajv@8.11.0:
resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
dependencies:
fast-deep-equal: 3.1.3
@@ -7332,7 +7199,7 @@ packages:
uri-js: 4.4.1
dev: false
- /ajv/8.12.0:
+ /ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
dependencies:
fast-deep-equal: 3.1.3
@@ -7340,73 +7207,73 @@ packages:
require-from-string: 2.0.2
uri-js: 4.4.1
- /ansi-colors/4.1.3:
+ /ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- /ansi-escapes/4.3.2:
+ /ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.21.3
- /ansi-html-community/0.0.8:
+ /ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
hasBin: true
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- /ansi-regex/6.0.1:
+ /ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
dev: true
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- /ansi-styles/5.2.0:
+ /ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- /ansi-styles/6.2.1:
+ /ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
dev: true
- /anymatch/3.1.3:
+ /anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- /arch/2.2.0:
+ /arch@2.2.0:
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
- /arg/4.1.3:
+ /arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- /aria-query/4.2.2:
+ /aria-query@4.2.2:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
@@ -7414,23 +7281,23 @@ packages:
'@babel/runtime-corejs3': 7.21.0
dev: true
- /aria-query/5.1.3:
+ /aria-query@5.1.3:
resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
dependencies:
deep-equal: 2.2.0
dev: true
- /array-flatten/1.1.1:
+ /array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- /array-flatten/2.1.2:
+ /array-flatten@2.1.2:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
- /array-ify/1.0.0:
+ /array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
dev: true
- /array-includes/3.1.6:
+ /array-includes@3.1.6:
resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -7441,15 +7308,15 @@ packages:
is-string: 1.0.7
dev: true
- /array-union/2.1.0:
+ /array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- /array-union/3.0.1:
+ /array-union@3.0.1:
resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==}
engines: {node: '>=12'}
- /array.prototype.flat/1.3.1:
+ /array.prototype.flat@1.3.1:
resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -7459,7 +7326,7 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.flatmap/1.3.1:
+ /array.prototype.flatmap@1.3.1:
resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -7469,7 +7336,7 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.tosorted/1.1.1:
+ /array.prototype.tosorted@1.1.1:
resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
call-bind: 1.0.2
@@ -7479,21 +7346,21 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /arrify/1.0.1:
+ /arrify@1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
dev: true
- /asap/2.0.6:
+ /asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: false
- /asn1/0.2.6:
+ /asn1@0.2.6:
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
dependencies:
safer-buffer: 2.1.2
- /asn1js/3.0.5:
+ /asn1js@3.0.5:
resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==}
engines: {node: '>=12.0.0'}
dependencies:
@@ -7502,43 +7369,43 @@ packages:
tslib: 2.5.0
dev: false
- /assert-plus/1.0.0:
+ /assert-plus@1.0.0:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
- /assertion-error/1.1.0:
+ /assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
dev: true
- /ast-types-flow/0.0.7:
+ /ast-types-flow@0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
- /astral-regex/2.0.0:
+ /astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- /async/3.2.4:
+ /async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
- /asynckit/0.4.0:
+ /asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- /at-least-node/1.0.0:
+ /at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- /atob/2.1.2:
+ /atob@2.1.2:
resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
engines: {node: '>= 4.5.0'}
hasBin: true
- /auto-bind/4.0.0:
+ /auto-bind@4.0.0:
resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==}
engines: {node: '>=8'}
dev: false
- /autoprefixer/10.4.14_postcss@8.4.21:
+ /autoprefixer@10.4.14(postcss@8.4.21):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -7553,22 +7420,22 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /available-typed-arrays/1.0.5:
+ /available-typed-arrays@1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- /aws-sign2/0.7.0:
+ /aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
- /aws4/1.12.0:
+ /aws4@1.12.0:
resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==}
- /axe-core/4.6.3:
+ /axe-core@4.6.3:
resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==}
engines: {node: '>=4'}
dev: true
- /axios/0.21.4:
+ /axios@0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies:
follow-redirects: 1.15.2
@@ -7576,7 +7443,7 @@ packages:
- debug
dev: true
- /axios/1.3.4:
+ /axios@1.3.4:
resolution: {integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==}
dependencies:
follow-redirects: 1.15.2
@@ -7585,11 +7452,11 @@ packages:
transitivePeerDependencies:
- debug
- /axobject-query/2.2.0:
+ /axobject-query@2.2.0:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /babel-jest/28.1.1:
+ /babel-jest@28.1.1:
resolution: {integrity: sha512-MEt0263viUdAkTq5D7upHPNxvt4n9uLUGa6pPz3WviNBMtOmStb1lIXS3QobnoqM+qnH+vr4EKlvhe8QcmxIYw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -7598,7 +7465,7 @@ packages:
'@jest/transform': 28.1.3
'@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 28.1.3
+ babel-preset-jest: 28.1.3(@babel/core@7.21.0)
chalk: 4.1.2
graceful-fs: 4.2.10
slash: 3.0.0
@@ -7606,7 +7473,7 @@ packages:
- supports-color
dev: true
- /babel-jest/28.1.3_@babel+core@7.21.0:
+ /babel-jest@28.1.3(@babel/core@7.21.0):
resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -7616,14 +7483,14 @@ packages:
'@jest/transform': 28.1.3
'@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 28.1.3_@babel+core@7.21.0
+ babel-preset-jest: 28.1.3(@babel/core@7.21.0)
chalk: 4.1.2
graceful-fs: 4.2.10
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- /babel-loader/9.1.2_webpack@5.76.0:
+ /babel-loader@9.1.2(webpack@5.76.0):
resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -7632,21 +7499,21 @@ packages:
dependencies:
find-cache-dir: 3.3.2
schema-utils: 4.0.0
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /babel-plugin-const-enum/1.2.0_@babel+core@7.21.0:
+ /babel-plugin-const-enum@1.2.0(@babel/core@7.21.0):
resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0
- '@babel/traverse': 7.21.2
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0)
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- /babel-plugin-istanbul/6.1.1:
+ /babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
@@ -7658,7 +7525,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-plugin-jest-hoist/28.1.3:
+ /babel-plugin-jest-hoist@28.1.3:
resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -7667,47 +7534,47 @@ packages:
'@types/babel__core': 7.20.0
'@types/babel__traverse': 7.18.3
- /babel-plugin-macros/2.8.0:
+ /babel-plugin-macros@2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
dependencies:
'@babel/runtime': 7.21.0
cosmiconfig: 6.0.0
resolve: 1.22.1
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0:
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.0):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0:
+ /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.0):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0)
core-js-compat: 3.29.0
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0:
+ /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.0):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0)
transitivePeerDependencies:
- supports-color
- /babel-plugin-styled-components/1.10.7_styled-components@5.3.6:
+ /babel-plugin-styled-components@1.10.7(styled-components@5.3.6):
resolution: {integrity: sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==}
peerDependencies:
styled-components: '>= 2'
@@ -7716,10 +7583,10 @@ packages:
'@babel/helper-module-imports': 7.18.6
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
- styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba
+ styled-components: 5.3.6(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
dev: true
- /babel-plugin-styled-components/2.0.7_styled-components@5.3.6:
+ /babel-plugin-styled-components@2.0.7(styled-components@5.3.6):
resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==}
peerDependencies:
styled-components: '>= 2'
@@ -7729,106 +7596,84 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba
+ styled-components: 5.3.6(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
- /babel-plugin-syntax-jsx/6.18.0:
+ /babel-plugin-syntax-jsx@6.18.0:
resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
- /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0:
+ /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
dev: false
- /babel-plugin-transform-typescript-metadata/0.3.2:
+ /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.21.0):
resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==}
+ peerDependencies:
+ '@babel/core': ^7
+ '@babel/traverse': ^7
+ peerDependenciesMeta:
+ '@babel/traverse':
+ optional: true
dependencies:
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- /babel-preset-current-node-syntax/1.0.1:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/plugin-syntax-async-generators': 7.8.4
- '@babel/plugin-syntax-bigint': 7.8.3
- '@babel/plugin-syntax-class-properties': 7.12.13
- '@babel/plugin-syntax-import-meta': 7.10.4
- '@babel/plugin-syntax-json-strings': 7.8.3
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
- '@babel/plugin-syntax-numeric-separator': 7.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3
- '@babel/plugin-syntax-optional-chaining': 7.8.3
- '@babel/plugin-syntax-top-level-await': 7.14.5
- dev: true
-
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.0:
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.0):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0
-
- /babel-preset-fbjs/3.4.0_@babel+core@7.21.0:
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0)
+
+ /babel-preset-fbjs@3.4.0(@babel/core@7.21.0):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.0
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
- '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0)
+ '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-flow-strip-types': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.0)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.0)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.0)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.0)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.0)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.0)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-preset-jest/28.1.3:
- resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- babel-plugin-jest-hoist: 28.1.3
- babel-preset-current-node-syntax: 1.0.1
- dev: true
-
- /babel-preset-jest/28.1.3_@babel+core@7.21.0:
+ /babel-preset-jest@28.1.3(@babel/core@7.21.0):
resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -7836,41 +7681,41 @@ packages:
dependencies:
'@babel/core': 7.21.0
babel-plugin-jest-hoist: 28.1.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0)
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /base-64/0.1.0:
+ /base-64@0.1.0:
resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==}
dev: false
- /base64-js/1.5.1:
+ /base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- /batch/0.6.1:
+ /batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
- /bcrypt-pbkdf/1.0.2:
+ /bcrypt-pbkdf@1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
dependencies:
tweetnacl: 0.14.5
- /better-path-resolve/1.0.0:
+ /better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
dependencies:
is-windows: 1.0.2
dev: true
- /big.js/5.2.2:
+ /big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- /bignumber.js/9.0.0:
+ /bignumber.js@9.0.0:
resolution: {integrity: sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==}
dev: false
- /bin-check/4.1.0:
+ /bin-check@4.1.0:
resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==}
engines: {node: '>=4'}
dependencies:
@@ -7878,7 +7723,7 @@ packages:
executable: 4.1.1
dev: true
- /bin-version-check/5.0.0:
+ /bin-version-check@5.0.0:
resolution: {integrity: sha512-Q3FMQnS5eZmrBGqmDXLs4dbAn/f+52voP6ykJYmweSA60t6DyH4UTSwZhtbK5UH+LBoWvDljILUQMLRUtsynsA==}
engines: {node: '>=12'}
dependencies:
@@ -7887,7 +7732,7 @@ packages:
semver-truncate: 2.0.0
dev: true
- /bin-version/6.0.0:
+ /bin-version@6.0.0:
resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==}
engines: {node: '>=12'}
dependencies:
@@ -7895,24 +7740,24 @@ packages:
find-versions: 5.1.0
dev: true
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /bl/4.1.0:
+ /bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
- /blob-util/2.0.2:
+ /blob-util@2.0.2:
resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==}
- /bluebird/3.7.2:
+ /bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- /body-parser/1.20.1:
+ /body-parser@1.20.1:
resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
@@ -7931,7 +7776,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /bonjour-service/1.1.0:
+ /bonjour-service@1.1.0:
resolution: {integrity: sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==}
dependencies:
array-flatten: 2.1.2
@@ -7939,37 +7784,37 @@ packages:
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
- /boolbase/1.0.0:
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- /brace-expansion/2.0.1:
+ /brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
dependencies:
balanced-match: 1.0.2
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- /breakword/1.0.5:
+ /breakword@1.0.5:
resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==}
dependencies:
wcwidth: 1.0.1
dev: true
- /browser-process-hrtime/1.0.0:
+ /browser-process-hrtime@1.0.0:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
dev: true
- /browserslist/4.21.5:
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -7977,60 +7822,60 @@ packages:
caniuse-lite: 1.0.30001464
electron-to-chromium: 1.4.328
node-releases: 2.0.10
- update-browserslist-db: 1.0.10_browserslist@4.21.5
+ update-browserslist-db: 1.0.10(browserslist@4.21.5)
- /bs-logger/0.2.6:
+ /bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
dependencies:
fast-json-stable-stringify: 2.1.0
dev: true
- /bser/2.1.1:
+ /bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
node-int64: 0.4.0
- /buffer-crc32/0.2.13:
+ /buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
- /buffer-from/1.1.2:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- /buffer/5.7.1:
+ /buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- /buffer/6.0.3:
+ /buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
dev: false
- /busboy/1.6.0:
+ /busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
dependencies:
streamsearch: 1.1.0
dev: false
- /bytes/3.0.0:
+ /bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
- /bytes/3.1.2:
+ /bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- /cacheable-lookup/5.0.4:
+ /cacheable-lookup@5.0.4:
resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
engines: {node: '>=10.6.0'}
dev: true
- /cacheable-request/7.0.2:
+ /cacheable-request@7.0.2:
resolution: {integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==}
engines: {node: '>=8'}
dependencies:
@@ -8043,28 +7888,28 @@ packages:
responselike: 2.0.1
dev: true
- /cachedir/2.3.0:
+ /cachedir@2.3.0:
resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==}
engines: {node: '>=6'}
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.2.0
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- /camel-case/4.1.2:
+ /camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
tslib: 2.5.0
dev: false
- /camelcase-keys/6.2.2:
+ /camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
engines: {node: '>=8'}
dependencies:
@@ -8073,18 +7918,18 @@ packages:
quick-lru: 4.0.1
dev: true
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
- /camelcase/6.3.0:
+ /camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /camelize/1.0.1:
+ /camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.5
@@ -8092,10 +7937,10 @@ packages:
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- /caniuse-lite/1.0.30001464:
+ /caniuse-lite@1.0.30001464:
resolution: {integrity: sha512-oww27MtUmusatpRpCGSOneQk2/l5czXANDSFvsc7VuOQ86s3ANhZetpwXNf1zY/zdfP63Xvjz325DAdAoES13g==}
- /capital-case/1.0.4:
+ /capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
dependencies:
no-case: 3.0.4
@@ -8103,10 +7948,10 @@ packages:
upper-case-first: 2.0.2
dev: false
- /caseless/0.12.0:
+ /caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
- /chai/4.3.7:
+ /chai@4.3.7:
resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
engines: {node: '>=4'}
dependencies:
@@ -8119,7 +7964,7 @@ packages:
type-detect: 4.0.8
dev: true
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -8127,7 +7972,7 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/4.1.0:
+ /chalk@4.1.0:
resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==}
engines: {node: '>=10'}
dependencies:
@@ -8135,19 +7980,19 @@ packages:
supports-color: 7.2.0
dev: true
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /chalk/5.2.0:
+ /chalk@5.2.0:
resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
dev: true
- /change-case-all/1.0.14:
+ /change-case-all@1.0.14:
resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==}
dependencies:
change-case: 4.1.2
@@ -8162,7 +8007,7 @@ packages:
upper-case-first: 2.0.2
dev: false
- /change-case-all/1.0.15:
+ /change-case-all@1.0.15:
resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==}
dependencies:
change-case: 4.1.2
@@ -8177,7 +8022,7 @@ packages:
upper-case-first: 2.0.2
dev: false
- /change-case/4.1.2:
+ /change-case@4.1.2:
resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==}
dependencies:
camel-case: 4.1.2
@@ -8194,22 +8039,22 @@ packages:
tslib: 2.5.0
dev: false
- /char-regex/1.0.2:
+ /char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
- /chardet/0.7.0:
+ /chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- /check-error/1.0.2:
+ /check-error@1.0.2:
resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
dev: true
- /check-more-types/2.24.0:
+ /check-more-types@2.24.0:
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
engines: {node: '>= 0.8.0'}
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -8223,42 +8068,42 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /chownr/2.0.0:
+ /chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
dev: true
- /chrome-trace-event/1.0.3:
+ /chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- /ci-info/3.8.0:
+ /ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
- /cjs-module-lexer/1.2.2:
+ /cjs-module-lexer@1.2.2:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
- /clean-stack/2.2.0:
+ /clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- /cli-cursor/3.1.0:
+ /cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
- /cli-spinners/2.6.1:
+ /cli-spinners@2.6.1:
resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
engines: {node: '>=6'}
- /cli-spinners/2.7.0:
+ /cli-spinners@2.7.0:
resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==}
engines: {node: '>=6'}
dev: false
- /cli-table3/0.6.3:
+ /cli-table3@0.6.3:
resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
engines: {node: 10.* || >= 12.*}
dependencies:
@@ -8266,14 +8111,14 @@ packages:
optionalDependencies:
'@colors/colors': 1.5.0
- /cli-truncate/2.1.0:
+ /cli-truncate@2.1.0:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
engines: {node: '>=8'}
dependencies:
slice-ansi: 3.0.0
string-width: 4.2.3
- /cli-truncate/3.1.0:
+ /cli-truncate@3.1.0:
resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -8281,30 +8126,30 @@ packages:
string-width: 5.1.2
dev: true
- /cli-width/3.0.0:
+ /cli-width@3.0.0:
resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
engines: {node: '>= 10'}
dev: false
- /client-only/0.0.1:
+ /client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
dev: false
- /cliui/6.0.0:
+ /cliui@6.0.0:
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
- /cliui/7.0.4:
+ /cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- /cliui/8.0.1:
+ /cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
dependencies:
@@ -8312,7 +8157,7 @@ packages:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- /clone-deep/4.0.1:
+ /clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
dependencies:
@@ -8320,105 +8165,105 @@ packages:
kind-of: 6.0.3
shallow-clone: 3.0.1
- /clone-response/1.0.3:
+ /clone-response@1.0.3:
resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
dependencies:
mimic-response: 1.0.1
dev: true
- /clone/1.0.4:
+ /clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- /co/4.6.0:
+ /co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- /code-block-writer/11.0.3:
+ /code-block-writer@11.0.3:
resolution: {integrity: sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw==}
dev: true
- /collect-v8-coverage/1.0.1:
+ /collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /colord/2.9.3:
+ /colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- /colorette/2.0.19:
+ /colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
- /colors/1.2.5:
+ /colors@1.2.5:
resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==}
engines: {node: '>=0.1.90'}
dev: true
- /combined-stream/1.0.8:
+ /combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: 1.0.0
- /commander/10.0.0:
+ /commander@10.0.0:
resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==}
engines: {node: '>=14'}
dev: true
- /commander/2.20.3:
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- /commander/5.1.0:
+ /commander@5.1.0:
resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
engines: {node: '>= 6'}
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- /commander/9.5.0:
+ /commander@9.5.0:
resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
engines: {node: ^12.20.0 || >=14}
requiresBuild: true
dev: true
optional: true
- /common-tags/1.8.2:
+ /common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
- /commondir/1.0.1:
+ /commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /compare-func/2.0.0:
+ /compare-func@2.0.0:
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
dependencies:
array-ify: 1.0.0
dot-prop: 5.3.0
dev: true
- /compressible/2.0.18:
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -8432,18 +8277,18 @@ packages:
transitivePeerDependencies:
- supports-color
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /confusing-browser-globals/1.0.11:
+ /confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
dev: true
- /connect-history-api-fallback/2.0.0:
+ /connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
- /constant-case/3.0.4:
+ /constant-case@3.0.4:
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
dependencies:
no-case: 3.0.4
@@ -8451,17 +8296,17 @@ packages:
upper-case: 2.0.2
dev: false
- /content-disposition/0.5.4:
+ /content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
dependencies:
safe-buffer: 5.2.1
- /content-type/1.0.5:
+ /content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- /conventional-changelog-angular/5.0.13:
+ /conventional-changelog-angular@5.0.13:
resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==}
engines: {node: '>=10'}
dependencies:
@@ -8469,7 +8314,7 @@ packages:
q: 1.5.1
dev: true
- /conventional-commits-parser/3.2.4:
+ /conventional-commits-parser@3.2.4:
resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
engines: {node: '>=10'}
hasBin: true
@@ -8482,23 +8327,23 @@ packages:
through2: 4.0.2
dev: true
- /convert-source-map/1.9.0:
+ /convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
- /cookie-signature/1.0.6:
+ /cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- /cookie/0.5.0:
+ /cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
- /copy-anything/2.0.6:
+ /copy-anything@2.0.6:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
dependencies:
is-what: 3.14.1
dev: false
- /copy-webpack-plugin/10.2.4_webpack@5.76.0:
+ /copy-webpack-plugin@10.2.4(webpack@5.76.0):
resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==}
engines: {node: '>= 12.20.0'}
peerDependencies:
@@ -8510,25 +8355,25 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.0.0
serialize-javascript: 6.0.1
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /core-js-compat/3.29.0:
+ /core-js-compat@3.29.0:
resolution: {integrity: sha512-ScMn3uZNAFhK2DGoEfErguoiAHhV2Ju+oJo/jK08p7B3f3UhocUrCCkTvnZaiS+edl5nlIoiBXKcwMc6elv4KQ==}
dependencies:
browserslist: 4.21.5
- /core-js-pure/3.29.0:
+ /core-js-pure@3.29.0:
resolution: {integrity: sha512-v94gUjN5UTe1n0yN/opTihJ8QBWD2O8i19RfTZR7foONPWArnjB96QA/wk5ozu1mm6ja3udQCzOzwQXTxi3xOQ==}
requiresBuild: true
dev: true
- /core-util-is/1.0.2:
+ /core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- /cosmiconfig-typescript-loader/4.3.0_lmcvhluzh3a7wwwkanu7ndhele:
+ /cosmiconfig-typescript-loader@4.3.0(@types/node@18.15.0)(cosmiconfig@8.1.0)(ts-node@10.9.1)(typescript@4.9.5):
resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}
engines: {node: '>=12', npm: '>=6'}
peerDependencies:
@@ -8539,11 +8384,11 @@ packages:
dependencies:
'@types/node': 18.15.0
cosmiconfig: 8.1.0
- ts-node: 10.9.1_jb575hq3hgugnbsoqapjmblw4m
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.15.0)(typescript@4.9.5)
typescript: 4.9.5
dev: true
- /cosmiconfig/6.0.0:
+ /cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
dependencies:
@@ -8553,7 +8398,7 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
- /cosmiconfig/7.1.0:
+ /cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
@@ -8563,7 +8408,7 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
- /cosmiconfig/8.0.0:
+ /cosmiconfig@8.0.0:
resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==}
engines: {node: '>=14'}
dependencies:
@@ -8573,7 +8418,7 @@ packages:
path-type: 4.0.0
dev: false
- /cosmiconfig/8.1.0:
+ /cosmiconfig@8.1.0:
resolution: {integrity: sha512-0tLZ9URlPGU7JsKq0DQOQ3FoRsYX8xDZ7xMiATQfaiGMz7EHowNkbU9u1coAOmnh9p/1ySpm0RB3JNWRXM5GCg==}
engines: {node: '>=14'}
dependencies:
@@ -8582,10 +8427,10 @@ packages:
parse-json: 5.2.0
path-type: 4.0.0
- /create-require/1.1.1:
+ /create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- /cross-fetch/3.1.5:
+ /cross-fetch@3.1.5:
resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
dependencies:
node-fetch: 2.6.7
@@ -8593,7 +8438,7 @@ packages:
- encoding
dev: false
- /cross-spawn/5.1.0:
+ /cross-spawn@5.1.0:
resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
dependencies:
lru-cache: 4.1.5
@@ -8601,7 +8446,7 @@ packages:
which: 1.3.1
dev: true
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -8609,11 +8454,11 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /css-color-keywords/1.0.0:
+ /css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- /css-declaration-sorter/6.3.1_postcss@8.4.21:
+ /css-declaration-sorter@6.3.1(postcss@8.4.21):
resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
@@ -8621,23 +8466,23 @@ packages:
dependencies:
postcss: 8.4.21
- /css-loader/6.7.3_webpack@5.76.0:
+ /css-loader@6.7.3(webpack@5.76.0):
resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
- postcss-modules-scope: 3.0.0_postcss@8.4.21
- postcss-modules-values: 4.0.0_postcss@8.4.21
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.21)
+ postcss-modules-local-by-default: 4.0.0(postcss@8.4.21)
+ postcss-modules-scope: 3.0.0(postcss@8.4.21)
+ postcss-modules-values: 4.0.0(postcss@8.4.21)
postcss-value-parser: 4.2.0
semver: 7.3.8
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /css-minimizer-webpack-plugin/3.4.1_webpack@5.76.0:
+ /css-minimizer-webpack-plugin@3.4.1(webpack@5.76.0):
resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -8656,15 +8501,15 @@ packages:
esbuild:
optional: true
dependencies:
- cssnano: 5.1.15_postcss@8.4.21
+ cssnano: 5.1.15(postcss@8.4.21)
jest-worker: 27.5.1
postcss: 8.4.21
schema-utils: 4.0.0
serialize-javascript: 6.0.1
source-map: 0.6.1
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /css-select/4.3.0:
+ /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
@@ -8673,74 +8518,74 @@ packages:
domutils: 2.8.0
nth-check: 2.1.1
- /css-to-react-native/3.2.0:
+ /css-to-react-native@3.2.0:
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
dependencies:
camelize: 1.0.1
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
mdn-data: 2.0.14
source-map: 0.6.1
- /css-what/6.1.0:
+ /css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
- /css/3.0.0:
+ /css@3.0.0:
resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==}
dependencies:
inherits: 2.0.4
source-map: 0.6.1
source-map-resolve: 0.6.0
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default/5.2.14_postcss@8.4.21:
+ /cssnano-preset-default@5.2.14(postcss@8.4.21):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.3.1_postcss@8.4.21
- cssnano-utils: 3.1.0_postcss@8.4.21
+ css-declaration-sorter: 6.3.1(postcss@8.4.21)
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
- postcss-calc: 8.2.4_postcss@8.4.21
- postcss-colormin: 5.3.1_postcss@8.4.21
- postcss-convert-values: 5.1.3_postcss@8.4.21
- postcss-discard-comments: 5.1.2_postcss@8.4.21
- postcss-discard-duplicates: 5.1.0_postcss@8.4.21
- postcss-discard-empty: 5.1.1_postcss@8.4.21
- postcss-discard-overridden: 5.1.0_postcss@8.4.21
- postcss-merge-longhand: 5.1.7_postcss@8.4.21
- postcss-merge-rules: 5.1.4_postcss@8.4.21
- postcss-minify-font-values: 5.1.0_postcss@8.4.21
- postcss-minify-gradients: 5.1.1_postcss@8.4.21
- postcss-minify-params: 5.1.4_postcss@8.4.21
- postcss-minify-selectors: 5.2.1_postcss@8.4.21
- postcss-normalize-charset: 5.1.0_postcss@8.4.21
- postcss-normalize-display-values: 5.1.0_postcss@8.4.21
- postcss-normalize-positions: 5.1.1_postcss@8.4.21
- postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21
- postcss-normalize-string: 5.1.0_postcss@8.4.21
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21
- postcss-normalize-unicode: 5.1.1_postcss@8.4.21
- postcss-normalize-url: 5.1.0_postcss@8.4.21
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.21
- postcss-ordered-values: 5.1.3_postcss@8.4.21
- postcss-reduce-initial: 5.1.2_postcss@8.4.21
- postcss-reduce-transforms: 5.1.0_postcss@8.4.21
- postcss-svgo: 5.1.0_postcss@8.4.21
- postcss-unique-selectors: 5.1.1_postcss@8.4.21
-
- /cssnano-utils/3.1.0_postcss@8.4.21:
+ postcss-calc: 8.2.4(postcss@8.4.21)
+ postcss-colormin: 5.3.1(postcss@8.4.21)
+ postcss-convert-values: 5.1.3(postcss@8.4.21)
+ postcss-discard-comments: 5.1.2(postcss@8.4.21)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.21)
+ postcss-discard-empty: 5.1.1(postcss@8.4.21)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.21)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.21)
+ postcss-merge-rules: 5.1.4(postcss@8.4.21)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.21)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.21)
+ postcss-minify-params: 5.1.4(postcss@8.4.21)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.21)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.21)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.21)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.21)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.21)
+ postcss-normalize-string: 5.1.0(postcss@8.4.21)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.21)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.21)
+ postcss-normalize-url: 5.1.0(postcss@8.4.21)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.21)
+ postcss-ordered-values: 5.1.3(postcss@8.4.21)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.21)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.21)
+ postcss-svgo: 5.1.0(postcss@8.4.21)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.21)
+
+ /cssnano-utils@3.1.0(postcss@8.4.21):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8748,55 +8593,55 @@ packages:
dependencies:
postcss: 8.4.21
- /cssnano/5.1.15_postcss@8.4.21:
+ /cssnano@5.1.15(postcss@8.4.21):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14_postcss@8.4.21
+ cssnano-preset-default: 5.2.14(postcss@8.4.21)
lilconfig: 2.1.0
postcss: 8.4.21
yaml: 1.10.2
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
- /cssom/0.3.8:
+ /cssom@0.3.8:
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
dev: true
- /cssom/0.5.0:
+ /cssom@0.5.0:
resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
dev: true
- /cssstyle/2.3.0:
+ /cssstyle@2.3.0:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
dependencies:
cssom: 0.3.8
dev: true
- /csstype/3.1.1:
+ /csstype@3.1.1:
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
dev: true
- /csv-generate/3.4.3:
+ /csv-generate@3.4.3:
resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==}
dev: true
- /csv-parse/4.16.3:
+ /csv-parse@4.16.3:
resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==}
dev: true
- /csv-stringify/5.6.5:
+ /csv-stringify@5.6.5:
resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==}
dev: true
- /csv/5.5.3:
+ /csv@5.5.3:
resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==}
engines: {node: '>= 0.1.90'}
dependencies:
@@ -8806,14 +8651,14 @@ packages:
stream-transform: 2.1.3
dev: true
- /cypress/12.7.0:
+ /cypress@12.7.0:
resolution: {integrity: sha512-7rq+nmhzz0u6yabCFyPtADU2OOrYt6pvUau9qV7xyifJ/hnsaw/vkr0tnLlcuuQKUAOC1v1M1e4Z0zG7S0IAvA==}
engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0}
hasBin: true
requiresBuild: true
dependencies:
'@cypress/request': 2.88.11
- '@cypress/xvfb': 1.2.4_supports-color@8.1.1
+ '@cypress/xvfb': 1.2.4(supports-color@8.1.1)
'@types/node': 14.18.37
'@types/sinonjs__fake-timers': 8.1.1
'@types/sizzle': 2.3.3
@@ -8829,19 +8674,19 @@ packages:
commander: 5.1.0
common-tags: 1.8.2
dayjs: 1.11.7
- debug: 4.3.4_supports-color@8.1.1
+ debug: 4.3.4(supports-color@8.1.1)
enquirer: 2.3.6
eventemitter2: 6.4.7
execa: 4.1.0
executable: 4.1.1
- extract-zip: 2.0.1_supports-color@8.1.1
+ extract-zip: 2.0.1(supports-color@8.1.1)
figures: 3.2.0
fs-extra: 9.1.0
getos: 3.2.1
is-ci: 3.0.1
is-installed-globally: 0.4.0
lazy-ass: 1.6.0
- listr2: 3.14.0_enquirer@2.3.6
+ listr2: 3.14.0(enquirer@2.3.6)
lodash: 4.17.21
log-symbols: 4.1.0
minimist: 1.2.8
@@ -8855,22 +8700,22 @@ packages:
untildify: 4.0.0
yauzl: 2.10.0
- /damerau-levenshtein/1.0.8:
+ /damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
dev: true
- /dargs/7.0.0:
+ /dargs@7.0.0:
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
engines: {node: '>=8'}
dev: true
- /dashdash/1.14.1:
+ /dashdash@1.14.1:
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
dependencies:
assert-plus: 1.0.0
- /data-urls/3.0.2:
+ /data-urls@3.0.2:
resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
engines: {node: '>=12'}
dependencies:
@@ -8879,34 +8724,34 @@ packages:
whatwg-url: 11.0.0
dev: true
- /dataloader/1.4.0:
+ /dataloader@1.4.0:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
dev: true
- /dataloader/2.1.0:
+ /dataloader@2.1.0:
resolution: {integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==}
dev: false
- /dataloader/2.2.2:
+ /dataloader@2.2.2:
resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==}
dev: false
- /dayjs/1.11.5:
+ /dayjs@1.11.5:
resolution: {integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==}
dev: false
- /dayjs/1.11.6:
+ /dayjs@1.11.6:
resolution: {integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==}
dev: false
- /dayjs/1.11.7:
+ /dayjs@1.11.7:
resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==}
- /debounce/1.2.1:
+ /debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
dev: false
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
@@ -8916,7 +8761,7 @@ packages:
dependencies:
ms: 2.0.0
- /debug/3.1.0:
+ /debug@3.1.0:
resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
peerDependencies:
supports-color: '*'
@@ -8926,17 +8771,7 @@ packages:
dependencies:
ms: 2.0.0
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.3
-
- /debug/3.2.7_supports-color@8.1.1:
+ /debug@3.2.7(supports-color@8.1.1):
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
@@ -8947,18 +8782,7 @@ packages:
ms: 2.1.3
supports-color: 8.1.1
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
-
- /debug/4.3.4_supports-color@5.5.0:
+ /debug@4.3.4(supports-color@5.5.0):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -8970,7 +8794,7 @@ packages:
ms: 2.1.2
supports-color: 5.5.0
- /debug/4.3.4_supports-color@8.1.1:
+ /debug@4.3.4(supports-color@8.1.1):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -8982,7 +8806,7 @@ packages:
ms: 2.1.2
supports-color: 8.1.1
- /decamelize-keys/1.1.1:
+ /decamelize-keys@1.1.1:
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -8990,36 +8814,36 @@ packages:
map-obj: 1.0.1
dev: true
- /decamelize/1.2.0:
+ /decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- /decimal.js/10.4.3:
+ /decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
- /decode-uri-component/0.2.2:
+ /decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
- /decompress-response/6.0.0:
+ /decompress-response@6.0.0:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
dependencies:
mimic-response: 3.1.0
dev: true
- /dedent/0.7.0:
+ /dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- /deep-eql/4.1.3:
+ /deep-eql@4.1.3:
resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
engines: {node: '>=6'}
dependencies:
type-detect: 4.0.8
dev: true
- /deep-equal/2.2.0:
+ /deep-equal@2.2.0:
resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
dependencies:
call-bind: 1.0.2
@@ -9040,260 +8864,260 @@ packages:
which-collection: 1.0.1
which-typed-array: 1.1.9
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- /deepmerge/4.3.0:
+ /deepmerge@4.3.0:
resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==}
engines: {node: '>=0.10.0'}
- /default-gateway/6.0.3:
+ /default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
dependencies:
execa: 5.1.1
- /defaults/1.0.4:
+ /defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
- /defer-to-connect/2.0.1:
+ /defer-to-connect@2.0.1:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
dev: true
- /define-lazy-prop/2.0.0:
+ /define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- /define-properties/1.2.0:
+ /define-properties@1.2.0:
resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
engines: {node: '>= 0.4'}
dependencies:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /delayed-stream/1.0.0:
+ /delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- /depd/1.1.2:
+ /depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
- /depd/2.0.0:
+ /depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- /dependency-graph/0.11.0:
+ /dependency-graph@0.11.0:
resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
engines: {node: '>= 0.6.0'}
dev: false
- /destroy/1.2.0:
+ /destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- /detect-indent/6.1.0:
+ /detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
- /detect-newline/3.1.0:
+ /detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
- /detect-node/2.1.0:
+ /detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
- /diff-sequences/28.1.1:
+ /diff-sequences@28.1.1:
resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- /diff/4.0.2:
+ /diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
- /dns-equal/1.0.0:
+ /dns-equal@1.0.0:
resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
- /dns-packet/5.4.0:
+ /dns-packet@5.4.0:
resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==}
engines: {node: '>=6'}
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
- /dnscache/1.0.2:
+ /dnscache@1.0.2:
resolution: {integrity: sha512-2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ==}
dependencies:
asap: 2.0.6
lodash.clone: 4.5.0
dev: false
- /doctrine/2.1.0:
+ /doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
dependencies:
esutils: 2.0.3
dev: true
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
- /dom-accessibility-api/0.5.16:
+ /dom-accessibility-api@0.5.16:
resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
dev: true
- /dom-serializer/1.4.1:
+ /dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
domelementtype: 2.3.0
domhandler: 4.3.1
entities: 2.2.0
- /domelementtype/2.3.0:
+ /domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- /domexception/4.0.0:
+ /domexception@4.0.0:
resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
engines: {node: '>=12'}
dependencies:
webidl-conversions: 7.0.0
dev: true
- /domhandler/4.3.1:
+ /domhandler@4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.3.0
- /domutils/2.8.0:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.4.1
domelementtype: 2.3.0
domhandler: 4.3.1
- /dot-case/3.0.4:
+ /dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
dev: false
- /dot-prop/5.3.0:
+ /dot-prop@5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
dependencies:
is-obj: 2.0.0
dev: true
- /dot-prop/6.0.1:
+ /dot-prop@6.0.1:
resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
engines: {node: '>=10'}
dependencies:
is-obj: 2.0.0
dev: false
- /dotenv/10.0.0:
+ /dotenv@10.0.0:
resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==}
engines: {node: '>=10'}
- /dotenv/16.0.3:
+ /dotenv@16.0.3:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
engines: {node: '>=12'}
dev: false
- /dotenv/8.6.0:
+ /dotenv@8.6.0:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
engines: {node: '>=10'}
dev: true
- /dset/3.1.2:
+ /dset@3.1.2:
resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==}
engines: {node: '>=4'}
dev: false
- /duplexer/0.1.2:
+ /duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- /eastasianwidth/0.2.0:
+ /eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
dev: true
- /ecc-jsbn/0.1.2:
+ /ecc-jsbn@0.1.2:
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
dependencies:
jsbn: 0.1.1
safer-buffer: 2.1.2
- /ee-first/1.1.1:
+ /ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /ejs/3.1.8:
+ /ejs@3.1.8:
resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==}
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
jake: 10.8.5
- /electron-to-chromium/1.4.328:
+ /electron-to-chromium@1.4.328:
resolution: {integrity: sha512-DE9tTy2PNmy1v55AZAO542ui+MLC2cvINMK4P2LXGsJdput/ThVG9t+QGecPuAZZSgC8XoI+Jh9M1OG9IoNSCw==}
- /emittery/0.10.2:
+ /emittery@0.10.2:
resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
engines: {node: '>=12'}
- /emoji-regex/8.0.0:
+ /emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- /emoji-regex/9.2.2:
+ /emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /emojis-list/3.0.0:
+ /emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- /encodeurl/1.0.2:
+ /encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- /end-of-stream/1.4.4:
+ /end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
- /enhanced-resolve/5.12.0:
+ /enhanced-resolve@5.12.0:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.10
tapable: 2.2.1
- /enquirer/2.3.6:
+ /enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
ansi-colors: 4.1.3
- /entities/2.2.0:
+ /entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- /entities/4.4.0:
+ /entities@4.4.0:
resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
engines: {node: '>=0.12'}
- /errno/0.1.8:
+ /errno@0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
requiresBuild: true
@@ -9301,12 +9125,12 @@ packages:
prr: 1.0.1
optional: true
- /error-ex/1.3.2:
+ /error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
is-arrayish: 0.2.1
- /es-abstract/1.21.1:
+ /es-abstract@1.21.1:
resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -9345,7 +9169,7 @@ packages:
which-typed-array: 1.1.9
dev: true
- /es-get-iterator/1.1.3:
+ /es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
call-bind: 1.0.2
@@ -9358,10 +9182,10 @@ packages:
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- /es-module-lexer/0.9.3:
+ /es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
- /es-set-tostringtag/2.0.1:
+ /es-set-tostringtag@2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -9370,13 +9194,13 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /es-shim-unscopables/1.0.0:
+ /es-shim-unscopables@1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
has: 1.0.3
dev: true
- /es-to-primitive/1.2.1:
+ /es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -9385,7 +9209,7 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild/0.17.13:
+ /esbuild@0.17.13:
resolution: {integrity: sha512-4ixMwdErBcQHgTBeoxnowENCPKWFAGxgTyKHMK8gqn9sZaC7ZNWFKtim16g2rzQ2b/FYyy3lIUUJboFtjolhqg==}
engines: {node: '>=12'}
hasBin: true
@@ -9414,31 +9238,31 @@ packages:
'@esbuild/win32-ia32': 0.17.13
'@esbuild/win32-x64': 0.17.13
- /escalade/3.1.1:
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
- /escape-html/1.0.3:
+ /escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
- /escape-string-regexp/2.0.0:
+ /escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
engines: {node: '>=8'}
- /escape-string-regexp/4.0.0:
+ /escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /escape-string-regexp/5.0.0:
+ /escape-string-regexp@5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
dev: true
- /escodegen/2.0.0:
+ /escodegen@2.0.0:
resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==}
engines: {node: '>=6.0'}
hasBin: true
@@ -9451,7 +9275,7 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-next/13.1.1_oy7hgmlo6357d5kkcjbkfgtg4q:
+ /eslint-config-next@13.1.1(eslint@8.15.0)(typescript@4.8.4):
resolution: {integrity: sha512-/5S2XGWlGaiqrRhzpn51ux5JUSLwx8PVK2keLi5xk7QmhfYB8PqE6R6SlVw6hgnf/VexvUXSrlNJ/su00NhtHQ==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -9462,21 +9286,21 @@ packages:
dependencies:
'@next/eslint-plugin-next': 13.1.1
'@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
+ '@typescript-eslint/parser': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
eslint: 8.15.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3_gwd37gqv3vjv3xlpl7ju3ag2qu
- eslint-plugin-import: 2.26.0_tjqm6iusyrxcdlgjws46jwt4nm
- eslint-plugin-jsx-a11y: 6.6.1_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
+ eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.26.0)(eslint@8.15.0)
+ eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.56.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0)
+ eslint-plugin-jsx-a11y: 6.6.1(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:
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-config-prettier/8.1.0_eslint@8.15.0:
+ /eslint-config-prettier@8.1.0(eslint@8.15.0):
resolution: {integrity: sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==}
hasBin: true
peerDependencies:
@@ -9485,27 +9309,27 @@ packages:
eslint: 8.15.0
dev: true
- /eslint-import-resolver-node/0.3.7:
+ /eslint-import-resolver-node@0.3.7:
resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==}
dependencies:
- debug: 3.2.7
+ debug: 3.2.7(supports-color@8.1.1)
is-core-module: 2.11.0
resolve: 1.22.1
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-import-resolver-typescript/3.5.3_gwd37gqv3vjv3xlpl7ju3ag2qu:
+ /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.26.0)(eslint@8.15.0):
resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
enhanced-resolve: 5.12.0
eslint: 8.15.0
- eslint-plugin-import: 2.26.0_tjqm6iusyrxcdlgjws46jwt4nm
+ eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.56.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0)
get-tsconfig: 4.4.0
globby: 13.1.3
is-core-module: 2.11.0
@@ -9515,37 +9339,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_jbslnrcua7kliqmof5pljcqmeq:
- resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- debug: 3.2.7
- eslint: 8.15.0
- eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3_gwd37gqv3vjv3xlpl7ju3ag2qu
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /eslint-module-utils/2.7.4_sg6kfmjii2yhhxvqcfasrhl7li:
+ /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.56.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0):
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -9566,15 +9360,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- debug: 3.2.7
+ '@typescript-eslint/parser': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
+ debug: 3.2.7(supports-color@8.1.1)
eslint: 8.15.0
eslint-import-resolver-node: 0.3.7
+ eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.26.0)(eslint@8.15.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-cypress/2.12.1_eslint@8.15.0:
+ /eslint-plugin-cypress@2.12.1(eslint@8.15.0):
resolution: {integrity: sha512-c2W/uPADl5kospNDihgiLc7n87t5XhUbFDoTl6CfVkmG+kDAb5Ux10V9PoLPu9N+r7znpc+iQlcmAqT1A/89HA==}
peerDependencies:
eslint: '>= 3.2.1'
@@ -9583,7 +9378,7 @@ packages:
globals: 11.12.0
dev: true
- /eslint-plugin-import/2.26.0_lcwgzz7bbfy32gsvnx4mhzufue:
+ /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.56.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0):
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -9593,14 +9388,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
+ '@typescript-eslint/parser': 5.56.0(eslint@8.15.0)(typescript@4.8.4)
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
eslint: 8.15.0
eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4_sg6kfmjii2yhhxvqcfasrhl7li
+ eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.56.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0)
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -9614,38 +9409,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-import/2.26.0_tjqm6iusyrxcdlgjws46jwt4nm:
- resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.56.0_oy7hgmlo6357d5kkcjbkfgtg4q
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
- debug: 2.6.9
- doctrine: 2.1.0
- eslint: 8.15.0
- eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.7.4_jbslnrcua7kliqmof5pljcqmeq
- has: 1.0.3
- is-core-module: 2.11.0
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.1
- tsconfig-paths: 3.14.2
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
- dev: true
-
- /eslint-plugin-jsx-a11y/6.6.1_eslint@8.15.0:
+ /eslint-plugin-jsx-a11y@6.6.1(eslint@8.15.0):
resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -9667,7 +9431,7 @@ packages:
semver: 6.3.0
dev: true
- /eslint-plugin-react-hooks/4.6.0_eslint@8.15.0:
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.15.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
@@ -9676,7 +9440,7 @@ packages:
eslint: 8.15.0
dev: true
- /eslint-plugin-react/7.31.11_eslint@8.15.0:
+ /eslint-plugin-react@7.31.11(eslint@8.15.0):
resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==}
engines: {node: '>=4'}
peerDependencies:
@@ -9700,21 +9464,21 @@ packages:
string.prototype.matchall: 4.0.8
dev: true
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- /eslint-scope/7.1.1:
+ /eslint-scope@7.1.1:
resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-utils/3.0.0_eslint@8.15.0:
+ /eslint-utils@3.0.0(eslint@8.15.0):
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
@@ -9723,15 +9487,15 @@ packages:
eslint: 8.15.0
eslint-visitor-keys: 2.1.0
- /eslint-visitor-keys/2.1.0:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
- /eslint-visitor-keys/3.3.0:
+ /eslint-visitor-keys@3.3.0:
resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint/8.15.0:
+ /eslint@8.15.0:
resolution: {integrity: sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
@@ -9741,11 +9505,11 @@ packages:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.15.0
+ eslint-utils: 3.0.0(eslint@8.15.0)
eslint-visitor-keys: 3.3.0
espree: 9.4.1
esquery: 1.5.0
@@ -9774,71 +9538,71 @@ packages:
transitivePeerDependencies:
- supports-color
- /espree/9.4.1:
+ /espree@9.4.1:
resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn-jsx: 5.3.2(acorn@8.8.2)
eslint-visitor-keys: 3.3.0
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- /esquery/1.5.0:
+ /esquery@1.5.0:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- /estree-walker/2.0.2:
+ /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- /etag/1.8.1:
+ /etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- /event-target-polyfill/0.0.3:
+ /event-target-polyfill@0.0.3:
resolution: {integrity: sha512-ZMc6UuvmbinrCk4RzGyVmRyIsAyxMRlp4CqSrcQRO8Dy0A9ldbiRy5kdtBj4OtP7EClGdqGfIqo9JmOClMsGLQ==}
dev: false
- /event-target-shim/5.0.1:
+ /event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
dev: false
- /eventemitter2/6.4.7:
+ /eventemitter2@6.4.7:
resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==}
- /eventemitter3/4.0.7:
+ /eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- /events/3.3.0:
+ /events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /execa/0.7.0:
+ /execa@0.7.0:
resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==}
engines: {node: '>=4'}
dependencies:
@@ -9851,7 +9615,7 @@ packages:
strip-eof: 1.0.0
dev: true
- /execa/4.1.0:
+ /execa@4.1.0:
resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
engines: {node: '>=10'}
dependencies:
@@ -9865,7 +9629,7 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- /execa/5.1.1:
+ /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
dependencies:
@@ -9879,7 +9643,7 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- /execa/7.1.1:
+ /execa@7.1.1:
resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==}
engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
dependencies:
@@ -9894,17 +9658,17 @@ packages:
strip-final-newline: 3.0.0
dev: true
- /executable/4.1.1:
+ /executable@4.1.1:
resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
engines: {node: '>=4'}
dependencies:
pify: 2.3.0
- /exit/0.1.2:
+ /exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
- /expect/28.1.3:
+ /expect@28.1.3:
resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9914,7 +9678,7 @@ packages:
jest-message-util: 28.1.3
jest-util: 28.1.3
- /express/4.18.2:
+ /express@4.18.2:
resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -9952,14 +9716,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /ext-list/2.2.2:
+ /ext-list@2.2.2:
resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==}
engines: {node: '>=0.10.0'}
dependencies:
mime-db: 1.52.0
dev: true
- /ext-name/5.0.0:
+ /ext-name@5.0.0:
resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==}
engines: {node: '>=4'}
dependencies:
@@ -9967,14 +9731,14 @@ packages:
sort-keys-length: 1.0.1
dev: true
- /extend/3.0.2:
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- /extendable-error/0.1.7:
+ /extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
dev: true
- /external-editor/3.1.0:
+ /external-editor@3.1.0:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
dependencies:
@@ -9982,22 +9746,22 @@ packages:
iconv-lite: 0.4.24
tmp: 0.0.33
- /extract-files/11.0.0:
+ /extract-files@11.0.0:
resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==}
engines: {node: ^12.20 || >= 14.13}
dev: false
- /extract-files/9.0.0:
+ /extract-files@9.0.0:
resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==}
engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0}
dev: false
- /extract-zip/2.0.1_supports-color@8.1.1:
+ /extract-zip@2.0.1(supports-color@8.1.1):
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
engines: {node: '>= 10.17.0'}
hasBin: true
dependencies:
- debug: 4.3.4_supports-color@8.1.1
+ debug: 4.3.4(supports-color@8.1.1)
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -10005,22 +9769,22 @@ packages:
transitivePeerDependencies:
- supports-color
- /extsprintf/1.3.0:
+ /extsprintf@1.3.0:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
- /faker/5.5.3:
+ /faker@5.5.3:
resolution: {integrity: sha512-wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g==}
dev: false
- /fast-decode-uri-component/1.0.1:
+ /fast-decode-uri-component@1.0.1:
resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==}
dev: false
- /fast-deep-equal/3.1.3:
+ /fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-glob/3.2.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -10030,7 +9794,7 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-glob/3.2.7:
+ /fast-glob@3.2.7:
resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==}
engines: {node: '>=8'}
dependencies:
@@ -10040,52 +9804,52 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- /fast-querystring/1.1.1:
+ /fast-querystring@1.1.1:
resolution: {integrity: sha512-qR2r+e3HvhEFmpdHMv//U8FnFlnYjaC6QKDuaXALDkw2kvHO8WDjxH+f/rHGR4Me4pnk8p9JAkRNTjYHAKRn2Q==}
dependencies:
fast-decode-uri-component: 1.0.1
dev: false
- /fast-url-parser/1.1.3:
+ /fast-url-parser@1.1.3:
resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
dependencies:
punycode: 1.4.1
dev: false
- /fast-xml-parser/4.1.3:
+ /fast-xml-parser@4.1.3:
resolution: {integrity: sha512-LsNDahCiCcJPe8NO7HijcnukHB24tKbfDDA5IILx9dmW3Frb52lhbeX6MPNUSvyGNfav2VTYpJ/OqkRoVLrh2Q==}
hasBin: true
dependencies:
strnum: 1.0.5
dev: false
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
- /faye-websocket/0.11.4:
+ /faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
dependencies:
websocket-driver: 0.7.4
- /fb-watchman/2.0.2:
+ /fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
dependencies:
bser: 2.1.1
- /fbjs-css-vars/1.0.2:
+ /fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
dev: false
- /fbjs/3.0.4:
+ /fbjs@3.0.4:
resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==}
dependencies:
cross-fetch: 3.1.5
@@ -10099,24 +9863,24 @@ packages:
- encoding
dev: false
- /fd-slicer/1.1.0:
+ /fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
dependencies:
pend: 1.2.0
- /figures/3.2.0:
+ /figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
dependencies:
escape-string-regexp: 1.0.5
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
- /file-loader/6.2.0_webpack@5.76.0:
+ /file-loader@6.2.0(webpack@5.76.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -10124,9 +9888,9 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.1.1
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /file-type/17.1.6:
+ /file-type@17.1.6:
resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -10135,22 +9899,22 @@ packages:
token-types: 5.0.1
dev: true
- /file-uri-to-path/2.0.0:
+ /file-uri-to-path@2.0.0:
resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==}
engines: {node: '>= 6'}
dev: false
- /filelist/1.0.4:
+ /filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
minimatch: 5.1.6
- /filename-reserved-regex/3.0.0:
+ /filename-reserved-regex@3.0.0:
resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /filenamify/5.1.1:
+ /filenamify@5.1.1:
resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==}
engines: {node: '>=12.20'}
dependencies:
@@ -10159,13 +9923,13 @@ packages:
trim-repeated: 2.0.0
dev: true
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- /finalhandler/1.2.0:
+ /finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
@@ -10179,7 +9943,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /find-cache-dir/3.3.2:
+ /find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
dependencies:
@@ -10187,14 +9951,14 @@ packages:
make-dir: 3.1.0
pkg-dir: 4.2.0
- /find-up/4.1.0:
+ /find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
dependencies:
locate-path: 5.0.0
path-exists: 4.0.0
- /find-up/5.0.0:
+ /find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
dependencies:
@@ -10202,35 +9966,35 @@ packages:
path-exists: 4.0.0
dev: true
- /find-versions/5.1.0:
+ /find-versions@5.1.0:
resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==}
engines: {node: '>=12'}
dependencies:
semver-regex: 4.0.5
dev: true
- /find-yarn-workspace-root2/1.2.16:
+ /find-yarn-workspace-root2@1.2.16:
resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
dependencies:
micromatch: 4.0.5
pkg-dir: 4.2.0
dev: true
- /flat-cache/3.0.4:
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flatted: 3.2.7
rimraf: 3.0.2
- /flat/5.0.2:
+ /flat@5.0.2:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- /flatted/3.2.7:
+ /flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- /follow-redirects/1.15.2:
+ /follow-redirects@1.15.2:
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -10239,19 +10003,19 @@ packages:
debug:
optional: true
- /for-each/0.3.3:
+ /for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
is-callable: 1.2.7
- /foreach/2.0.6:
+ /foreach@2.0.6:
resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==}
dev: false
- /forever-agent/0.6.1:
+ /forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
- /fork-ts-checker-webpack-plugin/7.2.13_lns664hb3xkjxqouckgcmczr7a:
+ /fork-ts-checker-webpack-plugin@7.2.13(typescript@4.8.4)(webpack@5.76.0):
resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==}
engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
@@ -10275,39 +10039,13 @@ packages:
semver: 7.3.8
tapable: 2.2.1
typescript: 4.8.4
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /fork-ts-checker-webpack-plugin/7.2.13_webpack@5.76.0:
- resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==}
- engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
- peerDependencies:
- typescript: '>3.6.0'
- vue-template-compiler: '*'
- webpack: ^5.11.0
- peerDependenciesMeta:
- vue-template-compiler:
- optional: true
- dependencies:
- '@babel/code-frame': 7.18.6
- chalk: 4.1.2
- chokidar: 3.5.3
- cosmiconfig: 7.1.0
- deepmerge: 4.3.0
- fs-extra: 10.1.0
- memfs: 3.4.13
- minimatch: 3.1.2
- node-abort-controller: 3.1.1
- schema-utils: 3.1.1
- semver: 7.3.8
- tapable: 2.2.1
- webpack: 5.76.0_@swc+core@1.3.42
- dev: false
-
- /form-data-encoder/1.7.2:
+ /form-data-encoder@1.7.2:
resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==}
dev: false
- /form-data/2.3.3:
+ /form-data@2.3.3:
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
engines: {node: '>= 0.12'}
dependencies:
@@ -10315,7 +10053,7 @@ packages:
combined-stream: 1.0.8
mime-types: 2.1.35
- /form-data/3.0.1:
+ /form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
dependencies:
@@ -10324,7 +10062,7 @@ packages:
mime-types: 2.1.35
dev: false
- /form-data/4.0.0:
+ /form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
dependencies:
@@ -10332,7 +10070,7 @@ packages:
combined-stream: 1.0.8
mime-types: 2.1.35
- /formdata-node/4.4.1:
+ /formdata-node@4.4.1:
resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==}
engines: {node: '>= 12.20'}
dependencies:
@@ -10340,21 +10078,21 @@ packages:
web-streams-polyfill: 4.0.0-beta.3
dev: false
- /forwarded/0.2.0:
+ /forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
- /fresh/0.5.2:
+ /fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- /fs-constants/1.0.0:
+ /fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- /fs-extra/10.1.0:
+ /fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
@@ -10362,7 +10100,7 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.0
- /fs-extra/11.1.0:
+ /fs-extra@11.1.0:
resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==}
engines: {node: '>=14.14'}
dependencies:
@@ -10370,7 +10108,7 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.0
- /fs-extra/7.0.1:
+ /fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
@@ -10379,7 +10117,7 @@ packages:
universalify: 0.1.2
dev: true
- /fs-extra/8.1.0:
+ /fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
@@ -10388,7 +10126,7 @@ packages:
universalify: 0.1.2
dev: true
- /fs-extra/9.1.0:
+ /fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
@@ -10397,30 +10135,30 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.0
- /fs-minipass/2.1.0:
+ /fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
dev: true
- /fs-monkey/1.0.3:
+ /fs-monkey@1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
- /function.prototype.name/1.1.5:
+ /function.prototype.name@1.1.5:
resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -10430,56 +10168,56 @@ packages:
functions-have-names: 1.2.3
dev: true
- /functional-red-black-tree/1.0.1:
+ /functional-red-black-tree@1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- /functions-have-names/1.2.3:
+ /functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- /gensync/1.0.0-beta.2:
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-caller-file/2.0.5:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- /get-func-name/2.0.0:
+ /get-func-name@2.0.0:
resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
dev: true
- /get-intrinsic/1.2.0:
+ /get-intrinsic@1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.3
- /get-package-type/0.1.0:
+ /get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- /get-port/5.1.1:
+ /get-port@5.1.1:
resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
engines: {node: '>=8'}
dev: false
- /get-stream/3.0.0:
+ /get-stream@3.0.0:
resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
engines: {node: '>=4'}
dev: true
- /get-stream/5.2.0:
+ /get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
- /get-stream/6.0.1:
+ /get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /get-symbol-description/1.0.0:
+ /get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -10487,21 +10225,21 @@ packages:
get-intrinsic: 1.2.0
dev: true
- /get-tsconfig/4.4.0:
+ /get-tsconfig@4.4.0:
resolution: {integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==}
dev: true
- /getos/3.2.1:
+ /getos@3.2.1:
resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==}
dependencies:
async: 3.2.4
- /getpass/0.1.7:
+ /getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
dependencies:
assert-plus: 1.0.0
- /git-raw-commits/2.0.11:
+ /git-raw-commits@2.0.11:
resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
engines: {node: '>=10'}
hasBin: true
@@ -10513,22 +10251,22 @@ packages:
through2: 4.0.2
dev: true
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- /glob-parent/6.0.2:
+ /glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
- /glob-to-regexp/0.4.1:
+ /glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- /glob/7.1.4:
+ /glob@7.1.4:
resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==}
dependencies:
fs.realpath: 1.0.0
@@ -10538,7 +10276,7 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/7.1.7:
+ /glob@7.1.7:
resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
dependencies:
fs.realpath: 1.0.0
@@ -10549,7 +10287,7 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -10559,41 +10297,41 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /global-dirs/0.1.1:
+ /global-dirs@0.1.1:
resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==}
engines: {node: '>=4'}
dependencies:
ini: 1.3.8
dev: true
- /global-dirs/3.0.1:
+ /global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
engines: {node: '>=10'}
dependencies:
ini: 2.0.0
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.20.0:
+ /globals@13.20.0:
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
- /globalthis/1.0.3:
+ /globalthis@1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
dependencies:
define-properties: 1.2.0
dev: true
- /globalyzer/0.1.0:
+ /globalyzer@0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
dev: true
- /globby/11.1.0:
+ /globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
dependencies:
@@ -10604,7 +10342,7 @@ packages:
merge2: 1.4.1
slash: 3.0.0
- /globby/12.2.0:
+ /globby@12.2.0:
resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -10615,7 +10353,7 @@ packages:
merge2: 1.4.1
slash: 4.0.0
- /globby/13.1.3:
+ /globby@13.1.3:
resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -10626,16 +10364,16 @@ packages:
slash: 4.0.0
dev: true
- /globrex/0.1.2:
+ /globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
dev: true
- /gopd/1.0.1:
+ /gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
get-intrinsic: 1.2.0
- /got/11.8.6:
+ /got@11.8.6:
resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
engines: {node: '>=10.19.0'}
dependencies:
@@ -10652,31 +10390,32 @@ packages:
responselike: 2.0.1
dev: true
- /graceful-fs/4.2.10:
+ /graceful-fs@4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
- /grapheme-splitter/1.0.4:
+ /grapheme-splitter@1.0.4:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
dev: true
- /graphql-compose/9.0.10_graphql@16.6.0:
+ /graphql-compose@9.0.10(graphql@16.6.0):
resolution: {integrity: sha512-UsVoxfi2+c8WbHl2pEB+teoRRZoY4mbWBoijeLDGpAZBSPChnqtSRjp+T9UcouLCwGr5ooNyOQLoI3OVzU1bPQ==}
+ peerDependencies:
+ graphql: ^14.2.0 || ^15.0.0 || ^16.0.0
dependencies:
- graphql-type-json: 0.3.2_graphql@16.6.0
- transitivePeerDependencies:
- - graphql
+ graphql: 16.6.0
+ graphql-type-json: 0.3.2(graphql@16.6.0)
dev: false
- /graphql-compose/9.0.8_graphql@16.6.0:
+ /graphql-compose@9.0.8(graphql@16.6.0):
resolution: {integrity: sha512-I3zvygpVz5hOWk2cYL6yhbgfKbNWbiZFNXlWkv/55U+lX6Y3tL+SyY3zunw7QWrN/qtwG2DqZb13SHTv2MgdEQ==}
peerDependencies:
graphql: ^14.2.0 || ^15.0.0 || ^16.0.0
dependencies:
graphql: 16.6.0
- graphql-type-json: 0.3.2_graphql@16.6.0
+ graphql-type-json: 0.3.2(graphql@16.6.0)
dev: false
- /graphql-config/4.5.0_xfoe4adolgvm4tvnio5xigcr6e:
+ /graphql-config@4.5.0(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -10686,12 +10425,12 @@ packages:
cosmiconfig-toml-loader:
optional: true
dependencies:
- '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0
- '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0
- '@graphql-tools/load': 7.8.4_graphql@16.6.0
- '@graphql-tools/merge': 8.4.0_graphql@16.6.0
- '@graphql-tools/url-loader': 7.17.14_xfoe4adolgvm4tvnio5xigcr6e
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-tools/graphql-file-loader': 7.5.16(graphql@16.6.0)
+ '@graphql-tools/json-file-loader': 7.4.17(graphql@16.6.0)
+ '@graphql-tools/load': 7.8.4(graphql@16.6.0)
+ '@graphql-tools/merge': 8.4.0(graphql@16.6.0)
+ '@graphql-tools/url-loader': 7.17.14(@types/node@18.11.9)(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
cosmiconfig: 8.0.0
graphql: 16.6.0
jiti: 1.17.1
@@ -10705,11 +10444,11 @@ packages:
- utf-8-validate
dev: false
- /graphql-fields/2.0.3:
+ /graphql-fields@2.0.3:
resolution: {integrity: sha512-x3VE5lUcR4XCOxPIqaO4CE+bTK8u6gVouOdpQX9+EKHr+scqtK5Pp/l8nIGqIpN1TUlkKE6jDCCycm/WtLRAwA==}
dev: false
- /graphql-import-node/0.0.5_graphql@16.6.0:
+ /graphql-import-node@0.0.5(graphql@16.6.0):
resolution: {integrity: sha512-OXbou9fqh9/Lm7vwXT0XoRN9J5+WCYKnbiTalgFDvkQERITRmcfncZs6aVABedd5B85yQU5EULS4a5pnbpuI0Q==}
peerDependencies:
graphql: '*'
@@ -10717,20 +10456,20 @@ packages:
graphql: 16.6.0
dev: false
- /graphql-parse-resolve-info/4.13.0_graphql@16.6.0:
+ /graphql-parse-resolve-info@4.13.0(graphql@16.6.0):
resolution: {integrity: sha512-VVJ1DdHYcR7hwOGQKNH+QTzuNgsLA8l/y436HtP9YHoX6nmwXRWq3xWthU3autMysXdm0fQUbhTZCx0W9ICozw==}
engines: {node: '>=8.6'}
peerDependencies:
graphql: '>=0.9 <0.14 || ^14.0.2 || ^15.4.0 || ^16.3.0'
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
graphql: 16.6.0
tslib: 2.5.0
transitivePeerDependencies:
- supports-color
dev: false
- /graphql-relay/0.10.0_graphql@16.6.0:
+ /graphql-relay@0.10.0(graphql@16.6.0):
resolution: {integrity: sha512-44yBuw2/DLNEiMypbNZBt1yMDbBmyVPVesPywnteGGALiBmdyy1JP8jSg8ClLePg8ZZxk0O4BLhd1a6U/1jDOQ==}
engines: {node: ^12.20.0 || ^14.15.0 || >= 15.9.0}
peerDependencies:
@@ -10739,12 +10478,12 @@ packages:
graphql: 16.6.0
dev: false
- /graphql-request/5.2.0_graphql@16.6.0:
+ /graphql-request@5.2.0(graphql@16.6.0):
resolution: {integrity: sha512-pLhKIvnMyBERL0dtFI3medKqWOz/RhHdcgbZ+hMMIb32mEPa5MJSzS4AuXxfI4sRAu6JVVk5tvXuGfCWl9JYWQ==}
peerDependencies:
graphql: 14 - 16
dependencies:
- '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0
+ '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0)
cross-fetch: 3.1.5
extract-files: 9.0.0
form-data: 3.0.1
@@ -10753,7 +10492,7 @@ packages:
- encoding
dev: false
- /graphql-scalars/1.18.0_graphql@16.6.0:
+ /graphql-scalars@1.18.0(graphql@16.6.0):
resolution: {integrity: sha512-XrMwSim4xJ5n1UdT3YMJh9uT3oB/th5jR5bIMJvYxmgq/rGDkfXNtCRSL/+dLMHxGM0thYPfIZDua1+aQlKBMA==}
engines: {node: '>=10'}
peerDependencies:
@@ -10763,7 +10502,7 @@ packages:
tslib: 2.4.1
dev: false
- /graphql-scalars/1.20.4_graphql@16.6.0:
+ /graphql-scalars@1.20.4(graphql@16.6.0):
resolution: {integrity: sha512-/hDzWcphV/aV4MEx2pqVMMekBLi9VXYD/HrJSclpOCLkSB/dE3Rb5VVZBXsQhgBxqeCsE7K0PEO2/cWAUzQsrQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -10773,7 +10512,7 @@ packages:
tslib: 2.5.0
dev: false
- /graphql-tag/2.12.6_graphql@16.6.0:
+ /graphql-tag@2.12.6(graphql@16.6.0):
resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==}
engines: {node: '>=10'}
peerDependencies:
@@ -10783,7 +10522,7 @@ packages:
tslib: 2.5.0
dev: false
- /graphql-type-json/0.3.2_graphql@16.6.0:
+ /graphql-type-json@0.3.2(graphql@16.6.0):
resolution: {integrity: sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==}
peerDependencies:
graphql: '>=0.8.0'
@@ -10791,7 +10530,7 @@ packages:
graphql: 16.6.0
dev: false
- /graphql-ws/5.11.3_graphql@16.6.0:
+ /graphql-ws@5.11.3(graphql@16.6.0):
resolution: {integrity: sha512-fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -10800,7 +10539,7 @@ packages:
graphql: 16.6.0
dev: false
- /graphql-ws/5.12.0_graphql@16.6.0:
+ /graphql-ws@5.12.0(graphql@16.6.0):
resolution: {integrity: sha512-PA3ImUp8utrpEjoxBMhvxsjkStvFEdU0E1gEBREt8HZIWkxOUymwJBhFnBL7t/iHhUq1GVPeZevPinkZFENxTw==}
engines: {node: '>=10'}
peerDependencies:
@@ -10809,19 +10548,19 @@ packages:
graphql: 16.6.0
dev: false
- /graphql-yoga/3.7.0_xfoe4adolgvm4tvnio5xigcr6e:
+ /graphql-yoga@3.7.0(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-yL5oAD1VnK2J8qZFNVy+T2Z5t7YByv7HmCB1fzE26hoILEgY97eKvDYZwXRcPxoN/OhzbN8I42ffCf0dv9Dp8g==}
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
dependencies:
'@envelop/core': 3.0.6
- '@envelop/validation-cache': 5.1.2_adj6itjezth6avcd67ktx7eo6a
- '@graphql-tools/executor': 0.0.14_graphql@16.6.0
- '@graphql-tools/schema': 9.0.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@envelop/validation-cache': 5.1.2(@envelop/core@3.0.6)(graphql@16.6.0)
+ '@graphql-tools/executor': 0.0.14(graphql@16.6.0)
+ '@graphql-tools/schema': 9.0.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@graphql-yoga/subscription': 3.1.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
- '@whatwg-node/server': 0.6.7_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
+ '@whatwg-node/server': 0.6.7(@types/node@18.11.9)
dset: 3.1.2
graphql: 16.6.0
lru-cache: 7.18.3
@@ -10830,83 +10569,83 @@ packages:
- '@types/node'
dev: false
- /graphql/16.6.0:
+ /graphql@16.6.0:
resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
dev: false
- /handle-thing/2.0.1:
+ /handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- /hard-rejection/2.1.0:
+ /hard-rejection@2.1.0:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
dev: true
- /harmony-reflect/1.6.2:
+ /harmony-reflect@1.6.2:
resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
- /has-bigints/1.0.2:
+ /has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
get-intrinsic: 1.2.0
- /has-proto/1.0.1:
+ /has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
dev: true
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
- /has-tostringtag/1.0.0:
+ /has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /header-case/2.0.4:
+ /header-case@2.0.4:
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
dependencies:
capital-case: 1.0.4
tslib: 2.5.0
dev: false
- /hoist-non-react-statics/3.3.2:
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
- /hosted-git-info/2.8.9:
+ /hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
- /hosted-git-info/4.1.0:
+ /hosted-git-info@4.1.0:
resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
dev: true
- /hpack.js/2.1.6:
+ /hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
dependencies:
inherits: 2.0.4
@@ -10914,27 +10653,27 @@ packages:
readable-stream: 2.3.8
wbuf: 1.7.3
- /html-encoding-sniffer/3.0.0:
+ /html-encoding-sniffer@3.0.0:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
engines: {node: '>=12'}
dependencies:
whatwg-encoding: 2.0.0
dev: true
- /html-entities/2.3.3:
+ /html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
- /html-escaper/2.0.2:
+ /html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- /http-cache-semantics/4.1.1:
+ /http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
dev: true
- /http-deceiver/1.2.7:
+ /http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
- /http-errors/1.6.3:
+ /http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
dependencies:
@@ -10943,7 +10682,7 @@ packages:
setprototypeof: 1.1.0
statuses: 1.5.0
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -10953,20 +10692,20 @@ packages:
statuses: 2.0.1
toidentifier: 1.0.1
- /http-parser-js/0.5.8:
+ /http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
- /http-proxy-agent/5.0.0:
+ /http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
engines: {node: '>= 6'}
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- /http-proxy-middleware/2.0.6_@types+express@4.17.17:
+ /http-proxy-middleware@2.0.6(@types/express@4.17.17):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -10984,7 +10723,7 @@ packages:
transitivePeerDependencies:
- debug
- /http-proxy/1.18.1:
+ /http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -10994,7 +10733,7 @@ packages:
transitivePeerDependencies:
- debug
- /http-signature/1.3.6:
+ /http-signature@1.3.6:
resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==}
engines: {node: '>=0.10'}
dependencies:
@@ -11002,11 +10741,11 @@ packages:
jsprim: 2.0.2
sshpk: 1.17.0
- /http-string-parser/0.0.6:
+ /http-string-parser@0.0.6:
resolution: {integrity: sha512-sngOeBkIL32kum4Z+FulU+3Ve41B3js1IKfel0WAhwLqDJiUPC1UTqFRBr2/IDw9dbks6B4xSIYgPiJU7ivxww==}
dev: false
- /http2-wrapper/1.0.3:
+ /http2-wrapper@1.0.3:
resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
engines: {node: '>=10.19.0'}
dependencies:
@@ -11014,51 +10753,51 @@ packages:
resolve-alpn: 1.2.1
dev: true
- /https-proxy-agent/5.0.1:
+ /https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
dependencies:
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- /human-id/1.0.2:
+ /human-id@1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
dev: true
- /human-signals/1.1.1:
+ /human-signals@1.1.1:
resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
engines: {node: '>=8.12.0'}
- /human-signals/2.1.0:
+ /human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- /human-signals/4.3.1:
+ /human-signals@4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
dev: true
- /husky/8.0.3:
+ /husky@8.0.3:
resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
engines: {node: '>=14'}
hasBin: true
dev: true
- /iconv-lite/0.4.24:
+ /iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- /iconv-lite/0.6.3:
+ /iconv-lite@0.6.3:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- /icss-utils/5.1.0_postcss@8.4.21:
+ /icss-utils@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -11066,56 +10805,56 @@ packages:
dependencies:
postcss: 8.4.21
- /identity-obj-proxy/3.0.0:
+ /identity-obj-proxy@3.0.0:
resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==}
engines: {node: '>=4'}
dependencies:
harmony-reflect: 1.6.2
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- /image-size/0.5.5:
+ /image-size@0.5.5:
resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
engines: {node: '>=0.10.0'}
hasBin: true
requiresBuild: true
optional: true
- /immediate/3.0.6:
+ /immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
dev: false
- /immutable/3.7.6:
+ /immutable@3.7.6:
resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==}
engines: {node: '>=0.8.0'}
dev: false
- /immutable/4.3.0:
+ /immutable@4.3.0:
resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==}
- /import-fresh/3.3.0:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- /import-from/4.0.0:
+ /import-from@4.0.0:
resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==}
engines: {node: '>=12.2'}
dev: false
- /import-lazy/4.0.0:
+ /import-lazy@4.0.0:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
dev: true
- /import-local/3.1.0:
+ /import-local@3.1.0:
resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
hasBin: true
@@ -11124,35 +10863,35 @@ packages:
resolve-cwd: 3.0.0
dev: true
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- /indent-string/4.0.0:
+ /indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- /inherits/2.0.3:
+ /inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini/1.3.8:
+ /ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: true
- /ini/2.0.0:
+ /ini@2.0.0:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
- /inquirer/8.2.5:
+ /inquirer@8.2.5:
resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==}
engines: {node: '>=12.0.0'}
dependencies:
@@ -11173,7 +10912,7 @@ packages:
wrap-ansi: 7.0.0
dev: false
- /internal-slot/1.0.5:
+ /internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -11181,21 +10920,21 @@ packages:
has: 1.0.3
side-channel: 1.0.4
- /invariant/2.2.4:
+ /invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
dev: false
- /ipaddr.js/1.9.1:
+ /ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- /ipaddr.js/2.0.1:
+ /ipaddr.js@2.0.1:
resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
engines: {node: '>= 10'}
- /is-absolute/1.0.0:
+ /is-absolute@1.0.0:
resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -11203,216 +10942,216 @@ packages:
is-windows: 1.0.2
dev: false
- /is-arguments/1.1.1:
+ /is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-array-buffer/3.0.2:
+ /is-array-buffer@3.0.2:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.0
is-typed-array: 1.1.10
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- /is-bigint/1.0.4:
+ /is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
has-bigints: 1.0.2
- /is-binary-path/2.1.0:
+ /is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- /is-boolean-object/1.1.2:
+ /is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-callable/1.2.7:
+ /is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- /is-ci/3.0.1:
+ /is-ci@3.0.1:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
dependencies:
ci-info: 3.8.0
- /is-core-module/2.11.0:
+ /is-core-module@2.11.0:
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
dependencies:
has: 1.0.3
- /is-date-object/1.0.5:
+ /is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-docker/2.2.1:
+ /is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point/3.0.0:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-fullwidth-code-point/4.0.0:
+ /is-fullwidth-code-point@4.0.0:
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
dev: true
- /is-generator-fn/2.1.0:
+ /is-generator-fn@2.1.0:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-installed-globally/0.4.0:
+ /is-installed-globally@0.4.0:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
dependencies:
global-dirs: 3.0.1
is-path-inside: 3.0.3
- /is-interactive/1.0.0:
+ /is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
dev: false
- /is-lower-case/2.0.2:
+ /is-lower-case@2.0.2:
resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==}
dependencies:
tslib: 2.5.0
dev: false
- /is-map/2.0.2:
+ /is-map@2.0.2:
resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
- /is-negative-zero/2.0.2:
+ /is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
dev: true
- /is-number-object/1.0.7:
+ /is-number-object@1.0.7:
resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-obj/2.0.0:
+ /is-obj@2.0.0:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
- /is-path-inside/3.0.3:
+ /is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
- /is-plain-obj/1.1.0:
+ /is-plain-obj@1.1.0:
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-obj/3.0.0:
+ /is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
- /is-plain-object/2.0.4:
+ /is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- /is-potential-custom-element-name/1.0.1:
+ /is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
dev: true
- /is-regex/1.1.4:
+ /is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- /is-relative/1.0.0:
+ /is-relative@1.0.0:
resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
engines: {node: '>=0.10.0'}
dependencies:
is-unc-path: 1.0.0
dev: false
- /is-set/2.0.2:
+ /is-set@2.0.2:
resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- /is-shared-array-buffer/1.0.2:
+ /is-shared-array-buffer@1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
call-bind: 1.0.2
- /is-stream/1.1.0:
+ /is-stream@1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
engines: {node: '>=0.10.0'}
dev: true
- /is-stream/2.0.1:
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-stream/3.0.0:
+ /is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /is-string/1.0.7:
+ /is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- /is-subdir/1.2.0:
+ /is-subdir@1.2.0:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
dependencies:
better-path-resolve: 1.0.0
dev: true
- /is-symbol/1.0.4:
+ /is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
- /is-text-path/1.0.1:
+ /is-text-path@1.0.1:
resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
engines: {node: '>=0.10.0'}
dependencies:
text-extensions: 1.9.0
dev: true
- /is-typed-array/1.1.10:
+ /is-typed-array@1.1.10:
resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
engines: {node: '>= 0.4'}
dependencies:
@@ -11422,69 +11161,69 @@ packages:
gopd: 1.0.1
has-tostringtag: 1.0.0
- /is-typedarray/1.0.0:
+ /is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
- /is-unc-path/1.0.0:
+ /is-unc-path@1.0.0:
resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
engines: {node: '>=0.10.0'}
dependencies:
unc-path-regex: 0.1.2
dev: false
- /is-unicode-supported/0.1.0:
+ /is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- /is-upper-case/2.0.2:
+ /is-upper-case@2.0.2:
resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==}
dependencies:
tslib: 2.5.0
dev: false
- /is-weakmap/2.0.1:
+ /is-weakmap@2.0.1:
resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
- /is-weakref/1.0.2:
+ /is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
dev: true
- /is-weakset/2.0.2:
+ /is-weakset@2.0.2:
resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.0
- /is-what/3.14.1:
+ /is-what@3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
dev: false
- /is-windows/1.0.2:
+ /is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- /is-wsl/2.2.0:
+ /is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- /isarray/2.0.5:
+ /isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /isobject/3.0.1:
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- /isomorphic-fetch/3.0.0:
+ /isomorphic-fetch@3.0.0:
resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
dependencies:
node-fetch: 2.6.9
@@ -11493,7 +11232,7 @@ packages:
- encoding
dev: false
- /isomorphic-ws/5.0.0_ws@8.12.1:
+ /isomorphic-ws@5.0.0(ws@8.12.1):
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
peerDependencies:
ws: '*'
@@ -11501,7 +11240,7 @@ packages:
ws: 8.12.1
dev: false
- /isomorphic-ws/5.0.0_ws@8.13.0:
+ /isomorphic-ws@5.0.0(ws@8.13.0):
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
peerDependencies:
ws: '*'
@@ -11509,14 +11248,14 @@ packages:
ws: 8.13.0
dev: false
- /isstream/0.1.2:
+ /isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
- /istanbul-lib-coverage/3.2.0:
+ /istanbul-lib-coverage@3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
engines: {node: '>=8'}
- /istanbul-lib-instrument/5.2.1:
+ /istanbul-lib-instrument@5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
@@ -11528,7 +11267,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /istanbul-lib-report/3.0.0:
+ /istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
engines: {node: '>=8'}
dependencies:
@@ -11536,24 +11275,24 @@ packages:
make-dir: 3.1.0
supports-color: 7.2.0
- /istanbul-lib-source-maps/4.0.1:
+ /istanbul-lib-source-maps@4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
istanbul-lib-coverage: 3.2.0
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
- /istanbul-reports/3.1.5:
+ /istanbul-reports@3.1.5:
resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
engines: {node: '>=8'}
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.0
- /jake/10.8.5:
+ /jake@10.8.5:
resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
engines: {node: '>=10'}
hasBin: true
@@ -11563,7 +11302,7 @@ packages:
filelist: 1.0.4
minimatch: 3.1.2
- /jest-changed-files/28.1.3:
+ /jest-changed-files@28.1.3:
resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11571,7 +11310,7 @@ packages:
p-limit: 3.1.0
dev: true
- /jest-circus/28.1.3:
+ /jest-circus@28.1.3:
resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11597,7 +11336,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-cli/28.1.3_odkjkoia5xunhxkdrka32ib6vi:
+ /jest-cli@28.1.3(@types/node@18.11.9)(ts-node@10.9.1):
resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
hasBin: true
@@ -11607,14 +11346,14 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 28.1.3_ts-node@10.9.1
+ '@jest/core': 28.1.3(ts-node@10.9.1)
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.10
import-local: 3.1.0
- jest-config: 28.1.3_odkjkoia5xunhxkdrka32ib6vi
+ jest-config: 28.1.3(@types/node@18.11.9)(ts-node@10.9.1)
jest-util: 28.1.3
jest-validate: 28.1.3
prompts: 2.4.2
@@ -11625,45 +11364,7 @@ packages:
- ts-node
dev: true
- /jest-config/28.1.1:
- resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.21.0
- '@jest/test-sequencer': 28.1.3
- '@jest/types': 28.1.3
- babel-jest: 28.1.3_@babel+core@7.21.0
- chalk: 4.1.2
- ci-info: 3.8.0
- deepmerge: 4.3.0
- glob: 7.2.3
- graceful-fs: 4.2.10
- jest-circus: 28.1.3
- jest-environment-node: 28.1.3
- jest-get-type: 28.0.2
- jest-regex-util: 28.0.2
- jest-resolve: 28.1.3
- jest-runner: 28.1.3
- jest-util: 28.1.3
- jest-validate: 28.1.3
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 28.1.3
- slash: 3.0.0
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /jest-config/28.1.1_odkjkoia5xunhxkdrka32ib6vi:
+ /jest-config@28.1.1(@types/node@18.11.9)(ts-node@10.9.1):
resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -11679,7 +11380,7 @@ packages:
'@jest/test-sequencer': 28.1.3
'@jest/types': 28.1.3
'@types/node': 18.11.9
- babel-jest: 28.1.3_@babel+core@7.21.0
+ babel-jest: 28.1.3(@babel/core@7.21.0)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.0
@@ -11698,11 +11399,11 @@ packages:
pretty-format: 28.1.3
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
transitivePeerDependencies:
- supports-color
- /jest-config/28.1.3_odkjkoia5xunhxkdrka32ib6vi:
+ /jest-config@28.1.3(@types/node@18.11.9)(ts-node@10.9.1):
resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -11718,7 +11419,7 @@ packages:
'@jest/test-sequencer': 28.1.3
'@jest/types': 28.1.3
'@types/node': 18.11.9
- babel-jest: 28.1.3_@babel+core@7.21.0
+ babel-jest: 28.1.3(@babel/core@7.21.0)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.0
@@ -11737,12 +11438,12 @@ packages:
pretty-format: 28.1.3
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
transitivePeerDependencies:
- supports-color
dev: true
- /jest-config/28.1.3_skxcisbnntvwqykzjpzwatlj3a:
+ /jest-config@28.1.3(@types/node@18.15.0)(ts-node@10.9.1):
resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
peerDependencies:
@@ -11758,7 +11459,7 @@ packages:
'@jest/test-sequencer': 28.1.3
'@jest/types': 28.1.3
'@types/node': 18.15.0
- babel-jest: 28.1.3_@babel+core@7.21.0
+ babel-jest: 28.1.3(@babel/core@7.21.0)
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.0
@@ -11777,12 +11478,12 @@ packages:
pretty-format: 28.1.3
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1_lnmuhae43o2bjbwuk2msdxdsym
+ ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
transitivePeerDependencies:
- supports-color
dev: true
- /jest-diff/28.1.3:
+ /jest-diff@28.1.3:
resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11791,13 +11492,13 @@ packages:
jest-get-type: 28.0.2
pretty-format: 28.1.3
- /jest-docblock/28.1.1:
+ /jest-docblock@28.1.1:
resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
detect-newline: 3.1.0
- /jest-each/28.1.3:
+ /jest-each@28.1.3:
resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11807,7 +11508,7 @@ packages:
jest-util: 28.1.3
pretty-format: 28.1.3
- /jest-environment-jsdom/28.1.1:
+ /jest-environment-jsdom@28.1.1:
resolution: {integrity: sha512-41ZvgSoPNcKG5q3LuuOcAczdBxRq9DbZkPe24okN6ZCmiZdAfFtPg3z+lOtsT1fM6OAERApKT+3m0MRDQH2zIA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11826,7 +11527,7 @@ packages:
- utf-8-validate
dev: true
- /jest-environment-node/28.1.3:
+ /jest-environment-node@28.1.3:
resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11837,11 +11538,11 @@ packages:
jest-mock: 28.1.3
jest-util: 28.1.3
- /jest-get-type/28.0.2:
+ /jest-get-type@28.0.2:
resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- /jest-haste-map/28.1.3:
+ /jest-haste-map@28.1.3:
resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11859,14 +11560,14 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /jest-leak-detector/28.1.3:
+ /jest-leak-detector@28.1.3:
resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
jest-get-type: 28.0.2
pretty-format: 28.1.3
- /jest-matcher-utils/28.1.3:
+ /jest-matcher-utils@28.1.3:
resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11875,7 +11576,7 @@ packages:
jest-get-type: 28.0.2
pretty-format: 28.1.3
- /jest-message-util/28.1.3:
+ /jest-message-util@28.1.3:
resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11889,14 +11590,14 @@ packages:
slash: 3.0.0
stack-utils: 2.0.6
- /jest-mock/28.1.3:
+ /jest-mock@28.1.3:
resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@jest/types': 28.1.3
'@types/node': 18.15.0
- /jest-pnp-resolver/1.2.3_jest-resolve@28.1.1:
+ /jest-pnp-resolver@1.2.3(jest-resolve@28.1.1):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -11907,7 +11608,7 @@ packages:
dependencies:
jest-resolve: 28.1.1
- /jest-pnp-resolver/1.2.3_jest-resolve@28.1.3:
+ /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -11918,11 +11619,11 @@ packages:
dependencies:
jest-resolve: 28.1.3
- /jest-regex-util/28.0.2:
+ /jest-regex-util@28.0.2:
resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- /jest-resolve-dependencies/28.1.3:
+ /jest-resolve-dependencies@28.1.3:
resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11932,35 +11633,35 @@ packages:
- supports-color
dev: true
- /jest-resolve/28.1.1:
+ /jest-resolve@28.1.1:
resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.10
jest-haste-map: 28.1.3
- jest-pnp-resolver: 1.2.3_jest-resolve@28.1.1
+ jest-pnp-resolver: 1.2.3(jest-resolve@28.1.1)
jest-util: 28.1.3
jest-validate: 28.1.3
resolve: 1.22.1
resolve.exports: 1.1.1
slash: 3.0.0
- /jest-resolve/28.1.3:
+ /jest-resolve@28.1.3:
resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.10
jest-haste-map: 28.1.3
- jest-pnp-resolver: 1.2.3_jest-resolve@28.1.3
+ jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3)
jest-util: 28.1.3
jest-validate: 28.1.3
resolve: 1.22.1
resolve.exports: 1.1.1
slash: 3.0.0
- /jest-runner/28.1.3:
+ /jest-runner@28.1.3:
resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11988,7 +11689,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-runtime/28.1.3:
+ /jest-runtime@28.1.3:
resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12017,21 +11718,21 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-snapshot/28.1.3:
+ /jest-snapshot@28.1.3:
resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@babel/core': 7.21.0
'@babel/generator': 7.21.1
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0
- '@babel/traverse': 7.21.2
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0)
+ '@babel/traverse': 7.21.2(supports-color@5.5.0)
'@babel/types': 7.21.2
'@jest/expect-utils': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
'@types/babel__traverse': 7.18.3
'@types/prettier': 2.7.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0)
chalk: 4.1.2
expect: 28.1.3
graceful-fs: 4.2.10
@@ -12047,7 +11748,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /jest-util/28.1.1:
+ /jest-util@28.1.1:
resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12058,7 +11759,7 @@ packages:
graceful-fs: 4.2.10
picomatch: 2.3.1
- /jest-util/28.1.3:
+ /jest-util@28.1.3:
resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12069,7 +11770,7 @@ packages:
graceful-fs: 4.2.10
picomatch: 2.3.1
- /jest-validate/28.1.3:
+ /jest-validate@28.1.3:
resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12080,7 +11781,7 @@ packages:
leven: 3.1.0
pretty-format: 28.1.3
- /jest-watcher/28.1.3:
+ /jest-watcher@28.1.3:
resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12093,7 +11794,7 @@ packages:
jest-util: 28.1.3
string-length: 4.0.2
- /jest-worker/27.5.1:
+ /jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
@@ -12101,7 +11802,7 @@ packages:
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest-worker/28.1.3:
+ /jest-worker@28.1.3:
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -12109,7 +11810,7 @@ packages:
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest/28.1.1_odkjkoia5xunhxkdrka32ib6vi:
+ /jest@28.1.1(@types/node@18.11.9)(ts-node@10.9.1):
resolution: {integrity: sha512-qw9YHBnjt6TCbIDMPMpJZqf9E12rh6869iZaN08/vpOGgHJSAaLLUn6H8W3IAEuy34Ls3rct064mZLETkxJ2XA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
hasBin: true
@@ -12119,74 +11820,74 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 28.1.3_ts-node@10.9.1
+ '@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_odkjkoia5xunhxkdrka32ib6vi
+ jest-cli: 28.1.3(@types/node@18.11.9)(ts-node@10.9.1)
transitivePeerDependencies:
- '@types/node'
- supports-color
- ts-node
dev: true
- /jest_workaround/0.69.0_abnhyjwpkpf7j5qrddpfnnus5i:
+ /jest_workaround@0.69.0(@swc/core@1.3.42)(@swc/jest@0.2.20):
resolution: {integrity: sha512-ggf2HgkKx0wDYy55Cm8dtFtdtKZ99G5OpOjmKeKVcMZeiq0Hd33Mwx7d4tKGsTrf9hDPx2QpOhtc5Ttvkygl6g==}
peerDependencies:
'@swc/core': ^1.3.40
'@swc/jest': ^0.2.22
dependencies:
'@swc/core': 1.3.42
- '@swc/jest': 0.2.20_@swc+core@1.3.42
+ '@swc/jest': 0.2.20(@swc/core@1.3.42)
dev: false
- /jiti/1.17.1:
+ /jiti@1.17.1:
resolution: {integrity: sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==}
hasBin: true
dev: false
- /jiti/1.18.2:
+ /jiti@1.18.2:
resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
hasBin: true
dev: false
- /jju/1.4.0:
+ /jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
dev: true
- /jose/4.13.1:
+ /jose@4.13.1:
resolution: {integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==}
dev: false
- /js-levenshtein/1.1.6:
+ /js-levenshtein@1.1.6:
resolution: {integrity: sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==}
engines: {node: '>=0.10.0'}
dev: false
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
dependencies:
argparse: 2.0.1
- /jsbn/0.1.1:
+ /jsbn@0.1.1:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
- /jschardet/3.0.0:
+ /jschardet@3.0.0:
resolution: {integrity: sha512-lJH6tJ77V8Nzd5QWRkFYCLc13a3vADkh3r/Fi8HupZGWk2OVVDfnZP8V/VgQgZ+lzW0kG2UGb5hFgt3V3ndotQ==}
engines: {node: '>=0.1.90'}
dev: true
- /jsdom/19.0.0:
+ /jsdom@19.0.0:
resolution: {integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==}
engines: {node: '>=12'}
peerDependencies:
@@ -12228,7 +11929,7 @@ packages:
- utf-8-validate
dev: true
- /jsdom/20.0.3:
+ /jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -12269,30 +11970,30 @@ packages:
- utf-8-validate
dev: true
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
- /json-bigint-patch/0.0.8:
+ /json-bigint-patch@0.0.8:
resolution: {integrity: sha512-xa0LTQsyaq8awYyZyuUsporWisZFiyqzxGW8CKM3t7oouf0GFAKYJnqAm6e9NLNBQOCtOLvy614DEiRX/rPbnA==}
dev: false
- /json-buffer/3.0.1:
+ /json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
dev: true
- /json-machete/0.13.1_graphql@16.6.0:
+ /json-machete@0.13.1(graphql@16.6.0):
resolution: {integrity: sha512-ejqXYHLdSbEPpN+DVQ0EqdTXsknr0g2ndYmQa9LJuffen/GhqnGcX3wmxYNkKi4vHbCBF2YjZWpXNtxzLgAK3Q==}
dependencies:
- '@graphql-mesh/cross-helpers': 0.2.2_graphql@16.6.0
- '@graphql-mesh/types': 0.80.1_graphql@16.6.0
- '@graphql-mesh/utils': 0.39.0_graphql@16.6.0
- '@graphql-tools/utils': 8.10.0_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.2.2(graphql@16.6.0)
+ '@graphql-mesh/types': 0.80.1(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.39.0(graphql@16.6.0)
+ '@graphql-tools/utils': 8.10.0(graphql@16.6.0)
'@json-schema-tools/meta-schema': 1.6.19
'@whatwg-node/fetch': 0.3.2
json-pointer: 0.6.2
@@ -12306,17 +12007,17 @@ packages:
- react-native-windows
dev: false
- /json-machete/0.18.17_xfoe4adolgvm4tvnio5xigcr6e:
+ /json-machete@0.18.17(@types/node@18.11.9)(graphql@16.6.0):
resolution: {integrity: sha512-eTTYuSNMuiyBiMn97nDRbxCcE3hg2CLwbFlhvPRcqrJY04vTOQr2J3/Gd6lEFQ0tQVr9Fqhfg0LxfYmh9JoyYw==}
peerDependencies:
graphql: '*'
dependencies:
- '@graphql-mesh/cross-helpers': 0.3.3_graphql@16.6.0
- '@graphql-mesh/types': 0.91.9_graphql@16.6.0
- '@graphql-mesh/utils': 0.43.17_graphql@16.6.0
- '@graphql-tools/utils': 9.2.1_graphql@16.6.0
+ '@graphql-mesh/cross-helpers': 0.3.3(graphql@16.6.0)
+ '@graphql-mesh/types': 0.91.9(graphql@16.6.0)
+ '@graphql-mesh/utils': 0.43.17(graphql@16.6.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.6.0)
'@json-schema-tools/meta-schema': 1.7.0
- '@whatwg-node/fetch': 0.8.2_@types+node@18.11.9
+ '@whatwg-node/fetch': 0.8.2(@types/node@18.11.9)
graphql: 16.6.0
json-pointer: 0.6.2
to-json-schema: 0.2.5
@@ -12328,37 +12029,37 @@ packages:
- react-native-windows
dev: false
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- /json-pointer/0.6.2:
+ /json-pointer@0.6.2:
resolution: {integrity: sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==}
dependencies:
foreach: 2.0.6
dev: false
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- /json-schema-traverse/1.0.0:
+ /json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- /json-schema/0.4.0:
+ /json-schema@0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- /json-stable-stringify/1.0.2:
+ /json-stable-stringify@1.0.2:
resolution: {integrity: sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==}
dependencies:
jsonify: 0.0.1
dev: false
- /json-stringify-safe/5.0.1:
+ /json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
- /json-to-pretty-yaml/1.2.2:
+ /json-to-pretty-yaml@1.2.2:
resolution: {integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==}
engines: {node: '>= 0.2.0'}
dependencies:
@@ -12366,19 +12067,19 @@ packages:
remove-trailing-spaces: 1.0.8
dev: false
- /json5/1.0.2:
+ /json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
dependencies:
minimist: 1.2.8
dev: true
- /json5/2.2.3:
+ /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- /jsonc-eslint-parser/2.2.0:
+ /jsonc-eslint-parser@2.2.0:
resolution: {integrity: sha512-x5QjzBOORd+T2EjErIxJnkOEbLVEdD1ILEeBbIJt8Eq/zUn7P7M8qdnWiNVBK5f8oxnJpc6SBHOeeIEl/swPjg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
@@ -12388,32 +12089,32 @@ packages:
semver: 7.3.8
dev: true
- /jsonc-parser/3.2.0:
+ /jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
- /jsonfile/4.0.0:
+ /jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
graceful-fs: 4.2.10
dev: true
- /jsonfile/6.1.0:
+ /jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
optionalDependencies:
graceful-fs: 4.2.10
- /jsonify/0.0.1:
+ /jsonify@0.0.1:
resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
dev: false
- /jsonparse/1.3.1:
+ /jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
dev: true
- /jsprim/2.0.2:
+ /jsprim@2.0.2:
resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==}
engines: {'0': node >=0.6.0}
dependencies:
@@ -12422,7 +12123,7 @@ packages:
json-schema: 0.4.0
verror: 1.10.0
- /jsx-ast-utils/3.3.3:
+ /jsx-ast-utils@3.3.3:
resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
dependencies:
@@ -12430,49 +12131,49 @@ packages:
object.assign: 4.1.4
dev: true
- /keyv/4.5.2:
+ /keyv@4.5.2:
resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==}
dependencies:
json-buffer: 3.0.1
dev: true
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
dev: true
- /kleur/4.1.5:
+ /kleur@4.1.5:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
dev: true
- /klona/2.0.6:
+ /klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /kolorist/1.7.0:
+ /kolorist@1.7.0:
resolution: {integrity: sha512-ymToLHqL02udwVdbkowNpzjFd6UzozMtshPQKVi5k1EjKRqKqBrOnE9QbLEb0/pV76SAiIT13hdL8R6suc+f3g==}
dev: true
- /language-subtag-registry/0.3.22:
+ /language-subtag-registry@0.3.22:
resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: true
- /language-tags/1.0.8:
+ /language-tags@1.0.8:
resolution: {integrity: sha512-aWAZwgPLS8hJ20lNPm9HNVs4inexz6S2sQa3wx/+ycuutMNE5/IfYxiWYBbi+9UWCQVaXYCOPUl6gFrPR7+jGg==}
dependencies:
language-subtag-registry: 0.3.22
dev: true
- /lazy-ass/1.6.0:
+ /lazy-ass@1.6.0:
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
engines: {node: '> 0.8'}
- /less-loader/11.1.0_less@3.12.2+webpack@5.76.0:
+ /less-loader@11.1.0(less@3.12.2)(webpack@5.76.0):
resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -12481,9 +12182,9 @@ packages:
dependencies:
klona: 2.0.6
less: 3.12.2
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /less-loader/11.1.0_less@4.1.3+webpack@5.76.0:
+ /less-loader@11.1.0(less@4.1.3)(webpack@5.76.0):
resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -12492,10 +12193,10 @@ packages:
dependencies:
klona: 2.0.6
less: 4.1.3
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
dev: false
- /less/3.12.2:
+ /less@3.12.2:
resolution: {integrity: sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==}
engines: {node: '>=6'}
hasBin: true
@@ -12510,7 +12211,7 @@ packages:
native-request: 1.1.0
source-map: 0.6.1
- /less/4.1.3:
+ /less@4.1.3:
resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==}
engines: {node: '>=6'}
hasBin: true
@@ -12530,11 +12231,11 @@ packages:
- supports-color
dev: false
- /leven/3.1.0:
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- /levn/0.3.0:
+ /levn@0.3.0:
resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -12542,14 +12243,14 @@ packages:
type-check: 0.3.2
dev: true
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- /license-webpack-plugin/4.0.2_webpack@5.76.0:
+ /license-webpack-plugin@4.0.2(webpack@5.76.0):
resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==}
peerDependencies:
webpack: '*'
@@ -12559,27 +12260,27 @@ packages:
webpack-sources:
optional: true
dependencies:
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
webpack-sources: 3.2.3
- /lie/3.1.1:
+ /lie@3.1.1:
resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
dependencies:
immediate: 3.0.6
dev: false
- /lilconfig/2.1.0:
+ /lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- /lines-and-columns/1.2.4:
+ /lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- /lines-and-columns/2.0.3:
+ /lines-and-columns@2.0.3:
resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- /lint-staged/13.2.0:
+ /lint-staged@13.2.0:
resolution: {integrity: sha512-GbyK5iWinax5Dfw5obm2g2ccUiZXNGtAS4mCbJ0Lv4rq6iEtfBSjOYdcbOtAIFtM114t0vdpViDDetjVTSd8Vw==}
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
@@ -12587,7 +12288,7 @@ packages:
chalk: 5.2.0
cli-truncate: 3.1.0
commander: 10.0.0
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
execa: 7.1.1
lilconfig: 2.1.0
listr2: 5.0.7
@@ -12602,7 +12303,7 @@ packages:
- supports-color
dev: true
- /listr2/3.14.0_enquirer@2.3.6:
+ /listr2@3.14.0(enquirer@2.3.6):
resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -12621,7 +12322,7 @@ packages:
through: 2.3.8
wrap-ansi: 7.0.0
- /listr2/4.0.5:
+ /listr2@4.0.5:
resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==}
engines: {node: '>=12'}
peerDependencies:
@@ -12640,7 +12341,7 @@ packages:
wrap-ansi: 7.0.0
dev: false
- /listr2/5.0.7:
+ /listr2@5.0.7:
resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==}
engines: {node: ^14.13.1 || >=16.0.0}
peerDependencies:
@@ -12659,7 +12360,7 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /load-yaml-file/0.2.0:
+ /load-yaml-file@0.2.0:
resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
engines: {node: '>=6'}
dependencies:
@@ -12669,11 +12370,11 @@ packages:
strip-bom: 3.0.0
dev: true
- /loader-runner/4.3.0:
+ /loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- /loader-utils/2.0.4:
+ /loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
@@ -12681,126 +12382,126 @@ packages:
emojis-list: 3.0.0
json5: 2.2.3
- /local-pkg/0.4.3:
+ /local-pkg@0.4.3:
resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
engines: {node: '>=14'}
dev: true
- /localforage/1.10.0:
+ /localforage@1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
dependencies:
lie: 3.1.1
dev: false
- /locate-path/5.0.0:
+ /locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
dependencies:
p-locate: 4.1.0
- /locate-path/6.0.0:
+ /locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
dev: true
- /lodash.camelcase/4.3.0:
+ /lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
dev: true
- /lodash.clone/4.5.0:
+ /lodash.clone@4.5.0:
resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
dev: false
- /lodash.debounce/4.0.8:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.get/4.4.2:
+ /lodash.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
- /lodash.isequal/4.5.0:
+ /lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
- /lodash.isfunction/3.0.9:
+ /lodash.isfunction@3.0.9:
resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
dev: true
- /lodash.isplainobject/4.0.6:
+ /lodash.isplainobject@4.0.6:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
dev: true
- /lodash.kebabcase/4.1.1:
+ /lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
dev: true
- /lodash.keys/4.2.0:
+ /lodash.keys@4.2.0:
resolution: {integrity: sha512-J79MkJcp7Df5mizHiVNpjoHXLi4HLjh9VLS/M7lQSGoQ+0oQ+lWEigREkqKyizPB1IawvQLLKY8mzEcm1tkyxQ==}
dev: false
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- /lodash.mergewith/4.6.2:
+ /lodash.mergewith@4.6.2:
resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
dev: true
- /lodash.omit/4.5.0:
+ /lodash.omit@4.5.0:
resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==}
dev: false
- /lodash.once/4.1.1:
+ /lodash.once@4.1.1:
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
- /lodash.set/4.3.2:
+ /lodash.set@4.3.2:
resolution: {integrity: sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==}
dev: false
- /lodash.snakecase/4.1.1:
+ /lodash.snakecase@4.1.1:
resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
dev: true
- /lodash.sortby/4.7.0:
+ /lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: false
- /lodash.startcase/4.4.0:
+ /lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
dev: true
- /lodash.topath/4.5.2:
+ /lodash.topath@4.5.2:
resolution: {integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==}
dev: false
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- /lodash.upperfirst/4.3.1:
+ /lodash.upperfirst@4.3.1:
resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
dev: true
- /lodash.without/4.4.0:
+ /lodash.without@4.4.0:
resolution: {integrity: sha512-M3MefBwfDhgKgINVuBJCO1YR3+gf6s9HNJsIiZ/Ru77Ws6uTb9eBuvrkpzO+9iLoAaRodGuq7tyrPCx+74QYGQ==}
dev: false
- /lodash.xor/4.5.0:
+ /lodash.xor@4.5.0:
resolution: {integrity: sha512-sVN2zimthq7aZ5sPGXnSz32rZPuqcparVW50chJQe+mzTYV+IsxSsl/2gnkWWE2Of7K3myBQBqtLKOUEHJKRsQ==}
dev: false
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-symbols/4.1.0:
+ /log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
dependencies:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- /log-update/4.0.0:
+ /log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
engines: {node: '>=10'}
dependencies:
@@ -12809,64 +12510,64 @@ packages:
slice-ansi: 4.0.0
wrap-ansi: 6.2.0
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
- /loupe/2.3.6:
+ /loupe@2.3.6:
resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
dependencies:
get-func-name: 2.0.0
dev: true
- /lower-case-first/2.0.2:
+ /lower-case-first@2.0.2:
resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
dependencies:
tslib: 2.5.0
dev: false
- /lower-case/2.0.2:
+ /lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.5.0
dev: false
- /lowercase-keys/2.0.0:
+ /lowercase-keys@2.0.0:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
dev: true
- /lru-cache/4.1.5:
+ /lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
dependencies:
pseudomap: 1.0.2
yallist: 2.1.2
dev: true
- /lru-cache/5.1.1:
+ /lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
- /lru-cache/6.0.0:
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
- /lru-cache/7.18.3:
+ /lru-cache@7.18.3:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
dev: false
- /lz-string/1.5.0:
+ /lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
dev: true
- /make-dir/2.1.0:
+ /make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
requiresBuild: true
@@ -12875,49 +12576,49 @@ packages:
semver: 5.7.1
optional: true
- /make-dir/3.1.0:
+ /make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
- /make-error/1.3.6:
+ /make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- /makeerror/1.0.12:
+ /makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
tmpl: 1.0.5
- /map-cache/0.2.2:
+ /map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
dev: false
- /map-obj/1.0.1:
+ /map-obj@1.0.1:
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
engines: {node: '>=0.10.0'}
dev: true
- /map-obj/4.3.0:
+ /map-obj@4.3.0:
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
engines: {node: '>=8'}
dev: true
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
- /media-typer/0.3.0:
+ /media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- /memfs/3.4.13:
+ /memfs@3.4.13:
resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
- /meow/6.1.1:
+ /meow@6.1.1:
resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
engines: {node: '>=8'}
dependencies:
@@ -12934,7 +12635,7 @@ packages:
yargs-parser: 18.1.3
dev: true
- /meow/8.1.2:
+ /meow@8.1.2:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
engines: {node: '>=10'}
dependencies:
@@ -12951,17 +12652,17 @@ packages:
yargs-parser: 20.2.9
dev: true
- /merge-descriptors/1.0.1:
+ /merge-descriptors@1.0.1:
resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
- /merge-stream/2.0.0:
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /meros/1.2.1_@types+node@18.11.9:
+ /meros@1.2.1(@types/node@18.11.9):
resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==}
engines: {node: '>=13'}
peerDependencies:
@@ -12973,99 +12674,99 @@ packages:
'@types/node': 18.11.9
dev: false
- /methods/1.1.2:
+ /methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- /mimic-fn/4.0.0:
+ /mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
dev: true
- /mimic-response/1.0.1:
+ /mimic-response@1.0.1:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
dev: true
- /mimic-response/3.1.0:
+ /mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
dev: true
- /min-indent/1.0.1:
+ /min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
dev: true
- /mini-css-extract-plugin/2.4.7_webpack@5.76.0:
+ /mini-css-extract-plugin@2.4.7(webpack@5.76.0):
resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
schema-utils: 4.0.0
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /minimalistic-assert/1.0.1:
+ /minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- /minimatch/3.0.5:
+ /minimatch@3.0.5:
resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
dependencies:
brace-expansion: 1.1.11
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- /minimatch/4.2.3:
+ /minimatch@4.2.3:
resolution: {integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 1.1.11
dev: false
- /minimatch/5.1.6:
+ /minimatch@5.1.6:
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
- /minimatch/7.3.0:
+ /minimatch@7.3.0:
resolution: {integrity: sha512-WaMDuhKa7a6zKiwplR1AOz+zGvJba24k5VU1Cy6NhEguavT2YRlHxuINUgTas4wiS6fwBpYq4TcA1XIECSntyw==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: false
- /minimist-options/4.1.0:
+ /minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
dependencies:
@@ -13074,17 +12775,17 @@ packages:
kind-of: 6.0.3
dev: true
- /minimist/1.2.8:
+ /minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- /minipass/3.3.6:
+ /minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
dev: true
- /minizlib/2.1.2:
+ /minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
dependencies:
@@ -13092,55 +12793,55 @@ packages:
yallist: 4.0.0
dev: true
- /mixme/0.5.5:
+ /mixme@0.5.5:
resolution: {integrity: sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w==}
engines: {node: '>= 8.0.0'}
dev: true
- /mkdirp/1.0.4:
+ /mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- /mkdirp/2.1.3:
+ /mkdirp@2.1.3:
resolution: {integrity: sha512-sjAkg21peAG9HS+Dkx7hlG9Ztx7HLeKnvB3NQRcu/mltCVmvkF0pisbiTSfDVYTT86XEfZrTUosLdZLStquZUw==}
engines: {node: '>=10'}
hasBin: true
dev: false
- /mrmime/1.0.1:
+ /mrmime@1.0.1:
resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
engines: {node: '>=10'}
dev: true
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /multicast-dns/7.2.5:
+ /multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
dependencies:
dns-packet: 5.4.0
thunky: 1.1.0
- /mute-stream/0.0.8:
+ /mute-stream@0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
dev: false
- /mysql-utilities/1.1.4:
+ /mysql-utilities@1.1.4:
resolution: {integrity: sha512-obKFTf0pnHjWR7kqCNmLT/IybGE1WFePBDn2LgNHSVQJZ7+M3yviHY66DApddxEIL9D3PeUR5OEG+WOZH/W4aw==}
engines: {node: '>= 6.0.0'}
dependencies:
mysql: 2.18.1
dev: false
- /mysql/2.18.1:
+ /mysql@2.18.1:
resolution: {integrity: sha512-Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig==}
engines: {node: '>= 0.6'}
dependencies:
@@ -13150,30 +12851,30 @@ packages:
sqlstring: 2.3.1
dev: false
- /nanoid/3.3.4:
+ /nanoid@3.3.4:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /native-request/1.1.0:
+ /native-request@1.1.0:
resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==}
requiresBuild: true
optional: true
- /natural-compare-lite/1.4.0:
+ /natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
dev: true
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- /needle/3.2.0:
+ /needle@3.2.0:
resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==}
engines: {node: '>= 4.4.x'}
hasBin: true
requiresBuild: true
dependencies:
- debug: 3.2.7
+ debug: 3.2.7(supports-color@8.1.1)
iconv-lite: 0.6.3
sax: 1.2.4
transitivePeerDependencies:
@@ -13181,14 +12882,14 @@ packages:
dev: false
optional: true
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /neo4j-driver-bolt-connection/5.6.0:
+ /neo4j-driver-bolt-connection@5.6.0:
resolution: {integrity: sha512-QYKoYj0V0V1x8H8UWEWVefA+1Ug0NYVmAO6h4vy2m6dMt6Wxbtuvw/mjYdj+PHQnjonRn+1dno5158Kwxah94g==}
dependencies:
buffer: 6.0.3
@@ -13196,11 +12897,11 @@ packages:
string_decoder: 1.3.0
dev: false
- /neo4j-driver-core/5.6.0:
+ /neo4j-driver-core@5.6.0:
resolution: {integrity: sha512-9K6p2+QFmRxKoQKlFF1OX1+RlYRRTmxZBo/B0QH8ZxKFHZD0D8e/d9FNwVPI5wUguDxTV4ViHJtpD/g6mMNcJw==}
dev: false
- /neo4j-driver/5.6.0:
+ /neo4j-driver@5.6.0:
resolution: {integrity: sha512-JVxLdcYNQ4XxACbFY7ZE6ZNJfEXLOyGJFTvmZFmG8XYPDZgHAT5idR/KHYbADpD2oC/AvRbhMskk7g5ijswN0w==}
dependencies:
neo4j-driver-bolt-connection: 5.6.0
@@ -13208,7 +12909,7 @@ packages:
rxjs: 7.8.0
dev: false
- /next/13.1.1_biqbaboplfbrettd7655fr4n2y:
+ /next@13.1.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-R5eBAaIa3X7LJeYvv1bMdGnAVF4fVToEjim7MkflceFPuANY3YyvFxXee/A+acrSYwYPvOvf7f6v/BM/48ea5w==}
engines: {node: '>=14.6.0'}
hasBin: true
@@ -13231,8 +12932,8 @@ packages:
caniuse-lite: 1.0.30001464
postcss: 8.4.14
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
- styled-jsx: 5.1.1_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ styled-jsx: 5.1.1(react@18.2.0)
optionalDependencies:
'@next/swc-android-arm-eabi': 13.1.1
'@next/swc-android-arm64': 13.1.1
@@ -13252,25 +12953,25 @@ packages:
- babel-plugin-macros
dev: false
- /no-case/3.0.4:
+ /no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
tslib: 2.5.0
dev: false
- /node-abort-controller/3.1.1:
+ /node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
- /node-addon-api/3.2.1:
+ /node-addon-api@3.2.1:
resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
- /node-domexception/1.0.0:
+ /node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
dev: false
- /node-fetch/2.6.7:
+ /node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -13282,7 +12983,7 @@ packages:
whatwg-url: 5.0.0
dev: false
- /node-fetch/2.6.9:
+ /node-fetch@2.6.9:
resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -13293,25 +12994,25 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-forge/1.3.1:
+ /node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- /node-gyp-build/4.6.0:
+ /node-gyp-build@4.6.0:
resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==}
hasBin: true
- /node-int64/0.4.0:
+ /node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- /node-machine-id/1.1.12:
+ /node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
dev: true
- /node-releases/2.0.10:
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
- /normalize-package-data/2.5.0:
+ /normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
@@ -13320,7 +13021,7 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-package-data/3.0.3:
+ /normalize-package-data@3.0.3:
resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
engines: {node: '>=10'}
dependencies:
@@ -13330,59 +13031,59 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path/2.1.1:
+ /normalize-path@2.1.1:
resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
engines: {node: '>=0.10.0'}
dependencies:
remove-trailing-separator: 1.1.0
dev: false
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
- /npm-run-path/2.0.2:
+ /npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
dependencies:
path-key: 2.0.1
dev: true
- /npm-run-path/4.0.1:
+ /npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
dependencies:
path-key: 3.1.1
- /npm-run-path/5.1.0:
+ /npm-run-path@5.1.0:
resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
path-key: 4.0.0
dev: true
- /nth-check/2.1.1:
+ /nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
- /nullthrows/1.1.1:
+ /nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
dev: false
- /nwsapi/2.2.2:
+ /nwsapi@2.2.2:
resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==}
dev: true
- /nx/15.7.1_cuaypwimdup25vwsqc5i3ttbya:
+ /nx@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42):
resolution: {integrity: sha512-8Gtqazww3rCWxJ+pgB3JDU6hQeA+qRMYh77mXvf5CFQPszqEqvvuiJtKzcieWjxn/IZpeyVRjmPypkEOM6BbHw==}
hasBin: true
requiresBuild: true
@@ -13395,10 +13096,10 @@ packages:
'@swc/core':
optional: true
dependencies:
- '@nrwl/cli': 15.7.1_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/tao': 15.7.1_cuaypwimdup25vwsqc5i3ttbya
+ '@nrwl/cli': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
+ '@nrwl/tao': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
'@parcel/watcher': 2.0.4
- '@swc-node/register': 1.6.2_un75kqwz4lxw3jlrcmkimcdqmi
+ '@swc-node/register': 1.6.2(@swc/core@1.3.42)(typescript@4.8.4)
'@swc/core': 1.3.42
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.40
@@ -13445,7 +13146,7 @@ packages:
transitivePeerDependencies:
- debug
- /nx/15.8.5_cuaypwimdup25vwsqc5i3ttbya:
+ /nx@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42):
resolution: {integrity: sha512-1c6Y3rPSzzlqQVJPo33Ej0HY/3t9ykeaPs074HpYxXH0+GU1BSIv/9EfXKQGvmBzjs5yAx6asGIv+H3QDrFt3A==}
hasBin: true
requiresBuild: true
@@ -13458,10 +13159,10 @@ packages:
'@swc/core':
optional: true
dependencies:
- '@nrwl/cli': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
- '@nrwl/tao': 15.8.5_cuaypwimdup25vwsqc5i3ttbya
+ '@nrwl/cli': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
+ '@nrwl/tao': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
'@parcel/watcher': 2.0.4
- '@swc-node/register': 1.6.2_@swc+core@1.3.42
+ '@swc-node/register': 1.6.2(@swc/core@1.3.42)(typescript@4.8.4)
'@swc/core': 1.3.42
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.40
@@ -13509,29 +13210,29 @@ packages:
- debug
dev: false
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-inspect/1.10.3:
+ /object-inspect@1.10.3:
resolution: {integrity: sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==}
dev: false
- /object-inspect/1.12.3:
+ /object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- /object-is/1.1.5:
+ /object-is@1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- /object.assign/4.1.4:
+ /object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13540,7 +13241,7 @@ packages:
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries/1.1.6:
+ /object.entries@1.1.6:
resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13549,7 +13250,7 @@ packages:
es-abstract: 1.21.1
dev: true
- /object.fromentries/2.0.6:
+ /object.fromentries@2.0.6:
resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13558,14 +13259,14 @@ packages:
es-abstract: 1.21.1
dev: true
- /object.hasown/1.1.2:
+ /object.hasown@1.1.2:
resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
define-properties: 1.2.0
es-abstract: 1.21.1
dev: true
- /object.values/1.1.6:
+ /object.values@1.1.6:
resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -13574,38 +13275,38 @@ packages:
es-abstract: 1.21.1
dev: true
- /obuf/1.1.2:
+ /obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- /on-finished/2.4.1:
+ /on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- /on-headers/1.0.2:
+ /on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- /onetime/6.0.0:
+ /onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
dependencies:
mimic-fn: 4.0.0
dev: true
- /open/7.4.2:
+ /open@7.4.2:
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
engines: {node: '>=8'}
dependencies:
@@ -13613,7 +13314,7 @@ packages:
is-wsl: 2.2.0
dev: false
- /open/8.4.2:
+ /open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
dependencies:
@@ -13621,15 +13322,15 @@ packages:
is-docker: 2.2.1
is-wsl: 2.2.0
- /openapi-types/12.0.0:
+ /openapi-types@12.0.0:
resolution: {integrity: sha512-6Wd9k8nmGQHgCbehZCP6wwWcfXcvinhybUTBatuhjRsCxUIujuYFZc9QnGeae75CyHASewBtxs0HX/qwREReUw==}
dev: false
- /openapi-types/12.1.0:
+ /openapi-types@12.1.0:
resolution: {integrity: sha512-XpeCy01X6L5EpP+6Hc3jWN7rMZJ+/k1lwki/kTmWzbVhdPie3jd5O2ZtedEx8Yp58icJ0osVldLMrTB/zslQXA==}
dev: false
- /optionator/0.8.3:
+ /optionator@0.8.3:
resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -13641,7 +13342,7 @@ packages:
word-wrap: 1.2.3
dev: true
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -13652,7 +13353,7 @@ packages:
type-check: 0.4.0
word-wrap: 1.2.3
- /ora/5.4.1:
+ /ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
dependencies:
@@ -13667,102 +13368,102 @@ packages:
wcwidth: 1.0.1
dev: false
- /os-filter-obj/2.0.0:
+ /os-filter-obj@2.0.0:
resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==}
engines: {node: '>=4'}
dependencies:
arch: 2.2.0
dev: true
- /os-tmpdir/1.0.2:
+ /os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- /ospath/1.2.2:
+ /ospath@1.2.2:
resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
- /outdent/0.5.0:
+ /outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
dev: true
- /p-cancelable/2.1.1:
+ /p-cancelable@2.1.1:
resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
engines: {node: '>=8'}
dev: true
- /p-filter/2.1.0:
+ /p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
dependencies:
p-map: 2.1.0
dev: true
- /p-finally/1.0.0:
+ /p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
dev: true
- /p-limit/2.3.0:
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
- /p-limit/3.1.0:
+ /p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
- /p-locate/4.1.0:
+ /p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
p-limit: 2.3.0
- /p-locate/5.0.0:
+ /p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
dev: true
- /p-map/2.1.0:
+ /p-map@2.1.0:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
dev: true
- /p-map/4.0.0:
+ /p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
- /p-retry/4.6.2:
+ /p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
dependencies:
'@types/retry': 0.12.0
retry: 0.13.1
- /p-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- /param-case/3.0.4:
+ /param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
tslib: 2.5.0
dev: false
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- /parse-filepath/1.0.2:
+ /parse-filepath@1.0.2:
resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
engines: {node: '>=0.8'}
dependencies:
@@ -13771,7 +13472,7 @@ packages:
path-root: 0.1.1
dev: false
- /parse-json/5.2.0:
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
@@ -13780,141 +13481,141 @@ packages:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- /parse-node-version/1.0.1:
+ /parse-node-version@1.0.1:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
dev: false
- /parse5/4.0.0:
+ /parse5@4.0.0:
resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==}
- /parse5/6.0.1:
+ /parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: true
- /parse5/7.1.2:
+ /parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
dependencies:
entities: 4.4.0
dev: true
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- /pascal-case/3.1.2:
+ /pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
dev: false
- /path-browserify/1.0.1:
+ /path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- /path-case/3.0.4:
+ /path-case@3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
dependencies:
dot-case: 3.0.4
tslib: 2.5.0
dev: false
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key/2.0.1:
+ /path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
dev: true
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- /path-key/4.0.0:
+ /path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
dev: true
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-root-regex/0.1.2:
+ /path-root-regex@0.1.2:
resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==}
engines: {node: '>=0.10.0'}
dev: false
- /path-root/0.1.1:
+ /path-root@0.1.1:
resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
engines: {node: '>=0.10.0'}
dependencies:
path-root-regex: 0.1.2
dev: false
- /path-to-regexp/0.1.7:
+ /path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /pathval/1.1.1:
+ /pathval@1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
dev: true
- /peek-readable/5.0.0:
+ /peek-readable@5.0.0:
resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==}
engines: {node: '>=14.16'}
dev: true
- /pend/1.2.0:
+ /pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- /performance-now/2.1.0:
+ /performance-now@2.1.0:
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pidtree/0.6.0:
+ /pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
hasBin: true
dev: true
- /pify/2.3.0:
+ /pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- /pify/4.0.1:
+ /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- /pirates/4.0.5:
+ /pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
- /pkg-dir/4.2.0:
+ /pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
dependencies:
find-up: 4.1.0
- /pluralize/8.0.0:
+ /pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
dev: false
- /postcss-calc/8.2.4_postcss@8.4.21:
+ /postcss-calc@8.2.4(postcss@8.4.21):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
@@ -13923,7 +13624,7 @@ packages:
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
- /postcss-colormin/5.3.1_postcss@8.4.21:
+ /postcss-colormin@5.3.1(postcss@8.4.21):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -13935,7 +13636,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-convert-values/5.1.3_postcss@8.4.21:
+ /postcss-convert-values@5.1.3(postcss@8.4.21):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -13945,7 +13646,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-discard-comments/5.1.2_postcss@8.4.21:
+ /postcss-discard-comments@5.1.2(postcss@8.4.21):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -13953,7 +13654,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-duplicates/5.1.0_postcss@8.4.21:
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -13961,7 +13662,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-empty/5.1.1_postcss@8.4.21:
+ /postcss-discard-empty@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -13969,7 +13670,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-discard-overridden/5.1.0_postcss@8.4.21:
+ /postcss-discard-overridden@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -13977,7 +13678,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-import/14.1.0_postcss@8.4.21:
+ /postcss-import@14.1.0(postcss@8.4.21):
resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -13988,7 +13689,7 @@ packages:
read-cache: 1.0.0
resolve: 1.22.1
- /postcss-loader/6.2.1_ynsp4hpcl6ftpkdbhj2ssg4tva:
+ /postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.76.0):
resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -13999,9 +13700,9 @@ packages:
klona: 2.0.6
postcss: 8.4.21
semver: 7.3.8
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /postcss-merge-longhand/5.1.7_postcss@8.4.21:
+ /postcss-merge-longhand@5.1.7(postcss@8.4.21):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14009,9 +13710,9 @@ packages:
dependencies:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.21
+ stylehacks: 5.1.1(postcss@8.4.21)
- /postcss-merge-rules/5.1.4_postcss@8.4.21:
+ /postcss-merge-rules@5.1.4(postcss@8.4.21):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14019,11 +13720,11 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-minify-font-values/5.1.0_postcss@8.4.21:
+ /postcss-minify-font-values@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14032,29 +13733,29 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-minify-gradients/5.1.1_postcss@8.4.21:
+ /postcss-minify-gradients@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-minify-params/5.1.4_postcss@8.4.21:
+ /postcss-minify-params@5.1.4(postcss@8.4.21):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-minify-selectors/5.2.1_postcss@8.4.21:
+ /postcss-minify-selectors@5.2.1(postcss@8.4.21):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14063,7 +13764,7 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.21:
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -14071,18 +13772,18 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.21:
+ /postcss-modules-local-by-default@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
- /postcss-modules-scope/3.0.0_postcss@8.4.21:
+ /postcss-modules-scope@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -14091,16 +13792,16 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-modules-values/4.0.0_postcss@8.4.21:
+ /postcss-modules-values@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
- /postcss-normalize-charset/5.1.0_postcss@8.4.21:
+ /postcss-normalize-charset@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14108,7 +13809,7 @@ packages:
dependencies:
postcss: 8.4.21
- /postcss-normalize-display-values/5.1.0_postcss@8.4.21:
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14117,7 +13818,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-positions/5.1.1_postcss@8.4.21:
+ /postcss-normalize-positions@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14126,7 +13827,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21:
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14135,7 +13836,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-string/5.1.0_postcss@8.4.21:
+ /postcss-normalize-string@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14144,7 +13845,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21:
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14153,7 +13854,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-unicode/5.1.1_postcss@8.4.21:
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14163,7 +13864,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-url/5.1.0_postcss@8.4.21:
+ /postcss-normalize-url@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14173,7 +13874,7 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.21:
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14182,17 +13883,17 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-ordered-values/5.1.3_postcss@8.4.21:
+ /postcss-ordered-values@5.1.3(postcss@8.4.21):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-reduce-initial/5.1.2_postcss@8.4.21:
+ /postcss-reduce-initial@5.1.2(postcss@8.4.21):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14202,7 +13903,7 @@ packages:
caniuse-api: 3.0.0
postcss: 8.4.21
- /postcss-reduce-transforms/5.1.0_postcss@8.4.21:
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14211,14 +13912,14 @@ packages:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- /postcss-selector-parser/6.0.11:
+ /postcss-selector-parser@6.0.11:
resolution: {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.21:
+ /postcss-svgo@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14228,7 +13929,7 @@ packages:
postcss-value-parser: 4.2.0
svgo: 2.8.0
- /postcss-unique-selectors/5.1.1_postcss@8.4.21:
+ /postcss-unique-selectors@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -14237,10 +13938,10 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.14:
+ /postcss@8.4.14:
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -14249,7 +13950,7 @@ packages:
source-map-js: 1.0.2
dev: false
- /postcss/8.4.21:
+ /postcss@8.4.21:
resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -14257,7 +13958,7 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /preferred-pm/3.0.3:
+ /preferred-pm@3.0.3:
resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==}
engines: {node: '>=10'}
dependencies:
@@ -14267,25 +13968,25 @@ packages:
which-pm: 2.0.0
dev: true
- /prelude-ls/1.1.2:
+ /prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
engines: {node: '>= 0.8.0'}
dev: true
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- /prettier/2.8.6:
+ /prettier@2.8.6:
resolution: {integrity: sha512-mtuzdiBbHwPEgl7NxWlqOkithPyp4VN93V7VeHVWBF+ad3I5avc0RVDT4oImXQy9H/AqxA2NSQH8pSxHW6FYbQ==}
engines: {node: '>=10.13.0'}
hasBin: true
- /pretty-bytes/5.6.0:
+ /pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
- /pretty-format/27.5.1:
+ /pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -14294,7 +13995,7 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format/28.1.3:
+ /pretty-format@28.1.3:
resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -14303,16 +14004,16 @@ packages:
ansi-styles: 5.2.0
react-is: 18.2.0
- /process-nextick-args/2.0.1:
+ /process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- /promise/7.3.1:
+ /promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
asap: 2.0.6
dev: false
- /prompts/2.4.2:
+ /prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
dependencies:
@@ -14320,7 +14021,7 @@ packages:
sisteransi: 1.0.5
dev: true
- /prop-types/15.8.1:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
@@ -14328,99 +14029,99 @@ packages:
react-is: 16.13.1
dev: true
- /proxy-addr/2.0.7:
+ /proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- /proxy-from-env/1.0.0:
+ /proxy-from-env@1.0.0:
resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==}
- /proxy-from-env/1.1.0:
+ /proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- /prr/1.0.1:
+ /prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
optional: true
- /pseudomap/1.0.2:
+ /pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: true
- /psl/1.9.0:
+ /psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
- /pump/3.0.0:
+ /pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- /punycode/1.4.1:
+ /punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
dev: false
- /punycode/2.3.0:
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- /pvtsutils/1.3.2:
+ /pvtsutils@1.3.2:
resolution: {integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==}
dependencies:
tslib: 2.5.0
dev: false
- /pvutils/1.1.3:
+ /pvutils@1.1.3:
resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==}
engines: {node: '>=6.0.0'}
dev: false
- /q/1.5.1:
+ /q@1.5.1:
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
dev: true
- /qs/6.10.4:
+ /qs@6.10.4:
resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.4
- /qs/6.11.0:
+ /qs@6.11.0:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.4
- /querystringify/2.2.0:
+ /querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: true
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /quick-lru/4.0.1:
+ /quick-lru@4.0.1:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
dev: true
- /quick-lru/5.1.1:
+ /quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
dev: true
- /randombytes/2.1.0:
+ /randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- /raw-body/2.5.1:
+ /raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
dependencies:
@@ -14429,7 +14130,7 @@ packages:
iconv-lite: 0.4.24
unpipe: 1.0.0
- /react-dom/18.2.0_react@18.2.0:
+ /react-dom@18.2.0(react@18.2.0):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
react: ^18.2.0
@@ -14438,17 +14139,17 @@ packages:
react: 18.2.0
scheduler: 0.23.0
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- /react-is/17.0.2:
+ /react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: true
- /react-is/18.2.0:
+ /react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-native-fs/2.20.0:
+ /react-native-fs@2.20.0:
resolution: {integrity: sha512-VkTBzs7fIDUiy/XajOSNk0XazFE9l+QlMAce7lGuebZcag5CnjszB+u4BdqzwaQOdcYb5wsJIsqq4kxInIRpJQ==}
peerDependencies:
react-native: '*'
@@ -14461,11 +14162,11 @@ packages:
utf8: 3.0.0
dev: false
- /react-native-path/0.0.5:
+ /react-native-path@0.0.5:
resolution: {integrity: sha512-WJr256xBquk7X2O83QYWKqgLg43Zg3SrgjPc/kr0gCD2LoXA+2L72BW4cmstH12GbGeutqs/eXk3jgDQ2iCSvQ==}
dev: false
- /react-shallow-renderer/16.15.0_react@18.2.0:
+ /react-shallow-renderer@16.15.0(react@18.2.0):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
@@ -14475,29 +14176,29 @@ packages:
react-is: 18.2.0
dev: true
- /react-test-renderer/18.2.0_react@18.2.0:
+ /react-test-renderer@18.2.0(react@18.2.0):
resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
peerDependencies:
react: ^18.2.0
dependencies:
react: 18.2.0
react-is: 18.2.0
- react-shallow-renderer: 16.15.0_react@18.2.0
+ react-shallow-renderer: 16.15.0(react@18.2.0)
scheduler: 0.23.0
dev: true
- /react/18.2.0:
+ /react@18.2.0:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
- /read-cache/1.0.0:
+ /read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
dependencies:
pify: 2.3.0
- /read-pkg-up/7.0.1:
+ /read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
dependencies:
@@ -14506,7 +14207,7 @@ packages:
type-fest: 0.8.1
dev: true
- /read-pkg/5.2.0:
+ /read-pkg@5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
@@ -14516,7 +14217,7 @@ packages:
type-fest: 0.6.0
dev: true
- /read-yaml-file/1.1.0:
+ /read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
dependencies:
@@ -14526,7 +14227,7 @@ packages:
strip-bom: 3.0.0
dev: true
- /readable-stream/2.3.7:
+ /readable-stream@2.3.7:
resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
dependencies:
core-util-is: 1.0.3
@@ -14538,7 +14239,7 @@ packages:
util-deprecate: 1.0.2
dev: false
- /readable-stream/2.3.8:
+ /readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
@@ -14549,7 +14250,7 @@ packages:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- /readable-stream/3.6.2:
+ /readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
@@ -14557,20 +14258,20 @@ packages:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- /readable-web-to-node-stream/3.0.2:
+ /readable-web-to-node-stream@3.0.2:
resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==}
engines: {node: '>=8'}
dependencies:
readable-stream: 3.6.2
dev: true
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- /redent/3.0.0:
+ /redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
dependencies:
@@ -14578,28 +14279,28 @@ packages:
strip-indent: 3.0.0
dev: true
- /regenerate-unicode-properties/10.1.0:
+ /regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- /regenerator-runtime/0.13.7:
+ /regenerator-runtime@0.13.7:
resolution: {integrity: sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==}
dev: true
- /regenerator-transform/0.15.1:
+ /regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
'@babel/runtime': 7.21.0
- /regexp.prototype.flags/1.4.3:
+ /regexp.prototype.flags@1.4.3:
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -14607,11 +14308,11 @@ packages:
define-properties: 1.2.0
functions-have-names: 1.2.3
- /regexpp/3.2.0:
+ /regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
- /regexpu-core/5.3.2:
+ /regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
@@ -14622,13 +14323,13 @@ packages:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
- /regjsparser/0.9.1:
+ /regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
- /relay-runtime/12.0.0:
+ /relay-runtime@12.0.0:
resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==}
dependencies:
'@babel/runtime': 7.21.0
@@ -14638,79 +14339,79 @@ packages:
- encoding
dev: false
- /remedial/1.0.8:
+ /remedial@1.0.8:
resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==}
dev: false
- /remove-trailing-separator/1.1.0:
+ /remove-trailing-separator@1.1.0:
resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
dev: false
- /remove-trailing-spaces/1.0.8:
+ /remove-trailing-spaces@1.0.8:
resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==}
dev: false
- /request-progress/3.0.0:
+ /request-progress@3.0.0:
resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==}
dependencies:
throttleit: 1.0.0
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- /require-from-string/2.0.2:
+ /require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /require-main-filename/2.0.0:
+ /require-main-filename@2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
- /requires-port/1.0.0:
+ /requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- /resolve-alpn/1.2.1:
+ /resolve-alpn@1.2.1:
resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
dev: true
- /resolve-cwd/3.0.0:
+ /resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
dependencies:
resolve-from: 5.0.0
dev: true
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- /resolve-from/5.0.0:
+ /resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve-global/1.0.0:
+ /resolve-global@1.0.0:
resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==}
engines: {node: '>=8'}
dependencies:
global-dirs: 0.1.1
dev: true
- /resolve.exports/1.1.0:
+ /resolve.exports@1.1.0:
resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==}
engines: {node: '>=10'}
- /resolve.exports/1.1.1:
+ /resolve.exports@1.1.1:
resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
engines: {node: '>=10'}
- /resolve/1.19.0:
+ /resolve@1.19.0:
resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
dependencies:
is-core-module: 2.11.0
path-parse: 1.0.7
dev: true
- /resolve/1.22.1:
+ /resolve@1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
dependencies:
@@ -14718,7 +14419,7 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.4:
+ /resolve@2.0.0-next.4:
resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
hasBin: true
dependencies:
@@ -14727,44 +14428,44 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /responselike/2.0.1:
+ /responselike@2.0.1:
resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
dependencies:
lowercase-keys: 2.0.0
dev: true
- /restore-cursor/3.1.0:
+ /restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
- /retry/0.13.1:
+ /retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rfdc/1.3.0:
+ /rfdc@1.3.0:
resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.3
- /rimraf/4.1.2:
+ /rimraf@4.1.2:
resolution: {integrity: sha512-BlIbgFryTbw3Dz6hyoWFhKk+unCcHMSkZGrTFVAx2WmttdBSonsdtRlwiuTbDqTKr+UlXIUqJVS4QT5tUzGENQ==}
engines: {node: '>=14'}
deprecated: Please upgrade to 4.3.1 or higher to fix a potentially damaging issue regarding symbolic link following. See https://github.com/isaacs/rimraf/issues/259 for details.
hasBin: true
dev: false
- /rollup/2.79.1:
+ /rollup@2.79.1:
resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
engines: {node: '>=10.0.0'}
hasBin: true
@@ -14772,41 +14473,41 @@ packages:
fsevents: 2.3.2
dev: true
- /rollup/3.20.2:
+ /rollup@3.20.2:
resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
- /run-async/2.4.1:
+ /run-async@2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
dev: false
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /rxjs/6.6.7:
+ /rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
- /rxjs/7.8.0:
+ /rxjs@7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
tslib: 2.5.0
- /safe-buffer/5.1.2:
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- /safe-regex-test/1.0.0:
+ /safe-regex-test@1.0.0:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
@@ -14814,10 +14515,10 @@ packages:
is-regex: 1.1.4
dev: true
- /safer-buffer/2.1.2:
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /sass-loader/12.6.0_sass@1.58.3+webpack@5.76.0:
+ /sass-loader@12.6.0(sass@1.58.3)(webpack@5.76.0):
resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -14839,9 +14540,9 @@ packages:
klona: 2.0.6
neo-async: 2.6.2
sass: 1.58.3
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /sass/1.58.3:
+ /sass@1.58.3:
resolution: {integrity: sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==}
engines: {node: '>=12.0.0'}
hasBin: true
@@ -14850,93 +14551,93 @@ packages:
immutable: 4.3.0
source-map-js: 1.0.2
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
- /saxes/5.0.1:
+ /saxes@5.0.1:
resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
engines: {node: '>=10'}
dependencies:
xmlchars: 2.2.0
dev: true
- /saxes/6.0.0:
+ /saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
dependencies:
xmlchars: 2.2.0
dev: true
- /scheduler/0.23.0:
+ /scheduler@0.23.0:
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
dependencies:
loose-envify: 1.4.0
- /schema-utils/3.1.1:
+ /schema-utils@3.1.1:
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/4.0.0:
+ /schema-utils@4.0.0:
resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 8.12.0
ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.12.0
+ ajv-keywords: 5.1.0(ajv@8.12.0)
- /scuid/1.1.0:
+ /scuid@1.1.0:
resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==}
dev: false
- /select-hose/2.0.0:
+ /select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
- /selfsigned/2.1.1:
+ /selfsigned@2.1.1:
resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
engines: {node: '>=10'}
dependencies:
node-forge: 1.3.1
- /semver-regex/4.0.5:
+ /semver-regex@4.0.5:
resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==}
engines: {node: '>=12'}
dev: true
- /semver-truncate/2.0.0:
+ /semver-truncate@2.0.0:
resolution: {integrity: sha512-Rh266MLDYNeML5h90ttdMwfXe1+Nc4LAWd9X1KdJe8pPHP4kFmvLZALtsMNHNdvTyQygbEC0D59sIz47DIaq8w==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
dev: true
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- /semver/7.3.4:
+ /semver@7.3.4:
resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- /semver/7.3.8:
+ /semver@7.3.8:
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -14956,7 +14657,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /sentence-case/3.0.4:
+ /sentence-case@3.0.4:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
dependencies:
no-case: 3.0.4
@@ -14964,12 +14665,12 @@ packages:
upper-case-first: 2.0.2
dev: false
- /serialize-javascript/6.0.1:
+ /serialize-javascript@6.0.1:
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
randombytes: 2.1.0
- /serve-index/1.9.1:
+ /serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -14983,7 +14684,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -14994,73 +14695,73 @@ packages:
transitivePeerDependencies:
- supports-color
- /set-blocking/2.0.0:
+ /set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- /setimmediate/1.0.5:
+ /setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: false
- /setprototypeof/1.1.0:
+ /setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- /sha1-es/1.8.2:
+ /sha1-es@1.8.2:
resolution: {integrity: sha512-7gzO0Y7RBt1Qsq8D1fC+So6zsnkwRcZas8sGO9Xp4bOkDhG5s4fzSP0i9yUs6aVzSH7+urqqh6uk0z+dMDeF9A==}
dev: false
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
- /shallowequal/1.1.0:
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- /shebang-command/1.2.0:
+ /shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
dev: true
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- /shebang-regex/1.0.0:
+ /shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
dev: true
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote/1.8.0:
+ /shell-quote@1.8.0:
resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==}
dev: false
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.0
object-inspect: 1.12.3
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /signedsource/1.0.0:
+ /signedsource@1.0.0:
resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==}
dev: false
- /sirv/2.0.2:
+ /sirv@2.0.2:
resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==}
engines: {node: '>= 10'}
dependencies:
@@ -15069,19 +14770,19 @@ packages:
totalist: 3.0.0
dev: true
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- /slash/4.0.0:
+ /slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
- /slice-ansi/3.0.0:
+ /slice-ansi@3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
dependencies:
@@ -15089,7 +14790,7 @@ packages:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- /slice-ansi/4.0.0:
+ /slice-ansi@4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
dependencies:
@@ -15097,7 +14798,7 @@ packages:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- /slice-ansi/5.0.0:
+ /slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
dependencies:
@@ -15105,7 +14806,7 @@ packages:
is-fullwidth-code-point: 4.0.0
dev: true
- /smartwrap/2.0.2:
+ /smartwrap@2.0.2:
resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==}
engines: {node: '>=6'}
hasBin: true
@@ -15118,39 +14819,39 @@ packages:
yargs: 15.4.1
dev: true
- /snake-case/3.0.4:
+ /snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
dependencies:
dot-case: 3.0.4
tslib: 2.5.0
dev: false
- /sockjs/0.3.24:
+ /sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
faye-websocket: 0.11.4
uuid: 8.3.2
websocket-driver: 0.7.4
- /sort-keys-length/1.0.1:
+ /sort-keys-length@1.0.1:
resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==}
engines: {node: '>=0.10.0'}
dependencies:
sort-keys: 1.1.2
dev: true
- /sort-keys/1.1.2:
+ /sort-keys@1.1.2:
resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
engines: {node: '>=0.10.0'}
dependencies:
is-plain-obj: 1.1.0
dev: true
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-loader/3.0.2_webpack@5.76.0:
+ /source-map-loader@3.0.2(webpack@5.76.0):
resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -15159,74 +14860,74 @@ packages:
abab: 2.0.6
iconv-lite: 0.6.3
source-map-js: 1.0.2
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /source-map-resolve/0.6.0:
+ /source-map-resolve@0.6.0:
resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==}
deprecated: See https://github.com/lydell/source-map-resolve#deprecated
dependencies:
atob: 2.1.2
decode-uri-component: 0.2.2
- /source-map-support/0.5.13:
+ /source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map-support/0.5.19:
+ /source-map-support@0.5.19:
resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map-support/0.5.21:
+ /source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /source-map/0.7.4:
+ /source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- /spawndamnit/2.0.0:
+ /spawndamnit@2.0.0:
resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
dependencies:
cross-spawn: 5.1.0
signal-exit: 3.0.7
dev: true
- /spdx-correct/3.2.0:
+ /spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.13
dev: true
- /spdx-exceptions/2.3.0:
+ /spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
dev: true
- /spdx-expression-parse/3.0.1:
+ /spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
spdx-license-ids: 3.0.13
dev: true
- /spdx-license-ids/3.0.13:
+ /spdx-license-ids@3.0.13:
resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==}
dev: true
- /spdy-transport/3.0.0:
+ /spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -15235,11 +14936,11 @@ packages:
transitivePeerDependencies:
- supports-color
- /spdy/4.0.2:
+ /spdy@4.0.2:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -15247,27 +14948,27 @@ packages:
transitivePeerDependencies:
- supports-color
- /split2/3.2.2:
+ /split2@3.2.2:
resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
dependencies:
readable-stream: 3.6.2
dev: true
- /sponge-case/1.0.1:
+ /sponge-case@1.0.1:
resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
dependencies:
tslib: 2.5.0
dev: false
- /sprintf-js/1.0.3:
+ /sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /sqlstring/2.3.1:
+ /sqlstring@2.3.1:
resolution: {integrity: sha512-ooAzh/7dxIG5+uDik1z/Rd1vli0+38izZhGzSa34FwR7IbelPWCCKSNIl8jlL/F7ERvy8CB2jNeM1E9i9mXMAQ==}
engines: {node: '>= 0.6'}
dev: false
- /sshpk/1.17.0:
+ /sshpk@1.17.0:
resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==}
engines: {node: '>=0.10.0'}
hasBin: true
@@ -15282,58 +14983,58 @@ packages:
safer-buffer: 2.1.2
tweetnacl: 0.14.5
- /stable/0.1.8:
+ /stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
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.6:
+ /stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
- /statuses/1.5.0:
+ /statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- /stop-iteration-iterator/1.0.0:
+ /stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
dependencies:
internal-slot: 1.0.5
- /stream-transform/2.1.3:
+ /stream-transform@2.1.3:
resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==}
dependencies:
mixme: 0.5.5
dev: true
- /streamsearch/1.1.0:
+ /streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
dev: false
- /string-argv/0.3.1:
+ /string-argv@0.3.1:
resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==}
engines: {node: '>=0.6.19'}
dev: true
- /string-env-interpolation/1.0.1:
+ /string-env-interpolation@1.0.1:
resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==}
dev: false
- /string-length/4.0.2:
+ /string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
dependencies:
char-regex: 1.0.2
strip-ansi: 6.0.1
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -15341,7 +15042,7 @@ packages:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string-width/5.1.2:
+ /string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
dependencies:
@@ -15350,7 +15051,7 @@ packages:
strip-ansi: 7.0.1
dev: true
- /string.prototype.matchall/4.0.8:
+ /string.prototype.matchall@4.0.8:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
@@ -15363,7 +15064,7 @@ packages:
side-channel: 1.0.4
dev: true
- /string.prototype.trimend/1.0.6:
+ /string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
call-bind: 1.0.2
@@ -15371,7 +15072,7 @@ packages:
es-abstract: 1.21.1
dev: true
- /string.prototype.trimstart/1.0.6:
+ /string.prototype.trimstart@1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
@@ -15379,78 +15080,78 @@ packages:
es-abstract: 1.21.1
dev: true
- /string_decoder/1.1.1:
+ /string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
- /string_decoder/1.3.0:
+ /string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- /strip-ansi/7.0.1:
+ /strip-ansi@7.0.1:
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
dev: true
- /strip-bom/3.0.0:
+ /strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- /strip-bom/4.0.0:
+ /strip-bom@4.0.0:
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
engines: {node: '>=8'}
- /strip-eof/1.0.0:
+ /strip-eof@1.0.0:
resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
engines: {node: '>=0.10.0'}
dev: true
- /strip-final-newline/2.0.0:
+ /strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- /strip-final-newline/3.0.0:
+ /strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
dev: true
- /strip-indent/3.0.0:
+ /strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
dependencies:
min-indent: 1.0.1
dev: true
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /strip-literal/1.0.1:
+ /strip-literal@1.0.1:
resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==}
dependencies:
acorn: 8.8.2
dev: true
- /strip-outer/2.0.0:
+ /strip-outer@2.0.0:
resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: true
- /strnum/1.0.5:
+ /strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
dev: false
- /strong-log-transformer/2.1.0:
+ /strong-log-transformer@2.1.0:
resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
engines: {node: '>=4'}
hasBin: true
@@ -15459,7 +15160,7 @@ packages:
minimist: 1.2.8
through: 2.3.8
- /strtok3/7.0.0:
+ /strtok3@7.0.0:
resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==}
engines: {node: '>=14.16'}
dependencies:
@@ -15467,15 +15168,15 @@ packages:
peek-readable: 5.0.0
dev: true
- /style-loader/3.3.1_webpack@5.76.0:
+ /style-loader@3.3.1(webpack@5.76.0):
resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /styled-components/5.3.6_7i5myeigehqah43i5u7wbekgba:
+ /styled-components@5.3.6(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==}
engines: {node: '>=10'}
requiresBuild: true
@@ -15485,20 +15186,20 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.18.6
- '@babel/traverse': 7.21.2_supports-color@5.5.0
+ '@babel/traverse': 7.21.2(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.6
+ babel-plugin-styled-components: 2.0.7(styled-components@5.3.6)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 18.2.0
- react-dom: 18.2.0_react@18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-is: 18.2.0
shallowequal: 1.1.0
supports-color: 5.5.0
- /styled-jsx/5.1.1_react@18.2.0:
+ /styled-jsx@5.1.1(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -15515,7 +15216,7 @@ packages:
react: 18.2.0
dev: false
- /stylehacks/5.1.1_postcss@8.4.21:
+ /stylehacks@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -15525,7 +15226,7 @@ packages:
postcss: 8.4.21
postcss-selector-parser: 6.0.11
- /stylus-loader/7.1.0_iwz5udw2ibqtb725jnip3p6uoy:
+ /stylus-loader@7.1.0(stylus@0.55.0)(webpack@5.76.0):
resolution: {integrity: sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -15536,9 +15237,9 @@ packages:
klona: 2.0.6
normalize-path: 3.0.0
stylus: 0.55.0
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /stylus/0.55.0:
+ /stylus@0.55.0:
resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==}
hasBin: true
dependencies:
@@ -15553,40 +15254,40 @@ packages:
transitivePeerDependencies:
- supports-color
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- /supports-hyperlinks/2.3.0:
+ /supports-hyperlinks@2.3.0:
resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svg-parser/2.0.4:
+ /svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
dev: false
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -15599,17 +15300,17 @@ packages:
picocolors: 1.0.0
stable: 0.1.8
- /swap-case/2.0.2:
+ /swap-case@2.0.2:
resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==}
dependencies:
tslib: 2.5.0
dev: false
- /symbol-tree/3.2.4:
+ /symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /synckit/0.8.5:
+ /synckit@0.8.5:
resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
@@ -15617,11 +15318,11 @@ packages:
tslib: 2.5.0
dev: true
- /tapable/2.2.1:
+ /tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- /tar-stream/2.2.0:
+ /tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
dependencies:
@@ -15631,7 +15332,7 @@ packages:
inherits: 2.0.4
readable-stream: 3.6.2
- /tar/6.1.11:
+ /tar@6.1.11:
resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==}
engines: {node: '>= 10'}
dependencies:
@@ -15643,19 +15344,19 @@ packages:
yallist: 4.0.0
dev: true
- /term-size/2.2.1:
+ /term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
dev: true
- /terminal-link/2.1.1:
+ /terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
engines: {node: '>=8'}
dependencies:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- /terser-webpack-plugin/5.3.7_dpvlzh65cpfi2dmf4cqga3th74:
+ /terser-webpack-plugin@5.3.7(@swc/core@1.3.42)(webpack@5.76.0):
resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -15677,9 +15378,9 @@ packages:
schema-utils: 3.1.1
serialize-javascript: 6.0.1
terser: 5.16.6
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /terser/5.16.6:
+ /terser@5.16.6:
resolution: {integrity: sha512-IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg==}
engines: {node: '>=10'}
hasBin: true
@@ -15689,7 +15390,7 @@ packages:
commander: 2.20.3
source-map-support: 0.5.21
- /test-exclude/6.0.0:
+ /test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
dependencies:
@@ -15697,81 +15398,81 @@ packages:
glob: 7.2.3
minimatch: 3.1.2
- /text-extensions/1.9.0:
+ /text-extensions@1.9.0:
resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
engines: {node: '>=0.10'}
dev: true
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- /throttleit/1.0.0:
+ /throttleit@1.0.0:
resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==}
- /through/2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
- /through2/4.0.2:
+ /through2@4.0.2:
resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
dependencies:
readable-stream: 3.6.2
dev: true
- /thunky/1.1.0:
+ /through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+
+ /thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
- /tiny-glob/0.2.9:
+ /tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
dependencies:
globalyzer: 0.1.0
globrex: 0.1.2
dev: true
- /tiny-lru/8.0.2:
+ /tiny-lru@8.0.2:
resolution: {integrity: sha512-ApGvZ6vVvTNdsmt676grvCkUCGwzG9IqXma5Z07xJgiC5L7akUMof5U8G2JTI9Rz/ovtVhJBlY6mNhEvtjzOIg==}
engines: {node: '>=6'}
dev: false
- /tinybench/2.4.0:
+ /tinybench@2.4.0:
resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==}
dev: true
- /tinypool/0.3.1:
+ /tinypool@0.3.1:
resolution: {integrity: sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==}
engines: {node: '>=14.0.0'}
dev: true
- /tinyspy/1.1.1:
+ /tinyspy@1.1.1:
resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==}
engines: {node: '>=14.0.0'}
dev: true
- /title-case/3.0.3:
+ /title-case@3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
dependencies:
tslib: 2.5.0
dev: false
- /tmp/0.0.33:
+ /tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
dependencies:
os-tmpdir: 1.0.2
- /tmp/0.2.1:
+ /tmp@0.2.1:
resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
engines: {node: '>=8.17.0'}
dependencies:
rimraf: 3.0.2
- /tmpl/1.0.5:
+ /tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-json-schema/0.2.5:
+ /to-json-schema@0.2.5:
resolution: {integrity: sha512-jP1ievOee8pec3tV9ncxLSS48Bnw7DIybgy112rhMCEhf3K4uyVNZZHr03iQQBzbV5v5Hos+dlZRRyk6YSMNDw==}
dependencies:
lodash.isequal: 4.5.0
@@ -15782,17 +15483,17 @@ packages:
lodash.xor: 4.5.0
dev: false
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- /toidentifier/1.0.1:
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- /token-types/5.0.1:
+ /token-types@5.0.1:
resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==}
engines: {node: '>=14.16'}
dependencies:
@@ -15800,19 +15501,19 @@ packages:
ieee754: 1.2.1
dev: true
- /totalist/3.0.0:
+ /totalist@3.0.0:
resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==}
engines: {node: '>=6'}
dev: true
- /tough-cookie/2.5.0:
+ /tough-cookie@2.5.0:
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
engines: {node: '>=0.8'}
dependencies:
psl: 1.9.0
punycode: 2.3.0
- /tough-cookie/4.1.2:
+ /tough-cookie@4.1.2:
resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==}
engines: {node: '>=6'}
dependencies:
@@ -15822,33 +15523,33 @@ packages:
url-parse: 1.5.10
dev: true
- /tr46/0.0.3:
+ /tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- /tr46/3.0.0:
+ /tr46@3.0.0:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
dependencies:
punycode: 2.3.0
dev: true
- /tree-kill/1.2.2:
+ /tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- /trim-newlines/3.0.1:
+ /trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
dev: true
- /trim-repeated/2.0.0:
+ /trim-repeated@2.0.0:
resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==}
engines: {node: '>=12'}
dependencies:
escape-string-regexp: 5.0.0
dev: true
- /ts-jest/28.0.5_c57pmzltpvrsqbtqxiqe3cr3ra:
+ /ts-jest@28.0.5(babel-jest@28.1.1)(jest@28.1.1)(typescript@4.8.4):
resolution: {integrity: sha512-Sx9FyP9pCY7pUzQpy4FgRZf2bhHY3za576HMKJFs+OnQ9jS96Du5vNsDKkyedQkik+sEabbKAnCliv9BEsHZgQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
hasBin: true
@@ -15869,7 +15570,7 @@ packages:
babel-jest: 28.1.1
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 28.1.1_odkjkoia5xunhxkdrka32ib6vi
+ jest: 28.1.1(@types/node@18.11.9)(ts-node@10.9.1)
jest-util: 28.1.3
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -15879,7 +15580,7 @@ packages:
yargs-parser: 21.1.1
dev: true
- /ts-loader/9.4.2_lns664hb3xkjxqouckgcmczr7a:
+ /ts-loader@9.4.2(typescript@4.8.4)(webpack@5.76.0):
resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -15891,34 +15592,20 @@ packages:
micromatch: 4.0.5
semver: 7.3.8
typescript: 4.8.4
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /ts-loader/9.4.2_webpack@5.76.0:
- resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- typescript: '*'
- webpack: ^5.0.0
- dependencies:
- chalk: 4.1.2
- enhanced-resolve: 5.12.0
- micromatch: 4.0.5
- semver: 7.3.8
- webpack: 5.76.0_@swc+core@1.3.42
- dev: false
-
- /ts-log/2.2.5:
+ /ts-log@2.2.5:
resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==}
dev: false
- /ts-morph/17.0.1:
+ /ts-morph@17.0.1:
resolution: {integrity: sha512-10PkHyXmrtsTvZSL+cqtJLTgFXkU43Gd0JCc0Rw6GchWbqKe0Rwgt1v3ouobTZwQzF1mGhDeAlWYBMGRV7y+3g==}
dependencies:
'@ts-morph/common': 0.18.1
code-block-writer: 11.0.3
dev: true
- /ts-node/10.9.1_@swc+core@1.3.42:
+ /ts-node@10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -15938,17 +15625,18 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.3
+ '@types/node': 18.11.9
acorn: 8.8.2
acorn-walk: 8.2.0
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
+ typescript: 4.8.4
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- dev: false
- /ts-node/10.9.1_holozwahehfpumerqg2n4zzbai:
+ /ts-node@10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.9.5):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -15980,7 +15668,7 @@ packages:
yn: 3.1.1
dev: false
- /ts-node/10.9.1_jb575hq3hgugnbsoqapjmblw4m:
+ /ts-node@10.9.1(@swc/core@1.3.42)(@types/node@18.15.0)(typescript@4.9.5):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -16012,38 +15700,7 @@ packages:
yn: 3.1.1
dev: true
- /ts-node/10.9.1_lnmuhae43o2bjbwuk2msdxdsym:
- resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
- hasBin: true
- peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
- optional: true
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@swc/core': 1.3.42
- '@tsconfig/node10': 1.0.9
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.3
- '@types/node': 18.11.9
- acorn: 8.8.2
- acorn-walk: 8.2.0
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.8.4
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
-
- /tsconfck/2.1.1_typescript@4.8.4:
+ /tsconfck@2.1.1(typescript@4.8.4):
resolution: {integrity: sha512-ZPCkJBKASZBmBUNqGHmRhdhM8pJYDdOXp4nRgj/O0JwUwsMq50lCDRQP/M5GBNAA0elPrq4gAeu4dkaVCuKWww==}
engines: {node: ^14.13.1 || ^16 || >=18}
hasBin: true
@@ -16056,7 +15713,7 @@ packages:
typescript: 4.8.4
dev: true
- /tsconfig-paths-webpack-plugin/4.0.0:
+ /tsconfig-paths-webpack-plugin@4.0.0:
resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==}
engines: {node: '>=10.13.0'}
dependencies:
@@ -16064,7 +15721,7 @@ packages:
enhanced-resolve: 5.12.0
tsconfig-paths: 4.1.2
- /tsconfig-paths/3.14.2:
+ /tsconfig-paths@3.14.2:
resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
dependencies:
'@types/json5': 0.0.29
@@ -16073,7 +15730,7 @@ packages:
strip-bom: 3.0.0
dev: true
- /tsconfig-paths/4.1.2:
+ /tsconfig-paths@4.1.2:
resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==}
engines: {node: '>=6'}
dependencies:
@@ -16081,17 +15738,17 @@ packages:
minimist: 1.2.8
strip-bom: 3.0.0
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.4.1:
+ /tslib@2.4.1:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
dev: false
- /tslib/2.5.0:
+ /tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
- /tsutils/3.21.0_typescript@4.8.4:
+ /tsutils@3.21.0(typescript@4.8.4):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
@@ -16101,7 +15758,7 @@ packages:
typescript: 4.8.4
dev: true
- /tty-table/4.1.6:
+ /tty-table@4.1.6:
resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==}
engines: {node: '>=8.0.0'}
hasBin: true
@@ -16115,77 +15772,72 @@ packages:
yargs: 17.7.1
dev: true
- /tunnel-agent/0.6.0:
+ /tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
dependencies:
safe-buffer: 5.2.1
- /tweetnacl/0.14.5:
+ /tweetnacl@0.14.5:
resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
- /type-check/0.3.2:
+ /type-check@0.3.2:
resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.1.2
dev: true
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
- /type-detect/4.0.8:
+ /type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- /type-fest/0.13.1:
+ /type-fest@0.13.1:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.18.1:
+ /type-fest@0.18.1:
resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- /type-fest/0.21.3:
+ /type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- /type-fest/0.6.0:
+ /type-fest@0.6.0:
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
engines: {node: '>=8'}
dev: true
- /type-fest/0.8.1:
+ /type-fest@0.8.1:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
dev: true
- /type-fest/2.18.0:
- resolution: {integrity: sha512-pRS+/yrW5TjPPHNOvxhbNZexr2bS63WjrMU8a+VzEBhUi9Tz1pZeD+vQz3ut0svZ46P+SRqMEPnJmk2XnvNzTw==}
- engines: {node: '>=12.20'}
- dev: false
-
- /type-fest/3.6.1:
+ /type-fest@3.6.1:
resolution: {integrity: sha512-htXWckxlT6U4+ilVgweNliPqlsVSSucbxVexRYllyMVJDtf5rTjv6kF/s+qAd4QSL1BZcnJPEJavYBPQiWuZDA==}
engines: {node: '>=14.16'}
dev: true
- /type-is/1.6.18:
+ /type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- /typed-array-length/1.0.4:
+ /typed-array-length@1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
dependencies:
call-bind: 1.0.2
@@ -16193,24 +15845,24 @@ packages:
is-typed-array: 1.1.10
dev: true
- /typed-assert/1.0.9:
+ /typed-assert@1.0.9:
resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
- /typescript/4.8.4:
+ /typescript@4.8.4:
resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==}
engines: {node: '>=4.2.0'}
hasBin: true
- /typescript/4.9.5:
+ /typescript@4.9.5:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
hasBin: true
- /ua-parser-js/0.7.34:
+ /ua-parser-js@0.7.34:
resolution: {integrity: sha512-cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ==}
dev: false
- /unbox-primitive/1.0.2:
+ /unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
call-bind: 1.0.2
@@ -16219,67 +15871,67 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /unc-path-regex/0.1.2:
+ /unc-path-regex@0.1.2:
resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
engines: {node: '>=0.10.0'}
dev: false
- /undici/5.20.0:
+ /undici@5.20.0:
resolution: {integrity: sha512-J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g==}
engines: {node: '>=12.18'}
dependencies:
busboy: 1.6.0
dev: false
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- /unicode-match-property-value-ecmascript/2.1.0:
+ /unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- /unicode-property-aliases-ecmascript/2.1.0:
+ /unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- /universalify/0.1.2:
+ /universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
dev: true
- /universalify/0.2.0:
+ /universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
dev: true
- /universalify/2.0.0:
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
- /unixify/1.0.0:
+ /unixify@1.0.0:
resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==}
engines: {node: '>=0.10.0'}
dependencies:
normalize-path: 2.1.1
dev: false
- /unpipe/1.0.0:
+ /unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- /untildify/4.0.0:
+ /untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- /update-browserslist-db/1.0.10_browserslist@4.21.5:
+ /update-browserslist-db@1.0.10(browserslist@4.21.5):
resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
hasBin: true
peerDependencies:
@@ -16289,28 +15941,28 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /upper-case-first/2.0.2:
+ /upper-case-first@2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
dependencies:
tslib: 2.5.0
dev: false
- /upper-case/2.0.2:
+ /upper-case@2.0.2:
resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
dependencies:
tslib: 2.5.0
dev: false
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
- /url-join/4.0.1:
+ /url-join@4.0.1:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
dev: false
- /url-loader/4.1.1:
+ /url-loader@4.1.1:
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -16325,45 +15977,45 @@ packages:
schema-utils: 3.1.1
dev: false
- /url-parse/1.5.10:
+ /url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
querystringify: 2.2.0
requires-port: 1.0.0
dev: true
- /urlpattern-polyfill/6.0.2:
+ /urlpattern-polyfill@6.0.2:
resolution: {integrity: sha512-5vZjFlH9ofROmuWmXM9yj2wljYKgWstGwe8YTyiqM7hVum/g9LyCizPZtb3UqsuppVwety9QJmfc42VggLpTgg==}
dependencies:
braces: 3.0.2
dev: false
- /utf8/3.0.0:
+ /utf8@3.0.0:
resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==}
- /util-deprecate/1.0.2:
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /utils-merge/1.0.1:
+ /utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- /uuid/8.3.2:
+ /uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- /uuid/9.0.0:
+ /uuid@9.0.0:
resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
hasBin: true
dev: false
- /v8-compile-cache-lib/3.0.1:
+ /v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
- /v8-to-istanbul/9.1.0:
+ /v8-to-istanbul@9.1.0:
resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
engines: {node: '>=10.12.0'}
dependencies:
@@ -16371,33 +16023,33 @@ packages:
'@types/istanbul-lib-coverage': 2.0.4
convert-source-map: 1.9.0
- /validate-npm-package-license/3.0.4:
+ /validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
dev: true
- /validator/13.9.0:
+ /validator@13.9.0:
resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==}
engines: {node: '>= 0.10'}
dev: true
- /value-or-promise/1.0.11:
+ /value-or-promise@1.0.11:
resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
engines: {node: '>=12'}
dev: false
- /value-or-promise/1.0.12:
+ /value-or-promise@1.0.12:
resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==}
engines: {node: '>=12'}
dev: false
- /vary/1.1.2:
+ /vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- /verror/1.10.0:
+ /verror@1.10.0:
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
engines: {'0': node >=0.6.0}
dependencies:
@@ -16405,28 +16057,28 @@ packages:
core-util-is: 1.0.2
extsprintf: 1.3.0
- /vite-plugin-dts/1.7.3_ibxihpjazi5khnqkke2rzmiwcu:
+ /vite-plugin-dts@1.7.3(@types/node@18.11.9)(vite@4.2.1):
resolution: {integrity: sha512-u3t45p6fTbzUPMkwYe0ESwuUeiRMlwdPfD3dRyDKUwLe2WmEYcFyVp2o9/ke2EMrM51lQcmNWdV9eLcgjD1/ng==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: '>=2.9.0'
dependencies:
- '@microsoft/api-extractor': 7.34.4_@types+node@18.11.9
+ '@microsoft/api-extractor': 7.34.4(@types/node@18.11.9)
'@rollup/pluginutils': 5.0.2
- '@rushstack/node-core-library': 3.55.2_@types+node@18.11.9
- debug: 4.3.4
+ '@rushstack/node-core-library': 3.55.2(@types/node@18.11.9)
+ debug: 4.3.4(supports-color@5.5.0)
fast-glob: 3.2.12
fs-extra: 10.1.0
kolorist: 1.7.0
ts-morph: 17.0.1
- vite: 4.2.1_@types+node@18.11.9
+ vite: 4.2.1(@types/node@18.11.9)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
dev: true
- /vite-plugin-eslint/1.8.1_eslint@8.15.0+vite@4.2.1:
+ /vite-plugin-eslint@1.8.1(eslint@8.15.0)(vite@4.2.1):
resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==}
peerDependencies:
eslint: '>=7'
@@ -16436,10 +16088,10 @@ packages:
'@types/eslint': 8.21.1
eslint: 8.15.0
rollup: 2.79.1
- vite: 4.2.1_@types+node@18.11.9
+ vite: 4.2.1(@types/node@18.11.9)
dev: true
- /vite-plugin-static-copy/0.13.1_vite@4.2.1:
+ /vite-plugin-static-copy@0.13.1(vite@4.2.1):
resolution: {integrity: sha512-KwIcGBT1aOxSq+laK3VmSngoEa3HXWj/6ZEXdv+y59eZ7p/XSuPahoDo+CfYW22JjTdnstgeKWiX+78KNgDu6g==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -16449,10 +16101,10 @@ packages:
fast-glob: 3.2.12
fs-extra: 11.1.0
picocolors: 1.0.0
- vite: 4.2.1_@types+node@18.11.9
+ vite: 4.2.1(@types/node@18.11.9)
dev: false
- /vite-tsconfig-paths/4.0.7_ykl3btyxss5evtm5m64d6se6z4:
+ /vite-tsconfig-paths@4.0.7(typescript@4.8.4)(vite@4.2.1):
resolution: {integrity: sha512-MwIYaby6kcbQGZqMH+gAK6h0UYQGOkjsuAgw4q6bP/5vWkn8VKvnmLuCQHA2+IzHAJHnE8OFTO4lnJLFMf9+7Q==}
peerDependencies:
vite: '*'
@@ -16460,16 +16112,16 @@ packages:
vite:
optional: true
dependencies:
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
globrex: 0.1.2
- tsconfck: 2.1.1_typescript@4.8.4
- vite: 4.2.1_@types+node@18.11.9
+ tsconfck: 2.1.1(typescript@4.8.4)
+ vite: 4.2.1(@types/node@18.11.9)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /vite/4.2.1_@types+node@18.11.9:
+ /vite@4.2.1(@types/node@18.11.9):
resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -16502,7 +16154,7 @@ packages:
optionalDependencies:
fsevents: 2.3.2
- /vite/4.2.1_@types+node@18.15.0:
+ /vite@4.2.1(@types/node@18.15.0):
resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -16536,7 +16188,7 @@ packages:
fsevents: 2.3.2
dev: true
- /vitest/0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq:
+ /vitest@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3):
resolution: {integrity: sha512-X75TApG2wZTJn299E/TIYevr4E9/nBo1sUtZzn0Ci5oK8qnpZAZyhwg0qCeMSakGIWtc6oRwcQFyFfW14aOFWg==}
engines: {node: '>=v14.16.0'}
hasBin: true
@@ -16565,7 +16217,7 @@ packages:
acorn: 8.8.2
acorn-walk: 8.2.0
chai: 4.3.7
- debug: 4.3.4
+ debug: 4.3.4(supports-color@5.5.0)
jsdom: 20.0.3
local-pkg: 0.4.3
source-map: 0.6.1
@@ -16573,7 +16225,7 @@ packages:
tinybench: 2.4.0
tinypool: 0.3.1
tinyspy: 1.1.1
- vite: 4.2.1_@types+node@18.15.0
+ vite: 4.2.1(@types/node@18.15.0)
transitivePeerDependencies:
- less
- sass
@@ -16583,60 +16235,60 @@ packages:
- terser
dev: true
- /w3c-hr-time/1.0.2:
+ /w3c-hr-time@1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
deprecated: Use your platform's native performance.now() and performance.timeOrigin.
dependencies:
browser-process-hrtime: 1.0.0
dev: true
- /w3c-xmlserializer/3.0.0:
+ /w3c-xmlserializer@3.0.0:
resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==}
engines: {node: '>=12'}
dependencies:
xml-name-validator: 4.0.0
dev: true
- /w3c-xmlserializer/4.0.0:
+ /w3c-xmlserializer@4.0.0:
resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
engines: {node: '>=14'}
dependencies:
xml-name-validator: 4.0.0
dev: true
- /walker/1.0.8:
+ /walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
makeerror: 1.0.12
- /watchpack/2.4.0:
+ /watchpack@2.4.0:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.10
- /wbuf/1.7.3:
+ /wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
- /wcwidth/1.0.1:
+ /wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.4
- /web-streams-polyfill/3.2.1:
+ /web-streams-polyfill@3.2.1:
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
dev: false
- /web-streams-polyfill/4.0.0-beta.3:
+ /web-streams-polyfill@4.0.0-beta.3:
resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==}
engines: {node: '>= 14'}
dev: false
- /webcrypto-core/1.7.6:
+ /webcrypto-core@1.7.6:
resolution: {integrity: sha512-TBPiewB4Buw+HI3EQW+Bexm19/W4cP/qZG/02QJCXN+iN+T5sl074vZ3rJcle/ZtDBQSgjkbsQO/1eFcxnSBUA==}
dependencies:
'@peculiar/asn1-schema': 2.3.3
@@ -16646,15 +16298,15 @@ packages:
tslib: 2.5.0
dev: false
- /webidl-conversions/3.0.1:
+ /webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- /webidl-conversions/7.0.0:
+ /webidl-conversions@7.0.0:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
dev: true
- /webpack-dev-middleware/5.3.3_webpack@5.76.0:
+ /webpack-dev-middleware@5.3.3(webpack@5.76.0):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -16665,9 +16317,9 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.0.0
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /webpack-dev-server/4.11.1_webpack@5.76.0:
+ /webpack-dev-server@4.11.1(webpack@5.76.0):
resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==}
engines: {node: '>= 12.13.0'}
hasBin: true
@@ -16695,7 +16347,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.17
+ http-proxy-middleware: 2.0.6(@types/express@4.17.17)
ipaddr.js: 2.0.1
open: 8.4.2
p-retry: 4.6.2
@@ -16705,8 +16357,8 @@ packages:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.76.0_@swc+core@1.3.42
- webpack-dev-middleware: 5.3.3_webpack@5.76.0
+ webpack: 5.76.0(@swc/core@1.3.42)
+ webpack-dev-middleware: 5.3.3(webpack@5.76.0)
ws: 8.13.0
transitivePeerDependencies:
- bufferutil
@@ -16714,22 +16366,22 @@ packages:
- supports-color
- utf-8-validate
- /webpack-merge/5.8.0:
+ /webpack-merge@5.8.0:
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
engines: {node: '>=10.0.0'}
dependencies:
clone-deep: 4.0.1
wildcard: 2.0.0
- /webpack-node-externals/3.0.0:
+ /webpack-node-externals@3.0.0:
resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==}
engines: {node: '>=6'}
- /webpack-sources/3.2.3:
+ /webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- /webpack-subresource-integrity/5.1.0_webpack@5.76.0:
+ /webpack-subresource-integrity@5.1.0(webpack@5.76.0):
resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==}
engines: {node: '>= 12'}
peerDependencies:
@@ -16740,9 +16392,9 @@ packages:
optional: true
dependencies:
typed-assert: 1.0.9
- webpack: 5.76.0_@swc+core@1.3.42
+ webpack: 5.76.0(@swc/core@1.3.42)
- /webpack/5.76.0_@swc+core@1.3.42:
+ /webpack@5.76.0(@swc/core@1.3.42):
resolution: {integrity: sha512-l5sOdYBDunyf72HW8dF23rFtWq/7Zgvt/9ftMof71E/yUb1YLOBmTgA2K4vQthB3kotMrSj609txVE0dnr2fjA==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -16758,7 +16410,7 @@ packages:
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.8.2
- acorn-import-assertions: 1.8.0_acorn@8.8.2
+ acorn-import-assertions: 1.8.0(acorn@8.8.2)
browserslist: 4.21.5
chrome-trace-event: 1.0.3
enhanced-resolve: 5.12.0
@@ -16773,7 +16425,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.3.7_dpvlzh65cpfi2dmf4cqga3th74
+ terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -16781,7 +16433,7 @@ packages:
- esbuild
- uglify-js
- /websocket-driver/0.7.4:
+ /websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
dependencies:
@@ -16789,27 +16441,27 @@ packages:
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
- /websocket-extensions/0.1.4:
+ /websocket-extensions@0.1.4:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
- /whatwg-encoding/2.0.0:
+ /whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
dependencies:
iconv-lite: 0.6.3
dev: true
- /whatwg-fetch/3.6.2:
+ /whatwg-fetch@3.6.2:
resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==}
dev: false
- /whatwg-mimetype/3.0.0:
+ /whatwg-mimetype@3.0.0:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
engines: {node: '>=12'}
dev: true
- /whatwg-url/10.0.0:
+ /whatwg-url@10.0.0:
resolution: {integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==}
engines: {node: '>=12'}
dependencies:
@@ -16817,7 +16469,7 @@ packages:
webidl-conversions: 7.0.0
dev: true
- /whatwg-url/11.0.0:
+ /whatwg-url@11.0.0:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
dependencies:
@@ -16825,13 +16477,13 @@ packages:
webidl-conversions: 7.0.0
dev: true
- /whatwg-url/5.0.0:
+ /whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- /which-boxed-primitive/1.0.2:
+ /which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
is-bigint: 1.0.4
@@ -16840,7 +16492,7 @@ packages:
is-string: 1.0.7
is-symbol: 1.0.4
- /which-collection/1.0.1:
+ /which-collection@1.0.1:
resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
dependencies:
is-map: 2.0.2
@@ -16848,10 +16500,10 @@ packages:
is-weakmap: 2.0.1
is-weakset: 2.0.2
- /which-module/2.0.0:
+ /which-module@2.0.0:
resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==}
- /which-pm/2.0.0:
+ /which-pm@2.0.0:
resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==}
engines: {node: '>=8.15'}
dependencies:
@@ -16859,7 +16511,7 @@ packages:
path-exists: 4.0.0
dev: true
- /which-typed-array/1.1.9:
+ /which-typed-array@1.1.9:
resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -16870,28 +16522,28 @@ packages:
has-tostringtag: 1.0.0
is-typed-array: 1.1.10
- /which/1.3.1:
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
dependencies:
isexe: 2.0.0
dev: true
- /which/2.0.2:
+ /which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
- /wildcard/2.0.0:
+ /wildcard@2.0.0:
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
- /word-wrap/1.2.3:
+ /word-wrap@1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
- /wrap-ansi/6.2.0:
+ /wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
dependencies:
@@ -16899,7 +16551,7 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -16907,17 +16559,17 @@ packages:
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /write-file-atomic/4.0.2:
+ /write-file-atomic@4.0.2:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
dependencies:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- /ws/8.12.1:
+ /ws@8.12.1:
resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -16930,7 +16582,7 @@ packages:
optional: true
dev: false
- /ws/8.13.0:
+ /ws@8.13.0:
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -16942,62 +16594,62 @@ packages:
utf-8-validate:
optional: true
- /xml-name-validator/4.0.0:
+ /xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
dev: true
- /xmlchars/2.2.0:
+ /xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
- /y18n/4.0.3:
+ /y18n@4.0.3:
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
- /y18n/5.0.8:
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
- /yallist/2.1.2:
+ /yallist@2.1.2:
resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
dev: true
- /yallist/3.1.1:
+ /yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- /yallist/4.0.0:
+ /yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml-ast-parser/0.0.43:
+ /yaml-ast-parser@0.0.43:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
dev: false
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- /yaml/2.2.1:
+ /yaml@2.2.1:
resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==}
engines: {node: '>= 14'}
dev: true
- /yargs-parser/18.1.3:
+ /yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
engines: {node: '>=6'}
dependencies:
camelcase: 5.3.1
decamelize: 1.2.0
- /yargs-parser/20.2.9:
+ /yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: true
- /yargs-parser/21.1.1:
+ /yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- /yargs/15.4.1:
+ /yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
dependencies:
@@ -17013,7 +16665,7 @@ packages:
y18n: 4.0.3
yargs-parser: 18.1.3
- /yargs/17.7.1:
+ /yargs@17.7.1:
resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
engines: {node: '>=12'}
dependencies:
@@ -17025,21 +16677,21 @@ packages:
y18n: 5.0.8
yargs-parser: 21.1.1
- /yauzl/2.10.0:
+ /yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
- /yn/3.1.1:
+ /yn@3.1.1:
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
engines: {node: '>=6'}
- /yocto-queue/0.1.0:
+ /yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- /z-schema/5.0.5:
+ /z-schema@5.0.5:
resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
engines: {node: '>=8.0.0'}
hasBin: true
From b1917d3ac75850e7f17b2f26c4bf821b6f110603 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Wed, 29 Mar 2023 22:34:02 +0100
Subject: [PATCH 04/20] ci: fix build artifact
---
.github/workflows/__build.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/__build.yml b/.github/workflows/__build.yml
index a628107a..2836766d 100644
--- a/.github/workflows/__build.yml
+++ b/.github/workflows/__build.yml
@@ -85,7 +85,7 @@ jobs:
--configuration=production
- name: Create build artifact tar
- if: inputs.node_version == 'lts'
+ if: inputs.node_version == 'lts/*'
shell: bash
run: |
cd dist/packages
@@ -94,7 +94,7 @@ jobs:
- name: Upload build artifact
uses: actions/upload-artifact@v3
- if: inputs.node_version == 'lts'
+ if: inputs.node_version == 'lts/*'
with:
name: nx-mesh
retention-days: 2
From 66e5107304435ec986416e464432f56f2218f0d3 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Fri, 31 Mar 2023 21:47:19 +0100
Subject: [PATCH 05/20] refactor(nx-mesh): switch vite to esbuild
---
package.json | 1 +
packages/nx-mesh/executors.json | 4 +-
packages/nx-mesh/migrations.json | 2 +-
packages/nx-mesh/package.json | 5 +-
packages/nx-mesh/project.json | 125 ++++++++++++++----
packages/nx-mesh/src/executors/build/index.ts | 3 -
packages/nx-mesh/src/executors/index.ts | 7 -
.../{index.ts__tmpl__ => index.__tmpl__ts} | 0
.../lib/{sdk.ts__tmpl__ => sdk.__tmpl__ts} | 0
packages/nx-mesh/src/generators/index.ts | 5 +-
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
...{codegen.ts__tmpl__ => codegen.__tmpl__ts} | 0
.../{client.ts__tmpl__ => client.__tmpl__ts} | 0
packages/nx-mesh/src/index.ts | 1 -
.../4.0.0/rename-swcrc-config/index.ts | 1 +
packages/nx-mesh/src/utils/watcher/watcher.ts | 2 +-
packages/nx-mesh/tsconfig.lib.json | 9 +-
packages/nx-mesh/vite.config.ts | 110 ---------------
pnpm-lock.yaml | 31 +++++
32 files changed, 143 insertions(+), 163 deletions(-)
delete mode 100644 packages/nx-mesh/src/executors/build/index.ts
delete mode 100644 packages/nx-mesh/src/executors/index.ts
rename packages/nx-mesh/src/generators/base/files/lib/src/{index.ts__tmpl__ => index.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/base/files/lib/src/lib/{sdk.ts__tmpl__ => sdk.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/{codegen.ts__tmpl__ => codegen.__tmpl__ts} (100%)
rename packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/src/lib/{client.ts__tmpl__ => client.__tmpl__ts} (100%)
create mode 100644 packages/nx-mesh/src/migrations/4.0.0/rename-swcrc-config/index.ts
delete mode 100644 packages/nx-mesh/vite.config.ts
diff --git a/package.json b/package.json
index f09caf5f..4e33f209 100644
--- a/package.json
+++ b/package.json
@@ -37,6 +37,7 @@
"@graphql-mesh/soap": "0.17.20",
"@graphql-typed-document-node/core": "3.1.2",
"@nrwl/devkit": "15.7.1",
+ "@nrwl/esbuild": "15.7.1",
"@nrwl/next": "15.7.1",
"@swc/helpers": "0.4.14",
"fs-extra": "10.1.0",
diff --git a/packages/nx-mesh/executors.json b/packages/nx-mesh/executors.json
index 5e524ab2..1d2d2ec8 100644
--- a/packages/nx-mesh/executors.json
+++ b/packages/nx-mesh/executors.json
@@ -2,10 +2,10 @@
"$schema": "http://json-schema.org/schema",
"executors": {
"dev": {
- "implementation": "./src/executors/dev/executor",
+ "implementation": "./src/executors/dev/dev",
"schema": "./src/executors/dev/schema.json",
"description": "Serves a GraphQL server with GraphQL interface by building artifacts on the fly",
- "hasher": "./src/executors/validate/hasher"
+ "hasher": "./src/executors/dev/hasher"
},
"build": {
"implementation": "./src/executors/build/build",
diff --git a/packages/nx-mesh/migrations.json b/packages/nx-mesh/migrations.json
index bd242caa..b79327a4 100644
--- a/packages/nx-mesh/migrations.json
+++ b/packages/nx-mesh/migrations.json
@@ -4,7 +4,7 @@
"version": "4.0.0",
"description": "Rename .lib.swcrc to .swcrc for better SWC support throughout the workspace",
"cli": "nx",
- "implementation": "./src/migrations/4.0.0/rename-swcrc-config/rename-swcrc-config"
+ "implementation": "./src/migrations/4.0.0/rename-swcrc-config"
}
}
}
diff --git a/packages/nx-mesh/package.json b/packages/nx-mesh/package.json
index 20a76c80..50d39088 100644
--- a/packages/nx-mesh/package.json
+++ b/packages/nx-mesh/package.json
@@ -31,7 +31,10 @@
"CLI",
"GraphQL",
"GraphQL-Mesh",
- "Mesh"
+ "Mesh",
+ "Nx",
+ "nx-plugin",
+ "plugin"
],
"bugs": {
"url": "git://github.com/domjtalbot/nx-mesh/issues"
diff --git a/packages/nx-mesh/project.json b/packages/nx-mesh/project.json
index f27829fb..1e1e4b0a 100644
--- a/packages/nx-mesh/project.json
+++ b/packages/nx-mesh/project.json
@@ -5,51 +5,126 @@
"projectType": "library",
"targets": {
"build": {
- "executor": "@nrwl/vite:build",
- "outputs": ["{options.outputPath}"],
+ "executor": "nx:run-commands",
"options": {
- "outputPath": "dist/packages/nx-mesh"
- }
+ "command": "rm -rf dist/packages/nx-mesh/node_modules dist/packages/nx-mesh/src/package.json"
+ },
+ "dependsOn": ["build-bundle"]
},
- "build-swc": {
- "executor": "@nrwl/js:swc",
- "outputs": ["{options.outputPath}"],
+ "build-bundle": {
+ "executor": "@nrwl/esbuild:esbuild",
+ "outputs": ["dist/packages/nx-mesh"],
"options": {
- "outputPath": "dist/packages/nx-mesh",
+ "outputPath": "dist/packages/nx-mesh/src",
"main": "packages/nx-mesh/src/index.ts",
"tsConfig": "packages/nx-mesh/tsconfig.lib.json",
- "updateBuildableProjectDepsInPackageJson": false,
+ "deleteOutputPath": false,
+ "format": ["esm", "cjs"],
+ "minify": true,
+ "additionalEntryPoints": [
+ "packages/nx-mesh/src/executors/build-gateway/build-gateway.ts",
+ "packages/nx-mesh/src/executors/build-gateway/hasher.ts",
+ "packages/nx-mesh/src/executors/build-swc/build-swc.ts",
+ "packages/nx-mesh/src/executors/build-swc/hasher.ts",
+ "packages/nx-mesh/src/executors/build/build.ts",
+ "packages/nx-mesh/src/executors/build/hasher.ts",
+ "packages/nx-mesh/src/executors/dev/dev.ts",
+ "packages/nx-mesh/src/executors/dev/hasher.ts",
+ "packages/nx-mesh/src/executors/serve/serve.ts",
+ "packages/nx-mesh/src/executors/serve/hasher.ts",
+ "packages/nx-mesh/src/executors/start/start.ts",
+ "packages/nx-mesh/src/executors/start/hasher.ts",
+ "packages/nx-mesh/src/executors/validate/validate.ts",
+ "packages/nx-mesh/src/executors/validate/hasher.ts",
+ "packages/nx-mesh/src/migrations/4.0.0/rename-swcrc-config"
+ ],
+ "external": [
+ "@graphql-mesh/cli",
+ "@nrwl/cypress",
+ "@nrwl/devkit",
+ "@nrwl/js",
+ "@nrwl/linter",
+ "@nrwl/node",
+ "@nrwl/workspace",
+ "@swc-node/register",
+ "@swc/core",
+ "@swc/helpers",
+ "graphql",
+ "nx",
+ "tslib"
+ ],
"assets": [
- "README.md",
- "CHANGELOG.md",
- "LICENSE",
- "packages/nx-mesh/*.md",
{
- "input": "./packages/nx-mesh/src",
- "glob": "**/!(*.ts)",
- "output": "./src"
+ "input": ".",
+ "glob": "(README.md|CHANGELOG.md|LICENSE)",
+ "output": "../"
},
{
- "input": "./packages/nx-mesh/src",
- "glob": "**/*.d.ts",
- "output": "./src"
+ "input": "packages/nx-mesh",
+ "glob": "*.md",
+ "output": "../"
},
{
- "input": "./packages/nx-mesh",
- "glob": "generators.json",
+ "input": "./packages/nx-mesh/src",
+ "glob": "**/!(*.ts|*.snap)",
"output": "."
},
{
- "input": "./packages/nx-mesh",
- "glob": "executors.json",
+ "input": "./packages/nx-mesh/src",
+ "glob": "**/*.d.ts",
"output": "."
},
{
"input": "./packages/nx-mesh",
- "glob": "migrations.json",
- "output": "."
+ "glob": "(generators|executors|migrations|package).json",
+ "output": "../"
}
]
+ },
+ "dependsOn": ["build-non-bundle-cleanup"]
+ },
+ "build-non-bundle-cleanup": {
+ "executor": "nx:run-commands",
+ "options": {
+ "command": "rm -rf dist/packages/nx-mesh/node_modules dist/packages/nx-mesh/src/executors dist/packages/nx-mesh/src/migrations dist/packages/nx-mesh/src/index.js dist/packages/nx-mesh/src/index.cjs"
+ },
+ "dependsOn": ["build-non-bundle"]
+ },
+ "build-non-bundle": {
+ "executor": "@nrwl/esbuild:esbuild",
+ "outputs": [
+ "dist/packages/nx-mesh/generators",
+ "dist/packages/nx-mesh/utils"
+ ],
+ "options": {
+ "outputPath": "dist/packages/nx-mesh",
+ "main": "packages/nx-mesh/src/generators/index.ts",
+ "tsConfig": "packages/nx-mesh/tsconfig.lib.json",
+ "bundle": false,
+ "format": ["esm", "cjs"],
+ "minify": true,
+ "deleteOutputPath": false,
+ "additionalEntryPoints": [
+ "packages/nx-mesh/src/generators/application/index.ts",
+ "packages/nx-mesh/src/generators/base/index.ts",
+ "packages/nx-mesh/src/generators/preset/index.ts",
+ "packages/nx-mesh/src/generators/sdk/index.ts"
+ ],
+ "external": [
+ "@graphql-mesh/cli",
+ "@nrwl/cypress",
+ "@nrwl/devkit",
+ "@nrwl/js",
+ "@nrwl/linter",
+ "@nrwl/node",
+ "@nrwl/workspace",
+ "@swc-node/register",
+ "@swc/core",
+ "@swc/helpers",
+ "graphql",
+ "nx",
+ "tslib"
+ ]
}
},
"lint": {
diff --git a/packages/nx-mesh/src/executors/build/index.ts b/packages/nx-mesh/src/executors/build/index.ts
deleted file mode 100644
index f168df6f..00000000
--- a/packages/nx-mesh/src/executors/build/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export * from './build';
-export * from './hasher';
-export * from './schema';
diff --git a/packages/nx-mesh/src/executors/index.ts b/packages/nx-mesh/src/executors/index.ts
deleted file mode 100644
index e101d6da..00000000
--- a/packages/nx-mesh/src/executors/index.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-export * from './build';
-export * from './build-gateway';
-export * from './build-swc';
-export * from './dev';
-export * from './serve';
-export * from './start';
-export * from './validate';
diff --git a/packages/nx-mesh/src/generators/base/files/lib/src/index.ts__tmpl__ b/packages/nx-mesh/src/generators/base/files/lib/src/index.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/base/files/lib/src/index.ts__tmpl__
rename to packages/nx-mesh/src/generators/base/files/lib/src/index.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/base/files/lib/src/lib/sdk.ts__tmpl__ b/packages/nx-mesh/src/generators/base/files/lib/src/lib/sdk.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/base/files/lib/src/lib/sdk.ts__tmpl__
rename to packages/nx-mesh/src/generators/base/files/lib/src/lib/sdk.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/index.ts b/packages/nx-mesh/src/generators/index.ts
index 2afeaed8..ff8b4c56 100644
--- a/packages/nx-mesh/src/generators/index.ts
+++ b/packages/nx-mesh/src/generators/index.ts
@@ -1,4 +1 @@
-export * from './application';
-export * from './base';
-export * from './preset';
-export * from './sdk';
+export default {};
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/country-info/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/fake-api/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/javascript-wiki/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/movies/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/rfam/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/stackexchange/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/star-wars/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/codegen.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/codegen.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/codegen.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/codegen.__tmpl__ts
diff --git a/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/src/lib/client.ts__tmpl__ b/packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/src/lib/client.__tmpl__ts
similarity index 100%
rename from packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/src/lib/client.ts__tmpl__
rename to packages/nx-mesh/src/generators/utils/create-mesh-example/examples/trippin/codegen/src/lib/client.__tmpl__ts
diff --git a/packages/nx-mesh/src/index.ts b/packages/nx-mesh/src/index.ts
index 69bcd47a..04bca77e 100644
--- a/packages/nx-mesh/src/index.ts
+++ b/packages/nx-mesh/src/index.ts
@@ -1,2 +1 @@
-export * from './executors';
export * from './utils';
diff --git a/packages/nx-mesh/src/migrations/4.0.0/rename-swcrc-config/index.ts b/packages/nx-mesh/src/migrations/4.0.0/rename-swcrc-config/index.ts
new file mode 100644
index 00000000..0e3479e6
--- /dev/null
+++ b/packages/nx-mesh/src/migrations/4.0.0/rename-swcrc-config/index.ts
@@ -0,0 +1 @@
+export * from './rename-swcrc-config';
diff --git a/packages/nx-mesh/src/utils/watcher/watcher.ts b/packages/nx-mesh/src/utils/watcher/watcher.ts
index 5a01c4fc..b9f2633c 100644
--- a/packages/nx-mesh/src/utils/watcher/watcher.ts
+++ b/packages/nx-mesh/src/utils/watcher/watcher.ts
@@ -1,7 +1,7 @@
import type { WatcherOptions } from 'watchpack';
import { logger } from '@nrwl/devkit';
-import Watchpack = require('watchpack');
+import Watchpack from 'watchpack';
export type WatchFunc = () => Promise;
diff --git a/packages/nx-mesh/tsconfig.lib.json b/packages/nx-mesh/tsconfig.lib.json
index 7a80b457..7bfc80f7 100644
--- a/packages/nx-mesh/tsconfig.lib.json
+++ b/packages/nx-mesh/tsconfig.lib.json
@@ -5,13 +5,6 @@
"declaration": true,
"types": ["node"]
},
- "include": [
- "**/*.ts",
- "src/generators/sdk/files/src/lib/sdk.ts__tmpl__",
- "src/generators/sdk/files/src/index.ts__tmpl__",
- "src/generators/base/files/lib/src/index.ts__tmpl__",
- "src/generators/base/files/lib/lib/sdk.ts__tmpl__",
- "src/generators/utils/create-mesh-example/examples/star-wars/codegen/codegen.ts__tmpl__"
- ],
+ "include": ["**/*.ts"],
"exclude": ["jest.config.ts", "**/*.spec.ts", "**/*.test.ts"]
}
diff --git a/packages/nx-mesh/vite.config.ts b/packages/nx-mesh/vite.config.ts
deleted file mode 100644
index 3734eb90..00000000
--- a/packages/nx-mesh/vite.config.ts
+++ /dev/null
@@ -1,110 +0,0 @@
-///
-
-import { join } from 'node:path';
-import { defineConfig } from 'vite';
-import { viteStaticCopy } from 'vite-plugin-static-copy';
-import viteTsConfigPaths from 'vite-tsconfig-paths';
-import dts from 'vite-plugin-dts';
-
-export default defineConfig({
- cacheDir: '../../node_modules/.vite/test',
-
- plugins: [
- dts({
- entryRoot: 'src',
- tsConfigFilePath: join(__dirname, 'tsconfig.lib.json'),
- skipDiagnostics: true,
- }),
-
- viteTsConfigPaths({
- root: '../../',
- }),
-
- viteStaticCopy({
- targets: [
- {
- src: '../../README.md',
- dest: '.',
- },
- {
- src: '../../LICENSE',
- dest: '.',
- },
- {
- src: '*.md',
- dest: '.',
- },
- {
- src: 'executors.json',
- dest: '.',
- },
- {
- src: 'generators.json',
- dest: '.',
- },
- {
- src: 'migrations.json',
- dest: '.',
- },
- ],
- }),
- ],
-
- // Uncomment this if you are using workers.
- // worker: {
- // plugins: [
- // viteTsConfigPaths({
- // root: '../../',
- // }),
- // ],
- // },
-
- // Configuration for building your library.
- // See: https://vitejs.dev/guide/build.html#library-mode
- build: {
- lib: {
- // Could also be a dictionary or array of multiple entry points.
- entry: ['src/index.ts', 'src/'],
- name: 'nx-mesh',
- fileName: 'index',
- // Change this to the formats you want to support.
- // Don't forgot to update your package.json as well.
- formats: ['es', 'cjs'],
- },
- rollupOptions: {
- // External packages that should not be bundled into your library.
- external: [
- '@graphql-mesh/cli',
- '@nrwl/cypress',
- '@nrwl/devkit',
- '@nrwl/devkit/src/utils/async-iterable',
- '@nrwl/js',
- '@nrwl/js/src/executors/tsc/tsc.impl',
- '@nrwl/js/src/utils/assets',
- '@nrwl/js/src/utils/check-dependencies',
- '@nrwl/js/src/utils/compiler-helper-dependency',
- '@nrwl/js/src/utils/inline',
- '@nrwl/js/src/utils/package-json',
- '@nrwl/js/src/utils/schema',
- '@nrwl/js/src/utils/schema',
- '@nrwl/js/src/utils/swc/get-swcrc-path',
- '@nrwl/js/src/utils/swc/inline',
- '@nrwl/js/src/utils/typescript/print-diagnostics',
- '@nrwl/js/src/utils/typescript/run-type-check',
- '@nrwl/linter',
- '@nrwl/node',
- '@nrwl/workspace',
- '@nrwl/workspace/src/utilities/assets',
- '@nrwl/workspace/src/utilities/fileutils',
- '@swc-node/register',
- '@swc/core',
- '@swc/helpers',
- 'graphql',
- 'node:child_process',
- 'node:fs/promises',
- 'node:path',
- 'nx',
- ],
- },
- },
-});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6a7daa87..32904d59 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -55,6 +55,9 @@ importers:
'@nrwl/devkit':
specifier: 15.7.1
version: 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/esbuild':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@nrwl/next':
specifier: 15.7.1
version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(cypress@12.7.0)(eslint@8.15.0)(next@13.1.1)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
@@ -4839,6 +4842,34 @@ packages:
- typescript
dev: false
+ /@nrwl/esbuild@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
+ resolution: {integrity: sha512-k+9uh6SwgYb1rHbO18LGoVKMZqNP/igcj/nLdOOuJJMqV3lYlLueWJ0xuH+MSpXbKUb0XxEcUUNEWysXrkP9FQ==}
+ peerDependencies:
+ esbuild: ~0.17.5
+ peerDependenciesMeta:
+ esbuild:
+ optional: true
+ dependencies:
+ '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
+ chalk: 4.1.2
+ dotenv: 10.0.0
+ fast-glob: 3.2.7
+ fs-extra: 11.1.0
+ tslib: 2.5.0
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+ - eslint
+ - nx
+ - prettier
+ - supports-color
+ - typescript
+ dev: false
+
/@nrwl/eslint-plugin-nx@15.7.1(@typescript-eslint/parser@5.56.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-6TGCf+SDWNO1Z/uyQaazqakb3iEUWKXUAUsXrZUWrdHca8/Ql9QQHNV6wbQ3ciT8zrV6TG0d9P+uAX97oORwQQ==}
peerDependencies:
From 5a7d0738211bf9b638aa97d604f38446c98ad9fe Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Fri, 31 Mar 2023 22:46:49 +0100
Subject: [PATCH 06/20] refactor(nx-mesh): cache build
---
nx.json | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/nx.json b/nx.json
index 6861b092..71127117 100644
--- a/nx.json
+++ b/nx.json
@@ -8,7 +8,14 @@
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
- "cacheableOperations": ["build", "lint", "test", "e2e"],
+ "cacheableOperations": [
+ "build",
+ "build-bundle",
+ "build-non-bundle",
+ "lint",
+ "test",
+ "e2e"
+ ],
"accessToken": "NzExMGIxYWUtZjdkYy00MjRjLWI5NjItMjlkYmU0OWRjNWY2fHJlYWQ="
}
}
From 8c62447310fc33ff5baefd7a0946970937416f53 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 11:24:20 +0100
Subject: [PATCH 07/20] build(nx-mesh): use swc to compile non-bundle assets
---
packages/nx-mesh/project.json | 30 +++---------------------------
1 file changed, 3 insertions(+), 27 deletions(-)
diff --git a/packages/nx-mesh/project.json b/packages/nx-mesh/project.json
index 1e1e4b0a..45fbc6c3 100644
--- a/packages/nx-mesh/project.json
+++ b/packages/nx-mesh/project.json
@@ -21,6 +21,7 @@
"deleteOutputPath": false,
"format": ["esm", "cjs"],
"minify": true,
+ "sourcemap": true,
"additionalEntryPoints": [
"packages/nx-mesh/src/executors/build-gateway/build-gateway.ts",
"packages/nx-mesh/src/executors/build-gateway/hasher.ts",
@@ -91,7 +92,7 @@
"dependsOn": ["build-non-bundle"]
},
"build-non-bundle": {
- "executor": "@nrwl/esbuild:esbuild",
+ "executor": "@nrwl/js:swc",
"outputs": [
"dist/packages/nx-mesh/generators",
"dist/packages/nx-mesh/utils"
@@ -99,32 +100,7 @@
"options": {
"outputPath": "dist/packages/nx-mesh",
"main": "packages/nx-mesh/src/generators/index.ts",
- "tsConfig": "packages/nx-mesh/tsconfig.lib.json",
- "bundle": false,
- "format": ["esm", "cjs"],
- "minify": true,
- "deleteOutputPath": false,
- "additionalEntryPoints": [
- "packages/nx-mesh/src/generators/application/index.ts",
- "packages/nx-mesh/src/generators/base/index.ts",
- "packages/nx-mesh/src/generators/preset/index.ts",
- "packages/nx-mesh/src/generators/sdk/index.ts"
- ],
- "external": [
- "@graphql-mesh/cli",
- "@nrwl/cypress",
- "@nrwl/devkit",
- "@nrwl/js",
- "@nrwl/linter",
- "@nrwl/node",
- "@nrwl/workspace",
- "@swc-node/register",
- "@swc/core",
- "@swc/helpers",
- "graphql",
- "nx",
- "tslib"
- ]
+ "tsConfig": "packages/nx-mesh/tsconfig.lib.json"
}
},
"lint": {
From f5ad9235745632fda9cd6d1da65147ae04c2f0e3 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 12:03:40 +0100
Subject: [PATCH 08/20] build(nx-mesh): bundle tslib
---
packages/nx-mesh/project.json | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/packages/nx-mesh/project.json b/packages/nx-mesh/project.json
index 45fbc6c3..f513bd83 100644
--- a/packages/nx-mesh/project.json
+++ b/packages/nx-mesh/project.json
@@ -51,8 +51,7 @@
"@swc/core",
"@swc/helpers",
"graphql",
- "nx",
- "tslib"
+ "nx"
],
"assets": [
{
From 8fca25abc44dbd4250053117dbee5e49b96164cc Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 12:04:43 +0100
Subject: [PATCH 09/20] ci: add 'delete-cache' workflow
---
.github/workflows/delete-cache.yml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 .github/workflows/delete-cache.yml
diff --git a/.github/workflows/delete-cache.yml b/.github/workflows/delete-cache.yml
new file mode 100644
index 00000000..bad7b4ad
--- /dev/null
+++ b/.github/workflows/delete-cache.yml
@@ -0,0 +1,26 @@
+name: 'Main'
+
+on:
+ pull_request:
+ types: [closed]
+
+ workflow_dispatch:
+ inputs:
+ branch:
+ type: string
+ required: false
+ default: 'main'
+ description: >
+ The branch to clear cache for.
+
+env:
+ branch: ${{ github.event.number || inputs.branch || 'latest' }}
+
+jobs:
+ delete:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: snnaplab/delete-branch-cache-action@v1
+ with:
+ # Specify explicitly because the ref at the time of merging will be a branch name such as 'main', 'develop'
+ ref: refs/pull/${{ env.branch }}/merge
From 3a2028b48910fde84fd5d46750ce31a988149a9d Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 12:05:23 +0100
Subject: [PATCH 10/20] ci: rename delete-cache workflow
---
.github/workflows/delete-cache.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/delete-cache.yml b/.github/workflows/delete-cache.yml
index bad7b4ad..ca747222 100644
--- a/.github/workflows/delete-cache.yml
+++ b/.github/workflows/delete-cache.yml
@@ -1,4 +1,4 @@
-name: 'Main'
+name: 'Delete Cache'
on:
pull_request:
From b34d612901c9ff1a24e5ab4b518b8e133b9aa18e Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 12:19:54 +0100
Subject: [PATCH 11/20] ci: generators fail fast
---
.github/workflows/__generators.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/__generators.yml b/.github/workflows/__generators.yml
index 0c184a90..4e1cf004 100644
--- a/.github/workflows/__generators.yml
+++ b/.github/workflows/__generators.yml
@@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
- fail-fast: false
+ fail-fast: true
matrix:
type: [application, sdk, preset]
example: ${{fromJson(inputs.examples)}}
From 520b2ae3c92a25d328302699b2ab0dcab862a572 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 12:25:28 +0100
Subject: [PATCH 12/20] ci: generators report nx versions
---
.github/workflows/__generators.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/__generators.yml b/.github/workflows/__generators.yml
index 4e1cf004..57c55b8b 100644
--- a/.github/workflows/__generators.yml
+++ b/.github/workflows/__generators.yml
@@ -99,7 +99,9 @@ jobs:
--style=css \
--skipGit
cd generator
+ pnpm nx report
pnpm add ../nx-mesh/nx-mesh.tar.gz
+ pnpm nx report
pnpm exec nx generate nx-mesh:${{ matrix.type }} \
${{ matrix.example }} \
--example=${{ matrix.example }} \
From 5c1c169743c289485fbae30a8f6ec9f330b273d0 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 12:56:34 +0100
Subject: [PATCH 13/20] ci: add resolutions to generators
---
.github/workflows/__generators.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.github/workflows/__generators.yml b/.github/workflows/__generators.yml
index 57c55b8b..ff5b22c1 100644
--- a/.github/workflows/__generators.yml
+++ b/.github/workflows/__generators.yml
@@ -100,6 +100,11 @@ jobs:
--skipGit
cd generator
pnpm nx report
+ npm pkg set "pnpm.overrides.@nrwl/cypress"="${{ matrix.nx_version }}"
+ npm pkg set "pnpm.overrides.@nrwl/jest"="${{ matrix.nx_version }}"
+ npm pkg set "pnpm.overrides.@nrwl/js"="${{ matrix.nx_version }}"
+ npm pkg set "pnpm.overrides.@nrwl/node"="${{ matrix.nx_version }}"
+ npm pkg set "pnpm.overrides.@nrwl/webpack"="${{ matrix.nx_version }}"
pnpm add ../nx-mesh/nx-mesh.tar.gz
pnpm nx report
pnpm exec nx generate nx-mesh:${{ matrix.type }} \
From 2d4e79aa5d0418e80cb67d9758fdb0690923ecfb Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 13:15:12 +0100
Subject: [PATCH 14/20] build: add package resolutions
---
package.json | 9 ++
pnpm-lock.yaml | 369 ++++++++++++++-----------------------------------
2 files changed, 110 insertions(+), 268 deletions(-)
diff --git a/package.json b/package.json
index 4e33f209..e775c798 100644
--- a/package.json
+++ b/package.json
@@ -116,5 +116,14 @@
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.2",
"vitest": "^0.25.8"
+ },
+ "pnpm": {
+ "overrides": {
+ "@nrwl/cypress": "15.7.1",
+ "@nrwl/jest": "15.7.1",
+ "@nrwl/js": "15.7.1",
+ "@nrwl/node": "15.7.1",
+ "@nrwl/webpack": "15.7.1"
+ }
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 32904d59..39b5c492 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,5 +1,12 @@
lockfileVersion: '6.0'
+overrides:
+ '@nrwl/cypress': 15.7.1
+ '@nrwl/jest': 15.7.1
+ '@nrwl/js': 15.7.1
+ '@nrwl/node': 15.7.1
+ '@nrwl/webpack': 15.7.1
+
importers:
.:
@@ -291,20 +298,20 @@ importers:
packages/nx-mesh:
dependencies:
'@nrwl/cypress':
- specifier: ^15.7.1
- version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@nrwl/devkit':
specifier: ^15.7.1
version: 15.8.5(nx@15.7.1)(typescript@4.8.4)
'@nrwl/js':
- specifier: ^15.7.1
- version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@nrwl/linter':
specifier: ^15.7.1
version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@nrwl/node':
- specifier: ^15.7.1
- version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
'@nrwl/workspace':
specifier: ^15.7.1
version: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
@@ -4132,7 +4139,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.15.0
+ '@types/node': 18.11.9
chalk: 4.1.2
jest-message-util: 28.1.3
jest-util: 28.1.3
@@ -4193,7 +4200,7 @@ packages:
dependencies:
'@jest/fake-timers': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
jest-mock: 28.1.3
/@jest/expect-utils@28.1.3:
@@ -4217,7 +4224,7 @@ packages:
dependencies:
'@jest/types': 28.1.3
'@sinonjs/fake-timers': 9.1.2
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
jest-message-util: 28.1.3
jest-mock: 28.1.3
jest-util: 28.1.3
@@ -4284,7 +4291,7 @@ packages:
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
'@jridgewell/trace-mapping': 0.3.17
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
@@ -4376,7 +4383,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
'@types/yargs': 16.0.5
chalk: 4.1.2
@@ -4768,35 +4775,21 @@ packages:
- prettier
- typescript
- /@nrwl/cypress@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
- resolution: {integrity: sha512-y9+mLL5Yw8RRaCBkdmFG8br39rYUPF03P3kx2AI7KbCs0e1kfPe6E7TaPOgdtEeSTvitjE9YeamFlWfOEHXp0A==}
+ /@nrwl/devkit@15.7.1(nx@15.7.1)(typescript@4.8.4):
+ resolution: {integrity: sha512-u+4iBukrvrSQbKktnAcEuFzthq5ZGLpjE+SYUgg5+H6R76U0uelupdJ14qTWzIbSjlWLG53YmRZsJaIJ9EUG/w==}
peerDependencies:
- cypress: '>= 3 < 13'
- peerDependenciesMeta:
- cypress:
- optional: true
+ nx: '>= 14.1 <= 16'
dependencies:
- '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
'@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
- cypress: 12.7.0
- dotenv: 10.0.0
+ ejs: 3.1.8
+ ignore: 5.2.4
+ nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
semver: 7.3.4
+ tslib: 2.5.0
transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - eslint
- - nx
- - prettier
- - supports-color
- typescript
- dev: false
- /@nrwl/devkit@15.7.1(nx@15.7.1)(typescript@4.8.4):
+ /@nrwl/devkit@15.7.1(nx@15.8.5)(typescript@4.8.4):
resolution: {integrity: sha512-u+4iBukrvrSQbKktnAcEuFzthq5ZGLpjE+SYUgg5+H6R76U0uelupdJ14qTWzIbSjlWLG53YmRZsJaIJ9EUG/w==}
peerDependencies:
nx: '>= 14.1 <= 16'
@@ -4804,11 +4797,12 @@ packages:
'@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
ejs: 3.1.8
ignore: 5.2.4
- nx: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)
+ nx: 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)
semver: 7.3.4
tslib: 2.5.0
transitivePeerDependencies:
- typescript
+ dev: false
/@nrwl/devkit@15.8.5(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==}
@@ -4916,37 +4910,6 @@ packages:
- ts-node
- typescript
- /@nrwl/jest@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4):
- resolution: {integrity: sha512-19je0KLYqQnjGvjt8CN4jBnGquRnNnRUnH948atIRjW0AyV1INeHxqtrYUJKaOx3m8snQCa01FqJvJjVjl1oAg==}
- dependencies:
- '@jest/reporters': 28.1.1
- '@jest/test-result': 28.1.1
- '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
- chalk: 4.1.2
- dotenv: 10.0.0
- identity-obj-proxy: 3.0.0
- jest-config: 28.1.1(@types/node@18.11.9)(ts-node@10.9.1)
- jest-resolve: 28.1.1
- jest-util: 28.1.1
- resolve.exports: 1.1.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - '@types/node'
- - debug
- - eslint
- - node-notifier
- - nx
- - prettier
- - supports-color
- - ts-node
- - typescript
- dev: false
-
/@nrwl/js@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-j5obLQoL+U4PwIDBMf4XqO8o/Fi4R/mr+9rQXSXHPKwLzbD7rrxw0N7Rq0vnRrpeAfTKX49e+JjGKwNZ31uMbA==}
dependencies:
@@ -4983,8 +4946,8 @@ packages:
- supports-color
- typescript
- /@nrwl/js@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
- resolution: {integrity: sha512-G9CADL++MQCAgiPTUuWs2YIGrhDKU92dVb39e37p/2WH75vEnMoYykW7nCHItGCGVa726INYBPjStqL6GxH8XQ==}
+ /@nrwl/js@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.8.5)(prettier@2.8.6)(typescript@4.8.4):
+ resolution: {integrity: sha512-j5obLQoL+U4PwIDBMf4XqO8o/Fi4R/mr+9rQXSXHPKwLzbD7rrxw0N7Rq0vnRrpeAfTKX49e+JjGKwNZ31uMbA==}
dependencies:
'@babel/core': 7.21.0
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0)
@@ -4993,9 +4956,9 @@ packages:
'@babel/preset-env': 7.20.2(@babel/core@7.21.0)
'@babel/preset-typescript': 7.21.0(@babel/core@7.21.0)
'@babel/runtime': 7.21.0
- '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
- '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
+ '@nrwl/devkit': 15.7.1(nx@15.8.5)(typescript@4.8.4)
+ '@nrwl/linter': 15.7.1(eslint@8.15.0)(nx@15.8.5)(typescript@4.8.4)
+ '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0)
babel-plugin-macros: 2.8.0
babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.0)
@@ -5037,6 +5000,24 @@ packages:
- nx
- typescript
+ /@nrwl/linter@15.7.1(eslint@8.15.0)(nx@15.8.5)(typescript@4.8.4):
+ resolution: {integrity: sha512-m0Wca+qEuiIecsl99TisDgW12wM69vcpF771eRAb3+Tis9YgUyLhRd1rmwhej+YeO7gBJlVI2AR84izZRSoguw==}
+ peerDependencies:
+ eslint: ^8.0.0
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ dependencies:
+ '@nrwl/devkit': 15.7.1(nx@15.8.5)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
+ eslint: 8.15.0
+ tmp: 0.2.1
+ tslib: 2.5.0
+ transitivePeerDependencies:
+ - nx
+ - typescript
+ dev: false
+
/@nrwl/linter@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==}
peerDependencies:
@@ -5046,7 +5027,32 @@ packages:
optional: true
dependencies:
'@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
+ eslint: 8.15.0
+ tmp: 0.2.1
+ tslib: 2.5.0
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
+ - nx
+ - prettier
+ - supports-color
+ - typescript
+ dev: false
+
+ /@nrwl/linter@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.8.5)(prettier@2.8.6)(typescript@4.8.4):
+ resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==}
+ peerDependencies:
+ eslint: ^8.0.0
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ dependencies:
+ '@nrwl/devkit': 15.8.5(nx@15.8.5)(typescript@4.8.4)
+ '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.8.5)(prettier@2.8.6)(typescript@4.8.4)
'@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
eslint: 8.15.0
tmp: 0.2.1
@@ -5157,47 +5163,6 @@ packages:
- utf-8-validate
- vue-template-compiler
- webpack-cli
- dev: true
-
- /@nrwl/node@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4):
- resolution: {integrity: sha512-d3SsuplX3/GS6oXnwc1u9aR3n4A9CXglqHCtRVppYATVTHvYS6NODjjwXonu7m/rnyXpirqueWQ9BbGvEej6tw==}
- dependencies:
- '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/jest': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(ts-node@10.9.1)(typescript@4.8.4)
- '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/webpack': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
- tslib: 2.5.0
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@parcel/css'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - bufferutil
- - clean-css
- - csso
- - debug
- - esbuild
- - eslint
- - fibers
- - html-webpack-plugin
- - node-notifier
- - node-sass
- - nx
- - prettier
- - sass-embedded
- - supports-color
- - ts-node
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- dev: false
/@nrwl/nx-cloud@15.2.1:
resolution: {integrity: sha512-T4ycGSx77TdvS0j6tKI/6zmh6YtsPHyfB2li+wDR+BW9wjGGqOTX1QvG3gf0k2enhA3dxLgYnmeDZoEUek6MOw==}
@@ -5530,77 +5495,6 @@ packages:
- vue-template-compiler
- webpack-cli
- /@nrwl/webpack@15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
- resolution: {integrity: sha512-oN0ZCK6Bak8w5YOpyBxQRNxGwNbq31XneRvKPb9gSs71eJZtqLr5wwANfOOHe4m43CgDayp+nVOCQMNhsdxNFg==}
- dependencies:
- '@nrwl/devkit': 15.8.5(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/js': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/workspace': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
- autoprefixer: 10.4.14(postcss@8.4.21)
- babel-loader: 9.1.2(webpack@5.76.0)
- chalk: 4.1.2
- chokidar: 3.5.3
- copy-webpack-plugin: 10.2.4(webpack@5.76.0)
- css-loader: 6.7.3(webpack@5.76.0)
- css-minimizer-webpack-plugin: 3.4.1(webpack@5.76.0)
- dotenv: 10.0.0
- file-loader: 6.2.0(webpack@5.76.0)
- fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.8.4)(webpack@5.76.0)
- ignore: 5.2.4
- less: 4.1.3
- less-loader: 11.1.0(less@4.1.3)(webpack@5.76.0)
- license-webpack-plugin: 4.0.2(webpack@5.76.0)
- loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7(webpack@5.76.0)
- parse5: 4.0.0
- postcss: 8.4.21
- postcss-import: 14.1.0(postcss@8.4.21)
- postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.76.0)
- rxjs: 6.6.7
- sass: 1.58.3
- sass-loader: 12.6.0(sass@1.58.3)(webpack@5.76.0)
- source-map-loader: 3.0.2(webpack@5.76.0)
- style-loader: 3.3.1(webpack@5.76.0)
- stylus: 0.55.0
- stylus-loader: 7.1.0(stylus@0.55.0)(webpack@5.76.0)
- terser-webpack-plugin: 5.3.7(@swc/core@1.3.42)(webpack@5.76.0)
- ts-loader: 9.4.2(typescript@4.8.4)(webpack@5.76.0)
- ts-node: 10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4)
- tsconfig-paths: 4.1.2
- tsconfig-paths-webpack-plugin: 4.0.0
- tslib: 2.5.0
- webpack: 5.76.0(@swc/core@1.3.42)
- webpack-dev-server: 4.11.1(webpack@5.76.0)
- webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0(webpack@5.76.0)
- transitivePeerDependencies:
- - '@babel/core'
- - '@babel/traverse'
- - '@parcel/css'
- - '@swc-node/register'
- - '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- - bufferutil
- - clean-css
- - csso
- - debug
- - esbuild
- - eslint
- - fibers
- - html-webpack-plugin
- - node-sass
- - nx
- - prettier
- - sass-embedded
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- dev: false
-
/@nrwl/workspace@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-vwqcPnlTdgQfWLdG9UkZqwXDQy1P/vENHzUlN1dKeml56Vdjf3LGFiHnJ3LdRYlBSfwPMQNZQHQz167laYw1eg==}
peerDependencies:
@@ -5650,7 +5544,7 @@ packages:
optional: true
dependencies:
'@nrwl/devkit': 15.8.5(nx@15.8.5)(typescript@4.8.4)
- '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/linter': 15.8.5(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.8.5)(prettier@2.8.6)(typescript@4.8.4)
'@parcel/watcher': 2.0.4
chalk: 4.1.2
chokidar: 3.5.3
@@ -6371,19 +6265,19 @@ packages:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/cacheable-request@6.0.3:
resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
dependencies:
'@types/http-cache-semantics': 4.0.1
'@types/keyv': 3.1.4
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
'@types/responselike': 1.0.0
dev: true
@@ -6401,12 +6295,12 @@ packages:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
'@types/express-serve-static-core': 4.17.33
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
@@ -6429,7 +6323,7 @@ packages:
/@types/express-serve-static-core@4.17.33:
resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
@@ -6466,7 +6360,7 @@ packages:
/@types/http-proxy@1.17.10:
resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/is-ci@3.0.0:
resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==}
@@ -6501,7 +6395,7 @@ packages:
/@types/jsdom@16.2.15:
resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
'@types/parse5': 6.0.3
'@types/tough-cookie': 4.0.2
dev: true
@@ -6520,7 +6414,7 @@ packages:
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
dev: true
/@types/mime@3.0.1:
@@ -6590,7 +6484,7 @@ packages:
/@types/responselike@1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
dev: true
/@types/retry@0.12.0:
@@ -6617,7 +6511,7 @@ packages:
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
dependencies:
'@types/mime': 3.0.1
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/sinonjs__fake-timers@8.1.1:
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
@@ -6628,7 +6522,7 @@ packages:
/@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
@@ -6659,7 +6553,7 @@ packages:
/@types/ws@8.5.4:
resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
/@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
@@ -6678,7 +6572,7 @@ packages:
resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
requiresBuild: true
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
optional: true
/@typescript-eslint/eslint-plugin@5.56.0(@typescript-eslint/parser@5.56.0)(eslint@8.15.0)(typescript@4.8.4):
@@ -8368,12 +8262,6 @@ packages:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
- /copy-anything@2.0.6:
- resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
- dependencies:
- is-what: 3.14.1
- dev: false
-
/copy-webpack-plugin@10.2.4(webpack@5.76.0):
resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==}
engines: {node: '>= 12.20.0'}
@@ -11227,10 +11115,6 @@ packages:
call-bind: 1.0.2
get-intrinsic: 1.2.0
- /is-what@3.14.1:
- resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
- dev: false
-
/is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
@@ -11349,7 +11233,7 @@ packages:
'@jest/expect': 28.1.3
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -11565,7 +11449,7 @@ packages:
'@jest/environment': 28.1.3
'@jest/fake-timers': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
jest-mock: 28.1.3
jest-util: 28.1.3
@@ -11579,7 +11463,7 @@ packages:
dependencies:
'@jest/types': 28.1.3
'@types/graceful-fs': 4.1.6
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.10
@@ -11626,7 +11510,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.15.0
+ '@types/node': 18.11.9
/jest-pnp-resolver@1.2.3(jest-resolve@28.1.1):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
@@ -11701,7 +11585,7 @@ packages:
'@jest/test-result': 28.1.3
'@jest/transform': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
chalk: 4.1.2
emittery: 0.10.2
graceful-fs: 4.2.10
@@ -11795,7 +11679,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.15.0
+ '@types/node': 18.11.9
chalk: 4.1.2
ci-info: 3.8.0
graceful-fs: 4.2.10
@@ -11818,7 +11702,7 @@ packages:
dependencies:
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.10.2
@@ -11829,7 +11713,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -11837,7 +11721,7 @@ packages:
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
- '@types/node': 18.15.0
+ '@types/node': 18.11.9
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -12215,18 +12099,6 @@ packages:
less: 3.12.2
webpack: 5.76.0(@swc/core@1.3.42)
- /less-loader@11.1.0(less@4.1.3)(webpack@5.76.0):
- resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==}
- engines: {node: '>= 14.15.0'}
- peerDependencies:
- less: ^3.5.0 || ^4.0.0
- webpack: ^5.0.0
- dependencies:
- klona: 2.0.6
- less: 4.1.3
- webpack: 5.76.0(@swc/core@1.3.42)
- dev: false
-
/less@3.12.2:
resolution: {integrity: sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==}
engines: {node: '>=6'}
@@ -12242,26 +12114,6 @@ packages:
native-request: 1.1.0
source-map: 0.6.1
- /less@4.1.3:
- resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==}
- engines: {node: '>=6'}
- hasBin: true
- dependencies:
- copy-anything: 2.0.6
- parse-node-version: 1.0.1
- tslib: 2.5.0
- optionalDependencies:
- errno: 0.1.8
- graceful-fs: 4.2.10
- image-size: 0.5.5
- make-dir: 2.1.0
- mime: 1.6.0
- needle: 3.2.0
- source-map: 0.6.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -12899,20 +12751,6 @@ packages:
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- /needle@3.2.0:
- resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==}
- engines: {node: '>= 4.4.x'}
- hasBin: true
- requiresBuild: true
- dependencies:
- debug: 3.2.7(supports-color@8.1.1)
- iconv-lite: 0.6.3
- sax: 1.2.4
- transitivePeerDependencies:
- - supports-color
- dev: false
- optional: true
-
/negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
@@ -13512,11 +13350,6 @@ packages:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- /parse-node-version@1.0.1:
- resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
- engines: {node: '>= 0.10'}
- dev: false
-
/parse5@4.0.0:
resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==}
From 2386a4131bc3a2943284a30251603dbf6e3ba028 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 13:21:27 +0100
Subject: [PATCH 15/20] build(nx-mesh): cjs only
---
packages/nx-mesh/{.lib.swcrc => .swcrc} | 0
packages/nx-mesh/jest.config.ts | 2 +-
packages/nx-mesh/project.json | 6 +++++-
3 files changed, 6 insertions(+), 2 deletions(-)
rename packages/nx-mesh/{.lib.swcrc => .swcrc} (100%)
diff --git a/packages/nx-mesh/.lib.swcrc b/packages/nx-mesh/.swcrc
similarity index 100%
rename from packages/nx-mesh/.lib.swcrc
rename to packages/nx-mesh/.swcrc
diff --git a/packages/nx-mesh/jest.config.ts b/packages/nx-mesh/jest.config.ts
index 63b976b2..da1f6bd9 100644
--- a/packages/nx-mesh/jest.config.ts
+++ b/packages/nx-mesh/jest.config.ts
@@ -1,7 +1,7 @@
/* eslint-disable */
import { readFileSync } from 'fs';
-const swcrc = JSON.parse(readFileSync(`${__dirname}/.lib.swcrc`, 'utf-8'));
+const swcrc = JSON.parse(readFileSync(`${__dirname}/.swcrc`, 'utf-8'));
// Reading the SWC compilation config and remove the "exclude"
// for the test files to be compiled by SWC
diff --git a/packages/nx-mesh/project.json b/packages/nx-mesh/project.json
index f513bd83..e2b8dc5b 100644
--- a/packages/nx-mesh/project.json
+++ b/packages/nx-mesh/project.json
@@ -19,8 +19,11 @@
"main": "packages/nx-mesh/src/index.ts",
"tsConfig": "packages/nx-mesh/tsconfig.lib.json",
"deleteOutputPath": false,
- "format": ["esm", "cjs"],
+ "format": ["cjs"],
"minify": true,
+ "esbuildOptions": {
+ "outExtension": { ".js": ".js" }
+ },
"sourcemap": true,
"additionalEntryPoints": [
"packages/nx-mesh/src/executors/build-gateway/build-gateway.ts",
@@ -98,6 +101,7 @@
],
"options": {
"outputPath": "dist/packages/nx-mesh",
+ "swcrc": "packages/nx-mesh/.swcrc",
"main": "packages/nx-mesh/src/generators/index.ts",
"tsConfig": "packages/nx-mesh/tsconfig.lib.json"
}
From d35e938de810eb138e00eb07a6a2435aeb4292dd Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 15:56:14 +0100
Subject: [PATCH 16/20] build(nx-mesh): fix swc config
---
packages/nx-mesh/.swcrc | 1 -
1 file changed, 1 deletion(-)
diff --git a/packages/nx-mesh/.swcrc b/packages/nx-mesh/.swcrc
index 7a509b07..fb42f4b0 100644
--- a/packages/nx-mesh/.swcrc
+++ b/packages/nx-mesh/.swcrc
@@ -21,7 +21,6 @@
},
"sourceMaps": true,
"exclude": [
- "node_modules",
"jest.config.ts",
".*\\.spec.tsx?$",
".*\\.test.tsx?$",
From 0590d4899d5cfb782c2f526b5e095054fb9f7432 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 16:33:39 +0100
Subject: [PATCH 17/20] build(nx-mesh): use tsc for non-bundle build
---
packages/nx-mesh/.swcrc | 31 -------------------------------
packages/nx-mesh/jest.config.ts | 25 ++++++-------------------
packages/nx-mesh/project.json | 3 +--
3 files changed, 7 insertions(+), 52 deletions(-)
delete mode 100644 packages/nx-mesh/.swcrc
diff --git a/packages/nx-mesh/.swcrc b/packages/nx-mesh/.swcrc
deleted file mode 100644
index fb42f4b0..00000000
--- a/packages/nx-mesh/.swcrc
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "jsc": {
- "target": "es2017",
- "parser": {
- "syntax": "typescript",
- "decorators": true,
- "dynamicImport": true
- },
- "transform": {
- "decoratorMetadata": true,
- "legacyDecorator": true
- },
- "keepClassNames": true,
- "externalHelpers": true,
- "loose": true
- },
- "module": {
- "type": "commonjs",
- "strict": true,
- "noInterop": true
- },
- "sourceMaps": true,
- "exclude": [
- "jest.config.ts",
- ".*\\.spec.tsx?$",
- ".*\\.test.tsx?$",
- "./src/jest-setup.ts$",
- "./**/jest-setup.ts$",
- ".*.js$"
- ]
-}
diff --git a/packages/nx-mesh/jest.config.ts b/packages/nx-mesh/jest.config.ts
index da1f6bd9..148b2efe 100644
--- a/packages/nx-mesh/jest.config.ts
+++ b/packages/nx-mesh/jest.config.ts
@@ -1,26 +1,13 @@
-/* eslint-disable */
-import { readFileSync } from 'fs';
-
-const swcrc = JSON.parse(readFileSync(`${__dirname}/.swcrc`, 'utf-8'));
-
-// Reading the SWC compilation config and remove the "exclude"
-// for the test files to be compiled by SWC
-const swcJestConfig = {
- ...swcrc,
- exclude: undefined,
- jsc: {
- ...swcrc.jsc,
- experimental: {
- plugins: [['jest_workaround', {}]],
- },
- },
-};
-
export default {
displayName: 'nx-mesh',
preset: '../../jest.preset.js',
+ globals: {
+ 'ts-jest': {
+ tsconfig: '/tsconfig.spec.json',
+ },
+ },
transform: {
- '^.+\\.[tj]s$': ['@swc/jest', swcJestConfig],
+ '^.+\\.[tj]s$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/packages/nx-mesh',
diff --git a/packages/nx-mesh/project.json b/packages/nx-mesh/project.json
index e2b8dc5b..f2566e1e 100644
--- a/packages/nx-mesh/project.json
+++ b/packages/nx-mesh/project.json
@@ -94,14 +94,13 @@
"dependsOn": ["build-non-bundle"]
},
"build-non-bundle": {
- "executor": "@nrwl/js:swc",
+ "executor": "@nrwl/js:tsc",
"outputs": [
"dist/packages/nx-mesh/generators",
"dist/packages/nx-mesh/utils"
],
"options": {
"outputPath": "dist/packages/nx-mesh",
- "swcrc": "packages/nx-mesh/.swcrc",
"main": "packages/nx-mesh/src/generators/index.ts",
"tsConfig": "packages/nx-mesh/tsconfig.lib.json"
}
From 3b40cb367ef7c343bf40b9084db5749f25ec3e32 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 17:03:38 +0100
Subject: [PATCH 18/20] build: update changeset
---
.changeset/mean-hats-add.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.changeset/mean-hats-add.md b/.changeset/mean-hats-add.md
index 710cedc1..b216cc19 100644
--- a/.changeset/mean-hats-add.md
+++ b/.changeset/mean-hats-add.md
@@ -2,4 +2,4 @@
'nx-mesh': minor
---
-Bundle `nx-mesh` with vite and reduce dependency list
+Bundle `nx-mesh` with esbuild and reduce dependency list
From 02805084ff2aed1e50f653af547068af391d5d79 Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 17:04:41 +0100
Subject: [PATCH 19/20] build(nx-mesh): remove unneeded files
---
packages/nx-mesh/src/generators/index.ts | 1 -
1 file changed, 1 deletion(-)
delete mode 100644 packages/nx-mesh/src/generators/index.ts
diff --git a/packages/nx-mesh/src/generators/index.ts b/packages/nx-mesh/src/generators/index.ts
deleted file mode 100644
index ff8b4c56..00000000
--- a/packages/nx-mesh/src/generators/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export default {};
From 9c7e5533c75d790b70fee264f50fd43c6128941f Mon Sep 17 00:00:00 2001
From: Dom <3301714+domjtalbot@users.noreply.github.com>
Date: Sat, 1 Apr 2023 17:08:41 +0100
Subject: [PATCH 20/20] build: remove vite dependencies
---
package.json | 13 +-
pnpm-lock.yaml | 773 +------------------------------------------------
2 files changed, 14 insertions(+), 772 deletions(-)
diff --git a/package.json b/package.json
index e775c798..13a645ad 100644
--- a/package.json
+++ b/package.json
@@ -37,20 +37,17 @@
"@graphql-mesh/soap": "0.17.20",
"@graphql-typed-document-node/core": "3.1.2",
"@nrwl/devkit": "15.7.1",
- "@nrwl/esbuild": "15.7.1",
"@nrwl/next": "15.7.1",
"@swc/helpers": "0.4.14",
"fs-extra": "10.1.0",
"get-port": "5.1.1",
"graphql": "16.6.0",
- "jest_workaround": "^0.69.0",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"styled-components": "5.3.6",
"tslib": "2.5.0",
- "vite-plugin-static-copy": "^0.13.1",
"watchpack": "2.4.0"
},
"devDependencies": {
@@ -60,6 +57,7 @@
"@commitlint/config-angular": "17.4.4",
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@nrwl/cypress": "15.7.1",
+ "@nrwl/esbuild": "15.7.1",
"@nrwl/eslint-plugin-nx": "15.7.1",
"@nrwl/jest": "15.7.1",
"@nrwl/js": "15.7.1",
@@ -68,7 +66,6 @@
"@nrwl/nx-cloud": "15.2.1",
"@nrwl/nx-plugin": "15.7.1",
"@nrwl/react": "15.7.1",
- "@nrwl/vite": "15.7.1",
"@nrwl/workspace": "15.7.1",
"@swc-node/register": "1.6.2",
"@swc/cli": "0.1.62",
@@ -85,7 +82,6 @@
"@types/watchpack": "2.4.0",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
- "@vitest/ui": "^0.25.8",
"babel-jest": "28.1.1",
"babel-plugin-styled-components": "1.10.7",
"cypress": "^12.2.0",
@@ -110,12 +106,7 @@
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"type-fest": "3.6.1",
- "typescript": "4.8.4",
- "vite": "^4.0.1",
- "vite-plugin-dts": "~1.7.1",
- "vite-plugin-eslint": "^1.8.1",
- "vite-tsconfig-paths": "^4.0.2",
- "vitest": "^0.25.8"
+ "typescript": "4.8.4"
},
"pnpm": {
"overrides": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 39b5c492..fda51041 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -62,9 +62,6 @@ importers:
'@nrwl/devkit':
specifier: 15.7.1
version: 15.7.1(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/esbuild':
- specifier: 15.7.1
- version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@nrwl/next':
specifier: 15.7.1
version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(cypress@12.7.0)(eslint@8.15.0)(next@13.1.1)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
@@ -80,9 +77,6 @@ importers:
graphql:
specifier: 16.6.0
version: 16.6.0
- jest_workaround:
- specifier: ^0.69.0
- version: 0.69.0(@swc/core@1.3.42)(@swc/jest@0.2.20)
next:
specifier: 13.1.1
version: 13.1.1(react-dom@18.2.0)(react@18.2.0)
@@ -101,9 +95,6 @@ importers:
tslib:
specifier: 2.5.0
version: 2.5.0
- vite-plugin-static-copy:
- specifier: ^0.13.1
- version: 0.13.1(vite@4.2.1)
watchpack:
specifier: 2.4.0
version: 2.4.0
@@ -126,6 +117,9 @@ importers:
'@nrwl/cypress':
specifier: 15.7.1
version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
+ '@nrwl/esbuild':
+ specifier: 15.7.1
+ version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
'@nrwl/eslint-plugin-nx':
specifier: 15.7.1
version: 15.7.1(@typescript-eslint/parser@5.56.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4)
@@ -150,9 +144,6 @@ importers:
'@nrwl/react':
specifier: 15.7.1
version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/vite':
- specifier: 15.7.1
- version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)(vite@4.2.1)(vitest@0.25.8)
'@nrwl/workspace':
specifier: 15.7.1
version: 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
@@ -201,9 +192,6 @@ importers:
'@typescript-eslint/parser':
specifier: 5.56.0
version: 5.56.0(eslint@8.15.0)(typescript@4.8.4)
- '@vitest/ui':
- specifier: ^0.25.8
- version: 0.25.8
babel-jest:
specifier: 28.1.1
version: 28.1.1
@@ -279,21 +267,6 @@ importers:
typescript:
specifier: 4.8.4
version: 4.8.4
- vite:
- specifier: ^4.0.1
- version: 4.2.1(@types/node@18.11.9)
- vite-plugin-dts:
- specifier: ~1.7.1
- version: 1.7.3(@types/node@18.11.9)(vite@4.2.1)
- vite-plugin-eslint:
- specifier: ^1.8.1
- version: 1.8.1(eslint@8.15.0)(vite@4.2.1)
- vite-tsconfig-paths:
- specifier: ^4.0.2
- version: 4.0.7(typescript@4.8.4)(vite@4.2.1)
- vitest:
- specifier: ^0.25.8
- version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)
packages/nx-mesh:
dependencies:
@@ -2123,182 +2096,6 @@ packages:
tslib: 2.5.0
dev: false
- /@esbuild/android-arm64@0.17.13:
- resolution: {integrity: sha512-F5DgvJMV2ZEpLNpPCO7FEk1wy8O5tg6cikWSB6uvvncsgE1xgbPlm+Boio/4820C2/mj713X83X1h01v0qoeHg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/android-arm@0.17.13:
- resolution: {integrity: sha512-5tZZ/hLIfBmt7E8JsE5KbsknoAFmoElkg+A/gjyPtmSQvJjPf+9GsSJihid8VMa08lrsYyaEXOT9RLh3xXQONw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/android-x64@0.17.13:
- resolution: {integrity: sha512-5m1UUslzpfVrumG3m3Zv2x9VNAcvMOQWJy009y6jt10tcHpzIq2/b0I0k4fz0QYqGSNS1GteRIhVPN4H7OyCXg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/darwin-arm64@0.17.13:
- resolution: {integrity: sha512-TXbXp/05r7heRsG8yWwbHw9diay+wXIyRNcIHFoNARRIGahYbTW/qwJzE37zkfxLIUPHgR/SyLTUlnTICg14ag==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /@esbuild/darwin-x64@0.17.13:
- resolution: {integrity: sha512-Ku9Db2sblCxFvQdEO7X9nBaLR/S81uch81e2Q2+Os5z1NcnsFjuqhIYH0Gm6KNNpIKaEbC7gCLbiIPbLLMX4Pg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /@esbuild/freebsd-arm64@0.17.13:
- resolution: {integrity: sha512-t1T5/nIf2j+FdSf1Fa3dcU0cXycr0nK4xJe52qjWa+1I249mM5NBY1ODjiabZxZ0x3CG05y4fd9bxfDLy9kQtA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/freebsd-x64@0.17.13:
- resolution: {integrity: sha512-/zbkgEO4gY2qGZr9UNAGI38w/FwUY4bx4EC88k9VeiCKNr3ukNgwH/oIgB5Z9/OqpkNLlcS4w9e2d/MIiy5fbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-arm64@0.17.13:
- resolution: {integrity: sha512-siu3QZrQ7eGrSttvFaRKyjT7kNRbUuHEKzCCyqRh19MbpGokGY13jbIsBEjx6JmH3T50hds325oweS9Ey2ihAQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-arm@0.17.13:
- resolution: {integrity: sha512-RrhjzrCF6aCDH248nUAQoldnRmN7nHMxv85GOj5AH+qkxxYvcig7fnUmgANngntRu4btXhN9WKHMgQ5seERDMw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-ia32@0.17.13:
- resolution: {integrity: sha512-ADHA1PqP5gIegehVP0RvxMmNPxpLgetI8QCwYOjUheGXKIKWSdUN8ZS3rusQv3NGZmFCpYdMZzFoI0QtzzGAdw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-loong64@0.17.13:
- resolution: {integrity: sha512-n1JQPxETmR0brkpWlJHeohReEPLH+m00bnJdNnFyHN3zLBt1QypevuZSmnmFWsC+7r7HTwWILj3lBDjtPH3ydg==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-mips64el@0.17.13:
- resolution: {integrity: sha512-d0pnD/j5KKQ43xtSIvOD+wNIy6D/Vh9GbXVRa3u4zCyiJMYWjxkPkbBzlEgNjdDmUM+5gBFen9k7B8Xscy+Myg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-ppc64@0.17.13:
- resolution: {integrity: sha512-C9sMpa/VcGLjVtsT01sXtzZNS7bAZ+icUclkKkiUwBQ9hzT+J+/Xpj+EykI5hB3KgtxQVo4XUahanFoZNxbQ1g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-riscv64@0.17.13:
- resolution: {integrity: sha512-jYkc5EpNpvjccAHNYekiAtklusVGWftR0VVLtng7dJzDyy+5adAsf1fOG3LllP0WALxS55/w6boLE/728J/bXw==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-s390x@0.17.13:
- resolution: {integrity: sha512-4jAJI5O6E/hATL4lsrG2A+noDjZ377KlATVFKwV3SWaNHj+OvoXe/T84ScQIXEtPI7ndJyLkMYruXj8RR5Ilyw==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-x64@0.17.13:
- resolution: {integrity: sha512-eFLQhJq98qijGRcv9je/9M4Mz1suZ+pOtj62ArsLd0gubNGhhQDz6T30X2X3f1KZ8lkKkr+zN5vtZzx1GAMoFw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/netbsd-x64@0.17.13:
- resolution: {integrity: sha512-F8PXDeT+3eQpPjf4bmNJapPLu0SKKlWRGPQvBQqVS+YDGoMKnyyYp2UENLFMV8zT7kS39zKxZRZvUL3fMz/7Ww==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/openbsd-x64@0.17.13:
- resolution: {integrity: sha512-9jWfzbFCnIZdHjNs+00KQHArUbp7kjQDNmiuqkwGOQFs67m4/dKNupBv2DP5hTqVlQY4tW4RG3qpb6Y3zOHJeA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
-
- /@esbuild/sunos-x64@0.17.13:
- resolution: {integrity: sha512-ALbOMlTIBkAVi6KqYjONa7u2oH95RN7OpetFqMtjufFLBiSaayRuwUzhs2yuR9CfGT4qi0jv6HQDav+EG314TQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
-
- /@esbuild/win32-arm64@0.17.13:
- resolution: {integrity: sha512-FJBLYL4PkrZGeuHzEqme+0DjNetxkJ+XbB+Aoeow7aQ53JCwsA0/mo8sS5aPkDHgCnMkN4A5GLoFTlDj3BKDrQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /@esbuild/win32-ia32@0.17.13:
- resolution: {integrity: sha512-Qrvst9RkLz4qgi3hqswNliYuKW92/HGJnd7xLWkGaGPa8S4qsONf81FW0ebDc5iUHb0I7QJwQATutvghTabnFA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /@esbuild/win32-x64@0.17.13:
- resolution: {integrity: sha512-pZ/NIgz861XaUPlIkPFjP55nJ4PJa0o/CD4zgeRb1Q9FVE+8GvdB6ifJcK05jRhny5hKExhnRFIdgHmmCYH8vg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
-
/@eslint-community/eslint-utils@4.3.0(eslint@8.15.0):
resolution: {integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4193,6 +3990,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
+ dev: true
/@jest/environment@28.1.3:
resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==}
@@ -4386,6 +4184,7 @@ packages:
'@types/node': 18.11.9
'@types/yargs': 16.0.5
chalk: 4.1.2
+ dev: true
/@jest/types@28.1.3:
resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
@@ -4473,36 +4272,6 @@ packages:
read-yaml-file: 1.1.0
dev: true
- /@microsoft/api-extractor-model@7.26.4(@types/node@18.11.9):
- resolution: {integrity: sha512-PDCgCzXDo+SLY5bsfl4bS7hxaeEtnXj7XtuzEE+BtALp7B5mK/NrS2kHWU69pohgsRmEALycQdaQPXoyT2i5MQ==}
- dependencies:
- '@microsoft/tsdoc': 0.14.2
- '@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 3.55.2(@types/node@18.11.9)
- transitivePeerDependencies:
- - '@types/node'
- dev: true
-
- /@microsoft/api-extractor@7.34.4(@types/node@18.11.9):
- resolution: {integrity: sha512-HOdcci2nT40ejhwPC3Xja9G+WSJmWhCUKKryRfQYsmE9cD+pxmBaKBKCbuS9jUcl6bLLb4Gz+h7xEN5r0QiXnQ==}
- hasBin: true
- dependencies:
- '@microsoft/api-extractor-model': 7.26.4(@types/node@18.11.9)
- '@microsoft/tsdoc': 0.14.2
- '@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 3.55.2(@types/node@18.11.9)
- '@rushstack/rig-package': 0.3.18
- '@rushstack/ts-command-line': 4.13.2
- colors: 1.2.5
- lodash: 4.17.21
- resolve: 1.22.1
- semver: 7.3.8
- source-map: 0.6.1
- typescript: 4.8.4
- transitivePeerDependencies:
- - '@types/node'
- dev: true
-
/@microsoft/eslint-formatter-sarif@3.0.0:
resolution: {integrity: sha512-KIKkT44hEqCzqxODYwFMUvYEK0CrdHx/Ll9xiOWgFbBSRuzbxmVy4d/tzfgoucGz72HJZNOMjuyzFTBKntRK5Q==}
engines: {node: '>= 14'}
@@ -4515,19 +4284,6 @@ packages:
- supports-color
dev: true
- /@microsoft/tsdoc-config@0.16.2:
- resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
- dependencies:
- '@microsoft/tsdoc': 0.14.2
- ajv: 6.12.6
- jju: 1.4.0
- resolve: 1.19.0
- dev: true
-
- /@microsoft/tsdoc@0.14.2:
- resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
- dev: true
-
/@mole-inc/bin-wrapper@8.0.1:
resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -4862,7 +4618,7 @@ packages:
- prettier
- supports-color
- typescript
- dev: false
+ dev: true
/@nrwl/eslint-plugin-nx@15.7.1(@typescript-eslint/parser@5.56.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.1)(typescript@4.8.4):
resolution: {integrity: sha512-6TGCf+SDWNO1Z/uyQaazqakb3iEUWKXUAUsXrZUWrdHca8/Ql9QQHNV6wbQ3ciT8zrV6TG0d9P+uAX97oORwQQ==}
@@ -5397,33 +5153,6 @@ packages:
- debug
dev: false
- /@nrwl/vite@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)(vite@4.2.1)(vitest@0.25.8):
- resolution: {integrity: sha512-rnud9y4rm3iD5i3JlHlKwvpRifCeKCdUF8LgQG8R7M3gQJD2mDaOFwG6Pd81p7JAhjGm42geMVhNFEW3uiaLCA==}
- peerDependencies:
- vite: ^4.0.1
- vitest: ^0.25.8
- dependencies:
- '@nrwl/devkit': 15.7.1(nx@15.7.1)(typescript@4.8.4)
- '@nrwl/js': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4)
- '@nrwl/workspace': 15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(eslint@8.15.0)(prettier@2.8.6)(typescript@4.8.4)
- '@phenomnomnominal/tsquery': 4.1.1(typescript@4.8.4)
- '@swc/helpers': 0.4.14
- dotenv: 10.0.0
- enquirer: 2.3.6
- vite: 4.2.1(@types/node@18.11.9)
- vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)
- transitivePeerDependencies:
- - '@babel/traverse'
- - '@swc-node/register'
- - '@swc/core'
- - debug
- - eslint
- - nx
- - prettier
- - supports-color
- - typescript
- dev: true
-
/@nrwl/webpack@15.7.1(@swc-node/register@1.6.2)(@swc/core@1.3.42)(@types/node@18.11.9)(eslint@8.15.0)(nx@15.7.1)(prettier@2.8.6)(typescript@4.8.4):
resolution: {integrity: sha512-g+o/kqwtLP1E5RE04TjaM1qP7fGWV32RMSK3w5/Lb4lvL3nLgXvv8AsYsV0j9nY/cn/7EFj+zxb8hAgFsPoESg==}
dependencies:
@@ -5760,74 +5489,14 @@ packages:
tslib: 2.5.0
dev: true
- /@polka/url@1.0.0-next.21:
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
- dev: true
-
/@repeaterjs/repeater@3.0.4:
resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==}
dev: false
- /@rollup/pluginutils@4.2.1:
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
- dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
- dev: true
-
- /@rollup/pluginutils@5.0.2:
- resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
- dependencies:
- '@types/estree': 1.0.0
- estree-walker: 2.0.2
- picomatch: 2.3.1
- dev: true
-
/@rushstack/eslint-patch@1.2.0:
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
dev: true
- /@rushstack/node-core-library@3.55.2(@types/node@18.11.9):
- resolution: {integrity: sha512-SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A==}
- peerDependencies:
- '@types/node': '*'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- dependencies:
- '@types/node': 18.11.9
- colors: 1.2.5
- fs-extra: 7.0.1
- import-lazy: 4.0.0
- jju: 1.4.0
- resolve: 1.22.1
- semver: 7.3.8
- z-schema: 5.0.5
- dev: true
-
- /@rushstack/rig-package@0.3.18:
- resolution: {integrity: sha512-SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ==}
- dependencies:
- resolve: 1.22.1
- strip-json-comments: 3.1.1
- dev: true
-
- /@rushstack/ts-command-line@4.13.2:
- resolution: {integrity: sha512-bCU8qoL9HyWiciltfzg7GqdfODUeda/JpI0602kbN5YH22rzTxyqYvv7aRLENCM7XCQ1VRs7nMkEqgJUOU8Sag==}
- dependencies:
- '@types/argparse': 1.0.38
- argparse: 1.0.10
- colors: 1.2.5
- string-argv: 0.3.1
- dev: true
-
/@sinclair/typebox@0.24.51:
resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
@@ -6150,6 +5819,7 @@ packages:
resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
dependencies:
tslib: 2.5.0
+ dev: false
/@swc/jest@0.2.20(@swc/core@1.3.42):
resolution: {integrity: sha512-5qSUBYY1wyIMn7p0Vl9qqV4hMI69oJwZCIPUpBsTFWN2wlwn6RDugzdgCn+bLXVYh+Cxi8bJcZ1uumDgsoL+FA==}
@@ -6159,6 +5829,7 @@ packages:
dependencies:
'@jest/create-cache-key-function': 27.5.1
'@swc/core': 1.3.42
+ dev: true
/@szmarczak/http-timer@4.0.6:
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
@@ -6207,15 +5878,6 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- /@ts-morph/common@0.18.1:
- resolution: {integrity: sha512-RVE+zSRICWRsfrkAw5qCAK+4ZH9kwEFv5h0+/YeHTLieWP7F4wWq4JsKFuNWG+fYh/KF+8rAtgdj5zb2mm+DVA==}
- dependencies:
- fast-glob: 3.2.12
- minimatch: 5.1.6
- mkdirp: 1.0.4
- path-browserify: 1.0.1
- dev: true
-
/@tsconfig/node10@1.0.9:
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
@@ -6228,10 +5890,6 @@ packages:
/@tsconfig/node16@1.0.3:
resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==}
- /@types/argparse@1.0.38:
- resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
- dev: true
-
/@types/aria-query@5.0.1:
resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
dev: true
@@ -6281,16 +5939,6 @@ packages:
'@types/responselike': 1.0.0
dev: true
- /@types/chai-subset@1.3.3:
- resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
- dependencies:
- '@types/chai': 4.3.4
- dev: true
-
- /@types/chai@4.3.4:
- resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==}
- dev: true
-
/@types/connect-history-api-fallback@1.3.5:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
@@ -6562,6 +6210,7 @@ packages:
resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
dependencies:
'@types/yargs-parser': 21.0.0
+ dev: true
/@types/yargs@17.0.22:
resolution: {integrity: sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==}
@@ -6767,12 +6416,6 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@vitest/ui@0.25.8:
- resolution: {integrity: sha512-wfuhghldD5QHLYpS46GK8Ru8P3XcMrWvFjRQD21KNzc9Y/qtJsqoC8KmT6xWVkMNw4oHYixpo3a4ZySRJdserw==}
- dependencies:
- sirv: 2.0.2
- dev: true
-
/@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
dependencies:
@@ -7298,10 +6941,6 @@ packages:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
- /assertion-error@1.1.0:
- resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
- dev: true
-
/ast-types-flow@0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
@@ -7876,19 +7515,6 @@ packages:
/caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
- /chai@4.3.7:
- resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
- engines: {node: '>=4'}
- dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.2
- deep-eql: 4.1.3
- get-func-name: 2.0.0
- loupe: 2.3.6
- pathval: 1.1.1
- type-detect: 4.0.8
- dev: true
-
/chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -7971,10 +7597,6 @@ packages:
/chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- /check-error@1.0.2:
- resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
- dev: true
-
/check-more-types@2.24.0:
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
engines: {node: '>= 0.8.0'}
@@ -8104,10 +7726,6 @@ packages:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- /code-block-writer@11.0.3:
- resolution: {integrity: sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw==}
- dev: true
-
/collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
@@ -8134,11 +7752,6 @@ packages:
/colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
- /colors@1.2.5:
- resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==}
- engines: {node: '>=0.1.90'}
- dev: true
-
/combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -8161,13 +7774,6 @@ packages:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- /commander@9.5.0:
- resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
- engines: {node: ^12.20.0 || >=14}
- requiresBuild: true
- dev: true
- optional: true
-
/common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
@@ -8755,13 +8361,6 @@ packages:
/dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- /deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
- engines: {node: '>=6'}
- dependencies:
- type-detect: 4.0.8
- dev: true
-
/deep-equal@2.2.0:
resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
dependencies:
@@ -9128,35 +8727,6 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild@0.17.13:
- resolution: {integrity: sha512-4ixMwdErBcQHgTBeoxnowENCPKWFAGxgTyKHMK8gqn9sZaC7ZNWFKtim16g2rzQ2b/FYyy3lIUUJboFtjolhqg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.17.13
- '@esbuild/android-arm64': 0.17.13
- '@esbuild/android-x64': 0.17.13
- '@esbuild/darwin-arm64': 0.17.13
- '@esbuild/darwin-x64': 0.17.13
- '@esbuild/freebsd-arm64': 0.17.13
- '@esbuild/freebsd-x64': 0.17.13
- '@esbuild/linux-arm': 0.17.13
- '@esbuild/linux-arm64': 0.17.13
- '@esbuild/linux-ia32': 0.17.13
- '@esbuild/linux-loong64': 0.17.13
- '@esbuild/linux-mips64el': 0.17.13
- '@esbuild/linux-ppc64': 0.17.13
- '@esbuild/linux-riscv64': 0.17.13
- '@esbuild/linux-s390x': 0.17.13
- '@esbuild/linux-x64': 0.17.13
- '@esbuild/netbsd-x64': 0.17.13
- '@esbuild/openbsd-x64': 0.17.13
- '@esbuild/sunos-x64': 0.17.13
- '@esbuild/win32-arm64': 0.17.13
- '@esbuild/win32-ia32': 0.17.13
- '@esbuild/win32-x64': 0.17.13
-
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
@@ -9490,10 +9060,6 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- /estree-walker@2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- dev: true
-
/esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
@@ -10101,10 +9667,6 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- /get-func-name@2.0.0:
- resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
- dev: true
-
/get-intrinsic@1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
@@ -10768,11 +10330,6 @@ packages:
engines: {node: '>=12.2'}
dev: false
- /import-lazy@4.0.0:
- resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
- engines: {node: '>=8'}
- dev: true
-
/import-local@3.1.0:
resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
@@ -11745,16 +11302,6 @@ packages:
- ts-node
dev: true
- /jest_workaround@0.69.0(@swc/core@1.3.42)(@swc/jest@0.2.20):
- resolution: {integrity: sha512-ggf2HgkKx0wDYy55Cm8dtFtdtKZ99G5OpOjmKeKVcMZeiq0Hd33Mwx7d4tKGsTrf9hDPx2QpOhtc5Ttvkygl6g==}
- peerDependencies:
- '@swc/core': ^1.3.40
- '@swc/jest': ^0.2.22
- dependencies:
- '@swc/core': 1.3.42
- '@swc/jest': 0.2.20(@swc/core@1.3.42)
- dev: false
-
/jiti@1.17.1:
resolution: {integrity: sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==}
hasBin: true
@@ -11765,10 +11312,6 @@ packages:
hasBin: true
dev: false
- /jju@1.4.0:
- resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
- dev: true
-
/jose@4.13.1:
resolution: {integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==}
dev: false
@@ -12070,10 +11613,6 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
- /kolorist@1.7.0:
- resolution: {integrity: sha512-ymToLHqL02udwVdbkowNpzjFd6UzozMtshPQKVi5k1EjKRqKqBrOnE9QbLEb0/pV76SAiIT13hdL8R6suc+f3g==}
- dev: true
-
/language-subtag-registry@0.3.22:
resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
dev: true
@@ -12265,11 +11804,6 @@ packages:
emojis-list: 3.0.0
json5: 2.2.3
- /local-pkg@0.4.3:
- resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
- engines: {node: '>=14'}
- dev: true
-
/localforage@1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
dependencies:
@@ -12302,9 +11836,11 @@ packages:
/lodash.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
+ dev: false
/lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+ dev: false
/lodash.isfunction@3.0.9:
resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
@@ -12399,12 +11935,6 @@ packages:
dependencies:
js-tokens: 4.0.0
- /loupe@2.3.6:
- resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
- dependencies:
- get-func-name: 2.0.0
- dev: true
-
/lower-case-first@2.0.2:
resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
dependencies:
@@ -12692,11 +12222,6 @@ packages:
hasBin: true
dev: false
- /mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
- engines: {node: '>=10'}
- dev: true
-
/ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -13376,6 +12901,7 @@ packages:
/path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+ dev: false
/path-case@3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
@@ -13428,10 +12954,6 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /pathval@1.1.1:
- resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
- dev: true
-
/peek-readable@5.0.0:
resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==}
engines: {node: '>=14.16'}
@@ -14268,13 +13790,6 @@ packages:
resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==}
engines: {node: '>=10'}
- /resolve@1.19.0:
- resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
- dependencies:
- is-core-module: 2.11.0
- path-parse: 1.0.7
- dev: true
-
/resolve@1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
@@ -14329,21 +13844,6 @@ packages:
hasBin: true
dev: false
- /rollup@2.79.1:
- resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
- engines: {node: '>=10.0.0'}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /rollup@3.20.2:
- resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.2
-
/run-async@2.4.1:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
@@ -14625,15 +14125,6 @@ packages:
resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==}
dev: false
- /sirv@2.0.2:
- resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==}
- engines: {node: '>= 10'}
- dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.1
- totalist: 3.0.0
- dev: true
-
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
@@ -15000,12 +14491,6 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /strip-literal@1.0.1:
- resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==}
- dependencies:
- acorn: 8.8.2
- dev: true
-
/strip-outer@2.0.0:
resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -15297,20 +14782,6 @@ packages:
engines: {node: '>=6'}
dev: false
- /tinybench@2.4.0:
- resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==}
- dev: true
-
- /tinypool@0.3.1:
- resolution: {integrity: sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==}
- engines: {node: '>=14.0.0'}
- dev: true
-
- /tinyspy@1.1.1:
- resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==}
- engines: {node: '>=14.0.0'}
- dev: true
-
/title-case@3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
dependencies:
@@ -15365,11 +14836,6 @@ packages:
ieee754: 1.2.1
dev: true
- /totalist@3.0.0:
- resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==}
- engines: {node: '>=6'}
- dev: true
-
/tough-cookie@2.5.0:
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
engines: {node: '>=0.8'}
@@ -15462,13 +14928,6 @@ packages:
resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==}
dev: false
- /ts-morph@17.0.1:
- resolution: {integrity: sha512-10PkHyXmrtsTvZSL+cqtJLTgFXkU43Gd0JCc0Rw6GchWbqKe0Rwgt1v3ouobTZwQzF1mGhDeAlWYBMGRV7y+3g==}
- dependencies:
- '@ts-morph/common': 0.18.1
- code-block-writer: 11.0.3
- dev: true
-
/ts-node@10.9.1(@swc/core@1.3.42)(@types/node@18.11.9)(typescript@4.8.4):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
@@ -15564,19 +15023,6 @@ packages:
yn: 3.1.1
dev: true
- /tsconfck@2.1.1(typescript@4.8.4):
- resolution: {integrity: sha512-ZPCkJBKASZBmBUNqGHmRhdhM8pJYDdOXp4nRgj/O0JwUwsMq50lCDRQP/M5GBNAA0elPrq4gAeu4dkaVCuKWww==}
- engines: {node: ^14.13.1 || ^16 || >=18}
- hasBin: true
- peerDependencies:
- typescript: ^4.3.5 || ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- typescript: 4.8.4
- dev: true
-
/tsconfig-paths-webpack-plugin@4.0.0:
resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==}
engines: {node: '>=10.13.0'}
@@ -15894,11 +15340,6 @@ packages:
spdx-expression-parse: 3.0.1
dev: true
- /validator@13.9.0:
- resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==}
- engines: {node: '>= 0.10'}
- dev: true
-
/value-or-promise@1.0.11:
resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
engines: {node: '>=12'}
@@ -15921,184 +15362,6 @@ packages:
core-util-is: 1.0.2
extsprintf: 1.3.0
- /vite-plugin-dts@1.7.3(@types/node@18.11.9)(vite@4.2.1):
- resolution: {integrity: sha512-u3t45p6fTbzUPMkwYe0ESwuUeiRMlwdPfD3dRyDKUwLe2WmEYcFyVp2o9/ke2EMrM51lQcmNWdV9eLcgjD1/ng==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: '>=2.9.0'
- dependencies:
- '@microsoft/api-extractor': 7.34.4(@types/node@18.11.9)
- '@rollup/pluginutils': 5.0.2
- '@rushstack/node-core-library': 3.55.2(@types/node@18.11.9)
- debug: 4.3.4(supports-color@5.5.0)
- fast-glob: 3.2.12
- fs-extra: 10.1.0
- kolorist: 1.7.0
- ts-morph: 17.0.1
- vite: 4.2.1(@types/node@18.11.9)
- transitivePeerDependencies:
- - '@types/node'
- - rollup
- - supports-color
- dev: true
-
- /vite-plugin-eslint@1.8.1(eslint@8.15.0)(vite@4.2.1):
- resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==}
- peerDependencies:
- eslint: '>=7'
- vite: '>=2'
- dependencies:
- '@rollup/pluginutils': 4.2.1
- '@types/eslint': 8.21.1
- eslint: 8.15.0
- rollup: 2.79.1
- vite: 4.2.1(@types/node@18.11.9)
- dev: true
-
- /vite-plugin-static-copy@0.13.1(vite@4.2.1):
- resolution: {integrity: sha512-KwIcGBT1aOxSq+laK3VmSngoEa3HXWj/6ZEXdv+y59eZ7p/XSuPahoDo+CfYW22JjTdnstgeKWiX+78KNgDu6g==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0
- dependencies:
- chokidar: 3.5.3
- fast-glob: 3.2.12
- fs-extra: 11.1.0
- picocolors: 1.0.0
- vite: 4.2.1(@types/node@18.11.9)
- dev: false
-
- /vite-tsconfig-paths@4.0.7(typescript@4.8.4)(vite@4.2.1):
- resolution: {integrity: sha512-MwIYaby6kcbQGZqMH+gAK6h0UYQGOkjsuAgw4q6bP/5vWkn8VKvnmLuCQHA2+IzHAJHnE8OFTO4lnJLFMf9+7Q==}
- peerDependencies:
- vite: '*'
- peerDependenciesMeta:
- vite:
- optional: true
- dependencies:
- debug: 4.3.4(supports-color@5.5.0)
- globrex: 0.1.2
- tsconfck: 2.1.1(typescript@4.8.4)
- vite: 4.2.1(@types/node@18.11.9)
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
- /vite@4.2.1(@types/node@18.11.9):
- resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.11.9
- esbuild: 0.17.13
- postcss: 8.4.21
- resolve: 1.22.1
- rollup: 3.20.2
- optionalDependencies:
- fsevents: 2.3.2
-
- /vite@4.2.1(@types/node@18.15.0):
- resolution: {integrity: sha512-7MKhqdy0ISo4wnvwtqZkjke6XN4taqQ2TBaTccLIpOKv7Vp2h4Y+NpmWCnGDeSvvn45KxvWgGyb0MkHvY1vgbg==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.15.0
- esbuild: 0.17.13
- postcss: 8.4.21
- resolve: 1.22.1
- rollup: 3.20.2
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /vitest@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3):
- resolution: {integrity: sha512-X75TApG2wZTJn299E/TIYevr4E9/nBo1sUtZzn0Ci5oK8qnpZAZyhwg0qCeMSakGIWtc6oRwcQFyFfW14aOFWg==}
- engines: {node: '>=v14.16.0'}
- hasBin: true
- peerDependencies:
- '@edge-runtime/vm': '*'
- '@vitest/browser': '*'
- '@vitest/ui': '*'
- happy-dom: '*'
- jsdom: '*'
- peerDependenciesMeta:
- '@edge-runtime/vm':
- optional: true
- '@vitest/browser':
- optional: true
- '@vitest/ui':
- optional: true
- happy-dom:
- optional: true
- jsdom:
- optional: true
- dependencies:
- '@types/chai': 4.3.4
- '@types/chai-subset': 1.3.3
- '@types/node': 18.15.0
- '@vitest/ui': 0.25.8
- acorn: 8.8.2
- acorn-walk: 8.2.0
- chai: 4.3.7
- debug: 4.3.4(supports-color@5.5.0)
- jsdom: 20.0.3
- local-pkg: 0.4.3
- source-map: 0.6.1
- strip-literal: 1.0.1
- tinybench: 2.4.0
- tinypool: 0.3.1
- tinyspy: 1.1.1
- vite: 4.2.1(@types/node@18.15.0)
- transitivePeerDependencies:
- - less
- - sass
- - stylus
- - sugarss
- - supports-color
- - terser
- dev: true
-
/w3c-hr-time@1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
deprecated: Use your platform's native performance.now() and performance.timeOrigin.
@@ -16554,15 +15817,3 @@ packages:
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
-
- /z-schema@5.0.5:
- resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
- engines: {node: '>=8.0.0'}
- hasBin: true
- dependencies:
- lodash.get: 4.4.2
- lodash.isequal: 4.5.0
- validator: 13.9.0
- optionalDependencies:
- commander: 9.5.0
- dev: true