From da40be3a432df3579a10a7ef88d6806c0784c359 Mon Sep 17 00:00:00 2001 From: Georgiana-Elena Maxim Date: Thu, 9 May 2024 13:15:25 +0300 Subject: [PATCH] feat: added support for pnpm lockfiles v9 --- README.md | 2 +- .../pnpm/build-dep-graph-pnpm.ts | 2 + .../pnpm/lockfile-parser/index.ts | 8 + .../pnpm/lockfile-parser/lockfile-parser.ts | 27 +- .../pnpm/lockfile-parser/lockfile-v9.ts | 32 + lib/utils.ts | 8 +- .../expected.json | 1523 +- .../pnpm-lock-v9/cyclic-dep/Readme.md | 3 + .../pnpm-lock-v9/cyclic-dep/expected.json | 735 + .../pnpm-lock-v9/cyclic-dep/package-lock.json | 638 + .../pnpm-lock-v9/cyclic-dep/package.json | 6 + .../pnpm-lock-v9/cyclic-dep/pnpm-lock.yaml | 260 + .../pnpm-lock-v9/deeply-scoped/expected.json | 61221 ++++++++++++++++ .../pnpm-lock-v9/deeply-scoped/package.json | 47 + .../pnpm-lock-v9/deeply-scoped/pnpm-lock.yaml | 24998 +++++++ .../different-versions/expected.json | 485 + .../different-versions/package.json | 8 + .../different-versions/pnpm-lock.yaml | 177 + .../expected-dev-deps-excluded.json | 46 + .../expected-dev-deps-included.json | 46 + .../pnpm-lock-v9/empty-dev-deps/package.json | 19 + .../empty-dev-deps/pnpm-lock.yaml | 23 + .../external-tarball/expected.json | 279 + .../external-tarball/package.json | 7 + .../external-tarball/pnpm-lock.yaml | 105 + .../git-ssh-url-deps/expected.json | 279 + .../git-ssh-url-deps/package.json | 7 + .../git-ssh-url-deps/pnpm-lock.yaml | 105 + .../fixtures/pnpm-lock-v9/goof/expected.json | 5579 ++ .../fixtures/pnpm-lock-v9/goof/package.json | 49 + .../fixtures/pnpm-lock-v9/goof/pnpm-lock.yaml | 3527 + .../invalid-pkg-json/package.json_content | 7 + .../expected.json | 1570 + .../local-pkg/package.json | 7 + .../local-pkg-without-workspaces/package.json | 9 + .../pnpm-lock.yaml | 573 + .../missing-non-top-level-deps/package.json | 18 + .../missing-non-top-level-deps/pnpm-lock.yaml | 42 + .../missing-top-level-deps/package.json | 19 + .../missing-top-level-deps/pnpm-lock.yaml | 337 + .../pnpm-lock-v9/npm-protocol/expected.json | 45 + .../pnpm-lock-v9/npm-protocol/package.json | 7 + .../pnpm-lock-v9/npm-protocol/pnpm-lock.yaml | 22 + .../pnpm-lock-v9/one-dep/expected.json | 108 + .../pnpm-lock-v9/one-dep/package.json | 9 + .../pnpm-lock-v9/one-dep/pnpm-lock.yaml | 46 + .../expected-dev-deps-excluded.json | 25 + .../expected-dev-deps-included.json | 67 + .../pnpm-lock-v9/only-dev-deps/package.json | 7 + .../pnpm-lock-v9/only-dev-deps/pnpm-lock.yaml | 34 + .../scoped-override/expected.json | 416 + .../pnpm-lock-v9/scoped-override/package.json | 10 + .../scoped-override/pnpm-lock.yaml | 158 + .../simple-override/expected.json | 67 + .../pnpm-lock-v9/simple-override/package.json | 12 + .../simple-override/pnpm-lock.yaml | 38 + .../workspace-with-cross-ref/package.json | 10 + .../packages/pkg-a/expected.json | 149 + .../packages/pkg-a/package.json | 8 + .../packages/pkg-b/package.json | 7 + .../workspace-with-cross-ref/pnpm-lock.yaml | 62 + .../pnpm-workspace.yaml | 3 + .../expected.json | 88 + .../workspace-with-isolated-pkgs/package.json | 10 + .../packages/pkg-a/package.json | 7 + .../packages/pkg-b/expected.json | 108 + .../packages/pkg-b/package.json | 7 + .../pnpm-lock.yaml | 84 + .../pnpm-workspace.yaml | 3 + .../jest/dep-graph-builders/pnpm-lock.test.ts | 3 +- 70 files changed, 104409 insertions(+), 44 deletions(-) create mode 100644 lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-v9.ts create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/Readme.md create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package-lock.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-excluded.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-included.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/invalid-pkg-json/package.json_content create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/local-pkg/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-excluded.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-included.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-b/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-workspace.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-a/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/expected.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/package.json create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-lock.yaml create mode 100644 test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-workspace.yaml diff --git a/README.md b/README.md index 7c8d7a1b..a0bc31c9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Dep graph generation supported for: - `package-lock.json` (at Versions 2 and 3) - `yarn.lock` -- `pnpm-lock.yaml` (lockfileVersion 5.x or 6.x) +- `pnpm-lock.yaml` (lockfileVersion 5.x, 6.x and 9.x) Legacy dep tree supported for: diff --git a/lib/dep-graph-builders/pnpm/build-dep-graph-pnpm.ts b/lib/dep-graph-builders/pnpm/build-dep-graph-pnpm.ts index 033f3ea6..adebaa38 100644 --- a/lib/dep-graph-builders/pnpm/build-dep-graph-pnpm.ts +++ b/lib/dep-graph-builders/pnpm/build-dep-graph-pnpm.ts @@ -29,6 +29,8 @@ export const buildDepGraphPnpm = async ( { name: pkgJson.name, version: pkgJson.version }, ); + lockFileParser.extractedPackages = lockFileParser.extractPackages(); + const extractedPnpmPkgs: NormalisedPnpmPkgs = lockFileParser.extractedPackages; diff --git a/lib/dep-graph-builders/pnpm/lockfile-parser/index.ts b/lib/dep-graph-builders/pnpm/lockfile-parser/index.ts index 7163ca58..7c7c73d3 100644 --- a/lib/dep-graph-builders/pnpm/lockfile-parser/index.ts +++ b/lib/dep-graph-builders/pnpm/lockfile-parser/index.ts @@ -2,6 +2,7 @@ import { load, FAILSAFE_SCHEMA } from 'js-yaml'; import { PnpmLockfileParser } from './lockfile-parser'; import { LockfileV6Parser } from './lockfile-v6'; import { LockfileV5Parser } from './lockfile-v5'; +import { LockfileV9Parser } from './lockfile-v9'; import { PnpmWorkspaceArgs } from '../../types'; import { OpenSourceEcosystems } from '@snyk/error-catalog-nodejs-public'; import { NodeLockfileVersion } from '../../../utils'; @@ -31,6 +32,13 @@ export function getPnpmLockfileParser( return new LockfileV6Parser(rawPnpmLock, workspaceArgs); } + if ( + lockfileVersion === NodeLockfileVersion.PnpmLockV9 || + version.startsWith('9') + ) { + return new LockfileV9Parser(rawPnpmLock, workspaceArgs); + } + throw new OpenSourceEcosystems.PnpmUnsupportedLockfileVersionError( `The pnpm-lock.yaml lockfile version ${lockfileVersion} is not supported`, ); diff --git a/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-parser.ts b/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-parser.ts index a29e35f7..f828276b 100644 --- a/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-parser.ts +++ b/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-parser.ts @@ -33,7 +33,7 @@ export abstract class PnpmLockfileParser { this.devDependencies = depsRoot.devDependencies || {}; this.optionalDependencies = depsRoot.optionalDependencies || {}; this.peerDependencies = depsRoot.peerDependencies || {}; - this.extractedPackages = this.extractPackages(); + this.extractedPackages = {}; this.importers = this.normaliseImporters(rawPnpmLock); } @@ -55,23 +55,25 @@ export abstract class PnpmLockfileParser { return depsRoot; } - public extractPackages(): NormalisedPnpmPkgs { + public extractPackages() { const packages: NormalisedPnpmPkgs = {}; Object.entries(this.packages).forEach( ([depPath, versionData]: [string, any]) => { // name and version are optional in version data - if they don't show up in version data, they can be deducted from the dependency path - let { name, version } = versionData; - if (!(name && version)) { - ({ name, version } = this.parseDepPath(depPath)); + const { name, version } = versionData; + let parsedPath: ParsedDepPath = {}; + if (!(version && name)) { + parsedPath = this.parseDepPath(depPath); } + const pkg: NormalisedPnpmPkg = { id: depPath, - name, - version, + name: name || parsedPath.name, + version: version || parsedPath.version || depPath, isDev: versionData.dev == 'true', - dependencies: versionData.dependencies, - devDependencies: versionData.devDependencies, - optionalDependencies: versionData.optionalDependencies, + dependencies: versionData.dependencies || {}, + devDependencies: versionData.devDependencies || {}, + optionalDependencies: versionData.optionalDependencies || {}, }; packages[`${pkg.name}@${pkg.version}`] = pkg; }, @@ -115,7 +117,10 @@ export abstract class PnpmLockfileParser { // they show up in packages with keys equal to the version in top level deps // e.g. body-parser with version github.com/expressjs/body-parser/263f602e6ae34add6332c1eb4caa808893b0b711 if (this.packages[version]) { - return this.packages[version].version!; + return this.packages[version].version || version; + } + if (this.packages[`${name}@${version}`]) { + return this.packages[`${name}@${version}`].version || version; } } } diff --git a/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-v9.ts b/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-v9.ts new file mode 100644 index 00000000..a254279a --- /dev/null +++ b/lib/dep-graph-builders/pnpm/lockfile-parser/lockfile-v9.ts @@ -0,0 +1,32 @@ +import { PnpmWorkspaceArgs } from '../../types'; +import { LockfileV6Parser } from './lockfile-v6'; + +const DEFAULT_WORKSPACE_ARGS: PnpmWorkspaceArgs = { + isWorkspacePkg: true, + isRoot: true, + workspacePath: '.', + projectsVersionMap: {}, + rootOverrides: {}, +}; +export class LockfileV9Parser extends LockfileV6Parser { + public settings; + public snapshots; + + public constructor( + rawPnpmLock: any, + workspaceArgs: PnpmWorkspaceArgs = DEFAULT_WORKSPACE_ARGS, + ) { + super(rawPnpmLock, workspaceArgs); + this.settings = rawPnpmLock.settings; + this.packages = {}; + Object.entries(rawPnpmLock.snapshots).forEach( + ([depPath, versionData]: [string, any]) => { + const normalizedDepPath = this.excludeTransPeerDepsVersions(depPath); + this.packages[normalizedDepPath] = { + ...rawPnpmLock.packages[normalizedDepPath], + ...versionData, + }; + }, + ); + } +} diff --git a/lib/utils.ts b/lib/utils.ts index a9bcae8d..a171930b 100644 --- a/lib/utils.ts +++ b/lib/utils.ts @@ -11,6 +11,7 @@ export enum NodeLockfileVersion { YarnLockV2 = 'YARN_LOCK_V2', PnpmLockV5 = 'PNPM_LOCK_V5', PnpmLockV6 = 'PNPM_LOCK_V6', + PnpmLockV9 = 'PNPM_LOCK_V9', } export const getLockfileVersionFromFile = ( @@ -33,7 +34,10 @@ export const getLockfileVersionFromFile = ( export function getPnpmLockfileVersion( lockFileContents: string, -): NodeLockfileVersion.PnpmLockV5 | NodeLockfileVersion.PnpmLockV6 { +): + | NodeLockfileVersion.PnpmLockV5 + | NodeLockfileVersion.PnpmLockV6 + | NodeLockfileVersion.PnpmLockV9 { const rawPnpmLock = load(lockFileContents, { json: true, schema: FAILSAFE_SCHEMA, @@ -43,6 +47,8 @@ export function getPnpmLockfileVersion( return NodeLockfileVersion.PnpmLockV5; } else if (lockfileVersion.startsWith('6')) { return NodeLockfileVersion.PnpmLockV6; + } else if (lockfileVersion.startsWith('9')) { + return NodeLockfileVersion.PnpmLockV9; } else { throw new OpenSourceEcosystems.PnpmUnsupportedLockfileVersionError( `The pnpm-lock.yaml lockfile version ${lockfileVersion} is not supported`, diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v6/local-pkg-without-workspaces/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v6/local-pkg-without-workspaces/expected.json index ab0839ed..291c3c9d 100644 --- a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v6/local-pkg-without-workspaces/expected.json +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v6/local-pkg-without-workspaces/expected.json @@ -12,51 +12,1514 @@ } }, { - "id": "@scope/my-local-pkg@", + "id": "@scope/my-local-pkg@file:local-pkg", "info": { - "name": "@scope/my-local-pkg" + "name": "@scope/my-local-pkg", + "version": "file:local-pkg" } }, { - "id": "react@18.0.0", + "id": "express@4.19.2", "info": { - "name": "react", - "version": "18.0.0" + "name": "express", + "version": "4.19.2" } }, { - "id": "loose-envify@1.4.0", + "id": "accepts@1.3.8", "info": { - "name": "loose-envify", - "version": "1.4.0" + "name": "accepts", + "version": "1.3.8" } }, { - "id": "js-tokens@4.0.0", + "id": "mime-types@2.1.35", "info": { - "name": "js-tokens", - "version": "4.0.0" + "name": "mime-types", + "version": "2.1.35" } - } - ], - "graph": { - "rootNodeId": "root-node", - "nodes": [ - { - "nodeId": "root-node", - "pkgId": "local-pkg-without-workspace@1.0.0", - "deps": [ - { - "nodeId": "@scope/my-local-pkg@undefined" - }, - { - "nodeId": "react@18.0.0" - } - ] + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "negotiator@0.6.3", + "info": { + "name": "negotiator", + "version": "0.6.3" + } + }, + { + "id": "array-flatten@1.1.1", + "info": { + "name": "array-flatten", + "version": "1.1.1" + } + }, + { + "id": "body-parser@1.20.2", + "info": { + "name": "body-parser", + "version": "1.20.2" + } + }, + { + "id": "bytes@3.1.2", + "info": { + "name": "bytes", + "version": "3.1.2" + } + }, + { + "id": "content-type@1.0.5", + "info": { + "name": "content-type", + "version": "1.0.5" + } + }, + { + "id": "debug@2.6.9", + "info": { + "name": "debug", + "version": "2.6.9" + } + }, + { + "id": "ms@2.0.0", + "info": { + "name": "ms", + "version": "2.0.0" + } + }, + { + "id": "depd@2.0.0", + "info": { + "name": "depd", + "version": "2.0.0" + } + }, + { + "id": "destroy@1.2.0", + "info": { + "name": "destroy", + "version": "1.2.0" + } + }, + { + "id": "http-errors@2.0.0", + "info": { + "name": "http-errors", + "version": "2.0.0" + } + }, + { + "id": "inherits@2.0.4", + "info": { + "name": "inherits", + "version": "2.0.4" + } + }, + { + "id": "setprototypeof@1.2.0", + "info": { + "name": "setprototypeof", + "version": "1.2.0" + } + }, + { + "id": "statuses@2.0.1", + "info": { + "name": "statuses", + "version": "2.0.1" + } + }, + { + "id": "toidentifier@1.0.1", + "info": { + "name": "toidentifier", + "version": "1.0.1" + } + }, + { + "id": "iconv-lite@0.4.24", + "info": { + "name": "iconv-lite", + "version": "0.4.24" + } + }, + { + "id": "safer-buffer@2.1.2", + "info": { + "name": "safer-buffer", + "version": "2.1.2" + } + }, + { + "id": "on-finished@2.4.1", + "info": { + "name": "on-finished", + "version": "2.4.1" + } + }, + { + "id": "ee-first@1.1.1", + "info": { + "name": "ee-first", + "version": "1.1.1" + } + }, + { + "id": "qs@6.11.0", + "info": { + "name": "qs", + "version": "6.11.0" + } + }, + { + "id": "side-channel@1.0.6", + "info": { + "name": "side-channel", + "version": "1.0.6" + } + }, + { + "id": "call-bind@1.0.7", + "info": { + "name": "call-bind", + "version": "1.0.7" + } + }, + { + "id": "es-define-property@1.0.0", + "info": { + "name": "es-define-property", + "version": "1.0.0" + } + }, + { + "id": "get-intrinsic@1.2.4", + "info": { + "name": "get-intrinsic", + "version": "1.2.4" + } + }, + { + "id": "es-errors@1.3.0", + "info": { + "name": "es-errors", + "version": "1.3.0" + } + }, + { + "id": "function-bind@1.1.2", + "info": { + "name": "function-bind", + "version": "1.1.2" + } + }, + { + "id": "has-proto@1.0.3", + "info": { + "name": "has-proto", + "version": "1.0.3" + } + }, + { + "id": "has-symbols@1.0.3", + "info": { + "name": "has-symbols", + "version": "1.0.3" + } + }, + { + "id": "hasown@2.0.2", + "info": { + "name": "hasown", + "version": "2.0.2" + } + }, + { + "id": "set-function-length@1.2.2", + "info": { + "name": "set-function-length", + "version": "1.2.2" + } + }, + { + "id": "define-data-property@1.1.4", + "info": { + "name": "define-data-property", + "version": "1.1.4" + } + }, + { + "id": "gopd@1.0.1", + "info": { + "name": "gopd", + "version": "1.0.1" + } + }, + { + "id": "has-property-descriptors@1.0.2", + "info": { + "name": "has-property-descriptors", + "version": "1.0.2" + } + }, + { + "id": "object-inspect@1.13.1", + "info": { + "name": "object-inspect", + "version": "1.13.1" + } + }, + { + "id": "raw-body@2.5.2", + "info": { + "name": "raw-body", + "version": "2.5.2" + } + }, + { + "id": "unpipe@1.0.0", + "info": { + "name": "unpipe", + "version": "1.0.0" + } + }, + { + "id": "type-is@1.6.18", + "info": { + "name": "type-is", + "version": "1.6.18" + } + }, + { + "id": "media-typer@0.3.0", + "info": { + "name": "media-typer", + "version": "0.3.0" + } + }, + { + "id": "content-disposition@0.5.4", + "info": { + "name": "content-disposition", + "version": "0.5.4" + } + }, + { + "id": "safe-buffer@5.2.1", + "info": { + "name": "safe-buffer", + "version": "5.2.1" + } + }, + { + "id": "cookie@0.6.0", + "info": { + "name": "cookie", + "version": "0.6.0" + } + }, + { + "id": "cookie-signature@1.0.6", + "info": { + "name": "cookie-signature", + "version": "1.0.6" + } + }, + { + "id": "encodeurl@1.0.2", + "info": { + "name": "encodeurl", + "version": "1.0.2" + } + }, + { + "id": "escape-html@1.0.3", + "info": { + "name": "escape-html", + "version": "1.0.3" + } + }, + { + "id": "etag@1.8.1", + "info": { + "name": "etag", + "version": "1.8.1" + } + }, + { + "id": "finalhandler@1.2.0", + "info": { + "name": "finalhandler", + "version": "1.2.0" + } + }, + { + "id": "parseurl@1.3.3", + "info": { + "name": "parseurl", + "version": "1.3.3" + } + }, + { + "id": "fresh@0.5.2", + "info": { + "name": "fresh", + "version": "0.5.2" + } + }, + { + "id": "merge-descriptors@1.0.1", + "info": { + "name": "merge-descriptors", + "version": "1.0.1" + } + }, + { + "id": "methods@1.1.2", + "info": { + "name": "methods", + "version": "1.1.2" + } + }, + { + "id": "path-to-regexp@0.1.7", + "info": { + "name": "path-to-regexp", + "version": "0.1.7" + } + }, + { + "id": "proxy-addr@2.0.7", + "info": { + "name": "proxy-addr", + "version": "2.0.7" + } + }, + { + "id": "forwarded@0.2.0", + "info": { + "name": "forwarded", + "version": "0.2.0" + } + }, + { + "id": "ipaddr.js@1.9.1", + "info": { + "name": "ipaddr.js", + "version": "1.9.1" + } + }, + { + "id": "range-parser@1.2.1", + "info": { + "name": "range-parser", + "version": "1.2.1" + } + }, + { + "id": "send@0.18.0", + "info": { + "name": "send", + "version": "0.18.0" + } + }, + { + "id": "mime@1.6.0", + "info": { + "name": "mime", + "version": "1.6.0" + } + }, + { + "id": "ms@2.1.3", + "info": { + "name": "ms", + "version": "2.1.3" + } + }, + { + "id": "serve-static@1.15.0", + "info": { + "name": "serve-static", + "version": "1.15.0" + } + }, + { + "id": "utils-merge@1.0.1", + "info": { + "name": "utils-merge", + "version": "1.0.1" + } + }, + { + "id": "vary@1.1.2", + "info": { + "name": "vary", + "version": "1.1.2" + } + }, + { + "id": "react@18.0.0", + "info": { + "name": "react", + "version": "18.0.0" + } + }, + { + "id": "loose-envify@1.4.0", + "info": { + "name": "loose-envify", + "version": "1.4.0" + } + }, + { + "id": "js-tokens@4.0.0", + "info": { + "name": "js-tokens", + "version": "4.0.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "local-pkg-without-workspace@1.0.0", + "deps": [ + { + "nodeId": "@scope/my-local-pkg@file:local-pkg" + }, + { + "nodeId": "react@18.0.0" + } + ] + }, + { + "nodeId": "@scope/my-local-pkg@file:local-pkg", + "pkgId": "@scope/my-local-pkg@file:local-pkg", + "deps": [ + { + "nodeId": "express@4.19.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express@4.19.2", + "pkgId": "express@4.19.2", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "array-flatten@1.1.1" + }, + { + "nodeId": "body-parser@1.20.2" + }, + { + "nodeId": "content-disposition@0.5.4" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "cookie@0.6.0" + }, + { + "nodeId": "cookie-signature@1.0.6" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "finalhandler@1.2.0" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "merge-descriptors@1.0.1" + }, + { + "nodeId": "methods@1.1.2" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "path-to-regexp@0.1.7" + }, + { + "nodeId": "proxy-addr@2.0.7" + }, + { + "nodeId": "qs@6.11.0" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "safe-buffer@5.2.1" + }, + { + "nodeId": "send@0.18.0" + }, + { + "nodeId": "serve-static@1.15.0" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "utils-merge@1.0.1" + }, + { + "nodeId": "vary@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "accepts@1.3.8", + "pkgId": "accepts@1.3.8", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.6.3", + "pkgId": "negotiator@0.6.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-flatten@1.1.1", + "pkgId": "array-flatten@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "body-parser@1.20.2", + "pkgId": "body-parser@1.20.2", + "deps": [ + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "destroy@1.2.0" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "qs@6.11.0" + }, + { + "nodeId": "raw-body@2.5.2" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@3.1.2", + "pkgId": "bytes@3.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-type@1.0.5", + "pkgId": "content-type@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@2.6.9", + "pkgId": "debug@2.6.9", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.0.0", + "pkgId": "ms@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@2.0.0", + "pkgId": "depd@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "destroy@1.2.0", + "pkgId": "destroy@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-errors@2.0.0", + "pkgId": "http-errors@2.0.0", + "deps": [ + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "toidentifier@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.4", + "pkgId": "inherits@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "setprototypeof@1.2.0", + "pkgId": "setprototypeof@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "statuses@2.0.1", + "pkgId": "statuses@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "toidentifier@1.0.1", + "pkgId": "toidentifier@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.4.24", + "pkgId": "iconv-lite@0.4.24", + "deps": [ + { + "nodeId": "safer-buffer@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safer-buffer@2.1.2", + "pkgId": "safer-buffer@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.4.1", + "pkgId": "on-finished@2.4.1", + "deps": [ + { + "nodeId": "ee-first@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.1.1", + "pkgId": "ee-first@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@6.11.0", + "pkgId": "qs@6.11.0", + "deps": [ + { + "nodeId": "side-channel@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "side-channel@1.0.6", + "pkgId": "side-channel@1.0.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "object-inspect@1.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "call-bind@1.0.7", + "pkgId": "call-bind@1.0.7", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "set-function-length@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-define-property@1.0.0", + "pkgId": "es-define-property@1.0.0", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-intrinsic@1.2.4", + "pkgId": "get-intrinsic@1.2.4", + "deps": [ + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-errors@1.3.0", + "pkgId": "es-errors@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "function-bind@1.1.2", + "pkgId": "function-bind@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-proto@1.0.3", + "pkgId": "has-proto@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-symbols@1.0.3", + "pkgId": "has-symbols@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hasown@2.0.2", + "pkgId": "hasown@2.0.2", + "deps": [ + { + "nodeId": "function-bind@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "set-function-length@1.2.2", + "pkgId": "set-function-length@1.2.2", + "deps": [ + { + "nodeId": "define-data-property@1.1.4" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-data-property@1.1.4", + "pkgId": "define-data-property@1.1.4", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "gopd@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gopd@1.0.1", + "pkgId": "gopd@1.0.1", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-property-descriptors@1.0.2", + "pkgId": "has-property-descriptors@1.0.2", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-inspect@1.13.1", + "pkgId": "object-inspect@1.13.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-body@2.5.2", + "pkgId": "raw-body@2.5.2", + "deps": [ + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unpipe@1.0.0", + "pkgId": "unpipe@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.6.18", + "pkgId": "type-is@1.6.18", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "media-typer@0.3.0", + "pkgId": "media-typer@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-disposition@0.5.4", + "pkgId": "content-disposition@0.5.4", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-buffer@5.2.1", + "pkgId": "safe-buffer@5.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie@0.6.0", + "pkgId": "cookie@0.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie-signature@1.0.6", + "pkgId": "cookie-signature@1.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "encodeurl@1.0.2", + "pkgId": "encodeurl@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-html@1.0.3", + "pkgId": "escape-html@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "etag@1.8.1", + "pkgId": "etag@1.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "finalhandler@1.2.0", + "pkgId": "finalhandler@1.2.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parseurl@1.3.3", + "pkgId": "parseurl@1.3.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fresh@0.5.2", + "pkgId": "fresh@0.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge-descriptors@1.0.1", + "pkgId": "merge-descriptors@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "methods@1.1.2", + "pkgId": "methods@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-to-regexp@0.1.7", + "pkgId": "path-to-regexp@0.1.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proxy-addr@2.0.7", + "pkgId": "proxy-addr@2.0.7", + "deps": [ + { + "nodeId": "forwarded@0.2.0" + }, + { + "nodeId": "ipaddr.js@1.9.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "forwarded@0.2.0", + "pkgId": "forwarded@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ipaddr.js@1.9.1", + "pkgId": "ipaddr.js@1.9.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "range-parser@1.2.1", + "pkgId": "range-parser@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "send@0.18.0", + "pkgId": "send@0.18.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "destroy@1.2.0" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "mime@1.6.0" + }, + { + "nodeId": "ms@2.1.3" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "statuses@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@1.6.0", + "pkgId": "mime@1.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.1.3", + "pkgId": "ms@2.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serve-static@1.15.0", + "pkgId": "serve-static@1.15.0", + "deps": [ + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "send@0.18.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "utils-merge@1.0.1", + "pkgId": "utils-merge@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } }, { - "nodeId": "@scope/my-local-pkg@undefined", - "pkgId": "@scope/my-local-pkg@", + "nodeId": "vary@1.1.2", + "pkgId": "vary@1.1.2", "deps": [], "info": { "labels": { @@ -104,4 +1567,4 @@ } ] } -} +} \ No newline at end of file diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/Readme.md b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/Readme.md new file mode 100644 index 00000000..66949c4d --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/Readme.md @@ -0,0 +1,3 @@ +This use case does not apply to the pnpm-lockfile.yaml. +The '@blitzjs/display' does not create a cyclic dependency with pnpm, as it does not appear as a dependency of itself. +Inspect and compare pnpm-lock.yaml with package-lock.json. diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/expected.json new file mode 100644 index 00000000..1b586442 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/expected.json @@ -0,0 +1,735 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "cyclic@", + "info": { + "name": "cyclic" + } + }, + { + "id": "@blitzjs/display@0.43.0", + "info": { + "name": "@blitzjs/display", + "version": "0.43.0" + } + }, + { + "id": "chalk@4.1.2", + "info": { + "name": "chalk", + "version": "4.1.2" + } + }, + { + "id": "ansi-styles@4.3.0", + "info": { + "name": "ansi-styles", + "version": "4.3.0" + } + }, + { + "id": "color-convert@2.0.1", + "info": { + "name": "color-convert", + "version": "2.0.1" + } + }, + { + "id": "color-name@1.1.4", + "info": { + "name": "color-name", + "version": "1.1.4" + } + }, + { + "id": "supports-color@7.2.0", + "info": { + "name": "supports-color", + "version": "7.2.0" + } + }, + { + "id": "has-flag@4.0.0", + "info": { + "name": "has-flag", + "version": "4.0.0" + } + }, + { + "id": "console-table-printer@2.12.0", + "info": { + "name": "console-table-printer", + "version": "2.12.0" + } + }, + { + "id": "simple-wcswidth@1.0.1", + "info": { + "name": "simple-wcswidth", + "version": "1.0.1" + } + }, + { + "id": "ora@5.4.1", + "info": { + "name": "ora", + "version": "5.4.1" + } + }, + { + "id": "bl@4.1.0", + "info": { + "name": "bl", + "version": "4.1.0" + } + }, + { + "id": "buffer@5.7.1", + "info": { + "name": "buffer", + "version": "5.7.1" + } + }, + { + "id": "base64-js@1.5.1", + "info": { + "name": "base64-js", + "version": "1.5.1" + } + }, + { + "id": "ieee754@1.2.1", + "info": { + "name": "ieee754", + "version": "1.2.1" + } + }, + { + "id": "inherits@2.0.4", + "info": { + "name": "inherits", + "version": "2.0.4" + } + }, + { + "id": "readable-stream@3.6.2", + "info": { + "name": "readable-stream", + "version": "3.6.2" + } + }, + { + "id": "string_decoder@1.3.0", + "info": { + "name": "string_decoder", + "version": "1.3.0" + } + }, + { + "id": "safe-buffer@5.2.1", + "info": { + "name": "safe-buffer", + "version": "5.2.1" + } + }, + { + "id": "util-deprecate@1.0.2", + "info": { + "name": "util-deprecate", + "version": "1.0.2" + } + }, + { + "id": "cli-cursor@3.1.0", + "info": { + "name": "cli-cursor", + "version": "3.1.0" + } + }, + { + "id": "restore-cursor@3.1.0", + "info": { + "name": "restore-cursor", + "version": "3.1.0" + } + }, + { + "id": "onetime@5.1.2", + "info": { + "name": "onetime", + "version": "5.1.2" + } + }, + { + "id": "mimic-fn@2.1.0", + "info": { + "name": "mimic-fn", + "version": "2.1.0" + } + }, + { + "id": "signal-exit@3.0.7", + "info": { + "name": "signal-exit", + "version": "3.0.7" + } + }, + { + "id": "cli-spinners@2.9.2", + "info": { + "name": "cli-spinners", + "version": "2.9.2" + } + }, + { + "id": "is-interactive@1.0.0", + "info": { + "name": "is-interactive", + "version": "1.0.0" + } + }, + { + "id": "is-unicode-supported@0.1.0", + "info": { + "name": "is-unicode-supported", + "version": "0.1.0" + } + }, + { + "id": "log-symbols@4.1.0", + "info": { + "name": "log-symbols", + "version": "4.1.0" + } + }, + { + "id": "strip-ansi@6.0.1", + "info": { + "name": "strip-ansi", + "version": "6.0.1" + } + }, + { + "id": "ansi-regex@5.0.1", + "info": { + "name": "ansi-regex", + "version": "5.0.1" + } + }, + { + "id": "wcwidth@1.0.1", + "info": { + "name": "wcwidth", + "version": "1.0.1" + } + }, + { + "id": "defaults@1.0.4", + "info": { + "name": "defaults", + "version": "1.0.4" + } + }, + { + "id": "clone@1.0.4", + "info": { + "name": "clone", + "version": "1.0.4" + } + }, + { + "id": "readline@1.3.0", + "info": { + "name": "readline", + "version": "1.3.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "cyclic@", + "deps": [ + { + "nodeId": "@blitzjs/display@0.43.0" + } + ] + }, + { + "nodeId": "@blitzjs/display@0.43.0", + "pkgId": "@blitzjs/display@0.43.0", + "deps": [ + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "console-table-printer@2.12.0" + }, + { + "nodeId": "ora@5.4.1" + }, + { + "nodeId": "readline@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chalk@4.1.2", + "pkgId": "chalk@4.1.2", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-styles@4.3.0", + "pkgId": "ansi-styles@4.3.0", + "deps": [ + { + "nodeId": "color-convert@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-convert@2.0.1", + "pkgId": "color-convert@2.0.1", + "deps": [ + { + "nodeId": "color-name@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-name@1.1.4", + "pkgId": "color-name@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-color@7.2.0", + "pkgId": "supports-color@7.2.0", + "deps": [ + { + "nodeId": "has-flag@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-flag@4.0.0", + "pkgId": "has-flag@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "console-table-printer@2.12.0", + "pkgId": "console-table-printer@2.12.0", + "deps": [ + { + "nodeId": "simple-wcswidth@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "simple-wcswidth@1.0.1", + "pkgId": "simple-wcswidth@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ora@5.4.1", + "pkgId": "ora@5.4.1", + "deps": [ + { + "nodeId": "bl@4.1.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-spinners@2.9.2" + }, + { + "nodeId": "is-interactive@1.0.0" + }, + { + "nodeId": "is-unicode-supported@0.1.0" + }, + { + "nodeId": "log-symbols@4.1.0" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "wcwidth@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bl@4.1.0", + "pkgId": "bl@4.1.0", + "deps": [ + { + "nodeId": "buffer@5.7.1" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "readable-stream@3.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "buffer@5.7.1", + "pkgId": "buffer@5.7.1", + "deps": [ + { + "nodeId": "base64-js@1.5.1" + }, + { + "nodeId": "ieee754@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "base64-js@1.5.1", + "pkgId": "base64-js@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ieee754@1.2.1", + "pkgId": "ieee754@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.4", + "pkgId": "inherits@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-stream@3.6.2", + "pkgId": "readable-stream@3.6.2", + "deps": [ + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "string_decoder@1.3.0" + }, + { + "nodeId": "util-deprecate@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string_decoder@1.3.0", + "pkgId": "string_decoder@1.3.0", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-buffer@5.2.1", + "pkgId": "safe-buffer@5.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "util-deprecate@1.0.2", + "pkgId": "util-deprecate@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-cursor@3.1.0", + "pkgId": "cli-cursor@3.1.0", + "deps": [ + { + "nodeId": "restore-cursor@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "restore-cursor@3.1.0", + "pkgId": "restore-cursor@3.1.0", + "deps": [ + { + "nodeId": "onetime@5.1.2" + }, + { + "nodeId": "signal-exit@3.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "onetime@5.1.2", + "pkgId": "onetime@5.1.2", + "deps": [ + { + "nodeId": "mimic-fn@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mimic-fn@2.1.0", + "pkgId": "mimic-fn@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "signal-exit@3.0.7", + "pkgId": "signal-exit@3.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-spinners@2.9.2", + "pkgId": "cli-spinners@2.9.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-interactive@1.0.0", + "pkgId": "is-interactive@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-unicode-supported@0.1.0", + "pkgId": "is-unicode-supported@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "log-symbols@4.1.0", + "pkgId": "log-symbols@4.1.0", + "deps": [ + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "is-unicode-supported@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@6.0.1", + "pkgId": "strip-ansi@6.0.1", + "deps": [ + { + "nodeId": "ansi-regex@5.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@5.0.1", + "pkgId": "ansi-regex@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wcwidth@1.0.1", + "pkgId": "wcwidth@1.0.1", + "deps": [ + { + "nodeId": "defaults@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "defaults@1.0.4", + "pkgId": "defaults@1.0.4", + "deps": [ + { + "nodeId": "clone@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clone@1.0.4", + "pkgId": "clone@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readline@1.3.0", + "pkgId": "readline@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package-lock.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package-lock.json new file mode 100644 index 00000000..50f35664 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package-lock.json @@ -0,0 +1,638 @@ +{ + "name": "cyclic", + "version": "0.7.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "cyclic", + "dependencies": { + "@blitzjs/display": "0.43.0" + } + }, + "node_modules/@blitzjs/display": { + "version": "0.43.0", + "resolved": "https://registry.npmjs.org/@blitzjs/display/-/display-0.43.0.tgz", + "integrity": "sha512-qk0X1VYXrOr/ktLsflRsgBSVYsN/z0E6RDvQ97rtXYY+MF83AAoacWbrynpZ9y+ne0WoiarG0il1xHhTc39IdQ==", + "dependencies": { + "@blitzjs/display": "0.43.0", + "chalk": "^4.1.0", + "console-table-printer": "^2.7.5", + "ora": "^5.3.0", + "readline": "1.3.0" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/console-table-printer": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/console-table-printer/-/console-table-printer-2.11.1.tgz", + "integrity": "sha512-8LfFpbF/BczoxPwo2oltto5bph8bJkGOATXsg3E9ddMJOGnWJciKHldx2zDj5XIBflaKzPfVCjOTl6tMh7lErg==", + "dependencies": { + "simple-wcswidth": "^1.0.1" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/simple-wcswidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-wcswidth/-/simple-wcswidth-1.0.1.tgz", + "integrity": "sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==" + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dependencies": { + "defaults": "^1.0.3" + } + } + }, + "dependencies": { + "@blitzjs/display": { + "version": "0.43.0", + "resolved": "https://registry.npmjs.org/@blitzjs/display/-/display-0.43.0.tgz", + "integrity": "sha512-qk0X1VYXrOr/ktLsflRsgBSVYsN/z0E6RDvQ97rtXYY+MF83AAoacWbrynpZ9y+ne0WoiarG0il1xHhTc39IdQ==", + "requires": { + "@blitzjs/display": "0.43.0", + "chalk": "^4.1.0", + "console-table-printer": "^2.7.5", + "ora": "^5.3.0", + "readline": "1.3.0" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==" + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "console-table-printer": { + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/console-table-printer/-/console-table-printer-2.11.1.tgz", + "integrity": "sha512-8LfFpbF/BczoxPwo2oltto5bph8bJkGOATXsg3E9ddMJOGnWJciKHldx2zDj5XIBflaKzPfVCjOTl6tMh7lErg==", + "requires": { + "simple-wcswidth": "^1.0.1" + } + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "requires": { + "clone": "^1.0.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "simple-wcswidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-wcswidth/-/simple-wcswidth-1.0.1.tgz", + "integrity": "sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "requires": { + "defaults": "^1.0.3" + } + } + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package.json new file mode 100644 index 00000000..bfba471f --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/package.json @@ -0,0 +1,6 @@ +{ + "name": "cyclic", + "dependencies": { + "@blitzjs/display": "0.43.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/pnpm-lock.yaml new file mode 100644 index 00000000..4435405b --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/cyclic-dep/pnpm-lock.yaml @@ -0,0 +1,260 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@blitzjs/display': + specifier: 0.43.0 + version: 0.43.0 + +packages: + + '@blitzjs/display@0.43.0': + resolution: {integrity: sha512-qk0X1VYXrOr/ktLsflRsgBSVYsN/z0E6RDvQ97rtXYY+MF83AAoacWbrynpZ9y+ne0WoiarG0il1xHhTc39IdQ==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + console-table-printer@2.12.0: + resolution: {integrity: sha512-Q/Ax+UOpZw0oPZGmv8bH8/W5NpC2rAYy6cX20BVLGQ45v944oL+srmLTZAse/5a3vWDl0MXR/0GTEdsz2dDTbg==} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readline@1.3.0: + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + simple-wcswidth@1.0.1: + resolution: {integrity: sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + +snapshots: + + '@blitzjs/display@0.43.0': + dependencies: + chalk: 4.1.2 + console-table-printer: 2.12.0 + ora: 5.4.1 + readline: 1.3.0 + + ansi-regex@5.0.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + base64-js@1.5.1: {} + + bl@4.1.0: + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-spinners@2.9.2: {} + + clone@1.0.4: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + console-table-printer@2.12.0: + dependencies: + simple-wcswidth: 1.0.1 + + defaults@1.0.4: + dependencies: + clone: 1.0.4 + + has-flag@4.0.0: {} + + ieee754@1.2.1: {} + + inherits@2.0.4: {} + + is-interactive@1.0.0: {} + + is-unicode-supported@0.1.0: {} + + log-symbols@4.1.0: + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + + mimic-fn@2.1.0: {} + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + ora@5.4.1: + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readline@1.3.0: {} + + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + safe-buffer@5.2.1: {} + + signal-exit@3.0.7: {} + + simple-wcswidth@1.0.1: {} + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + util-deprecate@1.0.2: {} + + wcwidth@1.0.1: + dependencies: + defaults: 1.0.4 diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/expected.json new file mode 100644 index 00000000..3a284e97 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/expected.json @@ -0,0 +1,61221 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "deeply-scoped@0.0.0", + "info": { + "name": "deeply-scoped", + "version": "0.0.0" + } + }, + { + "id": "gatsby@4.25.8", + "info": { + "name": "gatsby", + "version": "4.25.8" + } + }, + { + "id": "@babel/code-frame@7.24.2", + "info": { + "name": "@babel/code-frame", + "version": "7.24.2" + } + }, + { + "id": "@babel/highlight@7.24.5", + "info": { + "name": "@babel/highlight", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-validator-identifier@7.24.5", + "info": { + "name": "@babel/helper-validator-identifier", + "version": "7.24.5" + } + }, + { + "id": "chalk@2.4.2", + "info": { + "name": "chalk", + "version": "2.4.2" + } + }, + { + "id": "ansi-styles@3.2.1", + "info": { + "name": "ansi-styles", + "version": "3.2.1" + } + }, + { + "id": "color-convert@1.9.3", + "info": { + "name": "color-convert", + "version": "1.9.3" + } + }, + { + "id": "color-name@1.1.3", + "info": { + "name": "color-name", + "version": "1.1.3" + } + }, + { + "id": "escape-string-regexp@1.0.5", + "info": { + "name": "escape-string-regexp", + "version": "1.0.5" + } + }, + { + "id": "supports-color@5.5.0", + "info": { + "name": "supports-color", + "version": "5.5.0" + } + }, + { + "id": "has-flag@3.0.0", + "info": { + "name": "has-flag", + "version": "3.0.0" + } + }, + { + "id": "js-tokens@4.0.0", + "info": { + "name": "js-tokens", + "version": "4.0.0" + } + }, + { + "id": "picocolors@1.0.0", + "info": { + "name": "picocolors", + "version": "1.0.0" + } + }, + { + "id": "@babel/core@7.24.5", + "info": { + "name": "@babel/core", + "version": "7.24.5" + } + }, + { + "id": "@ampproject/remapping@2.3.0", + "info": { + "name": "@ampproject/remapping", + "version": "2.3.0" + } + }, + { + "id": "@jridgewell/gen-mapping@0.3.5", + "info": { + "name": "@jridgewell/gen-mapping", + "version": "0.3.5" + } + }, + { + "id": "@jridgewell/set-array@1.2.1", + "info": { + "name": "@jridgewell/set-array", + "version": "1.2.1" + } + }, + { + "id": "@jridgewell/sourcemap-codec@1.4.15", + "info": { + "name": "@jridgewell/sourcemap-codec", + "version": "1.4.15" + } + }, + { + "id": "@jridgewell/trace-mapping@0.3.25", + "info": { + "name": "@jridgewell/trace-mapping", + "version": "0.3.25" + } + }, + { + "id": "@jridgewell/resolve-uri@3.1.2", + "info": { + "name": "@jridgewell/resolve-uri", + "version": "3.1.2" + } + }, + { + "id": "@babel/generator@7.24.5", + "info": { + "name": "@babel/generator", + "version": "7.24.5" + } + }, + { + "id": "@babel/types@7.24.5", + "info": { + "name": "@babel/types", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-string-parser@7.24.1", + "info": { + "name": "@babel/helper-string-parser", + "version": "7.24.1" + } + }, + { + "id": "to-fast-properties@2.0.0", + "info": { + "name": "to-fast-properties", + "version": "2.0.0" + } + }, + { + "id": "jsesc@2.5.2", + "info": { + "name": "jsesc", + "version": "2.5.2" + } + }, + { + "id": "@babel/helper-compilation-targets@7.23.6", + "info": { + "name": "@babel/helper-compilation-targets", + "version": "7.23.6" + } + }, + { + "id": "@babel/compat-data@7.24.4", + "info": { + "name": "@babel/compat-data", + "version": "7.24.4" + } + }, + { + "id": "@babel/helper-validator-option@7.23.5", + "info": { + "name": "@babel/helper-validator-option", + "version": "7.23.5" + } + }, + { + "id": "browserslist@4.23.0", + "info": { + "name": "browserslist", + "version": "4.23.0" + } + }, + { + "id": "caniuse-lite@1.0.30001617", + "info": { + "name": "caniuse-lite", + "version": "1.0.30001617" + } + }, + { + "id": "electron-to-chromium@1.4.761", + "info": { + "name": "electron-to-chromium", + "version": "1.4.761" + } + }, + { + "id": "node-releases@2.0.14", + "info": { + "name": "node-releases", + "version": "2.0.14" + } + }, + { + "id": "update-browserslist-db@1.0.15", + "info": { + "name": "update-browserslist-db", + "version": "1.0.15" + } + }, + { + "id": "escalade@3.1.2", + "info": { + "name": "escalade", + "version": "3.1.2" + } + }, + { + "id": "lru-cache@5.1.1", + "info": { + "name": "lru-cache", + "version": "5.1.1" + } + }, + { + "id": "yallist@3.1.1", + "info": { + "name": "yallist", + "version": "3.1.1" + } + }, + { + "id": "semver@6.3.1", + "info": { + "name": "semver", + "version": "6.3.1" + } + }, + { + "id": "@babel/helper-module-transforms@7.24.5", + "info": { + "name": "@babel/helper-module-transforms", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-environment-visitor@7.22.20", + "info": { + "name": "@babel/helper-environment-visitor", + "version": "7.22.20" + } + }, + { + "id": "@babel/helper-module-imports@7.24.3", + "info": { + "name": "@babel/helper-module-imports", + "version": "7.24.3" + } + }, + { + "id": "@babel/helper-simple-access@7.24.5", + "info": { + "name": "@babel/helper-simple-access", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-split-export-declaration@7.24.5", + "info": { + "name": "@babel/helper-split-export-declaration", + "version": "7.24.5" + } + }, + { + "id": "@babel/helpers@7.24.5", + "info": { + "name": "@babel/helpers", + "version": "7.24.5" + } + }, + { + "id": "@babel/template@7.24.0", + "info": { + "name": "@babel/template", + "version": "7.24.0" + } + }, + { + "id": "@babel/parser@7.24.5", + "info": { + "name": "@babel/parser", + "version": "7.24.5" + } + }, + { + "id": "@babel/traverse@7.24.5", + "info": { + "name": "@babel/traverse", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-function-name@7.23.0", + "info": { + "name": "@babel/helper-function-name", + "version": "7.23.0" + } + }, + { + "id": "@babel/helper-hoist-variables@7.22.5", + "info": { + "name": "@babel/helper-hoist-variables", + "version": "7.22.5" + } + }, + { + "id": "debug@4.3.4", + "info": { + "name": "debug", + "version": "4.3.4" + } + }, + { + "id": "ms@2.1.2", + "info": { + "name": "ms", + "version": "2.1.2" + } + }, + { + "id": "globals@11.12.0", + "info": { + "name": "globals", + "version": "11.12.0" + } + }, + { + "id": "convert-source-map@2.0.0", + "info": { + "name": "convert-source-map", + "version": "2.0.0" + } + }, + { + "id": "gensync@1.0.0-beta.2", + "info": { + "name": "gensync", + "version": "1.0.0-beta.2" + } + }, + { + "id": "json5@2.2.3", + "info": { + "name": "json5", + "version": "2.2.3" + } + }, + { + "id": "@babel/eslint-parser@7.24.5", + "info": { + "name": "@babel/eslint-parser", + "version": "7.24.5" + } + }, + { + "id": "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1", + "info": { + "name": "@nicolo-ribaudo/eslint-scope-5-internals", + "version": "5.1.1-v1" + } + }, + { + "id": "eslint-scope@5.1.1", + "info": { + "name": "eslint-scope", + "version": "5.1.1" + } + }, + { + "id": "esrecurse@4.3.0", + "info": { + "name": "esrecurse", + "version": "4.3.0" + } + }, + { + "id": "estraverse@5.3.0", + "info": { + "name": "estraverse", + "version": "5.3.0" + } + }, + { + "id": "estraverse@4.3.0", + "info": { + "name": "estraverse", + "version": "4.3.0" + } + }, + { + "id": "eslint@7.32.0", + "info": { + "name": "eslint", + "version": "7.32.0" + } + }, + { + "id": "@babel/code-frame@7.12.11", + "info": { + "name": "@babel/code-frame", + "version": "7.12.11" + } + }, + { + "id": "@eslint/eslintrc@0.4.3", + "info": { + "name": "@eslint/eslintrc", + "version": "0.4.3" + } + }, + { + "id": "ajv@6.12.6", + "info": { + "name": "ajv", + "version": "6.12.6" + } + }, + { + "id": "fast-deep-equal@3.1.3", + "info": { + "name": "fast-deep-equal", + "version": "3.1.3" + } + }, + { + "id": "fast-json-stable-stringify@2.1.0", + "info": { + "name": "fast-json-stable-stringify", + "version": "2.1.0" + } + }, + { + "id": "json-schema-traverse@0.4.1", + "info": { + "name": "json-schema-traverse", + "version": "0.4.1" + } + }, + { + "id": "uri-js@4.4.1", + "info": { + "name": "uri-js", + "version": "4.4.1" + } + }, + { + "id": "punycode@2.3.1", + "info": { + "name": "punycode", + "version": "2.3.1" + } + }, + { + "id": "espree@7.3.1", + "info": { + "name": "espree", + "version": "7.3.1" + } + }, + { + "id": "acorn@7.4.1", + "info": { + "name": "acorn", + "version": "7.4.1" + } + }, + { + "id": "acorn-jsx@5.3.2", + "info": { + "name": "acorn-jsx", + "version": "5.3.2" + } + }, + { + "id": "eslint-visitor-keys@1.3.0", + "info": { + "name": "eslint-visitor-keys", + "version": "1.3.0" + } + }, + { + "id": "globals@13.24.0", + "info": { + "name": "globals", + "version": "13.24.0" + } + }, + { + "id": "type-fest@0.20.2", + "info": { + "name": "type-fest", + "version": "0.20.2" + } + }, + { + "id": "ignore@4.0.6", + "info": { + "name": "ignore", + "version": "4.0.6" + } + }, + { + "id": "import-fresh@3.3.0", + "info": { + "name": "import-fresh", + "version": "3.3.0" + } + }, + { + "id": "parent-module@1.0.1", + "info": { + "name": "parent-module", + "version": "1.0.1" + } + }, + { + "id": "callsites@3.1.0", + "info": { + "name": "callsites", + "version": "3.1.0" + } + }, + { + "id": "resolve-from@4.0.0", + "info": { + "name": "resolve-from", + "version": "4.0.0" + } + }, + { + "id": "js-yaml@3.14.1", + "info": { + "name": "js-yaml", + "version": "3.14.1" + } + }, + { + "id": "argparse@1.0.10", + "info": { + "name": "argparse", + "version": "1.0.10" + } + }, + { + "id": "sprintf-js@1.0.3", + "info": { + "name": "sprintf-js", + "version": "1.0.3" + } + }, + { + "id": "esprima@4.0.1", + "info": { + "name": "esprima", + "version": "4.0.1" + } + }, + { + "id": "minimatch@3.1.2", + "info": { + "name": "minimatch", + "version": "3.1.2" + } + }, + { + "id": "brace-expansion@1.1.11", + "info": { + "name": "brace-expansion", + "version": "1.1.11" + } + }, + { + "id": "balanced-match@1.0.2", + "info": { + "name": "balanced-match", + "version": "1.0.2" + } + }, + { + "id": "concat-map@0.0.1", + "info": { + "name": "concat-map", + "version": "0.0.1" + } + }, + { + "id": "strip-json-comments@3.1.1", + "info": { + "name": "strip-json-comments", + "version": "3.1.1" + } + }, + { + "id": "@humanwhocodes/config-array@0.5.0", + "info": { + "name": "@humanwhocodes/config-array", + "version": "0.5.0" + } + }, + { + "id": "@humanwhocodes/object-schema@1.2.1", + "info": { + "name": "@humanwhocodes/object-schema", + "version": "1.2.1" + } + }, + { + "id": "chalk@4.1.2", + "info": { + "name": "chalk", + "version": "4.1.2" + } + }, + { + "id": "ansi-styles@4.3.0", + "info": { + "name": "ansi-styles", + "version": "4.3.0" + } + }, + { + "id": "color-convert@2.0.1", + "info": { + "name": "color-convert", + "version": "2.0.1" + } + }, + { + "id": "color-name@1.1.4", + "info": { + "name": "color-name", + "version": "1.1.4" + } + }, + { + "id": "supports-color@7.2.0", + "info": { + "name": "supports-color", + "version": "7.2.0" + } + }, + { + "id": "has-flag@4.0.0", + "info": { + "name": "has-flag", + "version": "4.0.0" + } + }, + { + "id": "cross-spawn@7.0.3", + "info": { + "name": "cross-spawn", + "version": "7.0.3" + } + }, + { + "id": "path-key@3.1.1", + "info": { + "name": "path-key", + "version": "3.1.1" + } + }, + { + "id": "shebang-command@2.0.0", + "info": { + "name": "shebang-command", + "version": "2.0.0" + } + }, + { + "id": "shebang-regex@3.0.0", + "info": { + "name": "shebang-regex", + "version": "3.0.0" + } + }, + { + "id": "which@2.0.2", + "info": { + "name": "which", + "version": "2.0.2" + } + }, + { + "id": "isexe@2.0.0", + "info": { + "name": "isexe", + "version": "2.0.0" + } + }, + { + "id": "doctrine@3.0.0", + "info": { + "name": "doctrine", + "version": "3.0.0" + } + }, + { + "id": "esutils@2.0.3", + "info": { + "name": "esutils", + "version": "2.0.3" + } + }, + { + "id": "enquirer@2.4.1", + "info": { + "name": "enquirer", + "version": "2.4.1" + } + }, + { + "id": "ansi-colors@4.1.3", + "info": { + "name": "ansi-colors", + "version": "4.1.3" + } + }, + { + "id": "strip-ansi@6.0.1", + "info": { + "name": "strip-ansi", + "version": "6.0.1" + } + }, + { + "id": "ansi-regex@5.0.1", + "info": { + "name": "ansi-regex", + "version": "5.0.1" + } + }, + { + "id": "escape-string-regexp@4.0.0", + "info": { + "name": "escape-string-regexp", + "version": "4.0.0" + } + }, + { + "id": "eslint-utils@2.1.0", + "info": { + "name": "eslint-utils", + "version": "2.1.0" + } + }, + { + "id": "eslint-visitor-keys@2.1.0", + "info": { + "name": "eslint-visitor-keys", + "version": "2.1.0" + } + }, + { + "id": "esquery@1.5.0", + "info": { + "name": "esquery", + "version": "1.5.0" + } + }, + { + "id": "file-entry-cache@6.0.1", + "info": { + "name": "file-entry-cache", + "version": "6.0.1" + } + }, + { + "id": "flat-cache@3.2.0", + "info": { + "name": "flat-cache", + "version": "3.2.0" + } + }, + { + "id": "flatted@3.3.1", + "info": { + "name": "flatted", + "version": "3.3.1" + } + }, + { + "id": "keyv@4.5.4", + "info": { + "name": "keyv", + "version": "4.5.4" + } + }, + { + "id": "json-buffer@3.0.1", + "info": { + "name": "json-buffer", + "version": "3.0.1" + } + }, + { + "id": "rimraf@3.0.2", + "info": { + "name": "rimraf", + "version": "3.0.2" + } + }, + { + "id": "glob@7.2.3", + "info": { + "name": "glob", + "version": "7.2.3" + } + }, + { + "id": "fs.realpath@1.0.0", + "info": { + "name": "fs.realpath", + "version": "1.0.0" + } + }, + { + "id": "inflight@1.0.6", + "info": { + "name": "inflight", + "version": "1.0.6" + } + }, + { + "id": "once@1.4.0", + "info": { + "name": "once", + "version": "1.4.0" + } + }, + { + "id": "wrappy@1.0.2", + "info": { + "name": "wrappy", + "version": "1.0.2" + } + }, + { + "id": "inherits@2.0.4", + "info": { + "name": "inherits", + "version": "2.0.4" + } + }, + { + "id": "path-is-absolute@1.0.1", + "info": { + "name": "path-is-absolute", + "version": "1.0.1" + } + }, + { + "id": "functional-red-black-tree@1.0.1", + "info": { + "name": "functional-red-black-tree", + "version": "1.0.1" + } + }, + { + "id": "glob-parent@5.1.2", + "info": { + "name": "glob-parent", + "version": "5.1.2" + } + }, + { + "id": "is-glob@4.0.3", + "info": { + "name": "is-glob", + "version": "4.0.3" + } + }, + { + "id": "is-extglob@2.1.1", + "info": { + "name": "is-extglob", + "version": "2.1.1" + } + }, + { + "id": "imurmurhash@0.1.4", + "info": { + "name": "imurmurhash", + "version": "0.1.4" + } + }, + { + "id": "json-stable-stringify-without-jsonify@1.0.1", + "info": { + "name": "json-stable-stringify-without-jsonify", + "version": "1.0.1" + } + }, + { + "id": "levn@0.4.1", + "info": { + "name": "levn", + "version": "0.4.1" + } + }, + { + "id": "prelude-ls@1.2.1", + "info": { + "name": "prelude-ls", + "version": "1.2.1" + } + }, + { + "id": "type-check@0.4.0", + "info": { + "name": "type-check", + "version": "0.4.0" + } + }, + { + "id": "lodash.merge@4.6.2", + "info": { + "name": "lodash.merge", + "version": "4.6.2" + } + }, + { + "id": "natural-compare@1.4.0", + "info": { + "name": "natural-compare", + "version": "1.4.0" + } + }, + { + "id": "optionator@0.9.4", + "info": { + "name": "optionator", + "version": "0.9.4" + } + }, + { + "id": "deep-is@0.1.4", + "info": { + "name": "deep-is", + "version": "0.1.4" + } + }, + { + "id": "fast-levenshtein@2.0.6", + "info": { + "name": "fast-levenshtein", + "version": "2.0.6" + } + }, + { + "id": "word-wrap@1.2.5", + "info": { + "name": "word-wrap", + "version": "1.2.5" + } + }, + { + "id": "progress@2.0.3", + "info": { + "name": "progress", + "version": "2.0.3" + } + }, + { + "id": "regexpp@3.2.0", + "info": { + "name": "regexpp", + "version": "3.2.0" + } + }, + { + "id": "semver@7.6.1", + "info": { + "name": "semver", + "version": "7.6.1" + } + }, + { + "id": "table@6.8.2", + "info": { + "name": "table", + "version": "6.8.2" + } + }, + { + "id": "ajv@8.13.0", + "info": { + "name": "ajv", + "version": "8.13.0" + } + }, + { + "id": "json-schema-traverse@1.0.0", + "info": { + "name": "json-schema-traverse", + "version": "1.0.0" + } + }, + { + "id": "require-from-string@2.0.2", + "info": { + "name": "require-from-string", + "version": "2.0.2" + } + }, + { + "id": "lodash.truncate@4.4.2", + "info": { + "name": "lodash.truncate", + "version": "4.4.2" + } + }, + { + "id": "slice-ansi@4.0.0", + "info": { + "name": "slice-ansi", + "version": "4.0.0" + } + }, + { + "id": "astral-regex@2.0.0", + "info": { + "name": "astral-regex", + "version": "2.0.0" + } + }, + { + "id": "is-fullwidth-code-point@3.0.0", + "info": { + "name": "is-fullwidth-code-point", + "version": "3.0.0" + } + }, + { + "id": "string-width@4.2.3", + "info": { + "name": "string-width", + "version": "4.2.3" + } + }, + { + "id": "emoji-regex@8.0.0", + "info": { + "name": "emoji-regex", + "version": "8.0.0" + } + }, + { + "id": "text-table@0.2.0", + "info": { + "name": "text-table", + "version": "0.2.0" + } + }, + { + "id": "v8-compile-cache@2.4.0", + "info": { + "name": "v8-compile-cache", + "version": "2.4.0" + } + }, + { + "id": "@babel/helper-plugin-utils@7.24.5", + "info": { + "name": "@babel/helper-plugin-utils", + "version": "7.24.5" + } + }, + { + "id": "@babel/runtime@7.24.5", + "info": { + "name": "@babel/runtime", + "version": "7.24.5" + } + }, + { + "id": "regenerator-runtime@0.14.1", + "info": { + "name": "regenerator-runtime", + "version": "0.14.1" + } + }, + { + "id": "@builder.io/partytown@0.5.4", + "info": { + "name": "@builder.io/partytown", + "version": "0.5.4" + } + }, + { + "id": "@gatsbyjs/reach-router@1.3.9", + "info": { + "name": "@gatsbyjs/reach-router", + "version": "1.3.9" + } + }, + { + "id": "invariant@2.2.4", + "info": { + "name": "invariant", + "version": "2.2.4" + } + }, + { + "id": "loose-envify@1.4.0", + "info": { + "name": "loose-envify", + "version": "1.4.0" + } + }, + { + "id": "prop-types@15.8.1", + "info": { + "name": "prop-types", + "version": "15.8.1" + } + }, + { + "id": "object-assign@4.1.1", + "info": { + "name": "object-assign", + "version": "4.1.1" + } + }, + { + "id": "react-is@16.13.1", + "info": { + "name": "react-is", + "version": "16.13.1" + } + }, + { + "id": "react@18.3.1", + "info": { + "name": "react", + "version": "18.3.1" + } + }, + { + "id": "react-dom@18.3.1", + "info": { + "name": "react-dom", + "version": "18.3.1" + } + }, + { + "id": "scheduler@0.23.2", + "info": { + "name": "scheduler", + "version": "0.23.2" + } + }, + { + "id": "react-lifecycles-compat@3.0.4", + "info": { + "name": "react-lifecycles-compat", + "version": "3.0.4" + } + }, + { + "id": "@gatsbyjs/webpack-hot-middleware@2.25.3", + "info": { + "name": "@gatsbyjs/webpack-hot-middleware", + "version": "2.25.3" + } + }, + { + "id": "ansi-html-community@0.0.8", + "info": { + "name": "ansi-html-community", + "version": "0.0.8" + } + }, + { + "id": "html-entities@2.5.2", + "info": { + "name": "html-entities", + "version": "2.5.2" + } + }, + { + "id": "@graphql-codegen/add@3.2.3", + "info": { + "name": "@graphql-codegen/add", + "version": "3.2.3" + } + }, + { + "id": "@graphql-codegen/plugin-helpers@3.1.2", + "info": { + "name": "@graphql-codegen/plugin-helpers", + "version": "3.1.2" + } + }, + { + "id": "@graphql-tools/utils@9.2.1", + "info": { + "name": "@graphql-tools/utils", + "version": "9.2.1" + } + }, + { + "id": "@graphql-typed-document-node/core@3.2.0", + "info": { + "name": "@graphql-typed-document-node/core", + "version": "3.2.0" + } + }, + { + "id": "graphql@15.8.0", + "info": { + "name": "graphql", + "version": "15.8.0" + } + }, + { + "id": "tslib@2.4.1", + "info": { + "name": "tslib", + "version": "2.4.1" + } + }, + { + "id": "change-case-all@1.0.15", + "info": { + "name": "change-case-all", + "version": "1.0.15" + } + }, + { + "id": "change-case@4.1.2", + "info": { + "name": "change-case", + "version": "4.1.2" + } + }, + { + "id": "camel-case@4.1.2", + "info": { + "name": "camel-case", + "version": "4.1.2" + } + }, + { + "id": "pascal-case@3.1.2", + "info": { + "name": "pascal-case", + "version": "3.1.2" + } + }, + { + "id": "no-case@3.0.4", + "info": { + "name": "no-case", + "version": "3.0.4" + } + }, + { + "id": "lower-case@2.0.2", + "info": { + "name": "lower-case", + "version": "2.0.2" + } + }, + { + "id": "capital-case@1.0.4", + "info": { + "name": "capital-case", + "version": "1.0.4" + } + }, + { + "id": "upper-case-first@2.0.2", + "info": { + "name": "upper-case-first", + "version": "2.0.2" + } + }, + { + "id": "constant-case@3.0.4", + "info": { + "name": "constant-case", + "version": "3.0.4" + } + }, + { + "id": "upper-case@2.0.2", + "info": { + "name": "upper-case", + "version": "2.0.2" + } + }, + { + "id": "dot-case@3.0.4", + "info": { + "name": "dot-case", + "version": "3.0.4" + } + }, + { + "id": "header-case@2.0.4", + "info": { + "name": "header-case", + "version": "2.0.4" + } + }, + { + "id": "param-case@3.0.4", + "info": { + "name": "param-case", + "version": "3.0.4" + } + }, + { + "id": "path-case@3.0.4", + "info": { + "name": "path-case", + "version": "3.0.4" + } + }, + { + "id": "sentence-case@3.0.4", + "info": { + "name": "sentence-case", + "version": "3.0.4" + } + }, + { + "id": "snake-case@3.0.4", + "info": { + "name": "snake-case", + "version": "3.0.4" + } + }, + { + "id": "is-lower-case@2.0.2", + "info": { + "name": "is-lower-case", + "version": "2.0.2" + } + }, + { + "id": "is-upper-case@2.0.2", + "info": { + "name": "is-upper-case", + "version": "2.0.2" + } + }, + { + "id": "lower-case-first@2.0.2", + "info": { + "name": "lower-case-first", + "version": "2.0.2" + } + }, + { + "id": "sponge-case@1.0.1", + "info": { + "name": "sponge-case", + "version": "1.0.1" + } + }, + { + "id": "swap-case@2.0.2", + "info": { + "name": "swap-case", + "version": "2.0.2" + } + }, + { + "id": "title-case@3.0.3", + "info": { + "name": "title-case", + "version": "3.0.3" + } + }, + { + "id": "common-tags@1.8.2", + "info": { + "name": "common-tags", + "version": "1.8.2" + } + }, + { + "id": "import-from@4.0.0", + "info": { + "name": "import-from", + "version": "4.0.0" + } + }, + { + "id": "lodash@4.17.21", + "info": { + "name": "lodash", + "version": "4.17.21" + } + }, + { + "id": "@graphql-codegen/core@2.6.8", + "info": { + "name": "@graphql-codegen/core", + "version": "2.6.8" + } + }, + { + "id": "@graphql-tools/schema@9.0.19", + "info": { + "name": "@graphql-tools/schema", + "version": "9.0.19" + } + }, + { + "id": "@graphql-tools/merge@8.4.2", + "info": { + "name": "@graphql-tools/merge", + "version": "8.4.2" + } + }, + { + "id": "value-or-promise@1.0.12", + "info": { + "name": "value-or-promise", + "version": "1.0.12" + } + }, + { + "id": "@graphql-codegen/plugin-helpers@2.7.2", + "info": { + "name": "@graphql-codegen/plugin-helpers", + "version": "2.7.2" + } + }, + { + "id": "@graphql-tools/utils@8.13.1", + "info": { + "name": "@graphql-tools/utils", + "version": "8.13.1" + } + }, + { + "id": "change-case-all@1.0.14", + "info": { + "name": "change-case-all", + "version": "1.0.14" + } + }, + { + "id": "@graphql-codegen/typescript@2.8.8", + "info": { + "name": "@graphql-codegen/typescript", + "version": "2.8.8" + } + }, + { + "id": "@graphql-codegen/schema-ast@2.6.1", + "info": { + "name": "@graphql-codegen/schema-ast", + "version": "2.6.1" + } + }, + { + "id": "@graphql-codegen/visitor-plugin-common@2.13.8", + "info": { + "name": "@graphql-codegen/visitor-plugin-common", + "version": "2.13.8" + } + }, + { + "id": "@graphql-tools/optimize@1.4.0", + "info": { + "name": "@graphql-tools/optimize", + "version": "1.4.0" + } + }, + { + "id": "@graphql-tools/relay-operation-optimizer@6.5.18", + "info": { + "name": "@graphql-tools/relay-operation-optimizer", + "version": "6.5.18" + } + }, + { + "id": "@ardatan/relay-compiler@12.0.0", + "info": { + "name": "@ardatan/relay-compiler", + "version": "12.0.0" + } + }, + { + "id": "babel-preset-fbjs@3.4.0", + "info": { + "name": "babel-preset-fbjs", + "version": "3.4.0" + } + }, + { + "id": "@babel/plugin-proposal-class-properties@7.18.6", + "info": { + "name": "@babel/plugin-proposal-class-properties", + "version": "7.18.6" + } + }, + { + "id": "@babel/helper-create-class-features-plugin@7.24.5", + "info": { + "name": "@babel/helper-create-class-features-plugin", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-annotate-as-pure@7.22.5", + "info": { + "name": "@babel/helper-annotate-as-pure", + "version": "7.22.5" + } + }, + { + "id": "@babel/helper-member-expression-to-functions@7.24.5", + "info": { + "name": "@babel/helper-member-expression-to-functions", + "version": "7.24.5" + } + }, + { + "id": "@babel/helper-optimise-call-expression@7.22.5", + "info": { + "name": "@babel/helper-optimise-call-expression", + "version": "7.22.5" + } + }, + { + "id": "@babel/helper-replace-supers@7.24.1", + "info": { + "name": "@babel/helper-replace-supers", + "version": "7.24.1" + } + }, + { + "id": "@babel/helper-skip-transparent-expression-wrappers@7.22.5", + "info": { + "name": "@babel/helper-skip-transparent-expression-wrappers", + "version": "7.22.5" + } + }, + { + "id": "@babel/plugin-proposal-object-rest-spread@7.20.7", + "info": { + "name": "@babel/plugin-proposal-object-rest-spread", + "version": "7.20.7" + } + }, + { + "id": "@babel/plugin-syntax-object-rest-spread@7.8.3", + "info": { + "name": "@babel/plugin-syntax-object-rest-spread", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-transform-parameters@7.24.5", + "info": { + "name": "@babel/plugin-transform-parameters", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-syntax-class-properties@7.12.13", + "info": { + "name": "@babel/plugin-syntax-class-properties", + "version": "7.12.13" + } + }, + { + "id": "@babel/plugin-syntax-flow@7.24.1", + "info": { + "name": "@babel/plugin-syntax-flow", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-syntax-jsx@7.24.1", + "info": { + "name": "@babel/plugin-syntax-jsx", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-arrow-functions@7.24.1", + "info": { + "name": "@babel/plugin-transform-arrow-functions", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-block-scoped-functions@7.24.1", + "info": { + "name": "@babel/plugin-transform-block-scoped-functions", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-block-scoping@7.24.5", + "info": { + "name": "@babel/plugin-transform-block-scoping", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-classes@7.24.5", + "info": { + "name": "@babel/plugin-transform-classes", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-computed-properties@7.24.1", + "info": { + "name": "@babel/plugin-transform-computed-properties", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-destructuring@7.24.5", + "info": { + "name": "@babel/plugin-transform-destructuring", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-flow-strip-types@7.24.1", + "info": { + "name": "@babel/plugin-transform-flow-strip-types", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-for-of@7.24.1", + "info": { + "name": "@babel/plugin-transform-for-of", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-function-name@7.24.1", + "info": { + "name": "@babel/plugin-transform-function-name", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-literals@7.24.1", + "info": { + "name": "@babel/plugin-transform-literals", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-member-expression-literals@7.24.1", + "info": { + "name": "@babel/plugin-transform-member-expression-literals", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-modules-commonjs@7.24.1", + "info": { + "name": "@babel/plugin-transform-modules-commonjs", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-object-super@7.24.1", + "info": { + "name": "@babel/plugin-transform-object-super", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-property-literals@7.24.1", + "info": { + "name": "@babel/plugin-transform-property-literals", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-react-display-name@7.24.1", + "info": { + "name": "@babel/plugin-transform-react-display-name", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-react-jsx@7.23.4", + "info": { + "name": "@babel/plugin-transform-react-jsx", + "version": "7.23.4" + } + }, + { + "id": "@babel/plugin-transform-shorthand-properties@7.24.1", + "info": { + "name": "@babel/plugin-transform-shorthand-properties", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-spread@7.24.1", + "info": { + "name": "@babel/plugin-transform-spread", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-template-literals@7.24.1", + "info": { + "name": "@babel/plugin-transform-template-literals", + "version": "7.24.1" + } + }, + { + "id": "babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0", + "info": { + "name": "babel-plugin-syntax-trailing-function-commas", + "version": "7.0.0-beta.0" + } + }, + { + "id": "fb-watchman@2.0.2", + "info": { + "name": "fb-watchman", + "version": "2.0.2" + } + }, + { + "id": "bser@2.1.1", + "info": { + "name": "bser", + "version": "2.1.1" + } + }, + { + "id": "node-int64@0.4.0", + "info": { + "name": "node-int64", + "version": "0.4.0" + } + }, + { + "id": "fbjs@3.0.5", + "info": { + "name": "fbjs", + "version": "3.0.5" + } + }, + { + "id": "cross-fetch@3.1.8", + "info": { + "name": "cross-fetch", + "version": "3.1.8" + } + }, + { + "id": "node-fetch@2.7.0", + "info": { + "name": "node-fetch", + "version": "2.7.0" + } + }, + { + "id": "whatwg-url@5.0.0", + "info": { + "name": "whatwg-url", + "version": "5.0.0" + } + }, + { + "id": "tr46@0.0.3", + "info": { + "name": "tr46", + "version": "0.0.3" + } + }, + { + "id": "webidl-conversions@3.0.1", + "info": { + "name": "webidl-conversions", + "version": "3.0.1" + } + }, + { + "id": "fbjs-css-vars@1.0.2", + "info": { + "name": "fbjs-css-vars", + "version": "1.0.2" + } + }, + { + "id": "promise@7.3.1", + "info": { + "name": "promise", + "version": "7.3.1" + } + }, + { + "id": "asap@2.0.6", + "info": { + "name": "asap", + "version": "2.0.6" + } + }, + { + "id": "setimmediate@1.0.5", + "info": { + "name": "setimmediate", + "version": "1.0.5" + } + }, + { + "id": "ua-parser-js@1.0.37", + "info": { + "name": "ua-parser-js", + "version": "1.0.37" + } + }, + { + "id": "immutable@3.7.6", + "info": { + "name": "immutable", + "version": "3.7.6" + } + }, + { + "id": "nullthrows@1.1.1", + "info": { + "name": "nullthrows", + "version": "1.1.1" + } + }, + { + "id": "relay-runtime@12.0.0", + "info": { + "name": "relay-runtime", + "version": "12.0.0" + } + }, + { + "id": "signedsource@1.0.0", + "info": { + "name": "signedsource", + "version": "1.0.0" + } + }, + { + "id": "yargs@15.4.1", + "info": { + "name": "yargs", + "version": "15.4.1" + } + }, + { + "id": "cliui@6.0.0", + "info": { + "name": "cliui", + "version": "6.0.0" + } + }, + { + "id": "wrap-ansi@6.2.0", + "info": { + "name": "wrap-ansi", + "version": "6.2.0" + } + }, + { + "id": "decamelize@1.2.0", + "info": { + "name": "decamelize", + "version": "1.2.0" + } + }, + { + "id": "find-up@4.1.0", + "info": { + "name": "find-up", + "version": "4.1.0" + } + }, + { + "id": "locate-path@5.0.0", + "info": { + "name": "locate-path", + "version": "5.0.0" + } + }, + { + "id": "p-locate@4.1.0", + "info": { + "name": "p-locate", + "version": "4.1.0" + } + }, + { + "id": "p-limit@2.3.0", + "info": { + "name": "p-limit", + "version": "2.3.0" + } + }, + { + "id": "p-try@2.2.0", + "info": { + "name": "p-try", + "version": "2.2.0" + } + }, + { + "id": "path-exists@4.0.0", + "info": { + "name": "path-exists", + "version": "4.0.0" + } + }, + { + "id": "get-caller-file@2.0.5", + "info": { + "name": "get-caller-file", + "version": "2.0.5" + } + }, + { + "id": "require-directory@2.1.1", + "info": { + "name": "require-directory", + "version": "2.1.1" + } + }, + { + "id": "require-main-filename@2.0.0", + "info": { + "name": "require-main-filename", + "version": "2.0.0" + } + }, + { + "id": "set-blocking@2.0.0", + "info": { + "name": "set-blocking", + "version": "2.0.0" + } + }, + { + "id": "which-module@2.0.1", + "info": { + "name": "which-module", + "version": "2.0.1" + } + }, + { + "id": "y18n@4.0.3", + "info": { + "name": "y18n", + "version": "4.0.3" + } + }, + { + "id": "yargs-parser@18.1.3", + "info": { + "name": "yargs-parser", + "version": "18.1.3" + } + }, + { + "id": "camelcase@5.3.1", + "info": { + "name": "camelcase", + "version": "5.3.1" + } + }, + { + "id": "auto-bind@4.0.0", + "info": { + "name": "auto-bind", + "version": "4.0.0" + } + }, + { + "id": "dependency-graph@0.11.0", + "info": { + "name": "dependency-graph", + "version": "0.11.0" + } + }, + { + "id": "graphql-tag@2.12.6", + "info": { + "name": "graphql-tag", + "version": "2.12.6" + } + }, + { + "id": "tslib@2.6.2", + "info": { + "name": "tslib", + "version": "2.6.2" + } + }, + { + "id": "parse-filepath@1.0.2", + "info": { + "name": "parse-filepath", + "version": "1.0.2" + } + }, + { + "id": "is-absolute@1.0.0", + "info": { + "name": "is-absolute", + "version": "1.0.0" + } + }, + { + "id": "is-relative@1.0.0", + "info": { + "name": "is-relative", + "version": "1.0.0" + } + }, + { + "id": "is-unc-path@1.0.0", + "info": { + "name": "is-unc-path", + "version": "1.0.0" + } + }, + { + "id": "unc-path-regex@0.1.2", + "info": { + "name": "unc-path-regex", + "version": "0.1.2" + } + }, + { + "id": "is-windows@1.0.2", + "info": { + "name": "is-windows", + "version": "1.0.2" + } + }, + { + "id": "map-cache@0.2.2", + "info": { + "name": "map-cache", + "version": "0.2.2" + } + }, + { + "id": "path-root@0.1.1", + "info": { + "name": "path-root", + "version": "0.1.1" + } + }, + { + "id": "path-root-regex@0.1.2", + "info": { + "name": "path-root-regex", + "version": "0.1.2" + } + }, + { + "id": "@graphql-codegen/typescript-operations@2.5.13", + "info": { + "name": "@graphql-codegen/typescript-operations", + "version": "2.5.13" + } + }, + { + "id": "@graphql-tools/code-file-loader@7.3.23", + "info": { + "name": "@graphql-tools/code-file-loader", + "version": "7.3.23" + } + }, + { + "id": "@graphql-tools/graphql-tag-pluck@7.5.2", + "info": { + "name": "@graphql-tools/graphql-tag-pluck", + "version": "7.5.2" + } + }, + { + "id": "@babel/plugin-syntax-import-assertions@7.24.1", + "info": { + "name": "@babel/plugin-syntax-import-assertions", + "version": "7.24.1" + } + }, + { + "id": "globby@11.1.0", + "info": { + "name": "globby", + "version": "11.1.0" + } + }, + { + "id": "array-union@2.1.0", + "info": { + "name": "array-union", + "version": "2.1.0" + } + }, + { + "id": "dir-glob@3.0.1", + "info": { + "name": "dir-glob", + "version": "3.0.1" + } + }, + { + "id": "path-type@4.0.0", + "info": { + "name": "path-type", + "version": "4.0.0" + } + }, + { + "id": "fast-glob@3.3.2", + "info": { + "name": "fast-glob", + "version": "3.3.2" + } + }, + { + "id": "@nodelib/fs.stat@2.0.5", + "info": { + "name": "@nodelib/fs.stat", + "version": "2.0.5" + } + }, + { + "id": "@nodelib/fs.walk@1.2.8", + "info": { + "name": "@nodelib/fs.walk", + "version": "1.2.8" + } + }, + { + "id": "@nodelib/fs.scandir@2.1.5", + "info": { + "name": "@nodelib/fs.scandir", + "version": "2.1.5" + } + }, + { + "id": "run-parallel@1.2.0", + "info": { + "name": "run-parallel", + "version": "1.2.0" + } + }, + { + "id": "queue-microtask@1.2.3", + "info": { + "name": "queue-microtask", + "version": "1.2.3" + } + }, + { + "id": "fastq@1.17.1", + "info": { + "name": "fastq", + "version": "1.17.1" + } + }, + { + "id": "reusify@1.0.4", + "info": { + "name": "reusify", + "version": "1.0.4" + } + }, + { + "id": "merge2@1.4.1", + "info": { + "name": "merge2", + "version": "1.4.1" + } + }, + { + "id": "micromatch@4.0.5", + "info": { + "name": "micromatch", + "version": "4.0.5" + } + }, + { + "id": "braces@3.0.2", + "info": { + "name": "braces", + "version": "3.0.2" + } + }, + { + "id": "fill-range@7.0.1", + "info": { + "name": "fill-range", + "version": "7.0.1" + } + }, + { + "id": "to-regex-range@5.0.1", + "info": { + "name": "to-regex-range", + "version": "5.0.1" + } + }, + { + "id": "is-number@7.0.0", + "info": { + "name": "is-number", + "version": "7.0.0" + } + }, + { + "id": "picomatch@2.3.1", + "info": { + "name": "picomatch", + "version": "2.3.1" + } + }, + { + "id": "ignore@5.3.1", + "info": { + "name": "ignore", + "version": "5.3.1" + } + }, + { + "id": "slash@3.0.0", + "info": { + "name": "slash", + "version": "3.0.0" + } + }, + { + "id": "unixify@1.0.0", + "info": { + "name": "unixify", + "version": "1.0.0" + } + }, + { + "id": "normalize-path@2.1.1", + "info": { + "name": "normalize-path", + "version": "2.1.1" + } + }, + { + "id": "remove-trailing-separator@1.1.0", + "info": { + "name": "remove-trailing-separator", + "version": "1.1.0" + } + }, + { + "id": "@graphql-tools/load@7.8.14", + "info": { + "name": "@graphql-tools/load", + "version": "7.8.14" + } + }, + { + "id": "p-limit@3.1.0", + "info": { + "name": "p-limit", + "version": "3.1.0" + } + }, + { + "id": "yocto-queue@0.1.0", + "info": { + "name": "yocto-queue", + "version": "0.1.0" + } + }, + { + "id": "@parcel/cache@2.6.2", + "info": { + "name": "@parcel/cache", + "version": "2.6.2" + } + }, + { + "id": "@parcel/core@2.6.2", + "info": { + "name": "@parcel/core", + "version": "2.6.2" + } + }, + { + "id": "@mischnic/json-sourcemap@0.1.1", + "info": { + "name": "@mischnic/json-sourcemap", + "version": "0.1.1" + } + }, + { + "id": "@lezer/common@1.2.1", + "info": { + "name": "@lezer/common", + "version": "1.2.1" + } + }, + { + "id": "@lezer/lr@1.4.0", + "info": { + "name": "@lezer/lr", + "version": "1.4.0" + } + }, + { + "id": "@parcel/diagnostic@2.6.2", + "info": { + "name": "@parcel/diagnostic", + "version": "2.6.2" + } + }, + { + "id": "@parcel/events@2.6.2", + "info": { + "name": "@parcel/events", + "version": "2.6.2" + } + }, + { + "id": "@parcel/fs@2.6.2", + "info": { + "name": "@parcel/fs", + "version": "2.6.2" + } + }, + { + "id": "@parcel/fs-search@2.6.2", + "info": { + "name": "@parcel/fs-search", + "version": "2.6.2" + } + }, + { + "id": "detect-libc@1.0.3", + "info": { + "name": "detect-libc", + "version": "1.0.3" + } + }, + { + "id": "@parcel/types@2.6.2", + "info": { + "name": "@parcel/types", + "version": "2.6.2" + } + }, + { + "id": "@parcel/package-manager@2.6.2", + "info": { + "name": "@parcel/package-manager", + "version": "2.6.2" + } + }, + { + "id": "@parcel/logger@2.6.2", + "info": { + "name": "@parcel/logger", + "version": "2.6.2" + } + }, + { + "id": "@parcel/utils@2.6.2", + "info": { + "name": "@parcel/utils", + "version": "2.6.2" + } + }, + { + "id": "@parcel/codeframe@2.6.2", + "info": { + "name": "@parcel/codeframe", + "version": "2.6.2" + } + }, + { + "id": "@parcel/hash@2.6.2", + "info": { + "name": "@parcel/hash", + "version": "2.6.2" + } + }, + { + "id": "xxhash-wasm@0.4.2", + "info": { + "name": "xxhash-wasm", + "version": "0.4.2" + } + }, + { + "id": "@parcel/markdown-ansi@2.6.2", + "info": { + "name": "@parcel/markdown-ansi", + "version": "2.6.2" + } + }, + { + "id": "@parcel/source-map@2.1.1", + "info": { + "name": "@parcel/source-map", + "version": "2.1.1" + } + }, + { + "id": "@parcel/workers@2.6.2", + "info": { + "name": "@parcel/workers", + "version": "2.6.2" + } + }, + { + "id": "chrome-trace-event@1.0.3", + "info": { + "name": "chrome-trace-event", + "version": "1.0.3" + } + }, + { + "id": "semver@5.7.2", + "info": { + "name": "semver", + "version": "5.7.2" + } + }, + { + "id": "utility-types@3.11.0", + "info": { + "name": "utility-types", + "version": "3.11.0" + } + }, + { + "id": "@parcel/watcher@2.4.1", + "info": { + "name": "@parcel/watcher", + "version": "2.4.1" + } + }, + { + "id": "node-addon-api@7.1.0", + "info": { + "name": "node-addon-api", + "version": "7.1.0" + } + }, + { + "id": "@parcel/graph@2.6.2", + "info": { + "name": "@parcel/graph", + "version": "2.6.2" + } + }, + { + "id": "@parcel/plugin@2.6.2", + "info": { + "name": "@parcel/plugin", + "version": "2.6.2" + } + }, + { + "id": "abortcontroller-polyfill@1.7.5", + "info": { + "name": "abortcontroller-polyfill", + "version": "1.7.5" + } + }, + { + "id": "base-x@3.0.9", + "info": { + "name": "base-x", + "version": "3.0.9" + } + }, + { + "id": "safe-buffer@5.2.1", + "info": { + "name": "safe-buffer", + "version": "5.2.1" + } + }, + { + "id": "clone@2.1.2", + "info": { + "name": "clone", + "version": "2.1.2" + } + }, + { + "id": "dotenv@7.0.0", + "info": { + "name": "dotenv", + "version": "7.0.0" + } + }, + { + "id": "dotenv-expand@5.1.0", + "info": { + "name": "dotenv-expand", + "version": "5.1.0" + } + }, + { + "id": "msgpackr@1.10.1", + "info": { + "name": "msgpackr", + "version": "1.10.1" + } + }, + { + "id": "lmdb@2.5.2", + "info": { + "name": "lmdb", + "version": "2.5.2" + } + }, + { + "id": "node-addon-api@4.3.0", + "info": { + "name": "node-addon-api", + "version": "4.3.0" + } + }, + { + "id": "node-gyp-build-optional-packages@5.0.3", + "info": { + "name": "node-gyp-build-optional-packages", + "version": "5.0.3" + } + }, + { + "id": "ordered-binary@1.5.1", + "info": { + "name": "ordered-binary", + "version": "1.5.1" + } + }, + { + "id": "weak-lru-cache@1.2.2", + "info": { + "name": "weak-lru-cache", + "version": "1.2.2" + } + }, + { + "id": "@pmmmwh/react-refresh-webpack-plugin@0.5.13", + "info": { + "name": "@pmmmwh/react-refresh-webpack-plugin", + "version": "0.5.13" + } + }, + { + "id": "core-js-pure@3.37.0", + "info": { + "name": "core-js-pure", + "version": "3.37.0" + } + }, + { + "id": "error-stack-parser@2.1.4", + "info": { + "name": "error-stack-parser", + "version": "2.1.4" + } + }, + { + "id": "stackframe@1.3.4", + "info": { + "name": "stackframe", + "version": "1.3.4" + } + }, + { + "id": "loader-utils@2.0.4", + "info": { + "name": "loader-utils", + "version": "2.0.4" + } + }, + { + "id": "big.js@5.2.2", + "info": { + "name": "big.js", + "version": "5.2.2" + } + }, + { + "id": "emojis-list@3.0.0", + "info": { + "name": "emojis-list", + "version": "3.0.0" + } + }, + { + "id": "react-refresh@0.14.2", + "info": { + "name": "react-refresh", + "version": "0.14.2" + } + }, + { + "id": "schema-utils@3.3.0", + "info": { + "name": "schema-utils", + "version": "3.3.0" + } + }, + { + "id": "@types/json-schema@7.0.15", + "info": { + "name": "@types/json-schema", + "version": "7.0.15" + } + }, + { + "id": "ajv-keywords@3.5.2", + "info": { + "name": "ajv-keywords", + "version": "3.5.2" + } + }, + { + "id": "source-map@0.7.4", + "info": { + "name": "source-map", + "version": "0.7.4" + } + }, + { + "id": "webpack@5.91.0", + "info": { + "name": "webpack", + "version": "5.91.0" + } + }, + { + "id": "@types/eslint-scope@3.7.7", + "info": { + "name": "@types/eslint-scope", + "version": "3.7.7" + } + }, + { + "id": "@types/eslint@8.56.10", + "info": { + "name": "@types/eslint", + "version": "8.56.10" + } + }, + { + "id": "@types/estree@1.0.5", + "info": { + "name": "@types/estree", + "version": "1.0.5" + } + }, + { + "id": "@webassemblyjs/ast@1.12.1", + "info": { + "name": "@webassemblyjs/ast", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/helper-numbers@1.11.6", + "info": { + "name": "@webassemblyjs/helper-numbers", + "version": "1.11.6" + } + }, + { + "id": "@webassemblyjs/floating-point-hex-parser@1.11.6", + "info": { + "name": "@webassemblyjs/floating-point-hex-parser", + "version": "1.11.6" + } + }, + { + "id": "@webassemblyjs/helper-api-error@1.11.6", + "info": { + "name": "@webassemblyjs/helper-api-error", + "version": "1.11.6" + } + }, + { + "id": "@xtuc/long@4.2.2", + "info": { + "name": "@xtuc/long", + "version": "4.2.2" + } + }, + { + "id": "@webassemblyjs/helper-wasm-bytecode@1.11.6", + "info": { + "name": "@webassemblyjs/helper-wasm-bytecode", + "version": "1.11.6" + } + }, + { + "id": "@webassemblyjs/wasm-edit@1.12.1", + "info": { + "name": "@webassemblyjs/wasm-edit", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/helper-buffer@1.12.1", + "info": { + "name": "@webassemblyjs/helper-buffer", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/helper-wasm-section@1.12.1", + "info": { + "name": "@webassemblyjs/helper-wasm-section", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/wasm-gen@1.12.1", + "info": { + "name": "@webassemblyjs/wasm-gen", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/ieee754@1.11.6", + "info": { + "name": "@webassemblyjs/ieee754", + "version": "1.11.6" + } + }, + { + "id": "@xtuc/ieee754@1.2.0", + "info": { + "name": "@xtuc/ieee754", + "version": "1.2.0" + } + }, + { + "id": "@webassemblyjs/leb128@1.11.6", + "info": { + "name": "@webassemblyjs/leb128", + "version": "1.11.6" + } + }, + { + "id": "@webassemblyjs/utf8@1.11.6", + "info": { + "name": "@webassemblyjs/utf8", + "version": "1.11.6" + } + }, + { + "id": "@webassemblyjs/wasm-opt@1.12.1", + "info": { + "name": "@webassemblyjs/wasm-opt", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/wasm-parser@1.12.1", + "info": { + "name": "@webassemblyjs/wasm-parser", + "version": "1.12.1" + } + }, + { + "id": "@webassemblyjs/wast-printer@1.12.1", + "info": { + "name": "@webassemblyjs/wast-printer", + "version": "1.12.1" + } + }, + { + "id": "acorn@8.11.3", + "info": { + "name": "acorn", + "version": "8.11.3" + } + }, + { + "id": "acorn-import-assertions@1.9.0", + "info": { + "name": "acorn-import-assertions", + "version": "1.9.0" + } + }, + { + "id": "enhanced-resolve@5.16.1", + "info": { + "name": "enhanced-resolve", + "version": "5.16.1" + } + }, + { + "id": "graceful-fs@4.2.11", + "info": { + "name": "graceful-fs", + "version": "4.2.11" + } + }, + { + "id": "tapable@2.2.1", + "info": { + "name": "tapable", + "version": "2.2.1" + } + }, + { + "id": "es-module-lexer@1.5.2", + "info": { + "name": "es-module-lexer", + "version": "1.5.2" + } + }, + { + "id": "events@3.3.0", + "info": { + "name": "events", + "version": "3.3.0" + } + }, + { + "id": "glob-to-regexp@0.4.1", + "info": { + "name": "glob-to-regexp", + "version": "0.4.1" + } + }, + { + "id": "json-parse-even-better-errors@2.3.1", + "info": { + "name": "json-parse-even-better-errors", + "version": "2.3.1" + } + }, + { + "id": "loader-runner@4.3.0", + "info": { + "name": "loader-runner", + "version": "4.3.0" + } + }, + { + "id": "mime-types@2.1.35", + "info": { + "name": "mime-types", + "version": "2.1.35" + } + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "neo-async@2.6.2", + "info": { + "name": "neo-async", + "version": "2.6.2" + } + }, + { + "id": "terser-webpack-plugin@5.3.10", + "info": { + "name": "terser-webpack-plugin", + "version": "5.3.10" + } + }, + { + "id": "jest-worker@27.5.1", + "info": { + "name": "jest-worker", + "version": "27.5.1" + } + }, + { + "id": "@types/node@20.12.11", + "info": { + "name": "@types/node", + "version": "20.12.11" + } + }, + { + "id": "undici-types@5.26.5", + "info": { + "name": "undici-types", + "version": "5.26.5" + } + }, + { + "id": "merge-stream@2.0.0", + "info": { + "name": "merge-stream", + "version": "2.0.0" + } + }, + { + "id": "supports-color@8.1.1", + "info": { + "name": "supports-color", + "version": "8.1.1" + } + }, + { + "id": "serialize-javascript@6.0.2", + "info": { + "name": "serialize-javascript", + "version": "6.0.2" + } + }, + { + "id": "randombytes@2.1.0", + "info": { + "name": "randombytes", + "version": "2.1.0" + } + }, + { + "id": "terser@5.31.0", + "info": { + "name": "terser", + "version": "5.31.0" + } + }, + { + "id": "@jridgewell/source-map@0.3.6", + "info": { + "name": "@jridgewell/source-map", + "version": "0.3.6" + } + }, + { + "id": "commander@2.20.3", + "info": { + "name": "commander", + "version": "2.20.3" + } + }, + { + "id": "source-map-support@0.5.21", + "info": { + "name": "source-map-support", + "version": "0.5.21" + } + }, + { + "id": "buffer-from@1.1.2", + "info": { + "name": "buffer-from", + "version": "1.1.2" + } + }, + { + "id": "source-map@0.6.1", + "info": { + "name": "source-map", + "version": "0.6.1" + } + }, + { + "id": "watchpack@2.4.1", + "info": { + "name": "watchpack", + "version": "2.4.1" + } + }, + { + "id": "webpack-sources@3.2.3", + "info": { + "name": "webpack-sources", + "version": "3.2.3" + } + }, + { + "id": "@types/http-proxy@1.17.14", + "info": { + "name": "@types/http-proxy", + "version": "1.17.14" + } + }, + { + "id": "@typescript-eslint/eslint-plugin@4.33.0", + "info": { + "name": "@typescript-eslint/eslint-plugin", + "version": "4.33.0" + } + }, + { + "id": "@typescript-eslint/experimental-utils@4.33.0", + "info": { + "name": "@typescript-eslint/experimental-utils", + "version": "4.33.0" + } + }, + { + "id": "@typescript-eslint/scope-manager@4.33.0", + "info": { + "name": "@typescript-eslint/scope-manager", + "version": "4.33.0" + } + }, + { + "id": "@typescript-eslint/types@4.33.0", + "info": { + "name": "@typescript-eslint/types", + "version": "4.33.0" + } + }, + { + "id": "@typescript-eslint/visitor-keys@4.33.0", + "info": { + "name": "@typescript-eslint/visitor-keys", + "version": "4.33.0" + } + }, + { + "id": "@typescript-eslint/typescript-estree@4.33.0", + "info": { + "name": "@typescript-eslint/typescript-estree", + "version": "4.33.0" + } + }, + { + "id": "tsutils@3.21.0", + "info": { + "name": "tsutils", + "version": "3.21.0" + } + }, + { + "id": "tslib@1.14.1", + "info": { + "name": "tslib", + "version": "1.14.1" + } + }, + { + "id": "typescript@4.9.5", + "info": { + "name": "typescript", + "version": "4.9.5" + } + }, + { + "id": "eslint-utils@3.0.0", + "info": { + "name": "eslint-utils", + "version": "3.0.0" + } + }, + { + "id": "@typescript-eslint/parser@4.33.0", + "info": { + "name": "@typescript-eslint/parser", + "version": "4.33.0" + } + }, + { + "id": "@vercel/webpack-asset-relocator-loader@1.7.3", + "info": { + "name": "@vercel/webpack-asset-relocator-loader", + "version": "1.7.3" + } + }, + { + "id": "resolve@1.22.8", + "info": { + "name": "resolve", + "version": "1.22.8" + } + }, + { + "id": "is-core-module@2.13.1", + "info": { + "name": "is-core-module", + "version": "2.13.1" + } + }, + { + "id": "hasown@2.0.2", + "info": { + "name": "hasown", + "version": "2.0.2" + } + }, + { + "id": "function-bind@1.1.2", + "info": { + "name": "function-bind", + "version": "1.1.2" + } + }, + { + "id": "path-parse@1.0.7", + "info": { + "name": "path-parse", + "version": "1.0.7" + } + }, + { + "id": "supports-preserve-symlinks-flag@1.0.0", + "info": { + "name": "supports-preserve-symlinks-flag", + "version": "1.0.0" + } + }, + { + "id": "acorn-loose@8.4.0", + "info": { + "name": "acorn-loose", + "version": "8.4.0" + } + }, + { + "id": "acorn-walk@8.3.2", + "info": { + "name": "acorn-walk", + "version": "8.3.2" + } + }, + { + "id": "address@1.1.2", + "info": { + "name": "address", + "version": "1.1.2" + } + }, + { + "id": "anser@2.1.1", + "info": { + "name": "anser", + "version": "2.1.1" + } + }, + { + "id": "autoprefixer@10.4.19", + "info": { + "name": "autoprefixer", + "version": "10.4.19" + } + }, + { + "id": "fraction.js@4.3.7", + "info": { + "name": "fraction.js", + "version": "4.3.7" + } + }, + { + "id": "normalize-range@0.1.2", + "info": { + "name": "normalize-range", + "version": "0.1.2" + } + }, + { + "id": "postcss@8.4.38", + "info": { + "name": "postcss", + "version": "8.4.38" + } + }, + { + "id": "nanoid@3.3.7", + "info": { + "name": "nanoid", + "version": "3.3.7" + } + }, + { + "id": "source-map-js@1.2.0", + "info": { + "name": "source-map-js", + "version": "1.2.0" + } + }, + { + "id": "postcss-value-parser@4.2.0", + "info": { + "name": "postcss-value-parser", + "version": "4.2.0" + } + }, + { + "id": "axios@0.21.4", + "info": { + "name": "axios", + "version": "0.21.4" + } + }, + { + "id": "follow-redirects@1.15.6", + "info": { + "name": "follow-redirects", + "version": "1.15.6" + } + }, + { + "id": "babel-loader@8.3.0", + "info": { + "name": "babel-loader", + "version": "8.3.0" + } + }, + { + "id": "find-cache-dir@3.3.2", + "info": { + "name": "find-cache-dir", + "version": "3.3.2" + } + }, + { + "id": "commondir@1.0.1", + "info": { + "name": "commondir", + "version": "1.0.1" + } + }, + { + "id": "make-dir@3.1.0", + "info": { + "name": "make-dir", + "version": "3.1.0" + } + }, + { + "id": "pkg-dir@4.2.0", + "info": { + "name": "pkg-dir", + "version": "4.2.0" + } + }, + { + "id": "schema-utils@2.7.1", + "info": { + "name": "schema-utils", + "version": "2.7.1" + } + }, + { + "id": "babel-plugin-add-module-exports@1.0.4", + "info": { + "name": "babel-plugin-add-module-exports", + "version": "1.0.4" + } + }, + { + "id": "babel-plugin-dynamic-import-node@2.3.3", + "info": { + "name": "babel-plugin-dynamic-import-node", + "version": "2.3.3" + } + }, + { + "id": "object.assign@4.1.5", + "info": { + "name": "object.assign", + "version": "4.1.5" + } + }, + { + "id": "call-bind@1.0.7", + "info": { + "name": "call-bind", + "version": "1.0.7" + } + }, + { + "id": "es-define-property@1.0.0", + "info": { + "name": "es-define-property", + "version": "1.0.0" + } + }, + { + "id": "get-intrinsic@1.2.4", + "info": { + "name": "get-intrinsic", + "version": "1.2.4" + } + }, + { + "id": "es-errors@1.3.0", + "info": { + "name": "es-errors", + "version": "1.3.0" + } + }, + { + "id": "has-proto@1.0.3", + "info": { + "name": "has-proto", + "version": "1.0.3" + } + }, + { + "id": "has-symbols@1.0.3", + "info": { + "name": "has-symbols", + "version": "1.0.3" + } + }, + { + "id": "set-function-length@1.2.2", + "info": { + "name": "set-function-length", + "version": "1.2.2" + } + }, + { + "id": "define-data-property@1.1.4", + "info": { + "name": "define-data-property", + "version": "1.1.4" + } + }, + { + "id": "gopd@1.0.1", + "info": { + "name": "gopd", + "version": "1.0.1" + } + }, + { + "id": "has-property-descriptors@1.0.2", + "info": { + "name": "has-property-descriptors", + "version": "1.0.2" + } + }, + { + "id": "define-properties@1.2.1", + "info": { + "name": "define-properties", + "version": "1.2.1" + } + }, + { + "id": "object-keys@1.1.1", + "info": { + "name": "object-keys", + "version": "1.1.1" + } + }, + { + "id": "babel-plugin-lodash@3.3.4", + "info": { + "name": "babel-plugin-lodash", + "version": "3.3.4" + } + }, + { + "id": "require-package-name@2.0.1", + "info": { + "name": "require-package-name", + "version": "2.0.1" + } + }, + { + "id": "babel-plugin-remove-graphql-queries@4.25.0", + "info": { + "name": "babel-plugin-remove-graphql-queries", + "version": "4.25.0" + } + }, + { + "id": "gatsby-core-utils@3.25.0", + "info": { + "name": "gatsby-core-utils", + "version": "3.25.0" + } + }, + { + "id": "ci-info@2.0.0", + "info": { + "name": "ci-info", + "version": "2.0.0" + } + }, + { + "id": "configstore@5.0.1", + "info": { + "name": "configstore", + "version": "5.0.1" + } + }, + { + "id": "dot-prop@5.3.0", + "info": { + "name": "dot-prop", + "version": "5.3.0" + } + }, + { + "id": "is-obj@2.0.0", + "info": { + "name": "is-obj", + "version": "2.0.0" + } + }, + { + "id": "unique-string@2.0.0", + "info": { + "name": "unique-string", + "version": "2.0.0" + } + }, + { + "id": "crypto-random-string@2.0.0", + "info": { + "name": "crypto-random-string", + "version": "2.0.0" + } + }, + { + "id": "write-file-atomic@3.0.3", + "info": { + "name": "write-file-atomic", + "version": "3.0.3" + } + }, + { + "id": "is-typedarray@1.0.0", + "info": { + "name": "is-typedarray", + "version": "1.0.0" + } + }, + { + "id": "signal-exit@3.0.7", + "info": { + "name": "signal-exit", + "version": "3.0.7" + } + }, + { + "id": "typedarray-to-buffer@3.1.5", + "info": { + "name": "typedarray-to-buffer", + "version": "3.1.5" + } + }, + { + "id": "xdg-basedir@4.0.0", + "info": { + "name": "xdg-basedir", + "version": "4.0.0" + } + }, + { + "id": "file-type@16.5.4", + "info": { + "name": "file-type", + "version": "16.5.4" + } + }, + { + "id": "readable-web-to-node-stream@3.0.2", + "info": { + "name": "readable-web-to-node-stream", + "version": "3.0.2" + } + }, + { + "id": "readable-stream@3.6.2", + "info": { + "name": "readable-stream", + "version": "3.6.2" + } + }, + { + "id": "string_decoder@1.3.0", + "info": { + "name": "string_decoder", + "version": "1.3.0" + } + }, + { + "id": "util-deprecate@1.0.2", + "info": { + "name": "util-deprecate", + "version": "1.0.2" + } + }, + { + "id": "strtok3@6.3.0", + "info": { + "name": "strtok3", + "version": "6.3.0" + } + }, + { + "id": "@tokenizer/token@0.3.0", + "info": { + "name": "@tokenizer/token", + "version": "0.3.0" + } + }, + { + "id": "peek-readable@4.1.0", + "info": { + "name": "peek-readable", + "version": "4.1.0" + } + }, + { + "id": "token-types@4.2.1", + "info": { + "name": "token-types", + "version": "4.2.1" + } + }, + { + "id": "ieee754@1.2.1", + "info": { + "name": "ieee754", + "version": "1.2.1" + } + }, + { + "id": "fs-extra@10.1.0", + "info": { + "name": "fs-extra", + "version": "10.1.0" + } + }, + { + "id": "jsonfile@6.1.0", + "info": { + "name": "jsonfile", + "version": "6.1.0" + } + }, + { + "id": "universalify@2.0.1", + "info": { + "name": "universalify", + "version": "2.0.1" + } + }, + { + "id": "got@11.8.6", + "info": { + "name": "got", + "version": "11.8.6" + } + }, + { + "id": "@sindresorhus/is@4.6.0", + "info": { + "name": "@sindresorhus/is", + "version": "4.6.0" + } + }, + { + "id": "@szmarczak/http-timer@4.0.6", + "info": { + "name": "@szmarczak/http-timer", + "version": "4.0.6" + } + }, + { + "id": "defer-to-connect@2.0.1", + "info": { + "name": "defer-to-connect", + "version": "2.0.1" + } + }, + { + "id": "@types/cacheable-request@6.0.3", + "info": { + "name": "@types/cacheable-request", + "version": "6.0.3" + } + }, + { + "id": "@types/http-cache-semantics@4.0.4", + "info": { + "name": "@types/http-cache-semantics", + "version": "4.0.4" + } + }, + { + "id": "@types/keyv@3.1.4", + "info": { + "name": "@types/keyv", + "version": "3.1.4" + } + }, + { + "id": "@types/responselike@1.0.3", + "info": { + "name": "@types/responselike", + "version": "1.0.3" + } + }, + { + "id": "cacheable-lookup@5.0.4", + "info": { + "name": "cacheable-lookup", + "version": "5.0.4" + } + }, + { + "id": "cacheable-request@7.0.4", + "info": { + "name": "cacheable-request", + "version": "7.0.4" + } + }, + { + "id": "clone-response@1.0.3", + "info": { + "name": "clone-response", + "version": "1.0.3" + } + }, + { + "id": "mimic-response@1.0.1", + "info": { + "name": "mimic-response", + "version": "1.0.1" + } + }, + { + "id": "get-stream@5.2.0", + "info": { + "name": "get-stream", + "version": "5.2.0" + } + }, + { + "id": "pump@3.0.0", + "info": { + "name": "pump", + "version": "3.0.0" + } + }, + { + "id": "end-of-stream@1.4.4", + "info": { + "name": "end-of-stream", + "version": "1.4.4" + } + }, + { + "id": "http-cache-semantics@4.1.1", + "info": { + "name": "http-cache-semantics", + "version": "4.1.1" + } + }, + { + "id": "lowercase-keys@2.0.0", + "info": { + "name": "lowercase-keys", + "version": "2.0.0" + } + }, + { + "id": "normalize-url@6.1.0", + "info": { + "name": "normalize-url", + "version": "6.1.0" + } + }, + { + "id": "responselike@2.0.1", + "info": { + "name": "responselike", + "version": "2.0.1" + } + }, + { + "id": "decompress-response@6.0.0", + "info": { + "name": "decompress-response", + "version": "6.0.0" + } + }, + { + "id": "mimic-response@3.1.0", + "info": { + "name": "mimic-response", + "version": "3.1.0" + } + }, + { + "id": "http2-wrapper@1.0.3", + "info": { + "name": "http2-wrapper", + "version": "1.0.3" + } + }, + { + "id": "quick-lru@5.1.1", + "info": { + "name": "quick-lru", + "version": "5.1.1" + } + }, + { + "id": "resolve-alpn@1.2.1", + "info": { + "name": "resolve-alpn", + "version": "1.2.1" + } + }, + { + "id": "p-cancelable@2.1.1", + "info": { + "name": "p-cancelable", + "version": "2.1.1" + } + }, + { + "id": "lmdb@2.5.3", + "info": { + "name": "lmdb", + "version": "2.5.3" + } + }, + { + "id": "lock@1.1.0", + "info": { + "name": "lock", + "version": "1.1.0" + } + }, + { + "id": "node-object-hash@2.3.10", + "info": { + "name": "node-object-hash", + "version": "2.3.10" + } + }, + { + "id": "proper-lockfile@4.1.2", + "info": { + "name": "proper-lockfile", + "version": "4.1.2" + } + }, + { + "id": "retry@0.12.0", + "info": { + "name": "retry", + "version": "0.12.0" + } + }, + { + "id": "resolve-from@5.0.0", + "info": { + "name": "resolve-from", + "version": "5.0.0" + } + }, + { + "id": "tmp@0.2.3", + "info": { + "name": "tmp", + "version": "0.2.3" + } + }, + { + "id": "babel-preset-gatsby@2.25.0", + "info": { + "name": "babel-preset-gatsby", + "version": "2.25.0" + } + }, + { + "id": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "info": { + "name": "@babel/plugin-proposal-nullish-coalescing-operator", + "version": "7.18.6" + } + }, + { + "id": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "info": { + "name": "@babel/plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-proposal-optional-chaining@7.21.0", + "info": { + "name": "@babel/plugin-proposal-optional-chaining", + "version": "7.21.0" + } + }, + { + "id": "@babel/plugin-syntax-optional-chaining@7.8.3", + "info": { + "name": "@babel/plugin-syntax-optional-chaining", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-syntax-dynamic-import@7.8.3", + "info": { + "name": "@babel/plugin-syntax-dynamic-import", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-transform-runtime@7.24.3", + "info": { + "name": "@babel/plugin-transform-runtime", + "version": "7.24.3" + } + }, + { + "id": "babel-plugin-polyfill-corejs2@0.4.11", + "info": { + "name": "babel-plugin-polyfill-corejs2", + "version": "0.4.11" + } + }, + { + "id": "@babel/helper-define-polyfill-provider@0.6.2", + "info": { + "name": "@babel/helper-define-polyfill-provider", + "version": "0.6.2" + } + }, + { + "id": "lodash.debounce@4.0.8", + "info": { + "name": "lodash.debounce", + "version": "4.0.8" + } + }, + { + "id": "babel-plugin-polyfill-corejs3@0.10.4", + "info": { + "name": "babel-plugin-polyfill-corejs3", + "version": "0.10.4" + } + }, + { + "id": "core-js-compat@3.37.0", + "info": { + "name": "core-js-compat", + "version": "3.37.0" + } + }, + { + "id": "babel-plugin-polyfill-regenerator@0.6.2", + "info": { + "name": "babel-plugin-polyfill-regenerator", + "version": "0.6.2" + } + }, + { + "id": "@babel/preset-env@7.24.5", + "info": { + "name": "@babel/preset-env", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5", + "info": { + "name": "@babel/plugin-bugfix-firefox-class-in-computed-class-key", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1", + "info": { + "name": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1", + "info": { + "name": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-optional-chaining@7.24.5", + "info": { + "name": "@babel/plugin-transform-optional-chaining", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1", + "info": { + "name": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", + "info": { + "name": "@babel/plugin-proposal-private-property-in-object", + "version": "7.21.0-placeholder-for-preset-env.2" + } + }, + { + "id": "@babel/plugin-syntax-async-generators@7.8.4", + "info": { + "name": "@babel/plugin-syntax-async-generators", + "version": "7.8.4" + } + }, + { + "id": "@babel/plugin-syntax-class-static-block@7.14.5", + "info": { + "name": "@babel/plugin-syntax-class-static-block", + "version": "7.14.5" + } + }, + { + "id": "@babel/plugin-syntax-export-namespace-from@7.8.3", + "info": { + "name": "@babel/plugin-syntax-export-namespace-from", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-syntax-import-attributes@7.24.1", + "info": { + "name": "@babel/plugin-syntax-import-attributes", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-syntax-import-meta@7.10.4", + "info": { + "name": "@babel/plugin-syntax-import-meta", + "version": "7.10.4" + } + }, + { + "id": "@babel/plugin-syntax-json-strings@7.8.3", + "info": { + "name": "@babel/plugin-syntax-json-strings", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "info": { + "name": "@babel/plugin-syntax-logical-assignment-operators", + "version": "7.10.4" + } + }, + { + "id": "@babel/plugin-syntax-numeric-separator@7.10.4", + "info": { + "name": "@babel/plugin-syntax-numeric-separator", + "version": "7.10.4" + } + }, + { + "id": "@babel/plugin-syntax-optional-catch-binding@7.8.3", + "info": { + "name": "@babel/plugin-syntax-optional-catch-binding", + "version": "7.8.3" + } + }, + { + "id": "@babel/plugin-syntax-private-property-in-object@7.14.5", + "info": { + "name": "@babel/plugin-syntax-private-property-in-object", + "version": "7.14.5" + } + }, + { + "id": "@babel/plugin-syntax-top-level-await@7.14.5", + "info": { + "name": "@babel/plugin-syntax-top-level-await", + "version": "7.14.5" + } + }, + { + "id": "@babel/plugin-syntax-unicode-sets-regex@7.18.6", + "info": { + "name": "@babel/plugin-syntax-unicode-sets-regex", + "version": "7.18.6" + } + }, + { + "id": "@babel/helper-create-regexp-features-plugin@7.22.15", + "info": { + "name": "@babel/helper-create-regexp-features-plugin", + "version": "7.22.15" + } + }, + { + "id": "regexpu-core@5.3.2", + "info": { + "name": "regexpu-core", + "version": "5.3.2" + } + }, + { + "id": "@babel/regjsgen@0.8.0", + "info": { + "name": "@babel/regjsgen", + "version": "0.8.0" + } + }, + { + "id": "regenerate@1.4.2", + "info": { + "name": "regenerate", + "version": "1.4.2" + } + }, + { + "id": "regenerate-unicode-properties@10.1.1", + "info": { + "name": "regenerate-unicode-properties", + "version": "10.1.1" + } + }, + { + "id": "regjsparser@0.9.1", + "info": { + "name": "regjsparser", + "version": "0.9.1" + } + }, + { + "id": "jsesc@0.5.0", + "info": { + "name": "jsesc", + "version": "0.5.0" + } + }, + { + "id": "unicode-match-property-ecmascript@2.0.0", + "info": { + "name": "unicode-match-property-ecmascript", + "version": "2.0.0" + } + }, + { + "id": "unicode-canonical-property-names-ecmascript@2.0.0", + "info": { + "name": "unicode-canonical-property-names-ecmascript", + "version": "2.0.0" + } + }, + { + "id": "unicode-property-aliases-ecmascript@2.1.0", + "info": { + "name": "unicode-property-aliases-ecmascript", + "version": "2.1.0" + } + }, + { + "id": "unicode-match-property-value-ecmascript@2.1.0", + "info": { + "name": "unicode-match-property-value-ecmascript", + "version": "2.1.0" + } + }, + { + "id": "@babel/plugin-transform-async-generator-functions@7.24.3", + "info": { + "name": "@babel/plugin-transform-async-generator-functions", + "version": "7.24.3" + } + }, + { + "id": "@babel/helper-remap-async-to-generator@7.22.20", + "info": { + "name": "@babel/helper-remap-async-to-generator", + "version": "7.22.20" + } + }, + { + "id": "@babel/helper-wrap-function@7.24.5", + "info": { + "name": "@babel/helper-wrap-function", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-async-to-generator@7.24.1", + "info": { + "name": "@babel/plugin-transform-async-to-generator", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-class-properties@7.24.1", + "info": { + "name": "@babel/plugin-transform-class-properties", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-class-static-block@7.24.4", + "info": { + "name": "@babel/plugin-transform-class-static-block", + "version": "7.24.4" + } + }, + { + "id": "@babel/plugin-transform-dotall-regex@7.24.1", + "info": { + "name": "@babel/plugin-transform-dotall-regex", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-duplicate-keys@7.24.1", + "info": { + "name": "@babel/plugin-transform-duplicate-keys", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-dynamic-import@7.24.1", + "info": { + "name": "@babel/plugin-transform-dynamic-import", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-exponentiation-operator@7.24.1", + "info": { + "name": "@babel/plugin-transform-exponentiation-operator", + "version": "7.24.1" + } + }, + { + "id": "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15", + "info": { + "name": "@babel/helper-builder-binary-assignment-operator-visitor", + "version": "7.22.15" + } + }, + { + "id": "@babel/plugin-transform-export-namespace-from@7.24.1", + "info": { + "name": "@babel/plugin-transform-export-namespace-from", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-json-strings@7.24.1", + "info": { + "name": "@babel/plugin-transform-json-strings", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-logical-assignment-operators@7.24.1", + "info": { + "name": "@babel/plugin-transform-logical-assignment-operators", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-modules-amd@7.24.1", + "info": { + "name": "@babel/plugin-transform-modules-amd", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-modules-systemjs@7.24.1", + "info": { + "name": "@babel/plugin-transform-modules-systemjs", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-modules-umd@7.24.1", + "info": { + "name": "@babel/plugin-transform-modules-umd", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-named-capturing-groups-regex@7.22.5", + "info": { + "name": "@babel/plugin-transform-named-capturing-groups-regex", + "version": "7.22.5" + } + }, + { + "id": "@babel/plugin-transform-new-target@7.24.1", + "info": { + "name": "@babel/plugin-transform-new-target", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-nullish-coalescing-operator@7.24.1", + "info": { + "name": "@babel/plugin-transform-nullish-coalescing-operator", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-numeric-separator@7.24.1", + "info": { + "name": "@babel/plugin-transform-numeric-separator", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-object-rest-spread@7.24.5", + "info": { + "name": "@babel/plugin-transform-object-rest-spread", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-optional-catch-binding@7.24.1", + "info": { + "name": "@babel/plugin-transform-optional-catch-binding", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-private-methods@7.24.1", + "info": { + "name": "@babel/plugin-transform-private-methods", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-private-property-in-object@7.24.5", + "info": { + "name": "@babel/plugin-transform-private-property-in-object", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-regenerator@7.24.1", + "info": { + "name": "@babel/plugin-transform-regenerator", + "version": "7.24.1" + } + }, + { + "id": "regenerator-transform@0.15.2", + "info": { + "name": "regenerator-transform", + "version": "0.15.2" + } + }, + { + "id": "@babel/plugin-transform-reserved-words@7.24.1", + "info": { + "name": "@babel/plugin-transform-reserved-words", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-sticky-regex@7.24.1", + "info": { + "name": "@babel/plugin-transform-sticky-regex", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-typeof-symbol@7.24.5", + "info": { + "name": "@babel/plugin-transform-typeof-symbol", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-unicode-escapes@7.24.1", + "info": { + "name": "@babel/plugin-transform-unicode-escapes", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-unicode-property-regex@7.24.1", + "info": { + "name": "@babel/plugin-transform-unicode-property-regex", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-unicode-regex@7.24.1", + "info": { + "name": "@babel/plugin-transform-unicode-regex", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-unicode-sets-regex@7.24.1", + "info": { + "name": "@babel/plugin-transform-unicode-sets-regex", + "version": "7.24.1" + } + }, + { + "id": "@babel/preset-modules@0.1.6-no-external-plugins", + "info": { + "name": "@babel/preset-modules", + "version": "0.1.6-no-external-plugins" + } + }, + { + "id": "@babel/preset-react@7.24.1", + "info": { + "name": "@babel/preset-react", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-react-jsx-development@7.22.5", + "info": { + "name": "@babel/plugin-transform-react-jsx-development", + "version": "7.22.5" + } + }, + { + "id": "@babel/plugin-transform-react-pure-annotations@7.24.1", + "info": { + "name": "@babel/plugin-transform-react-pure-annotations", + "version": "7.24.1" + } + }, + { + "id": "babel-plugin-macros@3.1.0", + "info": { + "name": "babel-plugin-macros", + "version": "3.1.0" + } + }, + { + "id": "cosmiconfig@7.1.0", + "info": { + "name": "cosmiconfig", + "version": "7.1.0" + } + }, + { + "id": "@types/parse-json@4.0.2", + "info": { + "name": "@types/parse-json", + "version": "4.0.2" + } + }, + { + "id": "parse-json@5.2.0", + "info": { + "name": "parse-json", + "version": "5.2.0" + } + }, + { + "id": "error-ex@1.3.2", + "info": { + "name": "error-ex", + "version": "1.3.2" + } + }, + { + "id": "is-arrayish@0.2.1", + "info": { + "name": "is-arrayish", + "version": "0.2.1" + } + }, + { + "id": "lines-and-columns@1.2.4", + "info": { + "name": "lines-and-columns", + "version": "1.2.4" + } + }, + { + "id": "yaml@1.10.2", + "info": { + "name": "yaml", + "version": "1.10.2" + } + }, + { + "id": "babel-plugin-transform-react-remove-prop-types@0.4.24", + "info": { + "name": "babel-plugin-transform-react-remove-prop-types", + "version": "0.4.24" + } + }, + { + "id": "core-js@3.37.0", + "info": { + "name": "core-js", + "version": "3.37.0" + } + }, + { + "id": "gatsby-legacy-polyfills@2.25.0", + "info": { + "name": "gatsby-legacy-polyfills", + "version": "2.25.0" + } + }, + { + "id": "core-js-compat@3.9.0", + "info": { + "name": "core-js-compat", + "version": "3.9.0" + } + }, + { + "id": "semver@7.0.0", + "info": { + "name": "semver", + "version": "7.0.0" + } + }, + { + "id": "better-opn@2.1.1", + "info": { + "name": "better-opn", + "version": "2.1.1" + } + }, + { + "id": "open@7.4.2", + "info": { + "name": "open", + "version": "7.4.2" + } + }, + { + "id": "is-docker@2.2.1", + "info": { + "name": "is-docker", + "version": "2.2.1" + } + }, + { + "id": "is-wsl@2.2.0", + "info": { + "name": "is-wsl", + "version": "2.2.0" + } + }, + { + "id": "bluebird@3.7.2", + "info": { + "name": "bluebird", + "version": "3.7.2" + } + }, + { + "id": "cache-manager@2.11.1", + "info": { + "name": "cache-manager", + "version": "2.11.1" + } + }, + { + "id": "async@1.5.2", + "info": { + "name": "async", + "version": "1.5.2" + } + }, + { + "id": "lodash.clonedeep@4.5.0", + "info": { + "name": "lodash.clonedeep", + "version": "4.5.0" + } + }, + { + "id": "lru-cache@4.0.0", + "info": { + "name": "lru-cache", + "version": "4.0.0" + } + }, + { + "id": "pseudomap@1.0.2", + "info": { + "name": "pseudomap", + "version": "1.0.2" + } + }, + { + "id": "yallist@2.1.2", + "info": { + "name": "yallist", + "version": "2.1.2" + } + }, + { + "id": "chokidar@3.6.0", + "info": { + "name": "chokidar", + "version": "3.6.0" + } + }, + { + "id": "anymatch@3.1.3", + "info": { + "name": "anymatch", + "version": "3.1.3" + } + }, + { + "id": "normalize-path@3.0.0", + "info": { + "name": "normalize-path", + "version": "3.0.0" + } + }, + { + "id": "is-binary-path@2.1.0", + "info": { + "name": "is-binary-path", + "version": "2.1.0" + } + }, + { + "id": "binary-extensions@2.3.0", + "info": { + "name": "binary-extensions", + "version": "2.3.0" + } + }, + { + "id": "readdirp@3.6.0", + "info": { + "name": "readdirp", + "version": "3.6.0" + } + }, + { + "id": "compression@1.7.4", + "info": { + "name": "compression", + "version": "1.7.4" + } + }, + { + "id": "accepts@1.3.8", + "info": { + "name": "accepts", + "version": "1.3.8" + } + }, + { + "id": "negotiator@0.6.3", + "info": { + "name": "negotiator", + "version": "0.6.3" + } + }, + { + "id": "bytes@3.0.0", + "info": { + "name": "bytes", + "version": "3.0.0" + } + }, + { + "id": "compressible@2.0.18", + "info": { + "name": "compressible", + "version": "2.0.18" + } + }, + { + "id": "debug@2.6.9", + "info": { + "name": "debug", + "version": "2.6.9" + } + }, + { + "id": "ms@2.0.0", + "info": { + "name": "ms", + "version": "2.0.0" + } + }, + { + "id": "on-headers@1.0.2", + "info": { + "name": "on-headers", + "version": "1.0.2" + } + }, + { + "id": "safe-buffer@5.1.2", + "info": { + "name": "safe-buffer", + "version": "5.1.2" + } + }, + { + "id": "vary@1.1.2", + "info": { + "name": "vary", + "version": "1.1.2" + } + }, + { + "id": "cookie@0.4.2", + "info": { + "name": "cookie", + "version": "0.4.2" + } + }, + { + "id": "cors@2.8.5", + "info": { + "name": "cors", + "version": "2.8.5" + } + }, + { + "id": "css-loader@5.2.7", + "info": { + "name": "css-loader", + "version": "5.2.7" + } + }, + { + "id": "icss-utils@5.1.0", + "info": { + "name": "icss-utils", + "version": "5.1.0" + } + }, + { + "id": "postcss-modules-extract-imports@3.1.0", + "info": { + "name": "postcss-modules-extract-imports", + "version": "3.1.0" + } + }, + { + "id": "postcss-modules-local-by-default@4.0.5", + "info": { + "name": "postcss-modules-local-by-default", + "version": "4.0.5" + } + }, + { + "id": "postcss-selector-parser@6.0.16", + "info": { + "name": "postcss-selector-parser", + "version": "6.0.16" + } + }, + { + "id": "cssesc@3.0.0", + "info": { + "name": "cssesc", + "version": "3.0.0" + } + }, + { + "id": "postcss-modules-scope@3.2.0", + "info": { + "name": "postcss-modules-scope", + "version": "3.2.0" + } + }, + { + "id": "postcss-modules-values@4.0.0", + "info": { + "name": "postcss-modules-values", + "version": "4.0.0" + } + }, + { + "id": "css-minimizer-webpack-plugin@2.0.0", + "info": { + "name": "css-minimizer-webpack-plugin", + "version": "2.0.0" + } + }, + { + "id": "cssnano@5.1.15", + "info": { + "name": "cssnano", + "version": "5.1.15" + } + }, + { + "id": "cssnano-preset-default@5.2.14", + "info": { + "name": "cssnano-preset-default", + "version": "5.2.14" + } + }, + { + "id": "css-declaration-sorter@6.4.1", + "info": { + "name": "css-declaration-sorter", + "version": "6.4.1" + } + }, + { + "id": "cssnano-utils@3.1.0", + "info": { + "name": "cssnano-utils", + "version": "3.1.0" + } + }, + { + "id": "postcss-calc@8.2.4", + "info": { + "name": "postcss-calc", + "version": "8.2.4" + } + }, + { + "id": "postcss-colormin@5.3.1", + "info": { + "name": "postcss-colormin", + "version": "5.3.1" + } + }, + { + "id": "caniuse-api@3.0.0", + "info": { + "name": "caniuse-api", + "version": "3.0.0" + } + }, + { + "id": "lodash.memoize@4.1.2", + "info": { + "name": "lodash.memoize", + "version": "4.1.2" + } + }, + { + "id": "lodash.uniq@4.5.0", + "info": { + "name": "lodash.uniq", + "version": "4.5.0" + } + }, + { + "id": "colord@2.9.3", + "info": { + "name": "colord", + "version": "2.9.3" + } + }, + { + "id": "postcss-convert-values@5.1.3", + "info": { + "name": "postcss-convert-values", + "version": "5.1.3" + } + }, + { + "id": "postcss-discard-comments@5.1.2", + "info": { + "name": "postcss-discard-comments", + "version": "5.1.2" + } + }, + { + "id": "postcss-discard-duplicates@5.1.0", + "info": { + "name": "postcss-discard-duplicates", + "version": "5.1.0" + } + }, + { + "id": "postcss-discard-empty@5.1.1", + "info": { + "name": "postcss-discard-empty", + "version": "5.1.1" + } + }, + { + "id": "postcss-discard-overridden@5.1.0", + "info": { + "name": "postcss-discard-overridden", + "version": "5.1.0" + } + }, + { + "id": "postcss-merge-longhand@5.1.7", + "info": { + "name": "postcss-merge-longhand", + "version": "5.1.7" + } + }, + { + "id": "stylehacks@5.1.1", + "info": { + "name": "stylehacks", + "version": "5.1.1" + } + }, + { + "id": "postcss-merge-rules@5.1.4", + "info": { + "name": "postcss-merge-rules", + "version": "5.1.4" + } + }, + { + "id": "postcss-minify-font-values@5.1.0", + "info": { + "name": "postcss-minify-font-values", + "version": "5.1.0" + } + }, + { + "id": "postcss-minify-gradients@5.1.1", + "info": { + "name": "postcss-minify-gradients", + "version": "5.1.1" + } + }, + { + "id": "postcss-minify-params@5.1.4", + "info": { + "name": "postcss-minify-params", + "version": "5.1.4" + } + }, + { + "id": "postcss-minify-selectors@5.2.1", + "info": { + "name": "postcss-minify-selectors", + "version": "5.2.1" + } + }, + { + "id": "postcss-normalize-charset@5.1.0", + "info": { + "name": "postcss-normalize-charset", + "version": "5.1.0" + } + }, + { + "id": "postcss-normalize-display-values@5.1.0", + "info": { + "name": "postcss-normalize-display-values", + "version": "5.1.0" + } + }, + { + "id": "postcss-normalize-positions@5.1.1", + "info": { + "name": "postcss-normalize-positions", + "version": "5.1.1" + } + }, + { + "id": "postcss-normalize-repeat-style@5.1.1", + "info": { + "name": "postcss-normalize-repeat-style", + "version": "5.1.1" + } + }, + { + "id": "postcss-normalize-string@5.1.0", + "info": { + "name": "postcss-normalize-string", + "version": "5.1.0" + } + }, + { + "id": "postcss-normalize-timing-functions@5.1.0", + "info": { + "name": "postcss-normalize-timing-functions", + "version": "5.1.0" + } + }, + { + "id": "postcss-normalize-unicode@5.1.1", + "info": { + "name": "postcss-normalize-unicode", + "version": "5.1.1" + } + }, + { + "id": "postcss-normalize-url@5.1.0", + "info": { + "name": "postcss-normalize-url", + "version": "5.1.0" + } + }, + { + "id": "postcss-normalize-whitespace@5.1.1", + "info": { + "name": "postcss-normalize-whitespace", + "version": "5.1.1" + } + }, + { + "id": "postcss-ordered-values@5.1.3", + "info": { + "name": "postcss-ordered-values", + "version": "5.1.3" + } + }, + { + "id": "postcss-reduce-initial@5.1.2", + "info": { + "name": "postcss-reduce-initial", + "version": "5.1.2" + } + }, + { + "id": "postcss-reduce-transforms@5.1.0", + "info": { + "name": "postcss-reduce-transforms", + "version": "5.1.0" + } + }, + { + "id": "postcss-svgo@5.1.0", + "info": { + "name": "postcss-svgo", + "version": "5.1.0" + } + }, + { + "id": "svgo@2.8.0", + "info": { + "name": "svgo", + "version": "2.8.0" + } + }, + { + "id": "@trysound/sax@0.2.0", + "info": { + "name": "@trysound/sax", + "version": "0.2.0" + } + }, + { + "id": "commander@7.2.0", + "info": { + "name": "commander", + "version": "7.2.0" + } + }, + { + "id": "css-select@4.3.0", + "info": { + "name": "css-select", + "version": "4.3.0" + } + }, + { + "id": "boolbase@1.0.0", + "info": { + "name": "boolbase", + "version": "1.0.0" + } + }, + { + "id": "css-what@6.1.0", + "info": { + "name": "css-what", + "version": "6.1.0" + } + }, + { + "id": "domhandler@4.3.1", + "info": { + "name": "domhandler", + "version": "4.3.1" + } + }, + { + "id": "domelementtype@2.3.0", + "info": { + "name": "domelementtype", + "version": "2.3.0" + } + }, + { + "id": "domutils@2.8.0", + "info": { + "name": "domutils", + "version": "2.8.0" + } + }, + { + "id": "dom-serializer@1.4.1", + "info": { + "name": "dom-serializer", + "version": "1.4.1" + } + }, + { + "id": "entities@2.2.0", + "info": { + "name": "entities", + "version": "2.2.0" + } + }, + { + "id": "nth-check@2.1.1", + "info": { + "name": "nth-check", + "version": "2.1.1" + } + }, + { + "id": "css-tree@1.1.3", + "info": { + "name": "css-tree", + "version": "1.1.3" + } + }, + { + "id": "mdn-data@2.0.14", + "info": { + "name": "mdn-data", + "version": "2.0.14" + } + }, + { + "id": "csso@4.2.0", + "info": { + "name": "csso", + "version": "4.2.0" + } + }, + { + "id": "stable@0.1.8", + "info": { + "name": "stable", + "version": "0.1.8" + } + }, + { + "id": "postcss-unique-selectors@5.1.1", + "info": { + "name": "postcss-unique-selectors", + "version": "5.1.1" + } + }, + { + "id": "lilconfig@2.1.0", + "info": { + "name": "lilconfig", + "version": "2.1.0" + } + }, + { + "id": "jest-worker@26.6.2", + "info": { + "name": "jest-worker", + "version": "26.6.2" + } + }, + { + "id": "serialize-javascript@5.0.1", + "info": { + "name": "serialize-javascript", + "version": "5.0.1" + } + }, + { + "id": "css.escape@1.5.1", + "info": { + "name": "css.escape", + "version": "1.5.1" + } + }, + { + "id": "date-fns@2.30.0", + "info": { + "name": "date-fns", + "version": "2.30.0" + } + }, + { + "id": "debug@3.2.7", + "info": { + "name": "debug", + "version": "3.2.7" + } + }, + { + "id": "ms@2.1.3", + "info": { + "name": "ms", + "version": "2.1.3" + } + }, + { + "id": "deepmerge@4.3.1", + "info": { + "name": "deepmerge", + "version": "4.3.1" + } + }, + { + "id": "detect-port@1.6.1", + "info": { + "name": "detect-port", + "version": "1.6.1" + } + }, + { + "id": "devcert@1.2.2", + "info": { + "name": "devcert", + "version": "1.2.2" + } + }, + { + "id": "@types/configstore@2.1.1", + "info": { + "name": "@types/configstore", + "version": "2.1.1" + } + }, + { + "id": "@types/debug@0.0.30", + "info": { + "name": "@types/debug", + "version": "0.0.30" + } + }, + { + "id": "@types/get-port@3.2.0", + "info": { + "name": "@types/get-port", + "version": "3.2.0" + } + }, + { + "id": "@types/glob@5.0.38", + "info": { + "name": "@types/glob", + "version": "5.0.38" + } + }, + { + "id": "@types/minimatch@5.1.2", + "info": { + "name": "@types/minimatch", + "version": "5.1.2" + } + }, + { + "id": "@types/node@8.10.66", + "info": { + "name": "@types/node", + "version": "8.10.66" + } + }, + { + "id": "@types/lodash@4.17.1", + "info": { + "name": "@types/lodash", + "version": "4.17.1" + } + }, + { + "id": "@types/mkdirp@0.5.2", + "info": { + "name": "@types/mkdirp", + "version": "0.5.2" + } + }, + { + "id": "@types/rimraf@2.0.5", + "info": { + "name": "@types/rimraf", + "version": "2.0.5" + } + }, + { + "id": "@types/tmp@0.0.33", + "info": { + "name": "@types/tmp", + "version": "0.0.33" + } + }, + { + "id": "application-config-path@0.1.1", + "info": { + "name": "application-config-path", + "version": "0.1.1" + } + }, + { + "id": "command-exists@1.2.9", + "info": { + "name": "command-exists", + "version": "1.2.9" + } + }, + { + "id": "eol@0.9.1", + "info": { + "name": "eol", + "version": "0.9.1" + } + }, + { + "id": "get-port@3.2.0", + "info": { + "name": "get-port", + "version": "3.2.0" + } + }, + { + "id": "is-valid-domain@0.1.6", + "info": { + "name": "is-valid-domain", + "version": "0.1.6" + } + }, + { + "id": "mkdirp@0.5.6", + "info": { + "name": "mkdirp", + "version": "0.5.6" + } + }, + { + "id": "minimist@1.2.8", + "info": { + "name": "minimist", + "version": "1.2.8" + } + }, + { + "id": "password-prompt@1.1.3", + "info": { + "name": "password-prompt", + "version": "1.1.3" + } + }, + { + "id": "ansi-escapes@4.3.2", + "info": { + "name": "ansi-escapes", + "version": "4.3.2" + } + }, + { + "id": "type-fest@0.21.3", + "info": { + "name": "type-fest", + "version": "0.21.3" + } + }, + { + "id": "rimraf@2.7.1", + "info": { + "name": "rimraf", + "version": "2.7.1" + } + }, + { + "id": "sudo-prompt@8.2.5", + "info": { + "name": "sudo-prompt", + "version": "8.2.5" + } + }, + { + "id": "tmp@0.0.33", + "info": { + "name": "tmp", + "version": "0.0.33" + } + }, + { + "id": "os-tmpdir@1.0.2", + "info": { + "name": "os-tmpdir", + "version": "1.0.2" + } + }, + { + "id": "dotenv@8.6.0", + "info": { + "name": "dotenv", + "version": "8.6.0" + } + }, + { + "id": "eslint-config-react-app@6.0.0", + "info": { + "name": "eslint-config-react-app", + "version": "6.0.0" + } + }, + { + "id": "babel-eslint@10.1.0", + "info": { + "name": "babel-eslint", + "version": "10.1.0" + } + }, + { + "id": "confusing-browser-globals@1.0.11", + "info": { + "name": "confusing-browser-globals", + "version": "1.0.11" + } + }, + { + "id": "eslint-plugin-flowtype@5.10.0", + "info": { + "name": "eslint-plugin-flowtype", + "version": "5.10.0" + } + }, + { + "id": "string-natural-compare@3.0.1", + "info": { + "name": "string-natural-compare", + "version": "3.0.1" + } + }, + { + "id": "eslint-plugin-import@2.29.1", + "info": { + "name": "eslint-plugin-import", + "version": "2.29.1" + } + }, + { + "id": "array-includes@3.1.8", + "info": { + "name": "array-includes", + "version": "3.1.8" + } + }, + { + "id": "es-abstract@1.23.3", + "info": { + "name": "es-abstract", + "version": "1.23.3" + } + }, + { + "id": "array-buffer-byte-length@1.0.1", + "info": { + "name": "array-buffer-byte-length", + "version": "1.0.1" + } + }, + { + "id": "is-array-buffer@3.0.4", + "info": { + "name": "is-array-buffer", + "version": "3.0.4" + } + }, + { + "id": "arraybuffer.prototype.slice@1.0.3", + "info": { + "name": "arraybuffer.prototype.slice", + "version": "1.0.3" + } + }, + { + "id": "is-shared-array-buffer@1.0.3", + "info": { + "name": "is-shared-array-buffer", + "version": "1.0.3" + } + }, + { + "id": "available-typed-arrays@1.0.7", + "info": { + "name": "available-typed-arrays", + "version": "1.0.7" + } + }, + { + "id": "possible-typed-array-names@1.0.0", + "info": { + "name": "possible-typed-array-names", + "version": "1.0.0" + } + }, + { + "id": "data-view-buffer@1.0.1", + "info": { + "name": "data-view-buffer", + "version": "1.0.1" + } + }, + { + "id": "is-data-view@1.0.1", + "info": { + "name": "is-data-view", + "version": "1.0.1" + } + }, + { + "id": "is-typed-array@1.1.13", + "info": { + "name": "is-typed-array", + "version": "1.1.13" + } + }, + { + "id": "which-typed-array@1.1.15", + "info": { + "name": "which-typed-array", + "version": "1.1.15" + } + }, + { + "id": "for-each@0.3.3", + "info": { + "name": "for-each", + "version": "0.3.3" + } + }, + { + "id": "is-callable@1.2.7", + "info": { + "name": "is-callable", + "version": "1.2.7" + } + }, + { + "id": "has-tostringtag@1.0.2", + "info": { + "name": "has-tostringtag", + "version": "1.0.2" + } + }, + { + "id": "data-view-byte-length@1.0.1", + "info": { + "name": "data-view-byte-length", + "version": "1.0.1" + } + }, + { + "id": "data-view-byte-offset@1.0.0", + "info": { + "name": "data-view-byte-offset", + "version": "1.0.0" + } + }, + { + "id": "es-object-atoms@1.0.0", + "info": { + "name": "es-object-atoms", + "version": "1.0.0" + } + }, + { + "id": "es-set-tostringtag@2.0.3", + "info": { + "name": "es-set-tostringtag", + "version": "2.0.3" + } + }, + { + "id": "es-to-primitive@1.2.1", + "info": { + "name": "es-to-primitive", + "version": "1.2.1" + } + }, + { + "id": "is-date-object@1.0.5", + "info": { + "name": "is-date-object", + "version": "1.0.5" + } + }, + { + "id": "is-symbol@1.0.4", + "info": { + "name": "is-symbol", + "version": "1.0.4" + } + }, + { + "id": "function.prototype.name@1.1.6", + "info": { + "name": "function.prototype.name", + "version": "1.1.6" + } + }, + { + "id": "functions-have-names@1.2.3", + "info": { + "name": "functions-have-names", + "version": "1.2.3" + } + }, + { + "id": "get-symbol-description@1.0.2", + "info": { + "name": "get-symbol-description", + "version": "1.0.2" + } + }, + { + "id": "globalthis@1.0.4", + "info": { + "name": "globalthis", + "version": "1.0.4" + } + }, + { + "id": "internal-slot@1.0.7", + "info": { + "name": "internal-slot", + "version": "1.0.7" + } + }, + { + "id": "side-channel@1.0.6", + "info": { + "name": "side-channel", + "version": "1.0.6" + } + }, + { + "id": "object-inspect@1.13.1", + "info": { + "name": "object-inspect", + "version": "1.13.1" + } + }, + { + "id": "is-negative-zero@2.0.3", + "info": { + "name": "is-negative-zero", + "version": "2.0.3" + } + }, + { + "id": "is-regex@1.1.4", + "info": { + "name": "is-regex", + "version": "1.1.4" + } + }, + { + "id": "is-string@1.0.7", + "info": { + "name": "is-string", + "version": "1.0.7" + } + }, + { + "id": "is-weakref@1.0.2", + "info": { + "name": "is-weakref", + "version": "1.0.2" + } + }, + { + "id": "regexp.prototype.flags@1.5.2", + "info": { + "name": "regexp.prototype.flags", + "version": "1.5.2" + } + }, + { + "id": "set-function-name@2.0.2", + "info": { + "name": "set-function-name", + "version": "2.0.2" + } + }, + { + "id": "safe-array-concat@1.1.2", + "info": { + "name": "safe-array-concat", + "version": "1.1.2" + } + }, + { + "id": "isarray@2.0.5", + "info": { + "name": "isarray", + "version": "2.0.5" + } + }, + { + "id": "safe-regex-test@1.0.3", + "info": { + "name": "safe-regex-test", + "version": "1.0.3" + } + }, + { + "id": "string.prototype.trim@1.2.9", + "info": { + "name": "string.prototype.trim", + "version": "1.2.9" + } + }, + { + "id": "string.prototype.trimend@1.0.8", + "info": { + "name": "string.prototype.trimend", + "version": "1.0.8" + } + }, + { + "id": "string.prototype.trimstart@1.0.8", + "info": { + "name": "string.prototype.trimstart", + "version": "1.0.8" + } + }, + { + "id": "typed-array-buffer@1.0.2", + "info": { + "name": "typed-array-buffer", + "version": "1.0.2" + } + }, + { + "id": "typed-array-byte-length@1.0.1", + "info": { + "name": "typed-array-byte-length", + "version": "1.0.1" + } + }, + { + "id": "typed-array-byte-offset@1.0.2", + "info": { + "name": "typed-array-byte-offset", + "version": "1.0.2" + } + }, + { + "id": "typed-array-length@1.0.6", + "info": { + "name": "typed-array-length", + "version": "1.0.6" + } + }, + { + "id": "unbox-primitive@1.0.2", + "info": { + "name": "unbox-primitive", + "version": "1.0.2" + } + }, + { + "id": "has-bigints@1.0.2", + "info": { + "name": "has-bigints", + "version": "1.0.2" + } + }, + { + "id": "which-boxed-primitive@1.0.2", + "info": { + "name": "which-boxed-primitive", + "version": "1.0.2" + } + }, + { + "id": "is-bigint@1.0.4", + "info": { + "name": "is-bigint", + "version": "1.0.4" + } + }, + { + "id": "is-boolean-object@1.1.2", + "info": { + "name": "is-boolean-object", + "version": "1.1.2" + } + }, + { + "id": "is-number-object@1.0.7", + "info": { + "name": "is-number-object", + "version": "1.0.7" + } + }, + { + "id": "array.prototype.findlastindex@1.2.5", + "info": { + "name": "array.prototype.findlastindex", + "version": "1.2.5" + } + }, + { + "id": "es-shim-unscopables@1.0.2", + "info": { + "name": "es-shim-unscopables", + "version": "1.0.2" + } + }, + { + "id": "array.prototype.flat@1.3.2", + "info": { + "name": "array.prototype.flat", + "version": "1.3.2" + } + }, + { + "id": "array.prototype.flatmap@1.3.2", + "info": { + "name": "array.prototype.flatmap", + "version": "1.3.2" + } + }, + { + "id": "doctrine@2.1.0", + "info": { + "name": "doctrine", + "version": "2.1.0" + } + }, + { + "id": "eslint-import-resolver-node@0.3.9", + "info": { + "name": "eslint-import-resolver-node", + "version": "0.3.9" + } + }, + { + "id": "eslint-module-utils@2.8.1", + "info": { + "name": "eslint-module-utils", + "version": "2.8.1" + } + }, + { + "id": "object.fromentries@2.0.8", + "info": { + "name": "object.fromentries", + "version": "2.0.8" + } + }, + { + "id": "object.groupby@1.0.3", + "info": { + "name": "object.groupby", + "version": "1.0.3" + } + }, + { + "id": "object.values@1.2.0", + "info": { + "name": "object.values", + "version": "1.2.0" + } + }, + { + "id": "tsconfig-paths@3.15.0", + "info": { + "name": "tsconfig-paths", + "version": "3.15.0" + } + }, + { + "id": "@types/json5@0.0.29", + "info": { + "name": "@types/json5", + "version": "0.0.29" + } + }, + { + "id": "json5@1.0.2", + "info": { + "name": "json5", + "version": "1.0.2" + } + }, + { + "id": "strip-bom@3.0.0", + "info": { + "name": "strip-bom", + "version": "3.0.0" + } + }, + { + "id": "eslint-plugin-jsx-a11y@6.8.0", + "info": { + "name": "eslint-plugin-jsx-a11y", + "version": "6.8.0" + } + }, + { + "id": "aria-query@5.3.0", + "info": { + "name": "aria-query", + "version": "5.3.0" + } + }, + { + "id": "dequal@2.0.3", + "info": { + "name": "dequal", + "version": "2.0.3" + } + }, + { + "id": "ast-types-flow@0.0.8", + "info": { + "name": "ast-types-flow", + "version": "0.0.8" + } + }, + { + "id": "axe-core@4.7.0", + "info": { + "name": "axe-core", + "version": "4.7.0" + } + }, + { + "id": "axobject-query@3.2.1", + "info": { + "name": "axobject-query", + "version": "3.2.1" + } + }, + { + "id": "damerau-levenshtein@1.0.8", + "info": { + "name": "damerau-levenshtein", + "version": "1.0.8" + } + }, + { + "id": "emoji-regex@9.2.2", + "info": { + "name": "emoji-regex", + "version": "9.2.2" + } + }, + { + "id": "es-iterator-helpers@1.0.19", + "info": { + "name": "es-iterator-helpers", + "version": "1.0.19" + } + }, + { + "id": "iterator.prototype@1.1.2", + "info": { + "name": "iterator.prototype", + "version": "1.1.2" + } + }, + { + "id": "reflect.getprototypeof@1.0.6", + "info": { + "name": "reflect.getprototypeof", + "version": "1.0.6" + } + }, + { + "id": "which-builtin-type@1.1.3", + "info": { + "name": "which-builtin-type", + "version": "1.1.3" + } + }, + { + "id": "is-async-function@2.0.0", + "info": { + "name": "is-async-function", + "version": "2.0.0" + } + }, + { + "id": "is-finalizationregistry@1.0.2", + "info": { + "name": "is-finalizationregistry", + "version": "1.0.2" + } + }, + { + "id": "is-generator-function@1.0.10", + "info": { + "name": "is-generator-function", + "version": "1.0.10" + } + }, + { + "id": "which-collection@1.0.2", + "info": { + "name": "which-collection", + "version": "1.0.2" + } + }, + { + "id": "is-map@2.0.3", + "info": { + "name": "is-map", + "version": "2.0.3" + } + }, + { + "id": "is-set@2.0.3", + "info": { + "name": "is-set", + "version": "2.0.3" + } + }, + { + "id": "is-weakmap@2.0.2", + "info": { + "name": "is-weakmap", + "version": "2.0.2" + } + }, + { + "id": "is-weakset@2.0.3", + "info": { + "name": "is-weakset", + "version": "2.0.3" + } + }, + { + "id": "jsx-ast-utils@3.3.5", + "info": { + "name": "jsx-ast-utils", + "version": "3.3.5" + } + }, + { + "id": "language-tags@1.0.9", + "info": { + "name": "language-tags", + "version": "1.0.9" + } + }, + { + "id": "language-subtag-registry@0.3.22", + "info": { + "name": "language-subtag-registry", + "version": "0.3.22" + } + }, + { + "id": "object.entries@1.1.8", + "info": { + "name": "object.entries", + "version": "1.1.8" + } + }, + { + "id": "eslint-plugin-react@7.34.1", + "info": { + "name": "eslint-plugin-react", + "version": "7.34.1" + } + }, + { + "id": "array.prototype.findlast@1.2.5", + "info": { + "name": "array.prototype.findlast", + "version": "1.2.5" + } + }, + { + "id": "array.prototype.toreversed@1.1.2", + "info": { + "name": "array.prototype.toreversed", + "version": "1.1.2" + } + }, + { + "id": "array.prototype.tosorted@1.1.3", + "info": { + "name": "array.prototype.tosorted", + "version": "1.1.3" + } + }, + { + "id": "object.hasown@1.1.4", + "info": { + "name": "object.hasown", + "version": "1.1.4" + } + }, + { + "id": "resolve@2.0.0-next.5", + "info": { + "name": "resolve", + "version": "2.0.0-next.5" + } + }, + { + "id": "string.prototype.matchall@4.0.11", + "info": { + "name": "string.prototype.matchall", + "version": "4.0.11" + } + }, + { + "id": "eslint-plugin-react-hooks@4.6.2", + "info": { + "name": "eslint-plugin-react-hooks", + "version": "4.6.2" + } + }, + { + "id": "eslint-webpack-plugin@2.7.0", + "info": { + "name": "eslint-webpack-plugin", + "version": "2.7.0" + } + }, + { + "id": "@types/eslint@7.29.0", + "info": { + "name": "@types/eslint", + "version": "7.29.0" + } + }, + { + "id": "arrify@2.0.1", + "info": { + "name": "arrify", + "version": "2.0.1" + } + }, + { + "id": "event-source-polyfill@1.0.25", + "info": { + "name": "event-source-polyfill", + "version": "1.0.25" + } + }, + { + "id": "execa@5.1.1", + "info": { + "name": "execa", + "version": "5.1.1" + } + }, + { + "id": "get-stream@6.0.1", + "info": { + "name": "get-stream", + "version": "6.0.1" + } + }, + { + "id": "human-signals@2.1.0", + "info": { + "name": "human-signals", + "version": "2.1.0" + } + }, + { + "id": "is-stream@2.0.1", + "info": { + "name": "is-stream", + "version": "2.0.1" + } + }, + { + "id": "npm-run-path@4.0.1", + "info": { + "name": "npm-run-path", + "version": "4.0.1" + } + }, + { + "id": "onetime@5.1.2", + "info": { + "name": "onetime", + "version": "5.1.2" + } + }, + { + "id": "mimic-fn@2.1.0", + "info": { + "name": "mimic-fn", + "version": "2.1.0" + } + }, + { + "id": "strip-final-newline@2.0.0", + "info": { + "name": "strip-final-newline", + "version": "2.0.0" + } + }, + { + "id": "express@4.19.2", + "info": { + "name": "express", + "version": "4.19.2" + } + }, + { + "id": "array-flatten@1.1.1", + "info": { + "name": "array-flatten", + "version": "1.1.1" + } + }, + { + "id": "body-parser@1.20.2", + "info": { + "name": "body-parser", + "version": "1.20.2" + } + }, + { + "id": "bytes@3.1.2", + "info": { + "name": "bytes", + "version": "3.1.2" + } + }, + { + "id": "content-type@1.0.5", + "info": { + "name": "content-type", + "version": "1.0.5" + } + }, + { + "id": "depd@2.0.0", + "info": { + "name": "depd", + "version": "2.0.0" + } + }, + { + "id": "destroy@1.2.0", + "info": { + "name": "destroy", + "version": "1.2.0" + } + }, + { + "id": "http-errors@2.0.0", + "info": { + "name": "http-errors", + "version": "2.0.0" + } + }, + { + "id": "setprototypeof@1.2.0", + "info": { + "name": "setprototypeof", + "version": "1.2.0" + } + }, + { + "id": "statuses@2.0.1", + "info": { + "name": "statuses", + "version": "2.0.1" + } + }, + { + "id": "toidentifier@1.0.1", + "info": { + "name": "toidentifier", + "version": "1.0.1" + } + }, + { + "id": "iconv-lite@0.4.24", + "info": { + "name": "iconv-lite", + "version": "0.4.24" + } + }, + { + "id": "safer-buffer@2.1.2", + "info": { + "name": "safer-buffer", + "version": "2.1.2" + } + }, + { + "id": "on-finished@2.4.1", + "info": { + "name": "on-finished", + "version": "2.4.1" + } + }, + { + "id": "ee-first@1.1.1", + "info": { + "name": "ee-first", + "version": "1.1.1" + } + }, + { + "id": "qs@6.11.0", + "info": { + "name": "qs", + "version": "6.11.0" + } + }, + { + "id": "raw-body@2.5.2", + "info": { + "name": "raw-body", + "version": "2.5.2" + } + }, + { + "id": "unpipe@1.0.0", + "info": { + "name": "unpipe", + "version": "1.0.0" + } + }, + { + "id": "type-is@1.6.18", + "info": { + "name": "type-is", + "version": "1.6.18" + } + }, + { + "id": "media-typer@0.3.0", + "info": { + "name": "media-typer", + "version": "0.3.0" + } + }, + { + "id": "content-disposition@0.5.4", + "info": { + "name": "content-disposition", + "version": "0.5.4" + } + }, + { + "id": "cookie@0.6.0", + "info": { + "name": "cookie", + "version": "0.6.0" + } + }, + { + "id": "cookie-signature@1.0.6", + "info": { + "name": "cookie-signature", + "version": "1.0.6" + } + }, + { + "id": "encodeurl@1.0.2", + "info": { + "name": "encodeurl", + "version": "1.0.2" + } + }, + { + "id": "escape-html@1.0.3", + "info": { + "name": "escape-html", + "version": "1.0.3" + } + }, + { + "id": "etag@1.8.1", + "info": { + "name": "etag", + "version": "1.8.1" + } + }, + { + "id": "finalhandler@1.2.0", + "info": { + "name": "finalhandler", + "version": "1.2.0" + } + }, + { + "id": "parseurl@1.3.3", + "info": { + "name": "parseurl", + "version": "1.3.3" + } + }, + { + "id": "fresh@0.5.2", + "info": { + "name": "fresh", + "version": "0.5.2" + } + }, + { + "id": "merge-descriptors@1.0.1", + "info": { + "name": "merge-descriptors", + "version": "1.0.1" + } + }, + { + "id": "methods@1.1.2", + "info": { + "name": "methods", + "version": "1.1.2" + } + }, + { + "id": "path-to-regexp@0.1.7", + "info": { + "name": "path-to-regexp", + "version": "0.1.7" + } + }, + { + "id": "proxy-addr@2.0.7", + "info": { + "name": "proxy-addr", + "version": "2.0.7" + } + }, + { + "id": "forwarded@0.2.0", + "info": { + "name": "forwarded", + "version": "0.2.0" + } + }, + { + "id": "ipaddr.js@1.9.1", + "info": { + "name": "ipaddr.js", + "version": "1.9.1" + } + }, + { + "id": "range-parser@1.2.1", + "info": { + "name": "range-parser", + "version": "1.2.1" + } + }, + { + "id": "send@0.18.0", + "info": { + "name": "send", + "version": "0.18.0" + } + }, + { + "id": "mime@1.6.0", + "info": { + "name": "mime", + "version": "1.6.0" + } + }, + { + "id": "serve-static@1.15.0", + "info": { + "name": "serve-static", + "version": "1.15.0" + } + }, + { + "id": "utils-merge@1.0.1", + "info": { + "name": "utils-merge", + "version": "1.0.1" + } + }, + { + "id": "express-graphql@0.12.0", + "info": { + "name": "express-graphql", + "version": "0.12.0" + } + }, + { + "id": "http-errors@1.8.0", + "info": { + "name": "http-errors", + "version": "1.8.0" + } + }, + { + "id": "depd@1.1.2", + "info": { + "name": "depd", + "version": "1.1.2" + } + }, + { + "id": "statuses@1.5.0", + "info": { + "name": "statuses", + "version": "1.5.0" + } + }, + { + "id": "toidentifier@1.0.0", + "info": { + "name": "toidentifier", + "version": "1.0.0" + } + }, + { + "id": "express-http-proxy@1.6.3", + "info": { + "name": "express-http-proxy", + "version": "1.6.3" + } + }, + { + "id": "es6-promise@4.2.8", + "info": { + "name": "es6-promise", + "version": "4.2.8" + } + }, + { + "id": "fastest-levenshtein@1.0.16", + "info": { + "name": "fastest-levenshtein", + "version": "1.0.16" + } + }, + { + "id": "file-loader@6.2.0", + "info": { + "name": "file-loader", + "version": "6.2.0" + } + }, + { + "id": "fs-exists-cached@1.0.0", + "info": { + "name": "fs-exists-cached", + "version": "1.0.0" + } + }, + { + "id": "gatsby-cli@4.25.0", + "info": { + "name": "gatsby-cli", + "version": "4.25.0" + } + }, + { + "id": "@babel/preset-typescript@7.24.1", + "info": { + "name": "@babel/preset-typescript", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-typescript@7.24.5", + "info": { + "name": "@babel/plugin-transform-typescript", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-syntax-typescript@7.24.1", + "info": { + "name": "@babel/plugin-syntax-typescript", + "version": "7.24.1" + } + }, + { + "id": "@types/common-tags@1.8.4", + "info": { + "name": "@types/common-tags", + "version": "1.8.4" + } + }, + { + "id": "boxen@5.1.2", + "info": { + "name": "boxen", + "version": "5.1.2" + } + }, + { + "id": "ansi-align@3.0.1", + "info": { + "name": "ansi-align", + "version": "3.0.1" + } + }, + { + "id": "camelcase@6.3.0", + "info": { + "name": "camelcase", + "version": "6.3.0" + } + }, + { + "id": "cli-boxes@2.2.1", + "info": { + "name": "cli-boxes", + "version": "2.2.1" + } + }, + { + "id": "widest-line@3.1.0", + "info": { + "name": "widest-line", + "version": "3.1.0" + } + }, + { + "id": "wrap-ansi@7.0.0", + "info": { + "name": "wrap-ansi", + "version": "7.0.0" + } + }, + { + "id": "clipboardy@2.3.0", + "info": { + "name": "clipboardy", + "version": "2.3.0" + } + }, + { + "id": "arch@2.2.0", + "info": { + "name": "arch", + "version": "2.2.0" + } + }, + { + "id": "execa@1.0.0", + "info": { + "name": "execa", + "version": "1.0.0" + } + }, + { + "id": "cross-spawn@6.0.5", + "info": { + "name": "cross-spawn", + "version": "6.0.5" + } + }, + { + "id": "nice-try@1.0.5", + "info": { + "name": "nice-try", + "version": "1.0.5" + } + }, + { + "id": "path-key@2.0.1", + "info": { + "name": "path-key", + "version": "2.0.1" + } + }, + { + "id": "shebang-command@1.2.0", + "info": { + "name": "shebang-command", + "version": "1.2.0" + } + }, + { + "id": "shebang-regex@1.0.0", + "info": { + "name": "shebang-regex", + "version": "1.0.0" + } + }, + { + "id": "which@1.3.1", + "info": { + "name": "which", + "version": "1.3.1" + } + }, + { + "id": "get-stream@4.1.0", + "info": { + "name": "get-stream", + "version": "4.1.0" + } + }, + { + "id": "is-stream@1.1.0", + "info": { + "name": "is-stream", + "version": "1.1.0" + } + }, + { + "id": "npm-run-path@2.0.2", + "info": { + "name": "npm-run-path", + "version": "2.0.2" + } + }, + { + "id": "p-finally@1.0.0", + "info": { + "name": "p-finally", + "version": "1.0.0" + } + }, + { + "id": "strip-eof@1.0.0", + "info": { + "name": "strip-eof", + "version": "1.0.0" + } + }, + { + "id": "convert-hrtime@3.0.0", + "info": { + "name": "convert-hrtime", + "version": "3.0.0" + } + }, + { + "id": "create-gatsby@2.25.0", + "info": { + "name": "create-gatsby", + "version": "2.25.0" + } + }, + { + "id": "envinfo@7.13.0", + "info": { + "name": "envinfo", + "version": "7.13.0" + } + }, + { + "id": "gatsby-telemetry@3.25.0", + "info": { + "name": "gatsby-telemetry", + "version": "3.25.0" + } + }, + { + "id": "@turist/fetch@7.2.0", + "info": { + "name": "@turist/fetch", + "version": "7.2.0" + } + }, + { + "id": "@types/node-fetch@2.6.11", + "info": { + "name": "@types/node-fetch", + "version": "2.6.11" + } + }, + { + "id": "form-data@4.0.0", + "info": { + "name": "form-data", + "version": "4.0.0" + } + }, + { + "id": "asynckit@0.4.0", + "info": { + "name": "asynckit", + "version": "0.4.0" + } + }, + { + "id": "combined-stream@1.0.8", + "info": { + "name": "combined-stream", + "version": "1.0.8" + } + }, + { + "id": "delayed-stream@1.0.0", + "info": { + "name": "delayed-stream", + "version": "1.0.0" + } + }, + { + "id": "@turist/time@0.0.2", + "info": { + "name": "@turist/time", + "version": "0.0.2" + } + }, + { + "id": "boxen@4.2.0", + "info": { + "name": "boxen", + "version": "4.2.0" + } + }, + { + "id": "chalk@3.0.0", + "info": { + "name": "chalk", + "version": "3.0.0" + } + }, + { + "id": "term-size@2.2.1", + "info": { + "name": "term-size", + "version": "2.2.1" + } + }, + { + "id": "type-fest@0.8.1", + "info": { + "name": "type-fest", + "version": "0.8.1" + } + }, + { + "id": "git-up@7.0.0", + "info": { + "name": "git-up", + "version": "7.0.0" + } + }, + { + "id": "is-ssh@1.4.0", + "info": { + "name": "is-ssh", + "version": "1.4.0" + } + }, + { + "id": "protocols@2.0.1", + "info": { + "name": "protocols", + "version": "2.0.1" + } + }, + { + "id": "parse-url@8.1.0", + "info": { + "name": "parse-url", + "version": "8.1.0" + } + }, + { + "id": "parse-path@7.0.0", + "info": { + "name": "parse-path", + "version": "7.0.0" + } + }, + { + "id": "hosted-git-info@3.0.8", + "info": { + "name": "hosted-git-info", + "version": "3.0.8" + } + }, + { + "id": "lru-cache@6.0.0", + "info": { + "name": "lru-cache", + "version": "6.0.0" + } + }, + { + "id": "yallist@4.0.0", + "info": { + "name": "yallist", + "version": "4.0.0" + } + }, + { + "id": "is-valid-path@0.1.1", + "info": { + "name": "is-valid-path", + "version": "0.1.1" + } + }, + { + "id": "is-invalid-path@0.1.0", + "info": { + "name": "is-invalid-path", + "version": "0.1.0" + } + }, + { + "id": "is-glob@2.0.1", + "info": { + "name": "is-glob", + "version": "2.0.1" + } + }, + { + "id": "is-extglob@1.0.0", + "info": { + "name": "is-extglob", + "version": "1.0.0" + } + }, + { + "id": "joi@17.13.1", + "info": { + "name": "joi", + "version": "17.13.1" + } + }, + { + "id": "@hapi/hoek@9.3.0", + "info": { + "name": "@hapi/hoek", + "version": "9.3.0" + } + }, + { + "id": "@hapi/topo@5.1.0", + "info": { + "name": "@hapi/topo", + "version": "5.1.0" + } + }, + { + "id": "@sideway/address@4.1.5", + "info": { + "name": "@sideway/address", + "version": "4.1.5" + } + }, + { + "id": "@sideway/formula@3.0.1", + "info": { + "name": "@sideway/formula", + "version": "3.0.1" + } + }, + { + "id": "@sideway/pinpoint@2.0.0", + "info": { + "name": "@sideway/pinpoint", + "version": "2.0.0" + } + }, + { + "id": "opentracing@0.14.7", + "info": { + "name": "opentracing", + "version": "0.14.7" + } + }, + { + "id": "pretty-error@2.1.2", + "info": { + "name": "pretty-error", + "version": "2.1.2" + } + }, + { + "id": "renderkid@2.0.7", + "info": { + "name": "renderkid", + "version": "2.0.7" + } + }, + { + "id": "dom-converter@0.2.0", + "info": { + "name": "dom-converter", + "version": "0.2.0" + } + }, + { + "id": "utila@0.4.0", + "info": { + "name": "utila", + "version": "0.4.0" + } + }, + { + "id": "htmlparser2@6.1.0", + "info": { + "name": "htmlparser2", + "version": "6.1.0" + } + }, + { + "id": "strip-ansi@3.0.1", + "info": { + "name": "strip-ansi", + "version": "3.0.1" + } + }, + { + "id": "ansi-regex@2.1.1", + "info": { + "name": "ansi-regex", + "version": "2.1.1" + } + }, + { + "id": "prompts@2.4.2", + "info": { + "name": "prompts", + "version": "2.4.2" + } + }, + { + "id": "kleur@3.0.3", + "info": { + "name": "kleur", + "version": "3.0.3" + } + }, + { + "id": "sisteransi@1.0.5", + "info": { + "name": "sisteransi", + "version": "1.0.5" + } + }, + { + "id": "redux@4.1.2", + "info": { + "name": "redux", + "version": "4.1.2" + } + }, + { + "id": "resolve-cwd@3.0.0", + "info": { + "name": "resolve-cwd", + "version": "3.0.0" + } + }, + { + "id": "stack-trace@0.0.10", + "info": { + "name": "stack-trace", + "version": "0.0.10" + } + }, + { + "id": "update-notifier@5.1.0", + "info": { + "name": "update-notifier", + "version": "5.1.0" + } + }, + { + "id": "has-yarn@2.1.0", + "info": { + "name": "has-yarn", + "version": "2.1.0" + } + }, + { + "id": "import-lazy@2.1.0", + "info": { + "name": "import-lazy", + "version": "2.1.0" + } + }, + { + "id": "is-ci@2.0.0", + "info": { + "name": "is-ci", + "version": "2.0.0" + } + }, + { + "id": "is-installed-globally@0.4.0", + "info": { + "name": "is-installed-globally", + "version": "0.4.0" + } + }, + { + "id": "global-dirs@3.0.1", + "info": { + "name": "global-dirs", + "version": "3.0.1" + } + }, + { + "id": "ini@2.0.0", + "info": { + "name": "ini", + "version": "2.0.0" + } + }, + { + "id": "is-path-inside@3.0.3", + "info": { + "name": "is-path-inside", + "version": "3.0.3" + } + }, + { + "id": "is-npm@5.0.0", + "info": { + "name": "is-npm", + "version": "5.0.0" + } + }, + { + "id": "is-yarn-global@0.3.0", + "info": { + "name": "is-yarn-global", + "version": "0.3.0" + } + }, + { + "id": "latest-version@5.1.0", + "info": { + "name": "latest-version", + "version": "5.1.0" + } + }, + { + "id": "package-json@6.5.0", + "info": { + "name": "package-json", + "version": "6.5.0" + } + }, + { + "id": "got@9.6.0", + "info": { + "name": "got", + "version": "9.6.0" + } + }, + { + "id": "@sindresorhus/is@0.14.0", + "info": { + "name": "@sindresorhus/is", + "version": "0.14.0" + } + }, + { + "id": "@szmarczak/http-timer@1.1.2", + "info": { + "name": "@szmarczak/http-timer", + "version": "1.1.2" + } + }, + { + "id": "defer-to-connect@1.1.3", + "info": { + "name": "defer-to-connect", + "version": "1.1.3" + } + }, + { + "id": "cacheable-request@6.1.0", + "info": { + "name": "cacheable-request", + "version": "6.1.0" + } + }, + { + "id": "keyv@3.1.0", + "info": { + "name": "keyv", + "version": "3.1.0" + } + }, + { + "id": "json-buffer@3.0.0", + "info": { + "name": "json-buffer", + "version": "3.0.0" + } + }, + { + "id": "normalize-url@4.5.1", + "info": { + "name": "normalize-url", + "version": "4.5.1" + } + }, + { + "id": "responselike@1.0.2", + "info": { + "name": "responselike", + "version": "1.0.2" + } + }, + { + "id": "lowercase-keys@1.0.1", + "info": { + "name": "lowercase-keys", + "version": "1.0.1" + } + }, + { + "id": "decompress-response@3.3.0", + "info": { + "name": "decompress-response", + "version": "3.3.0" + } + }, + { + "id": "duplexer3@0.1.5", + "info": { + "name": "duplexer3", + "version": "0.1.5" + } + }, + { + "id": "p-cancelable@1.1.0", + "info": { + "name": "p-cancelable", + "version": "1.1.0" + } + }, + { + "id": "to-readable-stream@1.0.0", + "info": { + "name": "to-readable-stream", + "version": "1.0.0" + } + }, + { + "id": "url-parse-lax@3.0.0", + "info": { + "name": "url-parse-lax", + "version": "3.0.0" + } + }, + { + "id": "prepend-http@2.0.0", + "info": { + "name": "prepend-http", + "version": "2.0.0" + } + }, + { + "id": "registry-auth-token@4.2.2", + "info": { + "name": "registry-auth-token", + "version": "4.2.2" + } + }, + { + "id": "rc@1.2.8", + "info": { + "name": "rc", + "version": "1.2.8" + } + }, + { + "id": "deep-extend@0.6.0", + "info": { + "name": "deep-extend", + "version": "0.6.0" + } + }, + { + "id": "ini@1.3.8", + "info": { + "name": "ini", + "version": "1.3.8" + } + }, + { + "id": "strip-json-comments@2.0.1", + "info": { + "name": "strip-json-comments", + "version": "2.0.1" + } + }, + { + "id": "registry-url@5.1.0", + "info": { + "name": "registry-url", + "version": "5.1.0" + } + }, + { + "id": "pupa@2.1.1", + "info": { + "name": "pupa", + "version": "2.1.1" + } + }, + { + "id": "escape-goat@2.1.1", + "info": { + "name": "escape-goat", + "version": "2.1.1" + } + }, + { + "id": "semver-diff@3.1.1", + "info": { + "name": "semver-diff", + "version": "3.1.1" + } + }, + { + "id": "yoga-layout-prebuilt@1.10.0", + "info": { + "name": "yoga-layout-prebuilt", + "version": "1.10.0" + } + }, + { + "id": "@types/yoga-layout@1.9.2", + "info": { + "name": "@types/yoga-layout", + "version": "1.9.2" + } + }, + { + "id": "yurnalist@2.1.0", + "info": { + "name": "yurnalist", + "version": "2.1.0" + } + }, + { + "id": "inquirer@7.3.3", + "info": { + "name": "inquirer", + "version": "7.3.3" + } + }, + { + "id": "cli-cursor@3.1.0", + "info": { + "name": "cli-cursor", + "version": "3.1.0" + } + }, + { + "id": "restore-cursor@3.1.0", + "info": { + "name": "restore-cursor", + "version": "3.1.0" + } + }, + { + "id": "cli-width@3.0.0", + "info": { + "name": "cli-width", + "version": "3.0.0" + } + }, + { + "id": "external-editor@3.1.0", + "info": { + "name": "external-editor", + "version": "3.1.0" + } + }, + { + "id": "chardet@0.7.0", + "info": { + "name": "chardet", + "version": "0.7.0" + } + }, + { + "id": "figures@3.2.0", + "info": { + "name": "figures", + "version": "3.2.0" + } + }, + { + "id": "mute-stream@0.0.8", + "info": { + "name": "mute-stream", + "version": "0.0.8" + } + }, + { + "id": "run-async@2.4.1", + "info": { + "name": "run-async", + "version": "2.4.1" + } + }, + { + "id": "rxjs@6.6.7", + "info": { + "name": "rxjs", + "version": "6.6.7" + } + }, + { + "id": "through@2.3.8", + "info": { + "name": "through", + "version": "2.3.8" + } + }, + { + "id": "read@1.0.7", + "info": { + "name": "read", + "version": "1.0.7" + } + }, + { + "id": "strip-ansi@5.2.0", + "info": { + "name": "strip-ansi", + "version": "5.2.0" + } + }, + { + "id": "ansi-regex@4.1.1", + "info": { + "name": "ansi-regex", + "version": "4.1.1" + } + }, + { + "id": "gatsby-graphiql-explorer@2.25.0", + "info": { + "name": "gatsby-graphiql-explorer", + "version": "2.25.0" + } + }, + { + "id": "gatsby-link@4.25.0", + "info": { + "name": "gatsby-link", + "version": "4.25.0" + } + }, + { + "id": "@types/reach__router@1.3.15", + "info": { + "name": "@types/reach__router", + "version": "1.3.15" + } + }, + { + "id": "@types/react@18.3.1", + "info": { + "name": "@types/react", + "version": "18.3.1" + } + }, + { + "id": "@types/prop-types@15.7.12", + "info": { + "name": "@types/prop-types", + "version": "15.7.12" + } + }, + { + "id": "csstype@3.1.3", + "info": { + "name": "csstype", + "version": "3.1.3" + } + }, + { + "id": "gatsby-page-utils@2.25.0", + "info": { + "name": "gatsby-page-utils", + "version": "2.25.0" + } + }, + { + "id": "gatsby-parcel-config@0.16.0", + "info": { + "name": "gatsby-parcel-config", + "version": "0.16.0" + } + }, + { + "id": "@gatsbyjs/parcel-namer-relative-to-cwd@1.10.0", + "info": { + "name": "@gatsbyjs/parcel-namer-relative-to-cwd", + "version": "1.10.0" + } + }, + { + "id": "@parcel/namer-default@2.6.2", + "info": { + "name": "@parcel/namer-default", + "version": "2.6.2" + } + }, + { + "id": "@parcel/bundler-default@2.6.2", + "info": { + "name": "@parcel/bundler-default", + "version": "2.6.2" + } + }, + { + "id": "@parcel/compressor-raw@2.6.2", + "info": { + "name": "@parcel/compressor-raw", + "version": "2.6.2" + } + }, + { + "id": "@parcel/optimizer-terser@2.6.2", + "info": { + "name": "@parcel/optimizer-terser", + "version": "2.6.2" + } + }, + { + "id": "@parcel/packager-js@2.6.2", + "info": { + "name": "@parcel/packager-js", + "version": "2.6.2" + } + }, + { + "id": "@parcel/packager-raw@2.6.2", + "info": { + "name": "@parcel/packager-raw", + "version": "2.6.2" + } + }, + { + "id": "@parcel/reporter-dev-server@2.6.2", + "info": { + "name": "@parcel/reporter-dev-server", + "version": "2.6.2" + } + }, + { + "id": "@parcel/resolver-default@2.6.2", + "info": { + "name": "@parcel/resolver-default", + "version": "2.6.2" + } + }, + { + "id": "@parcel/node-resolver-core@2.6.2", + "info": { + "name": "@parcel/node-resolver-core", + "version": "2.6.2" + } + }, + { + "id": "@parcel/runtime-js@2.6.2", + "info": { + "name": "@parcel/runtime-js", + "version": "2.6.2" + } + }, + { + "id": "@parcel/transformer-js@2.6.2", + "info": { + "name": "@parcel/transformer-js", + "version": "2.6.2" + } + }, + { + "id": "@swc/helpers@0.4.36", + "info": { + "name": "@swc/helpers", + "version": "0.4.36" + } + }, + { + "id": "legacy-swc-helpers@@swc/helpers@0.4.14", + "info": { + "name": "legacy-swc-helpers", + "version": "@swc/helpers@0.4.14" + } + }, + { + "id": "regenerator-runtime@0.13.11", + "info": { + "name": "regenerator-runtime", + "version": "0.13.11" + } + }, + { + "id": "@parcel/transformer-json@2.6.2", + "info": { + "name": "@parcel/transformer-json", + "version": "2.6.2" + } + }, + { + "id": "gatsby-plugin-page-creator@4.25.0", + "info": { + "name": "gatsby-plugin-page-creator", + "version": "4.25.0" + } + }, + { + "id": "@sindresorhus/slugify@1.1.2", + "info": { + "name": "@sindresorhus/slugify", + "version": "1.1.2" + } + }, + { + "id": "@sindresorhus/transliterate@0.1.2", + "info": { + "name": "@sindresorhus/transliterate", + "version": "0.1.2" + } + }, + { + "id": "escape-string-regexp@2.0.0", + "info": { + "name": "escape-string-regexp", + "version": "2.0.0" + } + }, + { + "id": "lodash.deburr@4.1.0", + "info": { + "name": "lodash.deburr", + "version": "4.1.0" + } + }, + { + "id": "gatsby-plugin-utils@3.19.0", + "info": { + "name": "gatsby-plugin-utils", + "version": "3.19.0" + } + }, + { + "id": "gatsby-sharp@0.19.0", + "info": { + "name": "gatsby-sharp", + "version": "0.19.0" + } + }, + { + "id": "@types/sharp@0.30.5", + "info": { + "name": "@types/sharp", + "version": "0.30.5" + } + }, + { + "id": "sharp@0.30.7", + "info": { + "name": "sharp", + "version": "0.30.7" + } + }, + { + "id": "color@4.2.3", + "info": { + "name": "color", + "version": "4.2.3" + } + }, + { + "id": "color-string@1.9.1", + "info": { + "name": "color-string", + "version": "1.9.1" + } + }, + { + "id": "simple-swizzle@0.2.2", + "info": { + "name": "simple-swizzle", + "version": "0.2.2" + } + }, + { + "id": "is-arrayish@0.3.2", + "info": { + "name": "is-arrayish", + "version": "0.3.2" + } + }, + { + "id": "detect-libc@2.0.3", + "info": { + "name": "detect-libc", + "version": "2.0.3" + } + }, + { + "id": "node-addon-api@5.1.0", + "info": { + "name": "node-addon-api", + "version": "5.1.0" + } + }, + { + "id": "prebuild-install@7.1.2", + "info": { + "name": "prebuild-install", + "version": "7.1.2" + } + }, + { + "id": "expand-template@2.0.3", + "info": { + "name": "expand-template", + "version": "2.0.3" + } + }, + { + "id": "github-from-package@0.0.0", + "info": { + "name": "github-from-package", + "version": "0.0.0" + } + }, + { + "id": "mkdirp-classic@0.5.3", + "info": { + "name": "mkdirp-classic", + "version": "0.5.3" + } + }, + { + "id": "napi-build-utils@1.0.2", + "info": { + "name": "napi-build-utils", + "version": "1.0.2" + } + }, + { + "id": "node-abi@3.62.0", + "info": { + "name": "node-abi", + "version": "3.62.0" + } + }, + { + "id": "simple-get@4.0.1", + "info": { + "name": "simple-get", + "version": "4.0.1" + } + }, + { + "id": "simple-concat@1.0.1", + "info": { + "name": "simple-concat", + "version": "1.0.1" + } + }, + { + "id": "tar-fs@2.1.1", + "info": { + "name": "tar-fs", + "version": "2.1.1" + } + }, + { + "id": "chownr@1.1.4", + "info": { + "name": "chownr", + "version": "1.1.4" + } + }, + { + "id": "tar-stream@2.2.0", + "info": { + "name": "tar-stream", + "version": "2.2.0" + } + }, + { + "id": "bl@4.1.0", + "info": { + "name": "bl", + "version": "4.1.0" + } + }, + { + "id": "buffer@5.7.1", + "info": { + "name": "buffer", + "version": "5.7.1" + } + }, + { + "id": "base64-js@1.5.1", + "info": { + "name": "base64-js", + "version": "1.5.1" + } + }, + { + "id": "fs-constants@1.0.0", + "info": { + "name": "fs-constants", + "version": "1.0.0" + } + }, + { + "id": "tunnel-agent@0.6.0", + "info": { + "name": "tunnel-agent", + "version": "0.6.0" + } + }, + { + "id": "graphql-compose@9.0.10", + "info": { + "name": "graphql-compose", + "version": "9.0.10" + } + }, + { + "id": "graphql-type-json@0.3.2", + "info": { + "name": "graphql-type-json", + "version": "0.3.2" + } + }, + { + "id": "mime@3.0.0", + "info": { + "name": "mime", + "version": "3.0.0" + } + }, + { + "id": "gatsby-plugin-typescript@4.25.0", + "info": { + "name": "gatsby-plugin-typescript", + "version": "4.25.0" + } + }, + { + "id": "@babel/plugin-proposal-numeric-separator@7.18.6", + "info": { + "name": "@babel/plugin-proposal-numeric-separator", + "version": "7.18.6" + } + }, + { + "id": "gatsby-react-router-scroll@5.25.0", + "info": { + "name": "gatsby-react-router-scroll", + "version": "5.25.0" + } + }, + { + "id": "gatsby-script@1.10.0", + "info": { + "name": "gatsby-script", + "version": "1.10.0" + } + }, + { + "id": "gatsby-worker@1.25.0", + "info": { + "name": "gatsby-worker", + "version": "1.25.0" + } + }, + { + "id": "graphql-playground-middleware-express@1.7.23", + "info": { + "name": "graphql-playground-middleware-express", + "version": "1.7.23" + } + }, + { + "id": "graphql-playground-html@1.6.30", + "info": { + "name": "graphql-playground-html", + "version": "1.6.30" + } + }, + { + "id": "xss@1.0.15", + "info": { + "name": "xss", + "version": "1.0.15" + } + }, + { + "id": "cssfilter@0.0.10", + "info": { + "name": "cssfilter", + "version": "0.0.10" + } + }, + { + "id": "hasha@5.2.2", + "info": { + "name": "hasha", + "version": "5.2.2" + } + }, + { + "id": "is-relative-url@3.0.0", + "info": { + "name": "is-relative-url", + "version": "3.0.0" + } + }, + { + "id": "is-absolute-url@3.0.3", + "info": { + "name": "is-absolute-url", + "version": "3.0.3" + } + }, + { + "id": "json-loader@0.5.7", + "info": { + "name": "json-loader", + "version": "0.5.7" + } + }, + { + "id": "md5-file@5.0.0", + "info": { + "name": "md5-file", + "version": "5.0.0" + } + }, + { + "id": "meant@1.0.3", + "info": { + "name": "meant", + "version": "1.0.3" + } + }, + { + "id": "memoizee@0.4.15", + "info": { + "name": "memoizee", + "version": "0.4.15" + } + }, + { + "id": "d@1.0.2", + "info": { + "name": "d", + "version": "1.0.2" + } + }, + { + "id": "es5-ext@0.10.64", + "info": { + "name": "es5-ext", + "version": "0.10.64" + } + }, + { + "id": "es6-iterator@2.0.3", + "info": { + "name": "es6-iterator", + "version": "2.0.3" + } + }, + { + "id": "es6-symbol@3.1.4", + "info": { + "name": "es6-symbol", + "version": "3.1.4" + } + }, + { + "id": "ext@1.7.0", + "info": { + "name": "ext", + "version": "1.7.0" + } + }, + { + "id": "type@2.7.2", + "info": { + "name": "type", + "version": "2.7.2" + } + }, + { + "id": "esniff@2.0.1", + "info": { + "name": "esniff", + "version": "2.0.1" + } + }, + { + "id": "event-emitter@0.3.5", + "info": { + "name": "event-emitter", + "version": "0.3.5" + } + }, + { + "id": "next-tick@1.1.0", + "info": { + "name": "next-tick", + "version": "1.1.0" + } + }, + { + "id": "es6-weak-map@2.0.3", + "info": { + "name": "es6-weak-map", + "version": "2.0.3" + } + }, + { + "id": "is-promise@2.2.2", + "info": { + "name": "is-promise", + "version": "2.2.2" + } + }, + { + "id": "lru-queue@0.1.0", + "info": { + "name": "lru-queue", + "version": "0.1.0" + } + }, + { + "id": "timers-ext@0.1.7", + "info": { + "name": "timers-ext", + "version": "0.1.7" + } + }, + { + "id": "mime@2.6.0", + "info": { + "name": "mime", + "version": "2.6.0" + } + }, + { + "id": "mini-css-extract-plugin@1.6.2", + "info": { + "name": "mini-css-extract-plugin", + "version": "1.6.2" + } + }, + { + "id": "webpack-sources@1.4.3", + "info": { + "name": "webpack-sources", + "version": "1.4.3" + } + }, + { + "id": "source-list-map@2.0.1", + "info": { + "name": "source-list-map", + "version": "2.0.1" + } + }, + { + "id": "mitt@1.2.0", + "info": { + "name": "mitt", + "version": "1.2.0" + } + }, + { + "id": "moment@2.30.1", + "info": { + "name": "moment", + "version": "2.30.1" + } + }, + { + "id": "multer@1.4.5-lts.1", + "info": { + "name": "multer", + "version": "1.4.5-lts.1" + } + }, + { + "id": "append-field@1.0.0", + "info": { + "name": "append-field", + "version": "1.0.0" + } + }, + { + "id": "busboy@1.6.0", + "info": { + "name": "busboy", + "version": "1.6.0" + } + }, + { + "id": "streamsearch@1.1.0", + "info": { + "name": "streamsearch", + "version": "1.1.0" + } + }, + { + "id": "concat-stream@1.6.2", + "info": { + "name": "concat-stream", + "version": "1.6.2" + } + }, + { + "id": "readable-stream@2.3.8", + "info": { + "name": "readable-stream", + "version": "2.3.8" + } + }, + { + "id": "core-util-is@1.0.3", + "info": { + "name": "core-util-is", + "version": "1.0.3" + } + }, + { + "id": "isarray@1.0.0", + "info": { + "name": "isarray", + "version": "1.0.0" + } + }, + { + "id": "process-nextick-args@2.0.1", + "info": { + "name": "process-nextick-args", + "version": "2.0.1" + } + }, + { + "id": "string_decoder@1.1.1", + "info": { + "name": "string_decoder", + "version": "1.1.1" + } + }, + { + "id": "typedarray@0.0.6", + "info": { + "name": "typedarray", + "version": "0.0.6" + } + }, + { + "id": "xtend@4.0.2", + "info": { + "name": "xtend", + "version": "4.0.2" + } + }, + { + "id": "node-html-parser@5.4.2", + "info": { + "name": "node-html-parser", + "version": "5.4.2" + } + }, + { + "id": "he@1.2.0", + "info": { + "name": "he", + "version": "1.2.0" + } + }, + { + "id": "null-loader@4.0.1", + "info": { + "name": "null-loader", + "version": "4.0.1" + } + }, + { + "id": "p-defer@3.0.0", + "info": { + "name": "p-defer", + "version": "3.0.0" + } + }, + { + "id": "physical-cpu-count@2.0.0", + "info": { + "name": "physical-cpu-count", + "version": "2.0.0" + } + }, + { + "id": "platform@1.3.6", + "info": { + "name": "platform", + "version": "1.3.6" + } + }, + { + "id": "postcss-flexbugs-fixes@5.0.2", + "info": { + "name": "postcss-flexbugs-fixes", + "version": "5.0.2" + } + }, + { + "id": "postcss-loader@5.3.0", + "info": { + "name": "postcss-loader", + "version": "5.3.0" + } + }, + { + "id": "klona@2.0.6", + "info": { + "name": "klona", + "version": "2.0.6" + } + }, + { + "id": "query-string@6.14.1", + "info": { + "name": "query-string", + "version": "6.14.1" + } + }, + { + "id": "decode-uri-component@0.2.2", + "info": { + "name": "decode-uri-component", + "version": "0.2.2" + } + }, + { + "id": "filter-obj@1.1.0", + "info": { + "name": "filter-obj", + "version": "1.1.0" + } + }, + { + "id": "split-on-first@1.1.0", + "info": { + "name": "split-on-first", + "version": "1.1.0" + } + }, + { + "id": "strict-uri-encode@2.0.0", + "info": { + "name": "strict-uri-encode", + "version": "2.0.0" + } + }, + { + "id": "raw-loader@4.0.2", + "info": { + "name": "raw-loader", + "version": "4.0.2" + } + }, + { + "id": "react-dev-utils@12.0.1", + "info": { + "name": "react-dev-utils", + "version": "12.0.1" + } + }, + { + "id": "detect-port-alt@1.1.6", + "info": { + "name": "detect-port-alt", + "version": "1.1.6" + } + }, + { + "id": "filesize@8.0.7", + "info": { + "name": "filesize", + "version": "8.0.7" + } + }, + { + "id": "find-up@5.0.0", + "info": { + "name": "find-up", + "version": "5.0.0" + } + }, + { + "id": "locate-path@6.0.0", + "info": { + "name": "locate-path", + "version": "6.0.0" + } + }, + { + "id": "p-locate@5.0.0", + "info": { + "name": "p-locate", + "version": "5.0.0" + } + }, + { + "id": "fork-ts-checker-webpack-plugin@6.5.3", + "info": { + "name": "fork-ts-checker-webpack-plugin", + "version": "6.5.3" + } + }, + { + "id": "cosmiconfig@6.0.0", + "info": { + "name": "cosmiconfig", + "version": "6.0.0" + } + }, + { + "id": "fs-extra@9.1.0", + "info": { + "name": "fs-extra", + "version": "9.1.0" + } + }, + { + "id": "at-least-node@1.0.0", + "info": { + "name": "at-least-node", + "version": "1.0.0" + } + }, + { + "id": "memfs@3.5.3", + "info": { + "name": "memfs", + "version": "3.5.3" + } + }, + { + "id": "fs-monkey@1.0.6", + "info": { + "name": "fs-monkey", + "version": "1.0.6" + } + }, + { + "id": "schema-utils@2.7.0", + "info": { + "name": "schema-utils", + "version": "2.7.0" + } + }, + { + "id": "tapable@1.1.3", + "info": { + "name": "tapable", + "version": "1.1.3" + } + }, + { + "id": "global-modules@2.0.0", + "info": { + "name": "global-modules", + "version": "2.0.0" + } + }, + { + "id": "global-prefix@3.0.0", + "info": { + "name": "global-prefix", + "version": "3.0.0" + } + }, + { + "id": "kind-of@6.0.3", + "info": { + "name": "kind-of", + "version": "6.0.3" + } + }, + { + "id": "gzip-size@6.0.0", + "info": { + "name": "gzip-size", + "version": "6.0.0" + } + }, + { + "id": "duplexer@0.1.2", + "info": { + "name": "duplexer", + "version": "0.1.2" + } + }, + { + "id": "immer@9.0.21", + "info": { + "name": "immer", + "version": "9.0.21" + } + }, + { + "id": "is-root@2.1.0", + "info": { + "name": "is-root", + "version": "2.1.0" + } + }, + { + "id": "loader-utils@3.2.1", + "info": { + "name": "loader-utils", + "version": "3.2.1" + } + }, + { + "id": "open@8.4.2", + "info": { + "name": "open", + "version": "8.4.2" + } + }, + { + "id": "define-lazy-prop@2.0.0", + "info": { + "name": "define-lazy-prop", + "version": "2.0.0" + } + }, + { + "id": "pkg-up@3.1.0", + "info": { + "name": "pkg-up", + "version": "3.1.0" + } + }, + { + "id": "find-up@3.0.0", + "info": { + "name": "find-up", + "version": "3.0.0" + } + }, + { + "id": "locate-path@3.0.0", + "info": { + "name": "locate-path", + "version": "3.0.0" + } + }, + { + "id": "p-locate@3.0.0", + "info": { + "name": "p-locate", + "version": "3.0.0" + } + }, + { + "id": "path-exists@3.0.0", + "info": { + "name": "path-exists", + "version": "3.0.0" + } + }, + { + "id": "react-error-overlay@6.0.11", + "info": { + "name": "react-error-overlay", + "version": "6.0.11" + } + }, + { + "id": "recursive-readdir@2.2.3", + "info": { + "name": "recursive-readdir", + "version": "2.2.3" + } + }, + { + "id": "shell-quote@1.8.1", + "info": { + "name": "shell-quote", + "version": "1.8.1" + } + }, + { + "id": "react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825", + "info": { + "name": "react-server-dom-webpack", + "version": "0.0.0-experimental-c8b778b7f-20220825" + } + }, + { + "id": "acorn@6.4.2", + "info": { + "name": "acorn", + "version": "6.4.2" + } + }, + { + "id": "redux-thunk@2.4.2", + "info": { + "name": "redux-thunk", + "version": "2.4.2" + } + }, + { + "id": "shallow-compare@1.2.2", + "info": { + "name": "shallow-compare", + "version": "1.2.2" + } + }, + { + "id": "slugify@1.6.6", + "info": { + "name": "slugify", + "version": "1.6.6" + } + }, + { + "id": "socket.io@4.5.4", + "info": { + "name": "socket.io", + "version": "4.5.4" + } + }, + { + "id": "base64id@2.0.0", + "info": { + "name": "base64id", + "version": "2.0.0" + } + }, + { + "id": "engine.io@6.2.1", + "info": { + "name": "engine.io", + "version": "6.2.1" + } + }, + { + "id": "@types/cookie@0.4.1", + "info": { + "name": "@types/cookie", + "version": "0.4.1" + } + }, + { + "id": "@types/cors@2.8.17", + "info": { + "name": "@types/cors", + "version": "2.8.17" + } + }, + { + "id": "engine.io-parser@5.0.7", + "info": { + "name": "engine.io-parser", + "version": "5.0.7" + } + }, + { + "id": "ws@8.2.3", + "info": { + "name": "ws", + "version": "8.2.3" + } + }, + { + "id": "socket.io-adapter@2.4.0", + "info": { + "name": "socket.io-adapter", + "version": "2.4.0" + } + }, + { + "id": "socket.io-parser@4.2.4", + "info": { + "name": "socket.io-parser", + "version": "4.2.4" + } + }, + { + "id": "@socket.io/component-emitter@3.1.2", + "info": { + "name": "@socket.io/component-emitter", + "version": "3.1.2" + } + }, + { + "id": "socket.io-client@4.5.4", + "info": { + "name": "socket.io-client", + "version": "4.5.4" + } + }, + { + "id": "engine.io-client@6.2.3", + "info": { + "name": "engine.io-client", + "version": "6.2.3" + } + }, + { + "id": "xmlhttprequest-ssl@2.0.0", + "info": { + "name": "xmlhttprequest-ssl", + "version": "2.0.0" + } + }, + { + "id": "st@2.0.0", + "info": { + "name": "st", + "version": "2.0.0" + } + }, + { + "id": "async-cache@1.1.0", + "info": { + "name": "async-cache", + "version": "1.1.0" + } + }, + { + "id": "lru-cache@4.1.5", + "info": { + "name": "lru-cache", + "version": "4.1.5" + } + }, + { + "id": "fd@0.0.3", + "info": { + "name": "fd", + "version": "0.0.3" + } + }, + { + "id": "string-similarity@1.2.2", + "info": { + "name": "string-similarity", + "version": "1.2.2" + } + }, + { + "id": "lodash.every@4.6.0", + "info": { + "name": "lodash.every", + "version": "4.6.0" + } + }, + { + "id": "lodash.flattendeep@4.4.0", + "info": { + "name": "lodash.flattendeep", + "version": "4.4.0" + } + }, + { + "id": "lodash.foreach@4.5.0", + "info": { + "name": "lodash.foreach", + "version": "4.5.0" + } + }, + { + "id": "lodash.map@4.6.0", + "info": { + "name": "lodash.map", + "version": "4.6.0" + } + }, + { + "id": "lodash.maxby@4.6.0", + "info": { + "name": "lodash.maxby", + "version": "4.6.0" + } + }, + { + "id": "style-loader@2.0.0", + "info": { + "name": "style-loader", + "version": "2.0.0" + } + }, + { + "id": "true-case-path@2.2.1", + "info": { + "name": "true-case-path", + "version": "2.2.1" + } + }, + { + "id": "type-of@2.0.1", + "info": { + "name": "type-of", + "version": "2.0.1" + } + }, + { + "id": "url-loader@4.1.1", + "info": { + "name": "url-loader", + "version": "4.1.1" + } + }, + { + "id": "uuid@8.3.2", + "info": { + "name": "uuid", + "version": "8.3.2" + } + }, + { + "id": "webpack-dev-middleware@4.3.0", + "info": { + "name": "webpack-dev-middleware", + "version": "4.3.0" + } + }, + { + "id": "colorette@1.4.0", + "info": { + "name": "colorette", + "version": "1.4.0" + } + }, + { + "id": "mem@8.1.1", + "info": { + "name": "mem", + "version": "8.1.1" + } + }, + { + "id": "map-age-cleaner@0.1.3", + "info": { + "name": "map-age-cleaner", + "version": "0.1.3" + } + }, + { + "id": "p-defer@1.0.0", + "info": { + "name": "p-defer", + "version": "1.0.0" + } + }, + { + "id": "mimic-fn@3.1.0", + "info": { + "name": "mimic-fn", + "version": "3.1.0" + } + }, + { + "id": "webpack-merge@5.10.0", + "info": { + "name": "webpack-merge", + "version": "5.10.0" + } + }, + { + "id": "clone-deep@4.0.1", + "info": { + "name": "clone-deep", + "version": "4.0.1" + } + }, + { + "id": "is-plain-object@2.0.4", + "info": { + "name": "is-plain-object", + "version": "2.0.4" + } + }, + { + "id": "isobject@3.0.1", + "info": { + "name": "isobject", + "version": "3.0.1" + } + }, + { + "id": "shallow-clone@3.0.1", + "info": { + "name": "shallow-clone", + "version": "3.0.1" + } + }, + { + "id": "flat@5.0.2", + "info": { + "name": "flat", + "version": "5.0.2" + } + }, + { + "id": "wildcard@2.0.1", + "info": { + "name": "wildcard", + "version": "2.0.1" + } + }, + { + "id": "webpack-stats-plugin@1.1.3", + "info": { + "name": "webpack-stats-plugin", + "version": "1.1.3" + } + }, + { + "id": "webpack-virtual-modules@0.3.2", + "info": { + "name": "webpack-virtual-modules", + "version": "0.3.2" + } + }, + { + "id": "xstate@4.32.1", + "info": { + "name": "xstate", + "version": "4.32.1" + } + }, + { + "id": "yaml-loader@0.8.1", + "info": { + "name": "yaml-loader", + "version": "0.8.1" + } + }, + { + "id": "javascript-stringify@2.1.0", + "info": { + "name": "javascript-stringify", + "version": "2.1.0" + } + }, + { + "id": "yaml@2.4.2", + "info": { + "name": "yaml", + "version": "2.4.2" + } + }, + { + "id": "gatsby-plugin-image@2.25.0", + "info": { + "name": "gatsby-plugin-image", + "version": "2.25.0" + } + }, + { + "id": "@babel/core@7.12.13", + "info": { + "name": "@babel/core", + "version": "7.12.13" + } + }, + { + "id": "convert-source-map@1.9.0", + "info": { + "name": "convert-source-map", + "version": "1.9.0" + } + }, + { + "id": "source-map@0.5.7", + "info": { + "name": "source-map", + "version": "0.5.7" + } + }, + { + "id": "babel-jsx-utils@1.1.0", + "info": { + "name": "babel-jsx-utils", + "version": "1.1.0" + } + }, + { + "id": "gatsby-plugin-sharp@4.25.1", + "info": { + "name": "gatsby-plugin-sharp", + "version": "4.25.1" + } + }, + { + "id": "async@3.2.5", + "info": { + "name": "async", + "version": "3.2.5" + } + }, + { + "id": "filenamify@4.3.0", + "info": { + "name": "filenamify", + "version": "4.3.0" + } + }, + { + "id": "filename-reserved-regex@2.0.0", + "info": { + "name": "filename-reserved-regex", + "version": "2.0.0" + } + }, + { + "id": "strip-outer@1.0.1", + "info": { + "name": "strip-outer", + "version": "1.0.1" + } + }, + { + "id": "trim-repeated@1.0.0", + "info": { + "name": "trim-repeated", + "version": "1.0.0" + } + }, + { + "id": "probe-image-size@7.2.3", + "info": { + "name": "probe-image-size", + "version": "7.2.3" + } + }, + { + "id": "needle@2.9.1", + "info": { + "name": "needle", + "version": "2.9.1" + } + }, + { + "id": "sax@1.3.0", + "info": { + "name": "sax", + "version": "1.3.0" + } + }, + { + "id": "stream-parser@0.3.1", + "info": { + "name": "stream-parser", + "version": "0.3.1" + } + }, + { + "id": "gatsby-source-filesystem@4.25.0", + "info": { + "name": "gatsby-source-filesystem", + "version": "4.25.0" + } + }, + { + "id": "pretty-bytes@5.6.0", + "info": { + "name": "pretty-bytes", + "version": "5.6.0" + } + }, + { + "id": "valid-url@1.0.9", + "info": { + "name": "valid-url", + "version": "1.0.9" + } + }, + { + "id": "objectFitPolyfill@2.3.5", + "info": { + "name": "objectFitPolyfill", + "version": "2.3.5" + } + }, + { + "id": "gatsby-plugin-manifest@4.25.0", + "info": { + "name": "gatsby-plugin-manifest", + "version": "4.25.0" + } + }, + { + "id": "gatsby-plugin-mdx@3.20.0", + "info": { + "name": "gatsby-plugin-mdx", + "version": "3.20.0" + } + }, + { + "id": "@mdx-js/mdx@1.6.22", + "info": { + "name": "@mdx-js/mdx", + "version": "1.6.22" + } + }, + { + "id": "@babel/core@7.12.9", + "info": { + "name": "@babel/core", + "version": "7.12.9" + } + }, + { + "id": "@babel/plugin-syntax-jsx@7.12.1", + "info": { + "name": "@babel/plugin-syntax-jsx", + "version": "7.12.1" + } + }, + { + "id": "@mdx-js/util@1.6.22", + "info": { + "name": "@mdx-js/util", + "version": "1.6.22" + } + }, + { + "id": "babel-plugin-apply-mdx-type-prop@1.6.22", + "info": { + "name": "babel-plugin-apply-mdx-type-prop", + "version": "1.6.22" + } + }, + { + "id": "@babel/helper-plugin-utils@7.10.4", + "info": { + "name": "@babel/helper-plugin-utils", + "version": "7.10.4" + } + }, + { + "id": "babel-plugin-extract-import-names@1.6.22", + "info": { + "name": "babel-plugin-extract-import-names", + "version": "1.6.22" + } + }, + { + "id": "camelcase-css@2.0.1", + "info": { + "name": "camelcase-css", + "version": "2.0.1" + } + }, + { + "id": "detab@2.0.4", + "info": { + "name": "detab", + "version": "2.0.4" + } + }, + { + "id": "repeat-string@1.6.1", + "info": { + "name": "repeat-string", + "version": "1.6.1" + } + }, + { + "id": "hast-util-raw@6.0.1", + "info": { + "name": "hast-util-raw", + "version": "6.0.1" + } + }, + { + "id": "@types/hast@2.3.10", + "info": { + "name": "@types/hast", + "version": "2.3.10" + } + }, + { + "id": "@types/unist@2.0.10", + "info": { + "name": "@types/unist", + "version": "2.0.10" + } + }, + { + "id": "hast-util-from-parse5@6.0.1", + "info": { + "name": "hast-util-from-parse5", + "version": "6.0.1" + } + }, + { + "id": "@types/parse5@5.0.3", + "info": { + "name": "@types/parse5", + "version": "5.0.3" + } + }, + { + "id": "hastscript@6.0.0", + "info": { + "name": "hastscript", + "version": "6.0.0" + } + }, + { + "id": "comma-separated-tokens@1.0.8", + "info": { + "name": "comma-separated-tokens", + "version": "1.0.8" + } + }, + { + "id": "hast-util-parse-selector@2.2.5", + "info": { + "name": "hast-util-parse-selector", + "version": "2.2.5" + } + }, + { + "id": "property-information@5.6.0", + "info": { + "name": "property-information", + "version": "5.6.0" + } + }, + { + "id": "space-separated-tokens@1.1.5", + "info": { + "name": "space-separated-tokens", + "version": "1.1.5" + } + }, + { + "id": "vfile@4.2.1", + "info": { + "name": "vfile", + "version": "4.2.1" + } + }, + { + "id": "is-buffer@2.0.5", + "info": { + "name": "is-buffer", + "version": "2.0.5" + } + }, + { + "id": "unist-util-stringify-position@2.0.3", + "info": { + "name": "unist-util-stringify-position", + "version": "2.0.3" + } + }, + { + "id": "vfile-message@2.0.4", + "info": { + "name": "vfile-message", + "version": "2.0.4" + } + }, + { + "id": "vfile-location@3.2.0", + "info": { + "name": "vfile-location", + "version": "3.2.0" + } + }, + { + "id": "web-namespaces@1.1.4", + "info": { + "name": "web-namespaces", + "version": "1.1.4" + } + }, + { + "id": "hast-util-to-parse5@6.0.0", + "info": { + "name": "hast-util-to-parse5", + "version": "6.0.0" + } + }, + { + "id": "hast-to-hyperscript@9.0.1", + "info": { + "name": "hast-to-hyperscript", + "version": "9.0.1" + } + }, + { + "id": "style-to-object@0.3.0", + "info": { + "name": "style-to-object", + "version": "0.3.0" + } + }, + { + "id": "inline-style-parser@0.1.1", + "info": { + "name": "inline-style-parser", + "version": "0.1.1" + } + }, + { + "id": "unist-util-is@4.1.0", + "info": { + "name": "unist-util-is", + "version": "4.1.0" + } + }, + { + "id": "zwitch@1.0.5", + "info": { + "name": "zwitch", + "version": "1.0.5" + } + }, + { + "id": "html-void-elements@1.0.5", + "info": { + "name": "html-void-elements", + "version": "1.0.5" + } + }, + { + "id": "parse5@6.0.1", + "info": { + "name": "parse5", + "version": "6.0.1" + } + }, + { + "id": "unist-util-position@3.1.0", + "info": { + "name": "unist-util-position", + "version": "3.1.0" + } + }, + { + "id": "mdast-util-to-hast@10.0.1", + "info": { + "name": "mdast-util-to-hast", + "version": "10.0.1" + } + }, + { + "id": "@types/mdast@3.0.15", + "info": { + "name": "@types/mdast", + "version": "3.0.15" + } + }, + { + "id": "mdast-util-definitions@4.0.0", + "info": { + "name": "mdast-util-definitions", + "version": "4.0.0" + } + }, + { + "id": "unist-util-visit@2.0.3", + "info": { + "name": "unist-util-visit", + "version": "2.0.3" + } + }, + { + "id": "unist-util-visit-parents@3.1.1", + "info": { + "name": "unist-util-visit-parents", + "version": "3.1.1" + } + }, + { + "id": "mdurl@1.0.1", + "info": { + "name": "mdurl", + "version": "1.0.1" + } + }, + { + "id": "unist-builder@2.0.3", + "info": { + "name": "unist-builder", + "version": "2.0.3" + } + }, + { + "id": "unist-util-generated@1.1.6", + "info": { + "name": "unist-util-generated", + "version": "1.1.6" + } + }, + { + "id": "remark-footnotes@2.0.0", + "info": { + "name": "remark-footnotes", + "version": "2.0.0" + } + }, + { + "id": "remark-mdx@1.6.22", + "info": { + "name": "remark-mdx", + "version": "1.6.22" + } + }, + { + "id": "@babel/plugin-proposal-object-rest-spread@7.12.1", + "info": { + "name": "@babel/plugin-proposal-object-rest-spread", + "version": "7.12.1" + } + }, + { + "id": "is-alphabetical@1.0.4", + "info": { + "name": "is-alphabetical", + "version": "1.0.4" + } + }, + { + "id": "remark-parse@8.0.3", + "info": { + "name": "remark-parse", + "version": "8.0.3" + } + }, + { + "id": "ccount@1.1.0", + "info": { + "name": "ccount", + "version": "1.1.0" + } + }, + { + "id": "collapse-white-space@1.0.6", + "info": { + "name": "collapse-white-space", + "version": "1.0.6" + } + }, + { + "id": "is-decimal@1.0.4", + "info": { + "name": "is-decimal", + "version": "1.0.4" + } + }, + { + "id": "is-whitespace-character@1.0.4", + "info": { + "name": "is-whitespace-character", + "version": "1.0.4" + } + }, + { + "id": "is-word-character@1.0.4", + "info": { + "name": "is-word-character", + "version": "1.0.4" + } + }, + { + "id": "markdown-escapes@1.0.4", + "info": { + "name": "markdown-escapes", + "version": "1.0.4" + } + }, + { + "id": "parse-entities@2.0.0", + "info": { + "name": "parse-entities", + "version": "2.0.0" + } + }, + { + "id": "character-entities@1.2.4", + "info": { + "name": "character-entities", + "version": "1.2.4" + } + }, + { + "id": "character-entities-legacy@1.1.4", + "info": { + "name": "character-entities-legacy", + "version": "1.1.4" + } + }, + { + "id": "character-reference-invalid@1.1.4", + "info": { + "name": "character-reference-invalid", + "version": "1.1.4" + } + }, + { + "id": "is-alphanumerical@1.0.4", + "info": { + "name": "is-alphanumerical", + "version": "1.0.4" + } + }, + { + "id": "is-hexadecimal@1.0.4", + "info": { + "name": "is-hexadecimal", + "version": "1.0.4" + } + }, + { + "id": "state-toggle@1.0.3", + "info": { + "name": "state-toggle", + "version": "1.0.3" + } + }, + { + "id": "trim@0.0.1", + "info": { + "name": "trim", + "version": "0.0.1" + } + }, + { + "id": "trim-trailing-lines@1.1.4", + "info": { + "name": "trim-trailing-lines", + "version": "1.1.4" + } + }, + { + "id": "unherit@1.1.3", + "info": { + "name": "unherit", + "version": "1.1.3" + } + }, + { + "id": "unist-util-remove-position@2.0.1", + "info": { + "name": "unist-util-remove-position", + "version": "2.0.1" + } + }, + { + "id": "unified@9.2.0", + "info": { + "name": "unified", + "version": "9.2.0" + } + }, + { + "id": "bail@1.0.5", + "info": { + "name": "bail", + "version": "1.0.5" + } + }, + { + "id": "extend@3.0.2", + "info": { + "name": "extend", + "version": "3.0.2" + } + }, + { + "id": "is-plain-obj@2.1.0", + "info": { + "name": "is-plain-obj", + "version": "2.1.0" + } + }, + { + "id": "trough@1.0.5", + "info": { + "name": "trough", + "version": "1.0.5" + } + }, + { + "id": "remark-squeeze-paragraphs@4.0.0", + "info": { + "name": "remark-squeeze-paragraphs", + "version": "4.0.0" + } + }, + { + "id": "mdast-squeeze-paragraphs@4.0.0", + "info": { + "name": "mdast-squeeze-paragraphs", + "version": "4.0.0" + } + }, + { + "id": "unist-util-remove@2.1.0", + "info": { + "name": "unist-util-remove", + "version": "2.1.0" + } + }, + { + "id": "@mdx-js/react@1.6.22", + "info": { + "name": "@mdx-js/react", + "version": "1.6.22" + } + }, + { + "id": "change-case@3.1.0", + "info": { + "name": "change-case", + "version": "3.1.0" + } + }, + { + "id": "camel-case@3.0.0", + "info": { + "name": "camel-case", + "version": "3.0.0" + } + }, + { + "id": "no-case@2.3.2", + "info": { + "name": "no-case", + "version": "2.3.2" + } + }, + { + "id": "lower-case@1.1.4", + "info": { + "name": "lower-case", + "version": "1.1.4" + } + }, + { + "id": "upper-case@1.1.3", + "info": { + "name": "upper-case", + "version": "1.1.3" + } + }, + { + "id": "constant-case@2.0.0", + "info": { + "name": "constant-case", + "version": "2.0.0" + } + }, + { + "id": "snake-case@2.1.0", + "info": { + "name": "snake-case", + "version": "2.1.0" + } + }, + { + "id": "dot-case@2.1.1", + "info": { + "name": "dot-case", + "version": "2.1.1" + } + }, + { + "id": "header-case@1.0.1", + "info": { + "name": "header-case", + "version": "1.0.1" + } + }, + { + "id": "is-lower-case@1.1.3", + "info": { + "name": "is-lower-case", + "version": "1.1.3" + } + }, + { + "id": "is-upper-case@1.1.2", + "info": { + "name": "is-upper-case", + "version": "1.1.2" + } + }, + { + "id": "lower-case-first@1.0.2", + "info": { + "name": "lower-case-first", + "version": "1.0.2" + } + }, + { + "id": "param-case@2.1.1", + "info": { + "name": "param-case", + "version": "2.1.1" + } + }, + { + "id": "pascal-case@2.0.1", + "info": { + "name": "pascal-case", + "version": "2.0.1" + } + }, + { + "id": "upper-case-first@1.1.2", + "info": { + "name": "upper-case-first", + "version": "1.1.2" + } + }, + { + "id": "path-case@2.1.1", + "info": { + "name": "path-case", + "version": "2.1.1" + } + }, + { + "id": "sentence-case@2.1.1", + "info": { + "name": "sentence-case", + "version": "2.1.1" + } + }, + { + "id": "swap-case@1.1.2", + "info": { + "name": "swap-case", + "version": "1.1.2" + } + }, + { + "id": "title-case@2.1.1", + "info": { + "name": "title-case", + "version": "2.1.1" + } + }, + { + "id": "dataloader@1.4.0", + "info": { + "name": "dataloader", + "version": "1.4.0" + } + }, + { + "id": "eval@0.1.8", + "info": { + "name": "eval", + "version": "0.1.8" + } + }, + { + "id": "require-like@0.1.2", + "info": { + "name": "require-like", + "version": "0.1.2" + } + }, + { + "id": "gray-matter@4.0.3", + "info": { + "name": "gray-matter", + "version": "4.0.3" + } + }, + { + "id": "section-matter@1.0.0", + "info": { + "name": "section-matter", + "version": "1.0.0" + } + }, + { + "id": "extend-shallow@2.0.1", + "info": { + "name": "extend-shallow", + "version": "2.0.1" + } + }, + { + "id": "is-extendable@0.1.1", + "info": { + "name": "is-extendable", + "version": "0.1.1" + } + }, + { + "id": "strip-bom-string@1.0.0", + "info": { + "name": "strip-bom-string", + "version": "1.0.0" + } + }, + { + "id": "loader-utils@1.4.2", + "info": { + "name": "loader-utils", + "version": "1.4.2" + } + }, + { + "id": "mdast-util-to-string@1.1.0", + "info": { + "name": "mdast-util-to-string", + "version": "1.1.0" + } + }, + { + "id": "mdast-util-toc@3.1.0", + "info": { + "name": "mdast-util-toc", + "version": "3.1.0" + } + }, + { + "id": "github-slugger@1.5.0", + "info": { + "name": "github-slugger", + "version": "1.5.0" + } + }, + { + "id": "unist-util-is@2.1.3", + "info": { + "name": "unist-util-is", + "version": "2.1.3" + } + }, + { + "id": "unist-util-visit@1.4.1", + "info": { + "name": "unist-util-visit", + "version": "1.4.1" + } + }, + { + "id": "unist-util-visit-parents@2.1.2", + "info": { + "name": "unist-util-visit-parents", + "version": "2.1.2" + } + }, + { + "id": "unist-util-is@3.0.0", + "info": { + "name": "unist-util-is", + "version": "3.0.0" + } + }, + { + "id": "mkdirp@1.0.4", + "info": { + "name": "mkdirp", + "version": "1.0.4" + } + }, + { + "id": "p-queue@6.6.2", + "info": { + "name": "p-queue", + "version": "6.6.2" + } + }, + { + "id": "eventemitter3@4.0.7", + "info": { + "name": "eventemitter3", + "version": "4.0.7" + } + }, + { + "id": "p-timeout@3.2.0", + "info": { + "name": "p-timeout", + "version": "3.2.0" + } + }, + { + "id": "remark@10.0.1", + "info": { + "name": "remark", + "version": "10.0.1" + } + }, + { + "id": "remark-parse@6.0.3", + "info": { + "name": "remark-parse", + "version": "6.0.3" + } + }, + { + "id": "parse-entities@1.2.2", + "info": { + "name": "parse-entities", + "version": "1.2.2" + } + }, + { + "id": "unist-util-remove-position@1.1.4", + "info": { + "name": "unist-util-remove-position", + "version": "1.1.4" + } + }, + { + "id": "vfile-location@2.0.6", + "info": { + "name": "vfile-location", + "version": "2.0.6" + } + }, + { + "id": "remark-stringify@6.0.4", + "info": { + "name": "remark-stringify", + "version": "6.0.4" + } + }, + { + "id": "is-alphanumeric@1.0.0", + "info": { + "name": "is-alphanumeric", + "version": "1.0.0" + } + }, + { + "id": "longest-streak@2.0.4", + "info": { + "name": "longest-streak", + "version": "2.0.4" + } + }, + { + "id": "markdown-table@1.1.3", + "info": { + "name": "markdown-table", + "version": "1.1.3" + } + }, + { + "id": "mdast-util-compact@1.0.4", + "info": { + "name": "mdast-util-compact", + "version": "1.0.4" + } + }, + { + "id": "stringify-entities@1.3.2", + "info": { + "name": "stringify-entities", + "version": "1.3.2" + } + }, + { + "id": "character-entities-html4@1.1.4", + "info": { + "name": "character-entities-html4", + "version": "1.1.4" + } + }, + { + "id": "unified@7.1.0", + "info": { + "name": "unified", + "version": "7.1.0" + } + }, + { + "id": "@types/vfile@3.0.2", + "info": { + "name": "@types/vfile", + "version": "3.0.2" + } + }, + { + "id": "@types/vfile-message@2.0.0", + "info": { + "name": "@types/vfile-message", + "version": "2.0.0" + } + }, + { + "id": "vfile-message@4.0.2", + "info": { + "name": "vfile-message", + "version": "4.0.2" + } + }, + { + "id": "@types/unist@3.0.2", + "info": { + "name": "@types/unist", + "version": "3.0.2" + } + }, + { + "id": "unist-util-stringify-position@4.0.0", + "info": { + "name": "unist-util-stringify-position", + "version": "4.0.0" + } + }, + { + "id": "is-plain-obj@1.1.0", + "info": { + "name": "is-plain-obj", + "version": "1.1.0" + } + }, + { + "id": "vfile@3.0.1", + "info": { + "name": "vfile", + "version": "3.0.1" + } + }, + { + "id": "replace-ext@1.0.0", + "info": { + "name": "replace-ext", + "version": "1.0.0" + } + }, + { + "id": "unist-util-stringify-position@1.1.2", + "info": { + "name": "unist-util-stringify-position", + "version": "1.1.2" + } + }, + { + "id": "vfile-message@1.1.1", + "info": { + "name": "vfile-message", + "version": "1.1.1" + } + }, + { + "id": "x-is-string@0.1.0", + "info": { + "name": "x-is-string", + "version": "0.1.0" + } + }, + { + "id": "remark-retext@3.1.3", + "info": { + "name": "remark-retext", + "version": "3.1.3" + } + }, + { + "id": "mdast-util-to-nlcst@3.2.3", + "info": { + "name": "mdast-util-to-nlcst", + "version": "3.2.3" + } + }, + { + "id": "nlcst-to-string@2.0.4", + "info": { + "name": "nlcst-to-string", + "version": "2.0.4" + } + }, + { + "id": "retext-english@3.0.4", + "info": { + "name": "retext-english", + "version": "3.0.4" + } + }, + { + "id": "parse-english@4.2.0", + "info": { + "name": "parse-english", + "version": "4.2.0" + } + }, + { + "id": "parse-latin@4.3.0", + "info": { + "name": "parse-latin", + "version": "4.3.0" + } + }, + { + "id": "unist-util-modify-children@2.0.0", + "info": { + "name": "unist-util-modify-children", + "version": "2.0.0" + } + }, + { + "id": "array-iterate@1.1.4", + "info": { + "name": "array-iterate", + "version": "1.1.4" + } + }, + { + "id": "unist-util-visit-children@1.1.4", + "info": { + "name": "unist-util-visit-children", + "version": "1.1.4" + } + }, + { + "id": "static-site-generator-webpack-plugin@3.4.2", + "info": { + "name": "static-site-generator-webpack-plugin", + "version": "3.4.2" + } + }, + { + "id": "cheerio@0.22.0", + "info": { + "name": "cheerio", + "version": "0.22.0" + } + }, + { + "id": "css-select@1.2.0", + "info": { + "name": "css-select", + "version": "1.2.0" + } + }, + { + "id": "css-what@2.1.3", + "info": { + "name": "css-what", + "version": "2.1.3" + } + }, + { + "id": "domutils@1.5.1", + "info": { + "name": "domutils", + "version": "1.5.1" + } + }, + { + "id": "dom-serializer@0.1.1", + "info": { + "name": "dom-serializer", + "version": "0.1.1" + } + }, + { + "id": "domelementtype@1.3.1", + "info": { + "name": "domelementtype", + "version": "1.3.1" + } + }, + { + "id": "entities@1.1.2", + "info": { + "name": "entities", + "version": "1.1.2" + } + }, + { + "id": "nth-check@1.0.2", + "info": { + "name": "nth-check", + "version": "1.0.2" + } + }, + { + "id": "htmlparser2@3.10.1", + "info": { + "name": "htmlparser2", + "version": "3.10.1" + } + }, + { + "id": "domhandler@2.4.2", + "info": { + "name": "domhandler", + "version": "2.4.2" + } + }, + { + "id": "domutils@1.7.0", + "info": { + "name": "domutils", + "version": "1.7.0" + } + }, + { + "id": "lodash.assignin@4.2.0", + "info": { + "name": "lodash.assignin", + "version": "4.2.0" + } + }, + { + "id": "lodash.bind@4.2.1", + "info": { + "name": "lodash.bind", + "version": "4.2.1" + } + }, + { + "id": "lodash.defaults@4.2.0", + "info": { + "name": "lodash.defaults", + "version": "4.2.0" + } + }, + { + "id": "lodash.filter@4.6.0", + "info": { + "name": "lodash.filter", + "version": "4.6.0" + } + }, + { + "id": "lodash.flatten@4.4.0", + "info": { + "name": "lodash.flatten", + "version": "4.4.0" + } + }, + { + "id": "lodash.pick@4.4.0", + "info": { + "name": "lodash.pick", + "version": "4.4.0" + } + }, + { + "id": "lodash.reduce@4.6.0", + "info": { + "name": "lodash.reduce", + "version": "4.6.0" + } + }, + { + "id": "lodash.reject@4.6.0", + "info": { + "name": "lodash.reject", + "version": "4.6.0" + } + }, + { + "id": "lodash.some@4.6.0", + "info": { + "name": "lodash.some", + "version": "4.6.0" + } + }, + { + "id": "url@0.11.3", + "info": { + "name": "url", + "version": "0.11.3" + } + }, + { + "id": "punycode@1.4.1", + "info": { + "name": "punycode", + "version": "1.4.1" + } + }, + { + "id": "qs@6.12.1", + "info": { + "name": "qs", + "version": "6.12.1" + } + }, + { + "id": "webpack-sources@0.2.3", + "info": { + "name": "webpack-sources", + "version": "0.2.3" + } + }, + { + "id": "source-list-map@1.1.2", + "info": { + "name": "source-list-map", + "version": "1.1.2" + } + }, + { + "id": "underscore.string@3.3.6", + "info": { + "name": "underscore.string", + "version": "3.3.6" + } + }, + { + "id": "sprintf-js@1.1.3", + "info": { + "name": "sprintf-js", + "version": "1.1.3" + } + }, + { + "id": "unified@8.4.2", + "info": { + "name": "unified", + "version": "8.4.2" + } + }, + { + "id": "unist-util-map@1.0.5", + "info": { + "name": "unist-util-map", + "version": "1.0.5" + } + }, + { + "id": "unist-util-remove@1.0.3", + "info": { + "name": "unist-util-remove", + "version": "1.0.3" + } + }, + { + "id": "gatsby-plugin-offline@5.25.0", + "info": { + "name": "gatsby-plugin-offline", + "version": "5.25.0" + } + }, + { + "id": "cheerio@1.0.0-rc.12", + "info": { + "name": "cheerio", + "version": "1.0.0-rc.12" + } + }, + { + "id": "cheerio-select@2.1.0", + "info": { + "name": "cheerio-select", + "version": "2.1.0" + } + }, + { + "id": "css-select@5.1.0", + "info": { + "name": "css-select", + "version": "5.1.0" + } + }, + { + "id": "domhandler@5.0.3", + "info": { + "name": "domhandler", + "version": "5.0.3" + } + }, + { + "id": "domutils@3.1.0", + "info": { + "name": "domutils", + "version": "3.1.0" + } + }, + { + "id": "dom-serializer@2.0.0", + "info": { + "name": "dom-serializer", + "version": "2.0.0" + } + }, + { + "id": "entities@4.5.0", + "info": { + "name": "entities", + "version": "4.5.0" + } + }, + { + "id": "htmlparser2@8.0.2", + "info": { + "name": "htmlparser2", + "version": "8.0.2" + } + }, + { + "id": "parse5@7.1.2", + "info": { + "name": "parse5", + "version": "7.1.2" + } + }, + { + "id": "parse5-htmlparser2-tree-adapter@7.0.0", + "info": { + "name": "parse5-htmlparser2-tree-adapter", + "version": "7.0.0" + } + }, + { + "id": "idb-keyval@3.2.0", + "info": { + "name": "idb-keyval", + "version": "3.2.0" + } + }, + { + "id": "workbox-build@4.3.1", + "info": { + "name": "workbox-build", + "version": "4.3.1" + } + }, + { + "id": "@hapi/joi@15.1.1", + "info": { + "name": "@hapi/joi", + "version": "15.1.1" + } + }, + { + "id": "@hapi/address@2.1.4", + "info": { + "name": "@hapi/address", + "version": "2.1.4" + } + }, + { + "id": "@hapi/bourne@1.3.2", + "info": { + "name": "@hapi/bourne", + "version": "1.3.2" + } + }, + { + "id": "@hapi/hoek@8.5.1", + "info": { + "name": "@hapi/hoek", + "version": "8.5.1" + } + }, + { + "id": "@hapi/topo@3.1.6", + "info": { + "name": "@hapi/topo", + "version": "3.1.6" + } + }, + { + "id": "fs-extra@4.0.3", + "info": { + "name": "fs-extra", + "version": "4.0.3" + } + }, + { + "id": "jsonfile@4.0.0", + "info": { + "name": "jsonfile", + "version": "4.0.0" + } + }, + { + "id": "universalify@0.1.2", + "info": { + "name": "universalify", + "version": "0.1.2" + } + }, + { + "id": "lodash.template@4.5.0", + "info": { + "name": "lodash.template", + "version": "4.5.0" + } + }, + { + "id": "lodash._reinterpolate@3.0.0", + "info": { + "name": "lodash._reinterpolate", + "version": "3.0.0" + } + }, + { + "id": "lodash.templatesettings@4.2.0", + "info": { + "name": "lodash.templatesettings", + "version": "4.2.0" + } + }, + { + "id": "stringify-object@3.3.0", + "info": { + "name": "stringify-object", + "version": "3.3.0" + } + }, + { + "id": "get-own-enumerable-property-symbols@3.0.2", + "info": { + "name": "get-own-enumerable-property-symbols", + "version": "3.0.2" + } + }, + { + "id": "is-obj@1.0.1", + "info": { + "name": "is-obj", + "version": "1.0.1" + } + }, + { + "id": "is-regexp@1.0.0", + "info": { + "name": "is-regexp", + "version": "1.0.0" + } + }, + { + "id": "strip-comments@1.0.2", + "info": { + "name": "strip-comments", + "version": "1.0.2" + } + }, + { + "id": "babel-extract-comments@1.0.0", + "info": { + "name": "babel-extract-comments", + "version": "1.0.0" + } + }, + { + "id": "babylon@6.18.0", + "info": { + "name": "babylon", + "version": "6.18.0" + } + }, + { + "id": "babel-plugin-transform-object-rest-spread@6.26.0", + "info": { + "name": "babel-plugin-transform-object-rest-spread", + "version": "6.26.0" + } + }, + { + "id": "babel-plugin-syntax-object-rest-spread@6.13.0", + "info": { + "name": "babel-plugin-syntax-object-rest-spread", + "version": "6.13.0" + } + }, + { + "id": "babel-runtime@6.26.0", + "info": { + "name": "babel-runtime", + "version": "6.26.0" + } + }, + { + "id": "core-js@2.6.12", + "info": { + "name": "core-js", + "version": "2.6.12" + } + }, + { + "id": "regenerator-runtime@0.11.1", + "info": { + "name": "regenerator-runtime", + "version": "0.11.1" + } + }, + { + "id": "workbox-background-sync@4.3.1", + "info": { + "name": "workbox-background-sync", + "version": "4.3.1" + } + }, + { + "id": "workbox-core@4.3.1", + "info": { + "name": "workbox-core", + "version": "4.3.1" + } + }, + { + "id": "workbox-broadcast-update@4.3.1", + "info": { + "name": "workbox-broadcast-update", + "version": "4.3.1" + } + }, + { + "id": "workbox-cacheable-response@4.3.1", + "info": { + "name": "workbox-cacheable-response", + "version": "4.3.1" + } + }, + { + "id": "workbox-expiration@4.3.1", + "info": { + "name": "workbox-expiration", + "version": "4.3.1" + } + }, + { + "id": "workbox-google-analytics@4.3.1", + "info": { + "name": "workbox-google-analytics", + "version": "4.3.1" + } + }, + { + "id": "workbox-routing@4.3.1", + "info": { + "name": "workbox-routing", + "version": "4.3.1" + } + }, + { + "id": "workbox-strategies@4.3.1", + "info": { + "name": "workbox-strategies", + "version": "4.3.1" + } + }, + { + "id": "workbox-navigation-preload@4.3.1", + "info": { + "name": "workbox-navigation-preload", + "version": "4.3.1" + } + }, + { + "id": "workbox-precaching@4.3.1", + "info": { + "name": "workbox-precaching", + "version": "4.3.1" + } + }, + { + "id": "workbox-range-requests@4.3.1", + "info": { + "name": "workbox-range-requests", + "version": "4.3.1" + } + }, + { + "id": "workbox-streams@4.3.1", + "info": { + "name": "workbox-streams", + "version": "4.3.1" + } + }, + { + "id": "workbox-sw@4.3.1", + "info": { + "name": "workbox-sw", + "version": "4.3.1" + } + }, + { + "id": "workbox-window@4.3.1", + "info": { + "name": "workbox-window", + "version": "4.3.1" + } + }, + { + "id": "gatsby-plugin-react-helmet@5.25.0", + "info": { + "name": "gatsby-plugin-react-helmet", + "version": "5.25.0" + } + }, + { + "id": "react-helmet@6.1.0", + "info": { + "name": "react-helmet", + "version": "6.1.0" + } + }, + { + "id": "react-fast-compare@3.2.2", + "info": { + "name": "react-fast-compare", + "version": "3.2.2" + } + }, + { + "id": "react-side-effect@2.1.2", + "info": { + "name": "react-side-effect", + "version": "2.1.2" + } + }, + { + "id": "gatsby-plugin-styled-components@5.25.0", + "info": { + "name": "gatsby-plugin-styled-components", + "version": "5.25.0" + } + }, + { + "id": "babel-plugin-styled-components@2.1.4", + "info": { + "name": "babel-plugin-styled-components", + "version": "2.1.4" + } + }, + { + "id": "styled-components@6.1.10", + "info": { + "name": "styled-components", + "version": "6.1.10" + } + }, + { + "id": "@emotion/is-prop-valid@1.2.2", + "info": { + "name": "@emotion/is-prop-valid", + "version": "1.2.2" + } + }, + { + "id": "@emotion/memoize@0.8.1", + "info": { + "name": "@emotion/memoize", + "version": "0.8.1" + } + }, + { + "id": "@emotion/unitless@0.8.1", + "info": { + "name": "@emotion/unitless", + "version": "0.8.1" + } + }, + { + "id": "@types/stylis@4.2.5", + "info": { + "name": "@types/stylis", + "version": "4.2.5" + } + }, + { + "id": "css-to-react-native@3.2.0", + "info": { + "name": "css-to-react-native", + "version": "3.2.0" + } + }, + { + "id": "camelize@1.0.1", + "info": { + "name": "camelize", + "version": "1.0.1" + } + }, + { + "id": "css-color-keywords@1.0.0", + "info": { + "name": "css-color-keywords", + "version": "1.0.0" + } + }, + { + "id": "shallowequal@1.1.0", + "info": { + "name": "shallowequal", + "version": "1.1.0" + } + }, + { + "id": "stylis@4.3.2", + "info": { + "name": "stylis", + "version": "4.3.2" + } + }, + { + "id": "gatsby-plugin-svgr@3.0.0-beta.0", + "info": { + "name": "gatsby-plugin-svgr", + "version": "3.0.0-beta.0" + } + }, + { + "id": "@svgr/webpack@6.5.1", + "info": { + "name": "@svgr/webpack", + "version": "6.5.1" + } + }, + { + "id": "@babel/plugin-transform-react-constant-elements@7.24.1", + "info": { + "name": "@babel/plugin-transform-react-constant-elements", + "version": "7.24.1" + } + }, + { + "id": "@svgr/core@6.5.1", + "info": { + "name": "@svgr/core", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-preset@6.5.1", + "info": { + "name": "@svgr/babel-preset", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-plugin-add-jsx-attribute@6.5.1", + "info": { + "name": "@svgr/babel-plugin-add-jsx-attribute", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-plugin-remove-jsx-attribute@8.0.0", + "info": { + "name": "@svgr/babel-plugin-remove-jsx-attribute", + "version": "8.0.0" + } + }, + { + "id": "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0", + "info": { + "name": "@svgr/babel-plugin-remove-jsx-empty-expression", + "version": "8.0.0" + } + }, + { + "id": "@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1", + "info": { + "name": "@svgr/babel-plugin-replace-jsx-attribute-value", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-plugin-svg-dynamic-title@6.5.1", + "info": { + "name": "@svgr/babel-plugin-svg-dynamic-title", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-plugin-svg-em-dimensions@6.5.1", + "info": { + "name": "@svgr/babel-plugin-svg-em-dimensions", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-plugin-transform-react-native-svg@6.5.1", + "info": { + "name": "@svgr/babel-plugin-transform-react-native-svg", + "version": "6.5.1" + } + }, + { + "id": "@svgr/babel-plugin-transform-svg-component@6.5.1", + "info": { + "name": "@svgr/babel-plugin-transform-svg-component", + "version": "6.5.1" + } + }, + { + "id": "@svgr/plugin-jsx@6.5.1", + "info": { + "name": "@svgr/plugin-jsx", + "version": "6.5.1" + } + }, + { + "id": "@svgr/hast-util-to-babel-ast@6.5.1", + "info": { + "name": "@svgr/hast-util-to-babel-ast", + "version": "6.5.1" + } + }, + { + "id": "svg-parser@2.0.4", + "info": { + "name": "svg-parser", + "version": "2.0.4" + } + }, + { + "id": "@svgr/plugin-svgo@6.5.1", + "info": { + "name": "@svgr/plugin-svgo", + "version": "6.5.1" + } + }, + { + "id": "gatsby-plugin-web-font-loader@1.0.4", + "info": { + "name": "gatsby-plugin-web-font-loader", + "version": "1.0.4" + } + }, + { + "id": "webfontloader@1.6.28", + "info": { + "name": "webfontloader", + "version": "1.6.28" + } + }, + { + "id": "gatsby-transformer-sharp@4.25.0", + "info": { + "name": "gatsby-transformer-sharp", + "version": "4.25.0" + } + }, + { + "id": "react-calendar@3.9.0", + "info": { + "name": "react-calendar", + "version": "3.9.0" + } + }, + { + "id": "@wojtekmaj/date-utils@1.5.1", + "info": { + "name": "@wojtekmaj/date-utils", + "version": "1.5.1" + } + }, + { + "id": "get-user-locale@1.5.1", + "info": { + "name": "get-user-locale", + "version": "1.5.1" + } + }, + { + "id": "merge-class-names@1.4.2", + "info": { + "name": "merge-class-names", + "version": "1.4.2" + } + }, + { + "id": "react-hook-form@7.51.4", + "info": { + "name": "react-hook-form", + "version": "7.51.4" + } + }, + { + "id": "react-is@18.3.1", + "info": { + "name": "react-is", + "version": "18.3.1" + } + }, + { + "id": "react-redux@8.1.3", + "info": { + "name": "react-redux", + "version": "8.1.3" + } + }, + { + "id": "@types/hoist-non-react-statics@3.3.5", + "info": { + "name": "@types/hoist-non-react-statics", + "version": "3.3.5" + } + }, + { + "id": "hoist-non-react-statics@3.3.2", + "info": { + "name": "hoist-non-react-statics", + "version": "3.3.2" + } + }, + { + "id": "@types/use-sync-external-store@0.0.3", + "info": { + "name": "@types/use-sync-external-store", + "version": "0.0.3" + } + }, + { + "id": "use-sync-external-store@1.2.2", + "info": { + "name": "use-sync-external-store", + "version": "1.2.2" + } + }, + { + "id": "react-responsive@8.2.0", + "info": { + "name": "react-responsive", + "version": "8.2.0" + } + }, + { + "id": "hyphenate-style-name@1.0.4", + "info": { + "name": "hyphenate-style-name", + "version": "1.0.4" + } + }, + { + "id": "matchmediaquery@0.3.1", + "info": { + "name": "matchmediaquery", + "version": "0.3.1" + } + }, + { + "id": "css-mediaquery@0.1.2", + "info": { + "name": "css-mediaquery", + "version": "0.1.2" + } + }, + { + "id": "shallow-equal@1.2.1", + "info": { + "name": "shallow-equal", + "version": "1.2.1" + } + }, + { + "id": "react-router-dom@6.23.0", + "info": { + "name": "react-router-dom", + "version": "6.23.0" + } + }, + { + "id": "@remix-run/router@1.16.0", + "info": { + "name": "@remix-run/router", + "version": "1.16.0" + } + }, + { + "id": "react-router@6.23.0", + "info": { + "name": "react-router", + "version": "6.23.0" + } + }, + { + "id": "react-slick@0.28.1", + "info": { + "name": "react-slick", + "version": "0.28.1" + } + }, + { + "id": "classnames@2.5.1", + "info": { + "name": "classnames", + "version": "2.5.1" + } + }, + { + "id": "enquire.js@2.1.6", + "info": { + "name": "enquire.js", + "version": "2.1.6" + } + }, + { + "id": "json2mq@0.2.0", + "info": { + "name": "json2mq", + "version": "0.2.0" + } + }, + { + "id": "string-convert@0.2.1", + "info": { + "name": "string-convert", + "version": "0.2.1" + } + }, + { + "id": "resize-observer-polyfill@1.5.1", + "info": { + "name": "resize-observer-polyfill", + "version": "1.5.1" + } + }, + { + "id": "react-spring@9.7.3", + "info": { + "name": "react-spring", + "version": "9.7.3" + } + }, + { + "id": "@react-spring/core@9.7.3", + "info": { + "name": "@react-spring/core", + "version": "9.7.3" + } + }, + { + "id": "@react-spring/animated@9.7.3", + "info": { + "name": "@react-spring/animated", + "version": "9.7.3" + } + }, + { + "id": "@react-spring/shared@9.7.3", + "info": { + "name": "@react-spring/shared", + "version": "9.7.3" + } + }, + { + "id": "@react-spring/types@9.7.3", + "info": { + "name": "@react-spring/types", + "version": "9.7.3" + } + }, + { + "id": "@react-spring/konva@9.7.3", + "info": { + "name": "@react-spring/konva", + "version": "9.7.3" + } + }, + { + "id": "konva@9.3.6", + "info": { + "name": "konva", + "version": "9.3.6" + } + }, + { + "id": "react-konva@18.2.10", + "info": { + "name": "react-konva", + "version": "18.2.10" + } + }, + { + "id": "@types/react-reconciler@0.28.8", + "info": { + "name": "@types/react-reconciler", + "version": "0.28.8" + } + }, + { + "id": "its-fine@1.2.5", + "info": { + "name": "its-fine", + "version": "1.2.5" + } + }, + { + "id": "react-reconciler@0.29.2", + "info": { + "name": "react-reconciler", + "version": "0.29.2" + } + }, + { + "id": "@react-spring/native@9.7.3", + "info": { + "name": "@react-spring/native", + "version": "9.7.3" + } + }, + { + "id": "react-native@0.74.1", + "info": { + "name": "react-native", + "version": "0.74.1" + } + }, + { + "id": "@jest/create-cache-key-function@29.7.0", + "info": { + "name": "@jest/create-cache-key-function", + "version": "29.7.0" + } + }, + { + "id": "@jest/types@29.6.3", + "info": { + "name": "@jest/types", + "version": "29.6.3" + } + }, + { + "id": "@jest/schemas@29.6.3", + "info": { + "name": "@jest/schemas", + "version": "29.6.3" + } + }, + { + "id": "@sinclair/typebox@0.27.8", + "info": { + "name": "@sinclair/typebox", + "version": "0.27.8" + } + }, + { + "id": "@types/istanbul-lib-coverage@2.0.6", + "info": { + "name": "@types/istanbul-lib-coverage", + "version": "2.0.6" + } + }, + { + "id": "@types/istanbul-reports@3.0.4", + "info": { + "name": "@types/istanbul-reports", + "version": "3.0.4" + } + }, + { + "id": "@types/istanbul-lib-report@3.0.3", + "info": { + "name": "@types/istanbul-lib-report", + "version": "3.0.3" + } + }, + { + "id": "@types/yargs@17.0.32", + "info": { + "name": "@types/yargs", + "version": "17.0.32" + } + }, + { + "id": "@types/yargs-parser@21.0.3", + "info": { + "name": "@types/yargs-parser", + "version": "21.0.3" + } + }, + { + "id": "@react-native-community/cli@13.6.6", + "info": { + "name": "@react-native-community/cli", + "version": "13.6.6" + } + }, + { + "id": "@react-native-community/cli-clean@13.6.6", + "info": { + "name": "@react-native-community/cli-clean", + "version": "13.6.6" + } + }, + { + "id": "@react-native-community/cli-tools@13.6.6", + "info": { + "name": "@react-native-community/cli-tools", + "version": "13.6.6" + } + }, + { + "id": "appdirsjs@1.2.7", + "info": { + "name": "appdirsjs", + "version": "1.2.7" + } + }, + { + "id": "open@6.4.0", + "info": { + "name": "open", + "version": "6.4.0" + } + }, + { + "id": "is-wsl@1.1.0", + "info": { + "name": "is-wsl", + "version": "1.1.0" + } + }, + { + "id": "ora@5.4.1", + "info": { + "name": "ora", + "version": "5.4.1" + } + }, + { + "id": "cli-spinners@2.9.2", + "info": { + "name": "cli-spinners", + "version": "2.9.2" + } + }, + { + "id": "is-interactive@1.0.0", + "info": { + "name": "is-interactive", + "version": "1.0.0" + } + }, + { + "id": "is-unicode-supported@0.1.0", + "info": { + "name": "is-unicode-supported", + "version": "0.1.0" + } + }, + { + "id": "log-symbols@4.1.0", + "info": { + "name": "log-symbols", + "version": "4.1.0" + } + }, + { + "id": "wcwidth@1.0.1", + "info": { + "name": "wcwidth", + "version": "1.0.1" + } + }, + { + "id": "defaults@1.0.4", + "info": { + "name": "defaults", + "version": "1.0.4" + } + }, + { + "id": "clone@1.0.4", + "info": { + "name": "clone", + "version": "1.0.4" + } + }, + { + "id": "sudo-prompt@9.2.1", + "info": { + "name": "sudo-prompt", + "version": "9.2.1" + } + }, + { + "id": "@react-native-community/cli-config@13.6.6", + "info": { + "name": "@react-native-community/cli-config", + "version": "13.6.6" + } + }, + { + "id": "cosmiconfig@5.2.1", + "info": { + "name": "cosmiconfig", + "version": "5.2.1" + } + }, + { + "id": "import-fresh@2.0.0", + "info": { + "name": "import-fresh", + "version": "2.0.0" + } + }, + { + "id": "caller-path@2.0.0", + "info": { + "name": "caller-path", + "version": "2.0.0" + } + }, + { + "id": "caller-callsite@2.0.0", + "info": { + "name": "caller-callsite", + "version": "2.0.0" + } + }, + { + "id": "callsites@2.0.0", + "info": { + "name": "callsites", + "version": "2.0.0" + } + }, + { + "id": "resolve-from@3.0.0", + "info": { + "name": "resolve-from", + "version": "3.0.0" + } + }, + { + "id": "is-directory@0.3.1", + "info": { + "name": "is-directory", + "version": "0.3.1" + } + }, + { + "id": "parse-json@4.0.0", + "info": { + "name": "parse-json", + "version": "4.0.0" + } + }, + { + "id": "json-parse-better-errors@1.0.2", + "info": { + "name": "json-parse-better-errors", + "version": "1.0.2" + } + }, + { + "id": "@react-native-community/cli-debugger-ui@13.6.6", + "info": { + "name": "@react-native-community/cli-debugger-ui", + "version": "13.6.6" + } + }, + { + "id": "@react-native-community/cli-doctor@13.6.6", + "info": { + "name": "@react-native-community/cli-doctor", + "version": "13.6.6" + } + }, + { + "id": "@react-native-community/cli-platform-android@13.6.6", + "info": { + "name": "@react-native-community/cli-platform-android", + "version": "13.6.6" + } + }, + { + "id": "fast-xml-parser@4.3.6", + "info": { + "name": "fast-xml-parser", + "version": "4.3.6" + } + }, + { + "id": "strnum@1.0.5", + "info": { + "name": "strnum", + "version": "1.0.5" + } + }, + { + "id": "logkitty@0.7.1", + "info": { + "name": "logkitty", + "version": "0.7.1" + } + }, + { + "id": "ansi-fragments@0.2.1", + "info": { + "name": "ansi-fragments", + "version": "0.2.1" + } + }, + { + "id": "slice-ansi@2.1.0", + "info": { + "name": "slice-ansi", + "version": "2.1.0" + } + }, + { + "id": "astral-regex@1.0.0", + "info": { + "name": "astral-regex", + "version": "1.0.0" + } + }, + { + "id": "is-fullwidth-code-point@2.0.0", + "info": { + "name": "is-fullwidth-code-point", + "version": "2.0.0" + } + }, + { + "id": "dayjs@1.11.11", + "info": { + "name": "dayjs", + "version": "1.11.11" + } + }, + { + "id": "@react-native-community/cli-platform-apple@13.6.6", + "info": { + "name": "@react-native-community/cli-platform-apple", + "version": "13.6.6" + } + }, + { + "id": "@react-native-community/cli-platform-ios@13.6.6", + "info": { + "name": "@react-native-community/cli-platform-ios", + "version": "13.6.6" + } + }, + { + "id": "hermes-profile-transformer@0.0.6", + "info": { + "name": "hermes-profile-transformer", + "version": "0.0.6" + } + }, + { + "id": "node-stream-zip@1.15.0", + "info": { + "name": "node-stream-zip", + "version": "1.15.0" + } + }, + { + "id": "@react-native-community/cli-hermes@13.6.6", + "info": { + "name": "@react-native-community/cli-hermes", + "version": "13.6.6" + } + }, + { + "id": "@react-native-community/cli-server-api@13.6.6", + "info": { + "name": "@react-native-community/cli-server-api", + "version": "13.6.6" + } + }, + { + "id": "connect@3.7.0", + "info": { + "name": "connect", + "version": "3.7.0" + } + }, + { + "id": "finalhandler@1.1.2", + "info": { + "name": "finalhandler", + "version": "1.1.2" + } + }, + { + "id": "on-finished@2.3.0", + "info": { + "name": "on-finished", + "version": "2.3.0" + } + }, + { + "id": "errorhandler@1.5.1", + "info": { + "name": "errorhandler", + "version": "1.5.1" + } + }, + { + "id": "nocache@3.0.4", + "info": { + "name": "nocache", + "version": "3.0.4" + } + }, + { + "id": "pretty-format@26.6.2", + "info": { + "name": "pretty-format", + "version": "26.6.2" + } + }, + { + "id": "@jest/types@26.6.2", + "info": { + "name": "@jest/types", + "version": "26.6.2" + } + }, + { + "id": "@types/yargs@15.0.19", + "info": { + "name": "@types/yargs", + "version": "15.0.19" + } + }, + { + "id": "react-is@17.0.2", + "info": { + "name": "react-is", + "version": "17.0.2" + } + }, + { + "id": "ws@6.2.2", + "info": { + "name": "ws", + "version": "6.2.2" + } + }, + { + "id": "async-limiter@1.0.1", + "info": { + "name": "async-limiter", + "version": "1.0.1" + } + }, + { + "id": "@react-native-community/cli-types@13.6.6", + "info": { + "name": "@react-native-community/cli-types", + "version": "13.6.6" + } + }, + { + "id": "commander@9.5.0", + "info": { + "name": "commander", + "version": "9.5.0" + } + }, + { + "id": "fs-extra@8.1.0", + "info": { + "name": "fs-extra", + "version": "8.1.0" + } + }, + { + "id": "@react-native/assets-registry@0.74.83", + "info": { + "name": "@react-native/assets-registry", + "version": "0.74.83" + } + }, + { + "id": "@react-native/codegen@0.74.83", + "info": { + "name": "@react-native/codegen", + "version": "0.74.83" + } + }, + { + "id": "@babel/preset-env@7.12.13", + "info": { + "name": "@babel/preset-env", + "version": "7.12.13" + } + }, + { + "id": "@babel/plugin-proposal-async-generator-functions@7.20.7", + "info": { + "name": "@babel/plugin-proposal-async-generator-functions", + "version": "7.20.7" + } + }, + { + "id": "@babel/plugin-proposal-dynamic-import@7.18.6", + "info": { + "name": "@babel/plugin-proposal-dynamic-import", + "version": "7.18.6" + } + }, + { + "id": "@babel/plugin-proposal-export-namespace-from@7.18.9", + "info": { + "name": "@babel/plugin-proposal-export-namespace-from", + "version": "7.18.9" + } + }, + { + "id": "@babel/plugin-proposal-json-strings@7.18.6", + "info": { + "name": "@babel/plugin-proposal-json-strings", + "version": "7.18.6" + } + }, + { + "id": "@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "info": { + "name": "@babel/plugin-proposal-logical-assignment-operators", + "version": "7.20.7" + } + }, + { + "id": "@babel/plugin-proposal-optional-catch-binding@7.18.6", + "info": { + "name": "@babel/plugin-proposal-optional-catch-binding", + "version": "7.18.6" + } + }, + { + "id": "@babel/plugin-proposal-private-methods@7.18.6", + "info": { + "name": "@babel/plugin-proposal-private-methods", + "version": "7.18.6" + } + }, + { + "id": "@babel/plugin-proposal-unicode-property-regex@7.18.6", + "info": { + "name": "@babel/plugin-proposal-unicode-property-regex", + "version": "7.18.6" + } + }, + { + "id": "@babel/preset-modules@0.1.6", + "info": { + "name": "@babel/preset-modules", + "version": "0.1.6" + } + }, + { + "id": "hermes-parser@0.19.1", + "info": { + "name": "hermes-parser", + "version": "0.19.1" + } + }, + { + "id": "hermes-estree@0.19.1", + "info": { + "name": "hermes-estree", + "version": "0.19.1" + } + }, + { + "id": "jscodeshift@0.14.0", + "info": { + "name": "jscodeshift", + "version": "0.14.0" + } + }, + { + "id": "@babel/preset-flow@7.24.1", + "info": { + "name": "@babel/preset-flow", + "version": "7.24.1" + } + }, + { + "id": "@babel/register@7.23.7", + "info": { + "name": "@babel/register", + "version": "7.23.7" + } + }, + { + "id": "find-cache-dir@2.1.0", + "info": { + "name": "find-cache-dir", + "version": "2.1.0" + } + }, + { + "id": "make-dir@2.1.0", + "info": { + "name": "make-dir", + "version": "2.1.0" + } + }, + { + "id": "pify@4.0.1", + "info": { + "name": "pify", + "version": "4.0.1" + } + }, + { + "id": "pkg-dir@3.0.0", + "info": { + "name": "pkg-dir", + "version": "3.0.0" + } + }, + { + "id": "pirates@4.0.6", + "info": { + "name": "pirates", + "version": "4.0.6" + } + }, + { + "id": "babel-core@7.0.0-bridge.0", + "info": { + "name": "babel-core", + "version": "7.0.0-bridge.0" + } + }, + { + "id": "flow-parser@0.235.1", + "info": { + "name": "flow-parser", + "version": "0.235.1" + } + }, + { + "id": "node-dir@0.1.17", + "info": { + "name": "node-dir", + "version": "0.1.17" + } + }, + { + "id": "recast@0.21.5", + "info": { + "name": "recast", + "version": "0.21.5" + } + }, + { + "id": "ast-types@0.15.2", + "info": { + "name": "ast-types", + "version": "0.15.2" + } + }, + { + "id": "temp@0.8.4", + "info": { + "name": "temp", + "version": "0.8.4" + } + }, + { + "id": "rimraf@2.6.3", + "info": { + "name": "rimraf", + "version": "2.6.3" + } + }, + { + "id": "write-file-atomic@2.4.3", + "info": { + "name": "write-file-atomic", + "version": "2.4.3" + } + }, + { + "id": "@react-native/community-cli-plugin@0.74.83", + "info": { + "name": "@react-native/community-cli-plugin", + "version": "0.74.83" + } + }, + { + "id": "@react-native/dev-middleware@0.74.83", + "info": { + "name": "@react-native/dev-middleware", + "version": "0.74.83" + } + }, + { + "id": "@isaacs/ttlcache@1.4.1", + "info": { + "name": "@isaacs/ttlcache", + "version": "1.4.1" + } + }, + { + "id": "@react-native/debugger-frontend@0.74.83", + "info": { + "name": "@react-native/debugger-frontend", + "version": "0.74.83" + } + }, + { + "id": "@rnx-kit/chromium-edge-launcher@1.0.0", + "info": { + "name": "@rnx-kit/chromium-edge-launcher", + "version": "1.0.0" + } + }, + { + "id": "@types/node@18.19.33", + "info": { + "name": "@types/node", + "version": "18.19.33" + } + }, + { + "id": "lighthouse-logger@1.4.2", + "info": { + "name": "lighthouse-logger", + "version": "1.4.2" + } + }, + { + "id": "marky@1.2.5", + "info": { + "name": "marky", + "version": "1.2.5" + } + }, + { + "id": "chrome-launcher@0.15.2", + "info": { + "name": "chrome-launcher", + "version": "0.15.2" + } + }, + { + "id": "selfsigned@2.4.1", + "info": { + "name": "selfsigned", + "version": "2.4.1" + } + }, + { + "id": "@types/node-forge@1.3.11", + "info": { + "name": "@types/node-forge", + "version": "1.3.11" + } + }, + { + "id": "node-forge@1.3.1", + "info": { + "name": "node-forge", + "version": "1.3.1" + } + }, + { + "id": "temp-dir@2.0.0", + "info": { + "name": "temp-dir", + "version": "2.0.0" + } + }, + { + "id": "@react-native/metro-babel-transformer@0.74.83", + "info": { + "name": "@react-native/metro-babel-transformer", + "version": "0.74.83" + } + }, + { + "id": "@react-native/babel-preset@0.74.83", + "info": { + "name": "@react-native/babel-preset", + "version": "0.74.83" + } + }, + { + "id": "@babel/plugin-proposal-export-default-from@7.24.1", + "info": { + "name": "@babel/plugin-proposal-export-default-from", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-syntax-export-default-from@7.24.1", + "info": { + "name": "@babel/plugin-syntax-export-default-from", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-transform-react-jsx-self@7.24.5", + "info": { + "name": "@babel/plugin-transform-react-jsx-self", + "version": "7.24.5" + } + }, + { + "id": "@babel/plugin-transform-react-jsx-source@7.24.1", + "info": { + "name": "@babel/plugin-transform-react-jsx-source", + "version": "7.24.1" + } + }, + { + "id": "@react-native/babel-plugin-codegen@0.74.83", + "info": { + "name": "@react-native/babel-plugin-codegen", + "version": "0.74.83" + } + }, + { + "id": "babel-plugin-transform-flow-enums@0.0.2", + "info": { + "name": "babel-plugin-transform-flow-enums", + "version": "0.0.2" + } + }, + { + "id": "metro@0.80.9", + "info": { + "name": "metro", + "version": "0.80.9" + } + }, + { + "id": "denodeify@1.2.1", + "info": { + "name": "denodeify", + "version": "1.2.1" + } + }, + { + "id": "hermes-parser@0.20.1", + "info": { + "name": "hermes-parser", + "version": "0.20.1" + } + }, + { + "id": "hermes-estree@0.20.1", + "info": { + "name": "hermes-estree", + "version": "0.20.1" + } + }, + { + "id": "image-size@1.1.1", + "info": { + "name": "image-size", + "version": "1.1.1" + } + }, + { + "id": "queue@6.0.2", + "info": { + "name": "queue", + "version": "6.0.2" + } + }, + { + "id": "jest-worker@29.7.0", + "info": { + "name": "jest-worker", + "version": "29.7.0" + } + }, + { + "id": "jest-util@29.7.0", + "info": { + "name": "jest-util", + "version": "29.7.0" + } + }, + { + "id": "ci-info@3.9.0", + "info": { + "name": "ci-info", + "version": "3.9.0" + } + }, + { + "id": "jsc-safe-url@0.2.4", + "info": { + "name": "jsc-safe-url", + "version": "0.2.4" + } + }, + { + "id": "lodash.throttle@4.1.1", + "info": { + "name": "lodash.throttle", + "version": "4.1.1" + } + }, + { + "id": "metro-babel-transformer@0.80.9", + "info": { + "name": "metro-babel-transformer", + "version": "0.80.9" + } + }, + { + "id": "metro-cache@0.80.9", + "info": { + "name": "metro-cache", + "version": "0.80.9" + } + }, + { + "id": "metro-core@0.80.9", + "info": { + "name": "metro-core", + "version": "0.80.9" + } + }, + { + "id": "metro-resolver@0.80.9", + "info": { + "name": "metro-resolver", + "version": "0.80.9" + } + }, + { + "id": "metro-cache-key@0.80.9", + "info": { + "name": "metro-cache-key", + "version": "0.80.9" + } + }, + { + "id": "metro-config@0.80.9", + "info": { + "name": "metro-config", + "version": "0.80.9" + } + }, + { + "id": "jest-validate@29.7.0", + "info": { + "name": "jest-validate", + "version": "29.7.0" + } + }, + { + "id": "jest-get-type@29.6.3", + "info": { + "name": "jest-get-type", + "version": "29.6.3" + } + }, + { + "id": "leven@3.1.0", + "info": { + "name": "leven", + "version": "3.1.0" + } + }, + { + "id": "pretty-format@29.7.0", + "info": { + "name": "pretty-format", + "version": "29.7.0" + } + }, + { + "id": "ansi-styles@5.2.0", + "info": { + "name": "ansi-styles", + "version": "5.2.0" + } + }, + { + "id": "metro-runtime@0.80.9", + "info": { + "name": "metro-runtime", + "version": "0.80.9" + } + }, + { + "id": "metro-file-map@0.80.9", + "info": { + "name": "metro-file-map", + "version": "0.80.9" + } + }, + { + "id": "node-abort-controller@3.1.1", + "info": { + "name": "node-abort-controller", + "version": "3.1.1" + } + }, + { + "id": "walker@1.0.8", + "info": { + "name": "walker", + "version": "1.0.8" + } + }, + { + "id": "makeerror@1.0.12", + "info": { + "name": "makeerror", + "version": "1.0.12" + } + }, + { + "id": "tmpl@1.0.5", + "info": { + "name": "tmpl", + "version": "1.0.5" + } + }, + { + "id": "metro-source-map@0.80.9", + "info": { + "name": "metro-source-map", + "version": "0.80.9" + } + }, + { + "id": "metro-symbolicate@0.80.9", + "info": { + "name": "metro-symbolicate", + "version": "0.80.9" + } + }, + { + "id": "through2@2.0.5", + "info": { + "name": "through2", + "version": "2.0.5" + } + }, + { + "id": "vlq@1.0.1", + "info": { + "name": "vlq", + "version": "1.0.1" + } + }, + { + "id": "ob1@0.80.9", + "info": { + "name": "ob1", + "version": "0.80.9" + } + }, + { + "id": "metro-transform-plugins@0.80.9", + "info": { + "name": "metro-transform-plugins", + "version": "0.80.9" + } + }, + { + "id": "metro-transform-worker@0.80.9", + "info": { + "name": "metro-transform-worker", + "version": "0.80.9" + } + }, + { + "id": "metro-minify-terser@0.80.9", + "info": { + "name": "metro-minify-terser", + "version": "0.80.9" + } + }, + { + "id": "serialize-error@2.1.0", + "info": { + "name": "serialize-error", + "version": "2.1.0" + } + }, + { + "id": "throat@5.0.0", + "info": { + "name": "throat", + "version": "5.0.0" + } + }, + { + "id": "ws@7.5.9", + "info": { + "name": "ws", + "version": "7.5.9" + } + }, + { + "id": "yargs@17.7.2", + "info": { + "name": "yargs", + "version": "17.7.2" + } + }, + { + "id": "cliui@8.0.1", + "info": { + "name": "cliui", + "version": "8.0.1" + } + }, + { + "id": "y18n@5.0.8", + "info": { + "name": "y18n", + "version": "5.0.8" + } + }, + { + "id": "yargs-parser@21.1.1", + "info": { + "name": "yargs-parser", + "version": "21.1.1" + } + }, + { + "id": "querystring@0.2.1", + "info": { + "name": "querystring", + "version": "0.2.1" + } + }, + { + "id": "readline@1.3.0", + "info": { + "name": "readline", + "version": "1.3.0" + } + }, + { + "id": "@react-native/gradle-plugin@0.74.83", + "info": { + "name": "@react-native/gradle-plugin", + "version": "0.74.83" + } + }, + { + "id": "@react-native/js-polyfills@0.74.83", + "info": { + "name": "@react-native/js-polyfills", + "version": "0.74.83" + } + }, + { + "id": "@react-native/normalize-colors@0.74.83", + "info": { + "name": "@react-native/normalize-colors", + "version": "0.74.83" + } + }, + { + "id": "@react-native/virtualized-lists@0.74.83", + "info": { + "name": "@react-native/virtualized-lists", + "version": "0.74.83" + } + }, + { + "id": "abort-controller@3.0.0", + "info": { + "name": "abort-controller", + "version": "3.0.0" + } + }, + { + "id": "event-target-shim@5.0.1", + "info": { + "name": "event-target-shim", + "version": "5.0.1" + } + }, + { + "id": "anser@1.4.10", + "info": { + "name": "anser", + "version": "1.4.10" + } + }, + { + "id": "flow-enums-runtime@0.0.6", + "info": { + "name": "flow-enums-runtime", + "version": "0.0.6" + } + }, + { + "id": "jest-environment-node@29.7.0", + "info": { + "name": "jest-environment-node", + "version": "29.7.0" + } + }, + { + "id": "@jest/environment@29.7.0", + "info": { + "name": "@jest/environment", + "version": "29.7.0" + } + }, + { + "id": "@jest/fake-timers@29.7.0", + "info": { + "name": "@jest/fake-timers", + "version": "29.7.0" + } + }, + { + "id": "@sinonjs/fake-timers@10.3.0", + "info": { + "name": "@sinonjs/fake-timers", + "version": "10.3.0" + } + }, + { + "id": "@sinonjs/commons@3.0.1", + "info": { + "name": "@sinonjs/commons", + "version": "3.0.1" + } + }, + { + "id": "type-detect@4.0.8", + "info": { + "name": "type-detect", + "version": "4.0.8" + } + }, + { + "id": "jest-message-util@29.7.0", + "info": { + "name": "jest-message-util", + "version": "29.7.0" + } + }, + { + "id": "@types/stack-utils@2.0.3", + "info": { + "name": "@types/stack-utils", + "version": "2.0.3" + } + }, + { + "id": "stack-utils@2.0.6", + "info": { + "name": "stack-utils", + "version": "2.0.6" + } + }, + { + "id": "jest-mock@29.7.0", + "info": { + "name": "jest-mock", + "version": "29.7.0" + } + }, + { + "id": "jsc-android@250231.0.0", + "info": { + "name": "jsc-android", + "version": "250231.0.0" + } + }, + { + "id": "memoize-one@5.2.1", + "info": { + "name": "memoize-one", + "version": "5.2.1" + } + }, + { + "id": "promise@8.3.0", + "info": { + "name": "promise", + "version": "8.3.0" + } + }, + { + "id": "react-devtools-core@5.2.0", + "info": { + "name": "react-devtools-core", + "version": "5.2.0" + } + }, + { + "id": "react-shallow-renderer@16.15.0", + "info": { + "name": "react-shallow-renderer", + "version": "16.15.0" + } + }, + { + "id": "scheduler@0.24.0-canary-efb381bbf-20230505", + "info": { + "name": "scheduler", + "version": "0.24.0-canary-efb381bbf-20230505" + } + }, + { + "id": "stacktrace-parser@0.1.10", + "info": { + "name": "stacktrace-parser", + "version": "0.1.10" + } + }, + { + "id": "type-fest@0.7.1", + "info": { + "name": "type-fest", + "version": "0.7.1" + } + }, + { + "id": "whatwg-fetch@3.6.20", + "info": { + "name": "whatwg-fetch", + "version": "3.6.20" + } + }, + { + "id": "@react-spring/three@9.7.3", + "info": { + "name": "@react-spring/three", + "version": "9.7.3" + } + }, + { + "id": "@react-three/fiber@8.16.5", + "info": { + "name": "@react-three/fiber", + "version": "8.16.5" + } + }, + { + "id": "@types/react-reconciler@0.26.7", + "info": { + "name": "@types/react-reconciler", + "version": "0.26.7" + } + }, + { + "id": "@types/webxr@0.5.16", + "info": { + "name": "@types/webxr", + "version": "0.5.16" + } + }, + { + "id": "buffer@6.0.3", + "info": { + "name": "buffer", + "version": "6.0.3" + } + }, + { + "id": "react-reconciler@0.27.0", + "info": { + "name": "react-reconciler", + "version": "0.27.0" + } + }, + { + "id": "scheduler@0.21.0", + "info": { + "name": "scheduler", + "version": "0.21.0" + } + }, + { + "id": "react-use-measure@2.1.1", + "info": { + "name": "react-use-measure", + "version": "2.1.1" + } + }, + { + "id": "debounce@1.2.1", + "info": { + "name": "debounce", + "version": "1.2.1" + } + }, + { + "id": "suspend-react@0.1.3", + "info": { + "name": "suspend-react", + "version": "0.1.3" + } + }, + { + "id": "three@0.164.1", + "info": { + "name": "three", + "version": "0.164.1" + } + }, + { + "id": "zustand@3.7.2", + "info": { + "name": "zustand", + "version": "3.7.2" + } + }, + { + "id": "@react-spring/web@9.7.3", + "info": { + "name": "@react-spring/web", + "version": "9.7.3" + } + }, + { + "id": "@react-spring/zdog@9.7.3", + "info": { + "name": "@react-spring/zdog", + "version": "9.7.3" + } + }, + { + "id": "react-zdog@1.2.2", + "info": { + "name": "react-zdog", + "version": "1.2.2" + } + }, + { + "id": "zdog@1.1.3", + "info": { + "name": "zdog", + "version": "1.1.3" + } + }, + { + "id": "redux-persist@6.0.0", + "info": { + "name": "redux-persist", + "version": "6.0.0" + } + }, + { + "id": "@babel/preset-react@7.12.13", + "info": { + "name": "@babel/preset-react", + "version": "7.12.13" + } + }, + { + "id": "@babel/preset-typescript@7.12.13", + "info": { + "name": "@babel/preset-typescript", + "version": "7.12.13" + } + }, + { + "id": "@nrwl/cli@14.0.5", + "info": { + "name": "@nrwl/cli", + "version": "14.0.5" + } + }, + { + "id": "nx@14.0.5", + "info": { + "name": "nx", + "version": "14.0.5" + } + }, + { + "id": "@nrwl/tao@14.0.5", + "info": { + "name": "@nrwl/tao", + "version": "14.0.5" + } + }, + { + "id": "@parcel/watcher@2.0.4", + "info": { + "name": "@parcel/watcher", + "version": "2.0.4" + } + }, + { + "id": "node-addon-api@3.2.1", + "info": { + "name": "node-addon-api", + "version": "3.2.1" + } + }, + { + "id": "node-gyp-build@4.8.1", + "info": { + "name": "node-gyp-build", + "version": "4.8.1" + } + }, + { + "id": "@swc-node/register@1.9.1", + "info": { + "name": "@swc-node/register", + "version": "1.9.1" + } + }, + { + "id": "@swc-node/core@1.13.1", + "info": { + "name": "@swc-node/core", + "version": "1.13.1" + } + }, + { + "id": "@swc/core@1.5.5", + "info": { + "name": "@swc/core", + "version": "1.5.5" + } + }, + { + "id": "@swc/counter@0.1.3", + "info": { + "name": "@swc/counter", + "version": "0.1.3" + } + }, + { + "id": "@swc/types@0.1.6", + "info": { + "name": "@swc/types", + "version": "0.1.6" + } + }, + { + "id": "@swc-node/sourcemap-support@0.5.0", + "info": { + "name": "@swc-node/sourcemap-support", + "version": "0.5.0" + } + }, + { + "id": "colorette@2.0.20", + "info": { + "name": "colorette", + "version": "2.0.20" + } + }, + { + "id": "chalk@4.1.0", + "info": { + "name": "chalk", + "version": "4.1.0" + } + }, + { + "id": "cli-spinners@2.6.1", + "info": { + "name": "cli-spinners", + "version": "2.6.1" + } + }, + { + "id": "cliui@7.0.4", + "info": { + "name": "cliui", + "version": "7.0.4" + } + }, + { + "id": "dotenv@10.0.0", + "info": { + "name": "dotenv", + "version": "10.0.0" + } + }, + { + "id": "enquirer@2.3.6", + "info": { + "name": "enquirer", + "version": "2.3.6" + } + }, + { + "id": "fast-glob@3.2.7", + "info": { + "name": "fast-glob", + "version": "3.2.7" + } + }, + { + "id": "glob@7.1.4", + "info": { + "name": "glob", + "version": "7.1.4" + } + }, + { + "id": "minimatch@3.0.4", + "info": { + "name": "minimatch", + "version": "3.0.4" + } + }, + { + "id": "jsonc-parser@3.0.0", + "info": { + "name": "jsonc-parser", + "version": "3.0.0" + } + }, + { + "id": "rxjs-for-await@0.0.2", + "info": { + "name": "rxjs-for-await", + "version": "0.0.2" + } + }, + { + "id": "semver@7.3.4", + "info": { + "name": "semver", + "version": "7.3.4" + } + }, + { + "id": "v8-compile-cache@2.3.0", + "info": { + "name": "v8-compile-cache", + "version": "2.3.0" + } + }, + { + "id": "yargs-parser@21.0.1", + "info": { + "name": "yargs-parser", + "version": "21.0.1" + } + }, + { + "id": "@nrwl/devkit@14.0.5", + "info": { + "name": "@nrwl/devkit", + "version": "14.0.5" + } + }, + { + "id": "ejs@3.1.10", + "info": { + "name": "ejs", + "version": "3.1.10" + } + }, + { + "id": "jake@10.9.1", + "info": { + "name": "jake", + "version": "10.9.1" + } + }, + { + "id": "filelist@1.0.4", + "info": { + "name": "filelist", + "version": "1.0.4" + } + }, + { + "id": "minimatch@5.1.6", + "info": { + "name": "minimatch", + "version": "5.1.6" + } + }, + { + "id": "brace-expansion@2.0.1", + "info": { + "name": "brace-expansion", + "version": "2.0.1" + } + }, + { + "id": "@nrwl/eslint-plugin-nx@14.0.5", + "info": { + "name": "@nrwl/eslint-plugin-nx", + "version": "14.0.5" + } + }, + { + "id": "@nrwl/workspace@14.0.5", + "info": { + "name": "@nrwl/workspace", + "version": "14.0.5" + } + }, + { + "id": "@nrwl/jest@14.0.5", + "info": { + "name": "@nrwl/jest", + "version": "14.0.5" + } + }, + { + "id": "@jest/reporters@27.5.1", + "info": { + "name": "@jest/reporters", + "version": "27.5.1" + } + }, + { + "id": "@bcoe/v8-coverage@0.2.3", + "info": { + "name": "@bcoe/v8-coverage", + "version": "0.2.3" + } + }, + { + "id": "@jest/console@27.5.1", + "info": { + "name": "@jest/console", + "version": "27.5.1" + } + }, + { + "id": "@jest/types@27.5.1", + "info": { + "name": "@jest/types", + "version": "27.5.1" + } + }, + { + "id": "@types/yargs@16.0.9", + "info": { + "name": "@types/yargs", + "version": "16.0.9" + } + }, + { + "id": "jest-message-util@27.5.1", + "info": { + "name": "jest-message-util", + "version": "27.5.1" + } + }, + { + "id": "pretty-format@27.5.1", + "info": { + "name": "pretty-format", + "version": "27.5.1" + } + }, + { + "id": "jest-util@27.5.1", + "info": { + "name": "jest-util", + "version": "27.5.1" + } + }, + { + "id": "@jest/test-result@27.5.1", + "info": { + "name": "@jest/test-result", + "version": "27.5.1" + } + }, + { + "id": "collect-v8-coverage@1.0.2", + "info": { + "name": "collect-v8-coverage", + "version": "1.0.2" + } + }, + { + "id": "@jest/transform@27.5.1", + "info": { + "name": "@jest/transform", + "version": "27.5.1" + } + }, + { + "id": "babel-plugin-istanbul@6.1.1", + "info": { + "name": "babel-plugin-istanbul", + "version": "6.1.1" + } + }, + { + "id": "@istanbuljs/load-nyc-config@1.1.0", + "info": { + "name": "@istanbuljs/load-nyc-config", + "version": "1.1.0" + } + }, + { + "id": "get-package-type@0.1.0", + "info": { + "name": "get-package-type", + "version": "0.1.0" + } + }, + { + "id": "@istanbuljs/schema@0.1.3", + "info": { + "name": "@istanbuljs/schema", + "version": "0.1.3" + } + }, + { + "id": "istanbul-lib-instrument@5.2.1", + "info": { + "name": "istanbul-lib-instrument", + "version": "5.2.1" + } + }, + { + "id": "istanbul-lib-coverage@3.2.2", + "info": { + "name": "istanbul-lib-coverage", + "version": "3.2.2" + } + }, + { + "id": "test-exclude@6.0.0", + "info": { + "name": "test-exclude", + "version": "6.0.0" + } + }, + { + "id": "jest-haste-map@27.5.1", + "info": { + "name": "jest-haste-map", + "version": "27.5.1" + } + }, + { + "id": "@types/graceful-fs@4.1.9", + "info": { + "name": "@types/graceful-fs", + "version": "4.1.9" + } + }, + { + "id": "jest-regex-util@27.5.1", + "info": { + "name": "jest-regex-util", + "version": "27.5.1" + } + }, + { + "id": "jest-serializer@27.5.1", + "info": { + "name": "jest-serializer", + "version": "27.5.1" + } + }, + { + "id": "exit@0.1.2", + "info": { + "name": "exit", + "version": "0.1.2" + } + }, + { + "id": "istanbul-lib-report@3.0.1", + "info": { + "name": "istanbul-lib-report", + "version": "3.0.1" + } + }, + { + "id": "make-dir@4.0.0", + "info": { + "name": "make-dir", + "version": "4.0.0" + } + }, + { + "id": "istanbul-lib-source-maps@4.0.1", + "info": { + "name": "istanbul-lib-source-maps", + "version": "4.0.1" + } + }, + { + "id": "istanbul-reports@3.1.7", + "info": { + "name": "istanbul-reports", + "version": "3.1.7" + } + }, + { + "id": "html-escaper@2.0.2", + "info": { + "name": "html-escaper", + "version": "2.0.2" + } + }, + { + "id": "jest-resolve@27.5.1", + "info": { + "name": "jest-resolve", + "version": "27.5.1" + } + }, + { + "id": "jest-pnp-resolver@1.2.3", + "info": { + "name": "jest-pnp-resolver", + "version": "1.2.3" + } + }, + { + "id": "jest-validate@27.5.1", + "info": { + "name": "jest-validate", + "version": "27.5.1" + } + }, + { + "id": "jest-get-type@27.5.1", + "info": { + "name": "jest-get-type", + "version": "27.5.1" + } + }, + { + "id": "resolve.exports@1.1.0", + "info": { + "name": "resolve.exports", + "version": "1.1.0" + } + }, + { + "id": "string-length@4.0.2", + "info": { + "name": "string-length", + "version": "4.0.2" + } + }, + { + "id": "char-regex@1.0.2", + "info": { + "name": "char-regex", + "version": "1.0.2" + } + }, + { + "id": "terminal-link@2.1.1", + "info": { + "name": "terminal-link", + "version": "2.1.1" + } + }, + { + "id": "supports-hyperlinks@2.3.0", + "info": { + "name": "supports-hyperlinks", + "version": "2.3.0" + } + }, + { + "id": "v8-to-istanbul@8.1.1", + "info": { + "name": "v8-to-istanbul", + "version": "8.1.1" + } + }, + { + "id": "identity-obj-proxy@3.0.0", + "info": { + "name": "identity-obj-proxy", + "version": "3.0.0" + } + }, + { + "id": "harmony-reflect@1.6.2", + "info": { + "name": "harmony-reflect", + "version": "1.6.2" + } + }, + { + "id": "jest-config@27.5.1", + "info": { + "name": "jest-config", + "version": "27.5.1" + } + }, + { + "id": "@jest/test-sequencer@27.5.1", + "info": { + "name": "@jest/test-sequencer", + "version": "27.5.1" + } + }, + { + "id": "jest-runtime@27.5.1", + "info": { + "name": "jest-runtime", + "version": "27.5.1" + } + }, + { + "id": "@jest/environment@27.5.1", + "info": { + "name": "@jest/environment", + "version": "27.5.1" + } + }, + { + "id": "@jest/fake-timers@27.5.1", + "info": { + "name": "@jest/fake-timers", + "version": "27.5.1" + } + }, + { + "id": "@sinonjs/fake-timers@8.1.0", + "info": { + "name": "@sinonjs/fake-timers", + "version": "8.1.0" + } + }, + { + "id": "@sinonjs/commons@1.8.6", + "info": { + "name": "@sinonjs/commons", + "version": "1.8.6" + } + }, + { + "id": "jest-mock@27.5.1", + "info": { + "name": "jest-mock", + "version": "27.5.1" + } + }, + { + "id": "@jest/globals@27.5.1", + "info": { + "name": "@jest/globals", + "version": "27.5.1" + } + }, + { + "id": "expect@27.5.1", + "info": { + "name": "expect", + "version": "27.5.1" + } + }, + { + "id": "jest-matcher-utils@27.5.1", + "info": { + "name": "jest-matcher-utils", + "version": "27.5.1" + } + }, + { + "id": "jest-diff@27.5.1", + "info": { + "name": "jest-diff", + "version": "27.5.1" + } + }, + { + "id": "diff-sequences@27.5.1", + "info": { + "name": "diff-sequences", + "version": "27.5.1" + } + }, + { + "id": "@jest/source-map@27.5.1", + "info": { + "name": "@jest/source-map", + "version": "27.5.1" + } + }, + { + "id": "cjs-module-lexer@1.3.1", + "info": { + "name": "cjs-module-lexer", + "version": "1.3.1" + } + }, + { + "id": "jest-snapshot@27.5.1", + "info": { + "name": "jest-snapshot", + "version": "27.5.1" + } + }, + { + "id": "@types/babel__traverse@7.20.5", + "info": { + "name": "@types/babel__traverse", + "version": "7.20.5" + } + }, + { + "id": "@types/prettier@2.7.3", + "info": { + "name": "@types/prettier", + "version": "2.7.3" + } + }, + { + "id": "babel-preset-current-node-syntax@1.0.1", + "info": { + "name": "babel-preset-current-node-syntax", + "version": "1.0.1" + } + }, + { + "id": "@babel/plugin-syntax-bigint@7.8.3", + "info": { + "name": "@babel/plugin-syntax-bigint", + "version": "7.8.3" + } + }, + { + "id": "strip-bom@4.0.0", + "info": { + "name": "strip-bom", + "version": "4.0.0" + } + }, + { + "id": "babel-jest@27.5.1", + "info": { + "name": "babel-jest", + "version": "27.5.1" + } + }, + { + "id": "@types/babel__core@7.20.5", + "info": { + "name": "@types/babel__core", + "version": "7.20.5" + } + }, + { + "id": "@types/babel__generator@7.6.8", + "info": { + "name": "@types/babel__generator", + "version": "7.6.8" + } + }, + { + "id": "@types/babel__template@7.4.4", + "info": { + "name": "@types/babel__template", + "version": "7.4.4" + } + }, + { + "id": "babel-preset-jest@27.5.1", + "info": { + "name": "babel-preset-jest", + "version": "27.5.1" + } + }, + { + "id": "babel-plugin-jest-hoist@27.5.1", + "info": { + "name": "babel-plugin-jest-hoist", + "version": "27.5.1" + } + }, + { + "id": "jest-circus@27.5.1", + "info": { + "name": "jest-circus", + "version": "27.5.1" + } + }, + { + "id": "co@4.6.0", + "info": { + "name": "co", + "version": "4.6.0" + } + }, + { + "id": "dedent@0.7.0", + "info": { + "name": "dedent", + "version": "0.7.0" + } + }, + { + "id": "is-generator-fn@2.1.0", + "info": { + "name": "is-generator-fn", + "version": "2.1.0" + } + }, + { + "id": "jest-each@27.5.1", + "info": { + "name": "jest-each", + "version": "27.5.1" + } + }, + { + "id": "throat@6.0.2", + "info": { + "name": "throat", + "version": "6.0.2" + } + }, + { + "id": "jest-environment-jsdom@27.5.1", + "info": { + "name": "jest-environment-jsdom", + "version": "27.5.1" + } + }, + { + "id": "jsdom@16.7.0", + "info": { + "name": "jsdom", + "version": "16.7.0" + } + }, + { + "id": "abab@2.0.6", + "info": { + "name": "abab", + "version": "2.0.6" + } + }, + { + "id": "acorn-globals@6.0.0", + "info": { + "name": "acorn-globals", + "version": "6.0.0" + } + }, + { + "id": "acorn-walk@7.2.0", + "info": { + "name": "acorn-walk", + "version": "7.2.0" + } + }, + { + "id": "cssom@0.4.4", + "info": { + "name": "cssom", + "version": "0.4.4" + } + }, + { + "id": "cssstyle@2.3.0", + "info": { + "name": "cssstyle", + "version": "2.3.0" + } + }, + { + "id": "cssom@0.3.8", + "info": { + "name": "cssom", + "version": "0.3.8" + } + }, + { + "id": "data-urls@2.0.0", + "info": { + "name": "data-urls", + "version": "2.0.0" + } + }, + { + "id": "whatwg-mimetype@2.3.0", + "info": { + "name": "whatwg-mimetype", + "version": "2.3.0" + } + }, + { + "id": "whatwg-url@8.7.0", + "info": { + "name": "whatwg-url", + "version": "8.7.0" + } + }, + { + "id": "tr46@2.1.0", + "info": { + "name": "tr46", + "version": "2.1.0" + } + }, + { + "id": "webidl-conversions@6.1.0", + "info": { + "name": "webidl-conversions", + "version": "6.1.0" + } + }, + { + "id": "decimal.js@10.4.3", + "info": { + "name": "decimal.js", + "version": "10.4.3" + } + }, + { + "id": "domexception@2.0.1", + "info": { + "name": "domexception", + "version": "2.0.1" + } + }, + { + "id": "webidl-conversions@5.0.0", + "info": { + "name": "webidl-conversions", + "version": "5.0.0" + } + }, + { + "id": "escodegen@2.1.0", + "info": { + "name": "escodegen", + "version": "2.1.0" + } + }, + { + "id": "form-data@3.0.1", + "info": { + "name": "form-data", + "version": "3.0.1" + } + }, + { + "id": "html-encoding-sniffer@2.0.1", + "info": { + "name": "html-encoding-sniffer", + "version": "2.0.1" + } + }, + { + "id": "whatwg-encoding@1.0.5", + "info": { + "name": "whatwg-encoding", + "version": "1.0.5" + } + }, + { + "id": "http-proxy-agent@4.0.1", + "info": { + "name": "http-proxy-agent", + "version": "4.0.1" + } + }, + { + "id": "@tootallnate/once@1.1.2", + "info": { + "name": "@tootallnate/once", + "version": "1.1.2" + } + }, + { + "id": "agent-base@6.0.2", + "info": { + "name": "agent-base", + "version": "6.0.2" + } + }, + { + "id": "https-proxy-agent@5.0.1", + "info": { + "name": "https-proxy-agent", + "version": "5.0.1" + } + }, + { + "id": "is-potential-custom-element-name@1.0.1", + "info": { + "name": "is-potential-custom-element-name", + "version": "1.0.1" + } + }, + { + "id": "nwsapi@2.2.9", + "info": { + "name": "nwsapi", + "version": "2.2.9" + } + }, + { + "id": "saxes@5.0.1", + "info": { + "name": "saxes", + "version": "5.0.1" + } + }, + { + "id": "xmlchars@2.2.0", + "info": { + "name": "xmlchars", + "version": "2.2.0" + } + }, + { + "id": "symbol-tree@3.2.4", + "info": { + "name": "symbol-tree", + "version": "3.2.4" + } + }, + { + "id": "tough-cookie@4.1.4", + "info": { + "name": "tough-cookie", + "version": "4.1.4" + } + }, + { + "id": "psl@1.9.0", + "info": { + "name": "psl", + "version": "1.9.0" + } + }, + { + "id": "universalify@0.2.0", + "info": { + "name": "universalify", + "version": "0.2.0" + } + }, + { + "id": "url-parse@1.5.10", + "info": { + "name": "url-parse", + "version": "1.5.10" + } + }, + { + "id": "querystringify@2.2.0", + "info": { + "name": "querystringify", + "version": "2.2.0" + } + }, + { + "id": "requires-port@1.0.0", + "info": { + "name": "requires-port", + "version": "1.0.0" + } + }, + { + "id": "w3c-hr-time@1.0.2", + "info": { + "name": "w3c-hr-time", + "version": "1.0.2" + } + }, + { + "id": "browser-process-hrtime@1.0.0", + "info": { + "name": "browser-process-hrtime", + "version": "1.0.0" + } + }, + { + "id": "w3c-xmlserializer@2.0.0", + "info": { + "name": "w3c-xmlserializer", + "version": "2.0.0" + } + }, + { + "id": "xml-name-validator@3.0.0", + "info": { + "name": "xml-name-validator", + "version": "3.0.0" + } + }, + { + "id": "jest-environment-node@27.5.1", + "info": { + "name": "jest-environment-node", + "version": "27.5.1" + } + }, + { + "id": "jest-jasmine2@27.5.1", + "info": { + "name": "jest-jasmine2", + "version": "27.5.1" + } + }, + { + "id": "jest-runner@27.5.1", + "info": { + "name": "jest-runner", + "version": "27.5.1" + } + }, + { + "id": "emittery@0.8.1", + "info": { + "name": "emittery", + "version": "0.8.1" + } + }, + { + "id": "jest-docblock@27.5.1", + "info": { + "name": "jest-docblock", + "version": "27.5.1" + } + }, + { + "id": "detect-newline@3.1.0", + "info": { + "name": "detect-newline", + "version": "3.1.0" + } + }, + { + "id": "jest-leak-detector@27.5.1", + "info": { + "name": "jest-leak-detector", + "version": "27.5.1" + } + }, + { + "id": "@nrwl/linter@14.0.5", + "info": { + "name": "@nrwl/linter", + "version": "14.0.5" + } + }, + { + "id": "@phenomnomnominal/tsquery@4.1.1", + "info": { + "name": "@phenomnomnominal/tsquery", + "version": "4.1.1" + } + }, + { + "id": "@typescript-eslint/experimental-utils@5.18.0", + "info": { + "name": "@typescript-eslint/experimental-utils", + "version": "5.18.0" + } + }, + { + "id": "@typescript-eslint/utils@5.18.0", + "info": { + "name": "@typescript-eslint/utils", + "version": "5.18.0" + } + }, + { + "id": "@typescript-eslint/scope-manager@5.18.0", + "info": { + "name": "@typescript-eslint/scope-manager", + "version": "5.18.0" + } + }, + { + "id": "@typescript-eslint/types@5.18.0", + "info": { + "name": "@typescript-eslint/types", + "version": "5.18.0" + } + }, + { + "id": "@typescript-eslint/visitor-keys@5.18.0", + "info": { + "name": "@typescript-eslint/visitor-keys", + "version": "5.18.0" + } + }, + { + "id": "eslint-visitor-keys@3.4.3", + "info": { + "name": "eslint-visitor-keys", + "version": "3.4.3" + } + }, + { + "id": "@typescript-eslint/typescript-estree@5.18.0", + "info": { + "name": "@typescript-eslint/typescript-estree", + "version": "5.18.0" + } + }, + { + "id": "@nrwl/gatsby@13.2.3", + "info": { + "name": "@nrwl/gatsby", + "version": "13.2.3" + } + }, + { + "id": "@nrwl/cypress@13.2.3", + "info": { + "name": "@nrwl/cypress", + "version": "13.2.3" + } + }, + { + "id": "@cypress/webpack-preprocessor@5.17.1", + "info": { + "name": "@cypress/webpack-preprocessor", + "version": "5.17.1" + } + }, + { + "id": "bluebird@3.7.1", + "info": { + "name": "bluebird", + "version": "3.7.1" + } + }, + { + "id": "@nrwl/devkit@13.2.3", + "info": { + "name": "@nrwl/devkit", + "version": "13.2.3" + } + }, + { + "id": "@nrwl/tao@13.2.3", + "info": { + "name": "@nrwl/tao", + "version": "13.2.3" + } + }, + { + "id": "nx@13.2.3", + "info": { + "name": "nx", + "version": "13.2.3" + } + }, + { + "id": "yargs-parser@20.0.0", + "info": { + "name": "yargs-parser", + "version": "20.0.0" + } + }, + { + "id": "@nrwl/linter@13.2.3", + "info": { + "name": "@nrwl/linter", + "version": "13.2.3" + } + }, + { + "id": "@nrwl/jest@13.2.3", + "info": { + "name": "@nrwl/jest", + "version": "13.2.3" + } + }, + { + "id": "@jest/reporters@27.2.2", + "info": { + "name": "@jest/reporters", + "version": "27.2.2" + } + }, + { + "id": "@jest/test-result@27.2.2", + "info": { + "name": "@jest/test-result", + "version": "27.2.2" + } + }, + { + "id": "istanbul-lib-instrument@4.0.3", + "info": { + "name": "istanbul-lib-instrument", + "version": "4.0.3" + } + }, + { + "id": "jest-resolve@27.2.2", + "info": { + "name": "jest-resolve", + "version": "27.2.2" + } + }, + { + "id": "jest-util@27.2.0", + "info": { + "name": "jest-util", + "version": "27.2.0" + } + }, + { + "id": "is-ci@3.0.1", + "info": { + "name": "is-ci", + "version": "3.0.1" + } + }, + { + "id": "jest-config@27.2.2", + "info": { + "name": "jest-config", + "version": "27.2.2" + } + }, + { + "id": "@nrwl/workspace@13.2.3", + "info": { + "name": "@nrwl/workspace", + "version": "13.2.3" + } + }, + { + "id": "@nrwl/cli@13.2.3", + "info": { + "name": "@nrwl/cli", + "version": "13.2.3" + } + }, + { + "id": "@parcel/watcher@2.0.0-alpha.11", + "info": { + "name": "@parcel/watcher", + "version": "2.0.0-alpha.11" + } + }, + { + "id": "cosmiconfig@4.0.0", + "info": { + "name": "cosmiconfig", + "version": "4.0.0" + } + }, + { + "id": "npm-run-all@4.1.5", + "info": { + "name": "npm-run-all", + "version": "4.1.5" + } + }, + { + "id": "memorystream@0.3.1", + "info": { + "name": "memorystream", + "version": "0.3.1" + } + }, + { + "id": "pidtree@0.3.1", + "info": { + "name": "pidtree", + "version": "0.3.1" + } + }, + { + "id": "read-pkg@3.0.0", + "info": { + "name": "read-pkg", + "version": "3.0.0" + } + }, + { + "id": "load-json-file@4.0.0", + "info": { + "name": "load-json-file", + "version": "4.0.0" + } + }, + { + "id": "pify@3.0.0", + "info": { + "name": "pify", + "version": "3.0.0" + } + }, + { + "id": "normalize-package-data@2.5.0", + "info": { + "name": "normalize-package-data", + "version": "2.5.0" + } + }, + { + "id": "hosted-git-info@2.8.9", + "info": { + "name": "hosted-git-info", + "version": "2.8.9" + } + }, + { + "id": "validate-npm-package-license@3.0.4", + "info": { + "name": "validate-npm-package-license", + "version": "3.0.4" + } + }, + { + "id": "spdx-correct@3.2.0", + "info": { + "name": "spdx-correct", + "version": "3.2.0" + } + }, + { + "id": "spdx-expression-parse@3.0.1", + "info": { + "name": "spdx-expression-parse", + "version": "3.0.1" + } + }, + { + "id": "spdx-exceptions@2.5.0", + "info": { + "name": "spdx-exceptions", + "version": "2.5.0" + } + }, + { + "id": "spdx-license-ids@3.0.17", + "info": { + "name": "spdx-license-ids", + "version": "3.0.17" + } + }, + { + "id": "path-type@3.0.0", + "info": { + "name": "path-type", + "version": "3.0.0" + } + }, + { + "id": "string.prototype.padend@3.1.6", + "info": { + "name": "string.prototype.padend", + "version": "3.1.6" + } + }, + { + "id": "strip-ansi@6.0.0", + "info": { + "name": "strip-ansi", + "version": "6.0.0" + } + }, + { + "id": "fork-ts-checker-webpack-plugin@6.2.10", + "info": { + "name": "fork-ts-checker-webpack-plugin", + "version": "6.2.10" + } + }, + { + "id": "ts-loader@9.5.1", + "info": { + "name": "ts-loader", + "version": "9.5.1" + } + }, + { + "id": "tsconfig-paths-webpack-plugin@3.4.1", + "info": { + "name": "tsconfig-paths-webpack-plugin", + "version": "3.4.1" + } + }, + { + "id": "webpack-node-externals@3.0.0", + "info": { + "name": "webpack-node-externals", + "version": "3.0.0" + } + }, + { + "id": "@nrwl/react@13.2.3", + "info": { + "name": "@nrwl/react", + "version": "13.2.3" + } + }, + { + "id": "@nrwl/storybook@13.2.3", + "info": { + "name": "@nrwl/storybook", + "version": "13.2.3" + } + }, + { + "id": "@nrwl/web@13.2.3", + "info": { + "name": "@nrwl/web", + "version": "13.2.3" + } + }, + { + "id": "@babel/plugin-proposal-decorators@7.24.1", + "info": { + "name": "@babel/plugin-proposal-decorators", + "version": "7.24.1" + } + }, + { + "id": "@babel/plugin-syntax-decorators@7.24.1", + "info": { + "name": "@babel/plugin-syntax-decorators", + "version": "7.24.1" + } + }, + { + "id": "@rollup/plugin-babel@5.3.1", + "info": { + "name": "@rollup/plugin-babel", + "version": "5.3.1" + } + }, + { + "id": "@rollup/pluginutils@3.1.0", + "info": { + "name": "@rollup/pluginutils", + "version": "3.1.0" + } + }, + { + "id": "@types/estree@0.0.39", + "info": { + "name": "@types/estree", + "version": "0.0.39" + } + }, + { + "id": "estree-walker@1.0.1", + "info": { + "name": "estree-walker", + "version": "1.0.1" + } + }, + { + "id": "rollup@2.79.1", + "info": { + "name": "rollup", + "version": "2.79.1" + } + }, + { + "id": "@rollup/plugin-commonjs@20.0.0", + "info": { + "name": "@rollup/plugin-commonjs", + "version": "20.0.0" + } + }, + { + "id": "estree-walker@2.0.2", + "info": { + "name": "estree-walker", + "version": "2.0.2" + } + }, + { + "id": "is-reference@1.2.1", + "info": { + "name": "is-reference", + "version": "1.2.1" + } + }, + { + "id": "magic-string@0.25.9", + "info": { + "name": "magic-string", + "version": "0.25.9" + } + }, + { + "id": "sourcemap-codec@1.4.8", + "info": { + "name": "sourcemap-codec", + "version": "1.4.8" + } + }, + { + "id": "@rollup/plugin-image@2.1.1", + "info": { + "name": "@rollup/plugin-image", + "version": "2.1.1" + } + }, + { + "id": "mini-svg-data-uri@1.4.4", + "info": { + "name": "mini-svg-data-uri", + "version": "1.4.4" + } + }, + { + "id": "@rollup/plugin-json@4.1.0", + "info": { + "name": "@rollup/plugin-json", + "version": "4.1.0" + } + }, + { + "id": "@rollup/plugin-node-resolve@13.3.0", + "info": { + "name": "@rollup/plugin-node-resolve", + "version": "13.3.0" + } + }, + { + "id": "@types/resolve@1.17.1", + "info": { + "name": "@types/resolve", + "version": "1.17.1" + } + }, + { + "id": "is-builtin-module@3.2.1", + "info": { + "name": "is-builtin-module", + "version": "3.2.1" + } + }, + { + "id": "builtin-modules@3.3.0", + "info": { + "name": "builtin-modules", + "version": "3.3.0" + } + }, + { + "id": "is-module@1.0.0", + "info": { + "name": "is-module", + "version": "1.0.0" + } + }, + { + "id": "babel-plugin-const-enum@1.2.0", + "info": { + "name": "babel-plugin-const-enum", + "version": "1.2.0" + } + }, + { + "id": "babel-plugin-macros@2.8.0", + "info": { + "name": "babel-plugin-macros", + "version": "2.8.0" + } + }, + { + "id": "babel-plugin-transform-async-to-promises@0.8.18", + "info": { + "name": "babel-plugin-transform-async-to-promises", + "version": "0.8.18" + } + }, + { + "id": "babel-plugin-transform-typescript-metadata@0.3.2", + "info": { + "name": "babel-plugin-transform-typescript-metadata", + "version": "0.3.2" + } + }, + { + "id": "copy-webpack-plugin@9.1.0", + "info": { + "name": "copy-webpack-plugin", + "version": "9.1.0" + } + }, + { + "id": "glob-parent@6.0.2", + "info": { + "name": "glob-parent", + "version": "6.0.2" + } + }, + { + "id": "css-loader@6.11.0", + "info": { + "name": "css-loader", + "version": "6.11.0" + } + }, + { + "id": "css-minimizer-webpack-plugin@3.4.1", + "info": { + "name": "css-minimizer-webpack-plugin", + "version": "3.4.1" + } + }, + { + "id": "schema-utils@4.2.0", + "info": { + "name": "schema-utils", + "version": "4.2.0" + } + }, + { + "id": "ajv-formats@2.1.1", + "info": { + "name": "ajv-formats", + "version": "2.1.1" + } + }, + { + "id": "ajv-keywords@5.1.0", + "info": { + "name": "ajv-keywords", + "version": "5.1.0" + } + }, + { + "id": "http-server@0.12.3", + "info": { + "name": "http-server", + "version": "0.12.3" + } + }, + { + "id": "basic-auth@1.1.0", + "info": { + "name": "basic-auth", + "version": "1.1.0" + } + }, + { + "id": "colors@1.4.0", + "info": { + "name": "colors", + "version": "1.4.0" + } + }, + { + "id": "corser@2.0.1", + "info": { + "name": "corser", + "version": "2.0.1" + } + }, + { + "id": "ecstatic@3.3.2", + "info": { + "name": "ecstatic", + "version": "3.3.2" + } + }, + { + "id": "url-join@2.0.5", + "info": { + "name": "url-join", + "version": "2.0.5" + } + }, + { + "id": "http-proxy@1.18.1", + "info": { + "name": "http-proxy", + "version": "1.18.1" + } + }, + { + "id": "opener@1.5.2", + "info": { + "name": "opener", + "version": "1.5.2" + } + }, + { + "id": "portfinder@1.0.32", + "info": { + "name": "portfinder", + "version": "1.0.32" + } + }, + { + "id": "async@2.6.4", + "info": { + "name": "async", + "version": "2.6.4" + } + }, + { + "id": "secure-compare@3.0.1", + "info": { + "name": "secure-compare", + "version": "3.0.1" + } + }, + { + "id": "union@0.5.0", + "info": { + "name": "union", + "version": "0.5.0" + } + }, + { + "id": "less@3.12.2", + "info": { + "name": "less", + "version": "3.12.2" + } + }, + { + "id": "less-loader@10.2.0", + "info": { + "name": "less-loader", + "version": "10.2.0" + } + }, + { + "id": "license-webpack-plugin@2.3.15", + "info": { + "name": "license-webpack-plugin", + "version": "2.3.15" + } + }, + { + "id": "@types/webpack-sources@0.1.12", + "info": { + "name": "@types/webpack-sources", + "version": "0.1.12" + } + }, + { + "id": "@types/source-list-map@0.1.6", + "info": { + "name": "@types/source-list-map", + "version": "0.1.6" + } + }, + { + "id": "loader-utils@1.2.3", + "info": { + "name": "loader-utils", + "version": "1.2.3" + } + }, + { + "id": "emojis-list@2.1.0", + "info": { + "name": "emojis-list", + "version": "2.1.0" + } + }, + { + "id": "mini-css-extract-plugin@2.9.0", + "info": { + "name": "mini-css-extract-plugin", + "version": "2.9.0" + } + }, + { + "id": "parse5@4.0.0", + "info": { + "name": "parse5", + "version": "4.0.0" + } + }, + { + "id": "parse5-html-rewriting-stream@6.0.1", + "info": { + "name": "parse5-html-rewriting-stream", + "version": "6.0.1" + } + }, + { + "id": "parse5-sax-parser@6.0.1", + "info": { + "name": "parse5-sax-parser", + "version": "6.0.1" + } + }, + { + "id": "postcss@8.3.0", + "info": { + "name": "postcss", + "version": "8.3.0" + } + }, + { + "id": "source-map-js@0.6.2", + "info": { + "name": "source-map-js", + "version": "0.6.2" + } + }, + { + "id": "postcss-import@14.0.2", + "info": { + "name": "postcss-import", + "version": "14.0.2" + } + }, + { + "id": "read-cache@1.0.0", + "info": { + "name": "read-cache", + "version": "1.0.0" + } + }, + { + "id": "pify@2.3.0", + "info": { + "name": "pify", + "version": "2.3.0" + } + }, + { + "id": "postcss-loader@6.2.1", + "info": { + "name": "postcss-loader", + "version": "6.2.1" + } + }, + { + "id": "react-refresh@0.10.0", + "info": { + "name": "react-refresh", + "version": "0.10.0" + } + }, + { + "id": "rollup-plugin-copy@3.5.0", + "info": { + "name": "rollup-plugin-copy", + "version": "3.5.0" + } + }, + { + "id": "@types/fs-extra@8.1.5", + "info": { + "name": "@types/fs-extra", + "version": "8.1.5" + } + }, + { + "id": "globby@10.0.1", + "info": { + "name": "globby", + "version": "10.0.1" + } + }, + { + "id": "@types/glob@7.2.0", + "info": { + "name": "@types/glob", + "version": "7.2.0" + } + }, + { + "id": "is-plain-object@3.0.1", + "info": { + "name": "is-plain-object", + "version": "3.0.1" + } + }, + { + "id": "rollup-plugin-peer-deps-external@2.2.4", + "info": { + "name": "rollup-plugin-peer-deps-external", + "version": "2.2.4" + } + }, + { + "id": "rollup-plugin-postcss@4.0.2", + "info": { + "name": "rollup-plugin-postcss", + "version": "4.0.2" + } + }, + { + "id": "concat-with-sourcemaps@1.1.0", + "info": { + "name": "concat-with-sourcemaps", + "version": "1.1.0" + } + }, + { + "id": "import-cwd@3.0.0", + "info": { + "name": "import-cwd", + "version": "3.0.0" + } + }, + { + "id": "import-from@3.0.0", + "info": { + "name": "import-from", + "version": "3.0.0" + } + }, + { + "id": "pify@5.0.0", + "info": { + "name": "pify", + "version": "5.0.0" + } + }, + { + "id": "postcss-load-config@3.1.4", + "info": { + "name": "postcss-load-config", + "version": "3.1.4" + } + }, + { + "id": "postcss-modules@4.3.1", + "info": { + "name": "postcss-modules", + "version": "4.3.1" + } + }, + { + "id": "generic-names@4.0.0", + "info": { + "name": "generic-names", + "version": "4.0.0" + } + }, + { + "id": "icss-replace-symbols@1.1.0", + "info": { + "name": "icss-replace-symbols", + "version": "1.1.0" + } + }, + { + "id": "lodash.camelcase@4.3.0", + "info": { + "name": "lodash.camelcase", + "version": "4.3.0" + } + }, + { + "id": "string-hash@1.1.3", + "info": { + "name": "string-hash", + "version": "1.1.3" + } + }, + { + "id": "promise.series@0.2.0", + "info": { + "name": "promise.series", + "version": "0.2.0" + } + }, + { + "id": "rollup-pluginutils@2.8.2", + "info": { + "name": "rollup-pluginutils", + "version": "2.8.2" + } + }, + { + "id": "estree-walker@0.6.1", + "info": { + "name": "estree-walker", + "version": "0.6.1" + } + }, + { + "id": "safe-identifier@0.4.2", + "info": { + "name": "safe-identifier", + "version": "0.4.2" + } + }, + { + "id": "style-inject@0.3.0", + "info": { + "name": "style-inject", + "version": "0.3.0" + } + }, + { + "id": "rollup-plugin-typescript2@0.30.0", + "info": { + "name": "rollup-plugin-typescript2", + "version": "0.30.0" + } + }, + { + "id": "@rollup/pluginutils@4.2.1", + "info": { + "name": "@rollup/pluginutils", + "version": "4.2.1" + } + }, + { + "id": "resolve@1.20.0", + "info": { + "name": "resolve", + "version": "1.20.0" + } + }, + { + "id": "tslib@2.1.0", + "info": { + "name": "tslib", + "version": "2.1.0" + } + }, + { + "id": "sass@1.77.0", + "info": { + "name": "sass", + "version": "1.77.0" + } + }, + { + "id": "immutable@4.3.5", + "info": { + "name": "immutable", + "version": "4.3.5" + } + }, + { + "id": "sass-loader@12.6.0", + "info": { + "name": "sass-loader", + "version": "12.6.0" + } + }, + { + "id": "source-map@0.7.3", + "info": { + "name": "source-map", + "version": "0.7.3" + } + }, + { + "id": "source-map-loader@3.0.2", + "info": { + "name": "source-map-loader", + "version": "3.0.2" + } + }, + { + "id": "iconv-lite@0.6.3", + "info": { + "name": "iconv-lite", + "version": "0.6.3" + } + }, + { + "id": "style-loader@3.3.4", + "info": { + "name": "style-loader", + "version": "3.3.4" + } + }, + { + "id": "stylus@0.55.0", + "info": { + "name": "stylus", + "version": "0.55.0" + } + }, + { + "id": "css@3.0.0", + "info": { + "name": "css", + "version": "3.0.0" + } + }, + { + "id": "source-map-resolve@0.6.0", + "info": { + "name": "source-map-resolve", + "version": "0.6.0" + } + }, + { + "id": "atob@2.1.2", + "info": { + "name": "atob", + "version": "2.1.2" + } + }, + { + "id": "debug@3.1.0", + "info": { + "name": "debug", + "version": "3.1.0" + } + }, + { + "id": "sax@1.2.4", + "info": { + "name": "sax", + "version": "1.2.4" + } + }, + { + "id": "stylus-loader@6.2.0", + "info": { + "name": "stylus-loader", + "version": "6.2.0" + } + }, + { + "id": "terser@4.3.8", + "info": { + "name": "terser", + "version": "4.3.8" + } + }, + { + "id": "ts-node@9.1.1", + "info": { + "name": "ts-node", + "version": "9.1.1" + } + }, + { + "id": "arg@4.1.3", + "info": { + "name": "arg", + "version": "4.1.3" + } + }, + { + "id": "create-require@1.1.1", + "info": { + "name": "create-require", + "version": "1.1.1" + } + }, + { + "id": "diff@4.0.2", + "info": { + "name": "diff", + "version": "4.0.2" + } + }, + { + "id": "make-error@1.3.6", + "info": { + "name": "make-error", + "version": "1.3.6" + } + }, + { + "id": "yn@3.1.1", + "info": { + "name": "yn", + "version": "3.1.1" + } + }, + { + "id": "webpack-dev-server@4.15.2", + "info": { + "name": "webpack-dev-server", + "version": "4.15.2" + } + }, + { + "id": "@types/bonjour@3.5.13", + "info": { + "name": "@types/bonjour", + "version": "3.5.13" + } + }, + { + "id": "@types/connect-history-api-fallback@1.5.4", + "info": { + "name": "@types/connect-history-api-fallback", + "version": "1.5.4" + } + }, + { + "id": "@types/express-serve-static-core@4.19.0", + "info": { + "name": "@types/express-serve-static-core", + "version": "4.19.0" + } + }, + { + "id": "@types/qs@6.9.15", + "info": { + "name": "@types/qs", + "version": "6.9.15" + } + }, + { + "id": "@types/range-parser@1.2.7", + "info": { + "name": "@types/range-parser", + "version": "1.2.7" + } + }, + { + "id": "@types/send@0.17.4", + "info": { + "name": "@types/send", + "version": "0.17.4" + } + }, + { + "id": "@types/mime@1.3.5", + "info": { + "name": "@types/mime", + "version": "1.3.5" + } + }, + { + "id": "@types/express@4.17.21", + "info": { + "name": "@types/express", + "version": "4.17.21" + } + }, + { + "id": "@types/body-parser@1.19.5", + "info": { + "name": "@types/body-parser", + "version": "1.19.5" + } + }, + { + "id": "@types/connect@3.4.38", + "info": { + "name": "@types/connect", + "version": "3.4.38" + } + }, + { + "id": "@types/serve-static@1.15.7", + "info": { + "name": "@types/serve-static", + "version": "1.15.7" + } + }, + { + "id": "@types/http-errors@2.0.4", + "info": { + "name": "@types/http-errors", + "version": "2.0.4" + } + }, + { + "id": "@types/serve-index@1.9.4", + "info": { + "name": "@types/serve-index", + "version": "1.9.4" + } + }, + { + "id": "@types/sockjs@0.3.36", + "info": { + "name": "@types/sockjs", + "version": "0.3.36" + } + }, + { + "id": "@types/ws@8.5.10", + "info": { + "name": "@types/ws", + "version": "8.5.10" + } + }, + { + "id": "bonjour-service@1.2.1", + "info": { + "name": "bonjour-service", + "version": "1.2.1" + } + }, + { + "id": "multicast-dns@7.2.5", + "info": { + "name": "multicast-dns", + "version": "7.2.5" + } + }, + { + "id": "dns-packet@5.6.1", + "info": { + "name": "dns-packet", + "version": "5.6.1" + } + }, + { + "id": "@leichtgewicht/ip-codec@2.0.5", + "info": { + "name": "@leichtgewicht/ip-codec", + "version": "2.0.5" + } + }, + { + "id": "thunky@1.1.0", + "info": { + "name": "thunky", + "version": "1.1.0" + } + }, + { + "id": "connect-history-api-fallback@2.0.0", + "info": { + "name": "connect-history-api-fallback", + "version": "2.0.0" + } + }, + { + "id": "default-gateway@6.0.3", + "info": { + "name": "default-gateway", + "version": "6.0.3" + } + }, + { + "id": "http-proxy-middleware@2.0.6", + "info": { + "name": "http-proxy-middleware", + "version": "2.0.6" + } + }, + { + "id": "is-plain-obj@3.0.0", + "info": { + "name": "is-plain-obj", + "version": "3.0.0" + } + }, + { + "id": "ipaddr.js@2.2.0", + "info": { + "name": "ipaddr.js", + "version": "2.2.0" + } + }, + { + "id": "launch-editor@2.6.1", + "info": { + "name": "launch-editor", + "version": "2.6.1" + } + }, + { + "id": "p-retry@4.6.2", + "info": { + "name": "p-retry", + "version": "4.6.2" + } + }, + { + "id": "@types/retry@0.12.0", + "info": { + "name": "@types/retry", + "version": "0.12.0" + } + }, + { + "id": "retry@0.13.1", + "info": { + "name": "retry", + "version": "0.13.1" + } + }, + { + "id": "serve-index@1.9.1", + "info": { + "name": "serve-index", + "version": "1.9.1" + } + }, + { + "id": "batch@0.6.1", + "info": { + "name": "batch", + "version": "0.6.1" + } + }, + { + "id": "http-errors@1.6.3", + "info": { + "name": "http-errors", + "version": "1.6.3" + } + }, + { + "id": "inherits@2.0.3", + "info": { + "name": "inherits", + "version": "2.0.3" + } + }, + { + "id": "setprototypeof@1.1.0", + "info": { + "name": "setprototypeof", + "version": "1.1.0" + } + }, + { + "id": "sockjs@0.3.24", + "info": { + "name": "sockjs", + "version": "0.3.24" + } + }, + { + "id": "faye-websocket@0.11.4", + "info": { + "name": "faye-websocket", + "version": "0.11.4" + } + }, + { + "id": "websocket-driver@0.7.4", + "info": { + "name": "websocket-driver", + "version": "0.7.4" + } + }, + { + "id": "http-parser-js@0.5.8", + "info": { + "name": "http-parser-js", + "version": "0.5.8" + } + }, + { + "id": "websocket-extensions@0.1.4", + "info": { + "name": "websocket-extensions", + "version": "0.1.4" + } + }, + { + "id": "spdy@4.0.2", + "info": { + "name": "spdy", + "version": "4.0.2" + } + }, + { + "id": "handle-thing@2.0.1", + "info": { + "name": "handle-thing", + "version": "2.0.1" + } + }, + { + "id": "http-deceiver@1.2.7", + "info": { + "name": "http-deceiver", + "version": "1.2.7" + } + }, + { + "id": "select-hose@2.0.0", + "info": { + "name": "select-hose", + "version": "2.0.0" + } + }, + { + "id": "spdy-transport@3.0.0", + "info": { + "name": "spdy-transport", + "version": "3.0.0" + } + }, + { + "id": "detect-node@2.1.0", + "info": { + "name": "detect-node", + "version": "2.1.0" + } + }, + { + "id": "hpack.js@2.1.6", + "info": { + "name": "hpack.js", + "version": "2.1.6" + } + }, + { + "id": "obuf@1.1.2", + "info": { + "name": "obuf", + "version": "1.1.2" + } + }, + { + "id": "wbuf@1.7.3", + "info": { + "name": "wbuf", + "version": "1.7.3" + } + }, + { + "id": "minimalistic-assert@1.0.1", + "info": { + "name": "minimalistic-assert", + "version": "1.0.1" + } + }, + { + "id": "webpack-dev-middleware@5.3.4", + "info": { + "name": "webpack-dev-middleware", + "version": "5.3.4" + } + }, + { + "id": "ws@8.17.0", + "info": { + "name": "ws", + "version": "8.17.0" + } + }, + { + "id": "webpack-subresource-integrity@1.5.2", + "info": { + "name": "webpack-subresource-integrity", + "version": "1.5.2" + } + }, + { + "id": "worker-plugin@3.2.0", + "info": { + "name": "worker-plugin", + "version": "3.2.0" + } + }, + { + "id": "@storybook/node-logger@6.1.20", + "info": { + "name": "@storybook/node-logger", + "version": "6.1.20" + } + }, + { + "id": "@types/npmlog@4.1.6", + "info": { + "name": "@types/npmlog", + "version": "4.1.6" + } + }, + { + "id": "npmlog@4.1.2", + "info": { + "name": "npmlog", + "version": "4.1.2" + } + }, + { + "id": "are-we-there-yet@1.1.7", + "info": { + "name": "are-we-there-yet", + "version": "1.1.7" + } + }, + { + "id": "delegates@1.0.0", + "info": { + "name": "delegates", + "version": "1.0.0" + } + }, + { + "id": "console-control-strings@1.1.0", + "info": { + "name": "console-control-strings", + "version": "1.1.0" + } + }, + { + "id": "gauge@2.7.4", + "info": { + "name": "gauge", + "version": "2.7.4" + } + }, + { + "id": "aproba@1.2.0", + "info": { + "name": "aproba", + "version": "1.2.0" + } + }, + { + "id": "has-unicode@2.0.1", + "info": { + "name": "has-unicode", + "version": "2.0.1" + } + }, + { + "id": "string-width@1.0.2", + "info": { + "name": "string-width", + "version": "1.0.2" + } + }, + { + "id": "code-point-at@1.1.0", + "info": { + "name": "code-point-at", + "version": "1.1.0" + } + }, + { + "id": "is-fullwidth-code-point@1.0.0", + "info": { + "name": "is-fullwidth-code-point", + "version": "1.0.0" + } + }, + { + "id": "number-is-nan@1.0.1", + "info": { + "name": "number-is-nan", + "version": "1.0.1" + } + }, + { + "id": "wide-align@1.1.5", + "info": { + "name": "wide-align", + "version": "1.1.5" + } + }, + { + "id": "pretty-hrtime@1.0.3", + "info": { + "name": "pretty-hrtime", + "version": "1.0.3" + } + }, + { + "id": "@svgr/webpack@5.5.0", + "info": { + "name": "@svgr/webpack", + "version": "5.5.0" + } + }, + { + "id": "@svgr/core@5.5.0", + "info": { + "name": "@svgr/core", + "version": "5.5.0" + } + }, + { + "id": "@svgr/plugin-jsx@5.5.0", + "info": { + "name": "@svgr/plugin-jsx", + "version": "5.5.0" + } + }, + { + "id": "@svgr/babel-preset@5.5.0", + "info": { + "name": "@svgr/babel-preset", + "version": "5.5.0" + } + }, + { + "id": "@svgr/babel-plugin-add-jsx-attribute@5.4.0", + "info": { + "name": "@svgr/babel-plugin-add-jsx-attribute", + "version": "5.4.0" + } + }, + { + "id": "@svgr/babel-plugin-remove-jsx-attribute@5.4.0", + "info": { + "name": "@svgr/babel-plugin-remove-jsx-attribute", + "version": "5.4.0" + } + }, + { + "id": "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1", + "info": { + "name": "@svgr/babel-plugin-remove-jsx-empty-expression", + "version": "5.0.1" + } + }, + { + "id": "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1", + "info": { + "name": "@svgr/babel-plugin-replace-jsx-attribute-value", + "version": "5.0.1" + } + }, + { + "id": "@svgr/babel-plugin-svg-dynamic-title@5.4.0", + "info": { + "name": "@svgr/babel-plugin-svg-dynamic-title", + "version": "5.4.0" + } + }, + { + "id": "@svgr/babel-plugin-svg-em-dimensions@5.4.0", + "info": { + "name": "@svgr/babel-plugin-svg-em-dimensions", + "version": "5.4.0" + } + }, + { + "id": "@svgr/babel-plugin-transform-react-native-svg@5.4.0", + "info": { + "name": "@svgr/babel-plugin-transform-react-native-svg", + "version": "5.4.0" + } + }, + { + "id": "@svgr/babel-plugin-transform-svg-component@5.5.0", + "info": { + "name": "@svgr/babel-plugin-transform-svg-component", + "version": "5.5.0" + } + }, + { + "id": "@svgr/hast-util-to-babel-ast@5.5.0", + "info": { + "name": "@svgr/hast-util-to-babel-ast", + "version": "5.5.0" + } + }, + { + "id": "@svgr/plugin-svgo@5.5.0", + "info": { + "name": "@svgr/plugin-svgo", + "version": "5.5.0" + } + }, + { + "id": "svgo@1.3.2", + "info": { + "name": "svgo", + "version": "1.3.2" + } + }, + { + "id": "coa@2.0.2", + "info": { + "name": "coa", + "version": "2.0.2" + } + }, + { + "id": "@types/q@1.5.8", + "info": { + "name": "@types/q", + "version": "1.5.8" + } + }, + { + "id": "q@1.5.1", + "info": { + "name": "q", + "version": "1.5.1" + } + }, + { + "id": "css-select@2.1.0", + "info": { + "name": "css-select", + "version": "2.1.0" + } + }, + { + "id": "css-what@3.4.2", + "info": { + "name": "css-what", + "version": "3.4.2" + } + }, + { + "id": "css-select-base-adapter@0.1.1", + "info": { + "name": "css-select-base-adapter", + "version": "0.1.1" + } + }, + { + "id": "css-tree@1.0.0-alpha.37", + "info": { + "name": "css-tree", + "version": "1.0.0-alpha.37" + } + }, + { + "id": "mdn-data@2.0.4", + "info": { + "name": "mdn-data", + "version": "2.0.4" + } + }, + { + "id": "unquote@1.1.1", + "info": { + "name": "unquote", + "version": "1.1.1" + } + }, + { + "id": "util.promisify@1.0.1", + "info": { + "name": "util.promisify", + "version": "1.0.1" + } + }, + { + "id": "object.getownpropertydescriptors@2.1.8", + "info": { + "name": "object.getownpropertydescriptors", + "version": "2.1.8" + } + }, + { + "id": "array.prototype.reduce@1.0.7", + "info": { + "name": "array.prototype.reduce", + "version": "1.0.7" + } + }, + { + "id": "es-array-method-boxes-properly@1.0.0", + "info": { + "name": "es-array-method-boxes-properly", + "version": "1.0.0" + } + }, + { + "id": "gatsby-codemods@3.25.0", + "info": { + "name": "gatsby-codemods", + "version": "3.25.0" + } + }, + { + "id": "jscodeshift@0.12.0", + "info": { + "name": "jscodeshift", + "version": "0.12.0" + } + }, + { + "id": "micromatch@3.1.10", + "info": { + "name": "micromatch", + "version": "3.1.10" + } + }, + { + "id": "arr-diff@4.0.0", + "info": { + "name": "arr-diff", + "version": "4.0.0" + } + }, + { + "id": "array-unique@0.3.2", + "info": { + "name": "array-unique", + "version": "0.3.2" + } + }, + { + "id": "braces@2.3.2", + "info": { + "name": "braces", + "version": "2.3.2" + } + }, + { + "id": "arr-flatten@1.1.0", + "info": { + "name": "arr-flatten", + "version": "1.1.0" + } + }, + { + "id": "fill-range@4.0.0", + "info": { + "name": "fill-range", + "version": "4.0.0" + } + }, + { + "id": "is-number@3.0.0", + "info": { + "name": "is-number", + "version": "3.0.0" + } + }, + { + "id": "kind-of@3.2.2", + "info": { + "name": "kind-of", + "version": "3.2.2" + } + }, + { + "id": "is-buffer@1.1.6", + "info": { + "name": "is-buffer", + "version": "1.1.6" + } + }, + { + "id": "to-regex-range@2.1.1", + "info": { + "name": "to-regex-range", + "version": "2.1.1" + } + }, + { + "id": "repeat-element@1.1.4", + "info": { + "name": "repeat-element", + "version": "1.1.4" + } + }, + { + "id": "snapdragon@0.8.2", + "info": { + "name": "snapdragon", + "version": "0.8.2" + } + }, + { + "id": "base@0.11.2", + "info": { + "name": "base", + "version": "0.11.2" + } + }, + { + "id": "cache-base@1.0.1", + "info": { + "name": "cache-base", + "version": "1.0.1" + } + }, + { + "id": "collection-visit@1.0.0", + "info": { + "name": "collection-visit", + "version": "1.0.0" + } + }, + { + "id": "map-visit@1.0.0", + "info": { + "name": "map-visit", + "version": "1.0.0" + } + }, + { + "id": "object-visit@1.0.1", + "info": { + "name": "object-visit", + "version": "1.0.1" + } + }, + { + "id": "component-emitter@1.3.1", + "info": { + "name": "component-emitter", + "version": "1.3.1" + } + }, + { + "id": "get-value@2.0.6", + "info": { + "name": "get-value", + "version": "2.0.6" + } + }, + { + "id": "has-value@1.0.0", + "info": { + "name": "has-value", + "version": "1.0.0" + } + }, + { + "id": "has-values@1.0.0", + "info": { + "name": "has-values", + "version": "1.0.0" + } + }, + { + "id": "kind-of@4.0.0", + "info": { + "name": "kind-of", + "version": "4.0.0" + } + }, + { + "id": "set-value@2.0.1", + "info": { + "name": "set-value", + "version": "2.0.1" + } + }, + { + "id": "split-string@3.1.0", + "info": { + "name": "split-string", + "version": "3.1.0" + } + }, + { + "id": "extend-shallow@3.0.2", + "info": { + "name": "extend-shallow", + "version": "3.0.2" + } + }, + { + "id": "assign-symbols@1.0.0", + "info": { + "name": "assign-symbols", + "version": "1.0.0" + } + }, + { + "id": "is-extendable@1.0.1", + "info": { + "name": "is-extendable", + "version": "1.0.1" + } + }, + { + "id": "to-object-path@0.3.0", + "info": { + "name": "to-object-path", + "version": "0.3.0" + } + }, + { + "id": "union-value@1.0.1", + "info": { + "name": "union-value", + "version": "1.0.1" + } + }, + { + "id": "arr-union@3.1.0", + "info": { + "name": "arr-union", + "version": "3.1.0" + } + }, + { + "id": "unset-value@1.0.0", + "info": { + "name": "unset-value", + "version": "1.0.0" + } + }, + { + "id": "has-value@0.3.1", + "info": { + "name": "has-value", + "version": "0.3.1" + } + }, + { + "id": "has-values@0.1.4", + "info": { + "name": "has-values", + "version": "0.1.4" + } + }, + { + "id": "isobject@2.1.0", + "info": { + "name": "isobject", + "version": "2.1.0" + } + }, + { + "id": "class-utils@0.3.6", + "info": { + "name": "class-utils", + "version": "0.3.6" + } + }, + { + "id": "define-property@0.2.5", + "info": { + "name": "define-property", + "version": "0.2.5" + } + }, + { + "id": "is-descriptor@0.1.7", + "info": { + "name": "is-descriptor", + "version": "0.1.7" + } + }, + { + "id": "is-accessor-descriptor@1.0.1", + "info": { + "name": "is-accessor-descriptor", + "version": "1.0.1" + } + }, + { + "id": "is-data-descriptor@1.0.1", + "info": { + "name": "is-data-descriptor", + "version": "1.0.1" + } + }, + { + "id": "static-extend@0.1.2", + "info": { + "name": "static-extend", + "version": "0.1.2" + } + }, + { + "id": "object-copy@0.1.0", + "info": { + "name": "object-copy", + "version": "0.1.0" + } + }, + { + "id": "copy-descriptor@0.1.1", + "info": { + "name": "copy-descriptor", + "version": "0.1.1" + } + }, + { + "id": "define-property@1.0.0", + "info": { + "name": "define-property", + "version": "1.0.0" + } + }, + { + "id": "is-descriptor@1.0.3", + "info": { + "name": "is-descriptor", + "version": "1.0.3" + } + }, + { + "id": "mixin-deep@1.3.2", + "info": { + "name": "mixin-deep", + "version": "1.3.2" + } + }, + { + "id": "for-in@1.0.2", + "info": { + "name": "for-in", + "version": "1.0.2" + } + }, + { + "id": "pascalcase@0.1.1", + "info": { + "name": "pascalcase", + "version": "0.1.1" + } + }, + { + "id": "source-map-resolve@0.5.3", + "info": { + "name": "source-map-resolve", + "version": "0.5.3" + } + }, + { + "id": "resolve-url@0.2.1", + "info": { + "name": "resolve-url", + "version": "0.2.1" + } + }, + { + "id": "source-map-url@0.4.1", + "info": { + "name": "source-map-url", + "version": "0.4.1" + } + }, + { + "id": "urix@0.1.0", + "info": { + "name": "urix", + "version": "0.1.0" + } + }, + { + "id": "use@3.1.1", + "info": { + "name": "use", + "version": "3.1.1" + } + }, + { + "id": "snapdragon-node@2.1.1", + "info": { + "name": "snapdragon-node", + "version": "2.1.1" + } + }, + { + "id": "snapdragon-util@3.0.1", + "info": { + "name": "snapdragon-util", + "version": "3.0.1" + } + }, + { + "id": "to-regex@3.0.2", + "info": { + "name": "to-regex", + "version": "3.0.2" + } + }, + { + "id": "define-property@2.0.2", + "info": { + "name": "define-property", + "version": "2.0.2" + } + }, + { + "id": "regex-not@1.0.2", + "info": { + "name": "regex-not", + "version": "1.0.2" + } + }, + { + "id": "safe-regex@1.1.0", + "info": { + "name": "safe-regex", + "version": "1.1.0" + } + }, + { + "id": "ret@0.1.15", + "info": { + "name": "ret", + "version": "0.1.15" + } + }, + { + "id": "extglob@2.0.4", + "info": { + "name": "extglob", + "version": "2.0.4" + } + }, + { + "id": "expand-brackets@2.1.4", + "info": { + "name": "expand-brackets", + "version": "2.1.4" + } + }, + { + "id": "posix-character-classes@0.1.1", + "info": { + "name": "posix-character-classes", + "version": "0.1.1" + } + }, + { + "id": "fragment-cache@0.2.1", + "info": { + "name": "fragment-cache", + "version": "0.2.1" + } + }, + { + "id": "nanomatch@1.2.13", + "info": { + "name": "nanomatch", + "version": "1.2.13" + } + }, + { + "id": "object.pick@1.3.0", + "info": { + "name": "object.pick", + "version": "1.3.0" + } + }, + { + "id": "recast@0.20.5", + "info": { + "name": "recast", + "version": "0.20.5" + } + }, + { + "id": "ast-types@0.14.2", + "info": { + "name": "ast-types", + "version": "0.14.2" + } + }, + { + "id": "@nrwl/js@14.0.5", + "info": { + "name": "@nrwl/js", + "version": "14.0.5" + } + }, + { + "id": "source-map-support@0.5.19", + "info": { + "name": "source-map-support", + "version": "0.5.19" + } + }, + { + "id": "tree-kill@1.2.2", + "info": { + "name": "tree-kill", + "version": "1.2.2" + } + }, + { + "id": "@nrwl/nx-plugin@14.8.9", + "info": { + "name": "@nrwl/nx-plugin", + "version": "14.8.9" + } + }, + { + "id": "@nrwl/devkit@14.8.9", + "info": { + "name": "@nrwl/devkit", + "version": "14.8.9" + } + }, + { + "id": "nx@14.8.9", + "info": { + "name": "nx", + "version": "14.8.9" + } + }, + { + "id": "@nrwl/cli@14.8.9", + "info": { + "name": "@nrwl/cli", + "version": "14.8.9" + } + }, + { + "id": "@nrwl/tao@14.8.9", + "info": { + "name": "@nrwl/tao", + "version": "14.8.9" + } + }, + { + "id": "@yarnpkg/lockfile@1.1.0", + "info": { + "name": "@yarnpkg/lockfile", + "version": "1.1.0" + } + }, + { + "id": "@yarnpkg/parsers@3.0.2", + "info": { + "name": "@yarnpkg/parsers", + "version": "3.0.2" + } + }, + { + "id": "@zkochan/js-yaml@0.0.6", + "info": { + "name": "@zkochan/js-yaml", + "version": "0.0.6" + } + }, + { + "id": "argparse@2.0.1", + "info": { + "name": "argparse", + "version": "2.0.1" + } + }, + { + "id": "axios@1.6.8", + "info": { + "name": "axios", + "version": "1.6.8" + } + }, + { + "id": "proxy-from-env@1.1.0", + "info": { + "name": "proxy-from-env", + "version": "1.1.0" + } + }, + { + "id": "js-yaml@4.1.0", + "info": { + "name": "js-yaml", + "version": "4.1.0" + } + }, + { + "id": "jsonc-parser@3.2.0", + "info": { + "name": "jsonc-parser", + "version": "3.2.0" + } + }, + { + "id": "minimatch@3.0.5", + "info": { + "name": "minimatch", + "version": "3.0.5" + } + }, + { + "id": "strong-log-transformer@2.1.0", + "info": { + "name": "strong-log-transformer", + "version": "2.1.0" + } + }, + { + "id": "@nrwl/jest@14.8.9", + "info": { + "name": "@nrwl/jest", + "version": "14.8.9" + } + }, + { + "id": "@jest/reporters@28.1.1", + "info": { + "name": "@jest/reporters", + "version": "28.1.1" + } + }, + { + "id": "@jest/console@28.1.3", + "info": { + "name": "@jest/console", + "version": "28.1.3" + } + }, + { + "id": "@jest/types@28.1.3", + "info": { + "name": "@jest/types", + "version": "28.1.3" + } + }, + { + "id": "@jest/schemas@28.1.3", + "info": { + "name": "@jest/schemas", + "version": "28.1.3" + } + }, + { + "id": "@sinclair/typebox@0.24.51", + "info": { + "name": "@sinclair/typebox", + "version": "0.24.51" + } + }, + { + "id": "jest-message-util@28.1.3", + "info": { + "name": "jest-message-util", + "version": "28.1.3" + } + }, + { + "id": "pretty-format@28.1.3", + "info": { + "name": "pretty-format", + "version": "28.1.3" + } + }, + { + "id": "jest-util@28.1.3", + "info": { + "name": "jest-util", + "version": "28.1.3" + } + }, + { + "id": "@jest/test-result@28.1.1", + "info": { + "name": "@jest/test-result", + "version": "28.1.1" + } + }, + { + "id": "@jest/transform@28.1.3", + "info": { + "name": "@jest/transform", + "version": "28.1.3" + } + }, + { + "id": "jest-haste-map@28.1.3", + "info": { + "name": "jest-haste-map", + "version": "28.1.3" + } + }, + { + "id": "jest-regex-util@28.0.2", + "info": { + "name": "jest-regex-util", + "version": "28.0.2" + } + }, + { + "id": "jest-worker@28.1.3", + "info": { + "name": "jest-worker", + "version": "28.1.3" + } + }, + { + "id": "write-file-atomic@4.0.2", + "info": { + "name": "write-file-atomic", + "version": "4.0.2" + } + }, + { + "id": "jest-util@28.1.1", + "info": { + "name": "jest-util", + "version": "28.1.1" + } + }, + { + "id": "v8-to-istanbul@9.2.0", + "info": { + "name": "v8-to-istanbul", + "version": "9.2.0" + } + }, + { + "id": "jest-config@28.1.1", + "info": { + "name": "jest-config", + "version": "28.1.1" + } + }, + { + "id": "@jest/test-sequencer@28.1.3", + "info": { + "name": "@jest/test-sequencer", + "version": "28.1.3" + } + }, + { + "id": "@jest/test-result@28.1.3", + "info": { + "name": "@jest/test-result", + "version": "28.1.3" + } + }, + { + "id": "babel-jest@28.1.3", + "info": { + "name": "babel-jest", + "version": "28.1.3" + } + }, + { + "id": "babel-preset-jest@28.1.3", + "info": { + "name": "babel-preset-jest", + "version": "28.1.3" + } + }, + { + "id": "babel-plugin-jest-hoist@28.1.3", + "info": { + "name": "babel-plugin-jest-hoist", + "version": "28.1.3" + } + }, + { + "id": "jest-circus@28.1.3", + "info": { + "name": "jest-circus", + "version": "28.1.3" + } + }, + { + "id": "@jest/environment@28.1.3", + "info": { + "name": "@jest/environment", + "version": "28.1.3" + } + }, + { + "id": "@jest/fake-timers@28.1.3", + "info": { + "name": "@jest/fake-timers", + "version": "28.1.3" + } + }, + { + "id": "@sinonjs/fake-timers@9.1.2", + "info": { + "name": "@sinonjs/fake-timers", + "version": "9.1.2" + } + }, + { + "id": "jest-mock@28.1.3", + "info": { + "name": "jest-mock", + "version": "28.1.3" + } + }, + { + "id": "@jest/expect@28.1.3", + "info": { + "name": "@jest/expect", + "version": "28.1.3" + } + }, + { + "id": "expect@28.1.3", + "info": { + "name": "expect", + "version": "28.1.3" + } + }, + { + "id": "@jest/expect-utils@28.1.3", + "info": { + "name": "@jest/expect-utils", + "version": "28.1.3" + } + }, + { + "id": "jest-get-type@28.0.2", + "info": { + "name": "jest-get-type", + "version": "28.0.2" + } + }, + { + "id": "jest-matcher-utils@28.1.3", + "info": { + "name": "jest-matcher-utils", + "version": "28.1.3" + } + }, + { + "id": "jest-diff@28.1.3", + "info": { + "name": "jest-diff", + "version": "28.1.3" + } + }, + { + "id": "diff-sequences@28.1.1", + "info": { + "name": "diff-sequences", + "version": "28.1.1" + } + }, + { + "id": "jest-snapshot@28.1.3", + "info": { + "name": "jest-snapshot", + "version": "28.1.3" + } + }, + { + "id": "jest-each@28.1.3", + "info": { + "name": "jest-each", + "version": "28.1.3" + } + }, + { + "id": "jest-runtime@28.1.3", + "info": { + "name": "jest-runtime", + "version": "28.1.3" + } + }, + { + "id": "@jest/globals@28.1.3", + "info": { + "name": "@jest/globals", + "version": "28.1.3" + } + }, + { + "id": "@jest/source-map@28.1.2", + "info": { + "name": "@jest/source-map", + "version": "28.1.2" + } + }, + { + "id": "jest-resolve@28.1.3", + "info": { + "name": "jest-resolve", + "version": "28.1.3" + } + }, + { + "id": "jest-validate@28.1.3", + "info": { + "name": "jest-validate", + "version": "28.1.3" + } + }, + { + "id": "jest-environment-node@28.1.3", + "info": { + "name": "jest-environment-node", + "version": "28.1.3" + } + }, + { + "id": "jest-resolve@28.1.1", + "info": { + "name": "jest-resolve", + "version": "28.1.1" + } + }, + { + "id": "jest-runner@28.1.3", + "info": { + "name": "jest-runner", + "version": "28.1.3" + } + }, + { + "id": "emittery@0.10.2", + "info": { + "name": "emittery", + "version": "0.10.2" + } + }, + { + "id": "jest-docblock@28.1.1", + "info": { + "name": "jest-docblock", + "version": "28.1.1" + } + }, + { + "id": "jest-leak-detector@28.1.3", + "info": { + "name": "jest-leak-detector", + "version": "28.1.3" + } + }, + { + "id": "jest-watcher@28.1.3", + "info": { + "name": "jest-watcher", + "version": "28.1.3" + } + }, + { + "id": "source-map-support@0.5.13", + "info": { + "name": "source-map-support", + "version": "0.5.13" + } + }, + { + "id": "@nrwl/js@14.8.9", + "info": { + "name": "@nrwl/js", + "version": "14.8.9" + } + }, + { + "id": "@nrwl/linter@14.8.9", + "info": { + "name": "@nrwl/linter", + "version": "14.8.9" + } + }, + { + "id": "@nrwl/workspace@14.8.9", + "info": { + "name": "@nrwl/workspace", + "version": "14.8.9" + } + }, + { + "id": "@nrwl/react@14.0.5", + "info": { + "name": "@nrwl/react", + "version": "14.0.5" + } + }, + { + "id": "@nrwl/cypress@14.0.5", + "info": { + "name": "@nrwl/cypress", + "version": "14.0.5" + } + }, + { + "id": "tsconfig-paths-webpack-plugin@3.5.2", + "info": { + "name": "tsconfig-paths-webpack-plugin", + "version": "3.5.2" + } + }, + { + "id": "@nrwl/storybook@14.0.5", + "info": { + "name": "@nrwl/storybook", + "version": "14.0.5" + } + }, + { + "id": "@nrwl/web@14.0.5", + "info": { + "name": "@nrwl/web", + "version": "14.0.5" + } + }, + { + "id": "http-server@14.1.0", + "info": { + "name": "http-server", + "version": "14.1.0" + } + }, + { + "id": "basic-auth@2.0.1", + "info": { + "name": "basic-auth", + "version": "2.0.1" + } + }, + { + "id": "html-encoding-sniffer@3.0.0", + "info": { + "name": "html-encoding-sniffer", + "version": "3.0.0" + } + }, + { + "id": "whatwg-encoding@2.0.0", + "info": { + "name": "whatwg-encoding", + "version": "2.0.0" + } + }, + { + "id": "url-join@4.0.1", + "info": { + "name": "url-join", + "version": "4.0.1" + } + }, + { + "id": "license-webpack-plugin@4.0.2", + "info": { + "name": "license-webpack-plugin", + "version": "4.0.2" + } + }, + { + "id": "mini-css-extract-plugin@2.4.7", + "info": { + "name": "mini-css-extract-plugin", + "version": "2.4.7" + } + }, + { + "id": "rollup-plugin-typescript2@0.31.2", + "info": { + "name": "rollup-plugin-typescript2", + "version": "0.31.2" + } + }, + { + "id": "@yarn-tool/resolve-package@1.0.47", + "info": { + "name": "@yarn-tool/resolve-package", + "version": "1.0.47" + } + }, + { + "id": "pkg-dir@5.0.0", + "info": { + "name": "pkg-dir", + "version": "5.0.0" + } + }, + { + "id": "upath2@3.1.19", + "info": { + "name": "upath2", + "version": "3.1.19" + } + }, + { + "id": "path-is-network-drive@1.0.20", + "info": { + "name": "path-is-network-drive", + "version": "1.0.20" + } + }, + { + "id": "path-strip-sep@1.0.17", + "info": { + "name": "path-strip-sep", + "version": "1.0.17" + } + }, + { + "id": "webpack-subresource-integrity@5.1.0", + "info": { + "name": "webpack-subresource-integrity", + "version": "5.1.0" + } + }, + { + "id": "typed-assert@1.0.9", + "info": { + "name": "typed-assert", + "version": "1.0.9" + } + }, + { + "id": "eslint-plugin-react@7.28.0", + "info": { + "name": "eslint-plugin-react", + "version": "7.28.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "deeply-scoped@0.0.0", + "deps": [ + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-plugin-image@2.25.0" + }, + { + "nodeId": "gatsby-plugin-manifest@4.25.0" + }, + { + "nodeId": "gatsby-plugin-mdx@3.20.0" + }, + { + "nodeId": "gatsby-plugin-offline@5.25.0" + }, + { + "nodeId": "gatsby-plugin-react-helmet@5.25.0" + }, + { + "nodeId": "gatsby-plugin-sharp@4.25.1" + }, + { + "nodeId": "gatsby-plugin-styled-components@5.25.0" + }, + { + "nodeId": "gatsby-plugin-svgr@3.0.0-beta.0" + }, + { + "nodeId": "gatsby-plugin-typescript@4.25.0" + }, + { + "nodeId": "gatsby-plugin-web-font-loader@1.0.4" + }, + { + "nodeId": "gatsby-source-filesystem@4.25.0" + }, + { + "nodeId": "gatsby-transformer-sharp@4.25.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-calendar@3.9.0" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "react-helmet@6.1.0" + }, + { + "nodeId": "react-hook-form@7.51.4" + }, + { + "nodeId": "react-is@18.3.1" + }, + { + "nodeId": "react-redux@8.1.3" + }, + { + "nodeId": "react-responsive@8.2.0" + }, + { + "nodeId": "react-router-dom@6.23.0" + }, + { + "nodeId": "react-slick@0.28.1" + }, + { + "nodeId": "react-spring@9.7.3" + }, + { + "nodeId": "redux-persist@6.0.0" + }, + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/preset-env@7.12.13" + }, + { + "nodeId": "@babel/preset-react@7.12.13" + }, + { + "nodeId": "@babel/preset-typescript@7.12.13" + }, + { + "nodeId": "@nrwl/cli@14.0.5" + }, + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/eslint-plugin-nx@14.0.5" + }, + { + "nodeId": "@nrwl/gatsby@13.2.3" + }, + { + "nodeId": "@nrwl/jest@14.0.5" + }, + { + "nodeId": "@nrwl/js@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@nrwl/nx-plugin@14.8.9" + }, + { + "nodeId": "@nrwl/react@14.0.5" + }, + { + "nodeId": "@nrwl/storybook@14.0.5" + }, + { + "nodeId": "@nrwl/web@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + } + ] + }, + { + "nodeId": "gatsby@4.25.8", + "pkgId": "gatsby@4.25.8", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/eslint-parser@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@builder.io/partytown@0.5.4" + }, + { + "nodeId": "@gatsbyjs/reach-router@1.3.9" + }, + { + "nodeId": "@gatsbyjs/webpack-hot-middleware@2.25.3" + }, + { + "nodeId": "@graphql-codegen/add@3.2.3" + }, + { + "nodeId": "@graphql-codegen/core@2.6.8" + }, + { + "nodeId": "@graphql-codegen/plugin-helpers@2.7.2" + }, + { + "nodeId": "@graphql-codegen/typescript@2.8.8" + }, + { + "nodeId": "@graphql-codegen/typescript-operations@2.5.13" + }, + { + "nodeId": "@graphql-tools/code-file-loader@7.3.23" + }, + { + "nodeId": "@graphql-tools/load@7.8.14" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "@nodelib/fs.walk@1.2.8" + }, + { + "nodeId": "@parcel/cache@2.6.2" + }, + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13" + }, + { + "nodeId": "@types/http-proxy@1.17.14" + }, + { + "nodeId": "@typescript-eslint/eslint-plugin@4.33.0" + }, + { + "nodeId": "@typescript-eslint/parser@4.33.0" + }, + { + "nodeId": "@vercel/webpack-asset-relocator-loader@1.7.3" + }, + { + "nodeId": "acorn-loose@8.4.0" + }, + { + "nodeId": "acorn-walk@8.3.2" + }, + { + "nodeId": "address@1.1.2" + }, + { + "nodeId": "anser@2.1.1" + }, + { + "nodeId": "autoprefixer@10.4.19" + }, + { + "nodeId": "axios@0.21.4" + }, + { + "nodeId": "babel-loader@8.3.0" + }, + { + "nodeId": "babel-plugin-add-module-exports@1.0.4" + }, + { + "nodeId": "babel-plugin-dynamic-import-node@2.3.3" + }, + { + "nodeId": "babel-plugin-lodash@3.3.4" + }, + { + "nodeId": "babel-plugin-remove-graphql-queries@4.25.0" + }, + { + "nodeId": "babel-preset-gatsby@2.25.0" + }, + { + "nodeId": "better-opn@2.1.1" + }, + { + "nodeId": "bluebird@3.7.2" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "cache-manager@2.11.1" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "compression@1.7.4" + }, + { + "nodeId": "cookie@0.4.2" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "cors@2.8.5" + }, + { + "nodeId": "css-loader@5.2.7" + }, + { + "nodeId": "css-minimizer-webpack-plugin@2.0.0" + }, + { + "nodeId": "css.escape@1.5.1" + }, + { + "nodeId": "date-fns@2.30.0" + }, + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "detect-port@1.6.1" + }, + { + "nodeId": "devcert@1.2.2" + }, + { + "nodeId": "dotenv@8.6.0" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "error-stack-parser@2.1.4" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-config-react-app@6.0.0" + }, + { + "nodeId": "eslint-plugin-flowtype@5.10.0" + }, + { + "nodeId": "eslint-plugin-import@2.29.1" + }, + { + "nodeId": "eslint-plugin-jsx-a11y@6.8.0" + }, + { + "nodeId": "eslint-plugin-react@7.34.1" + }, + { + "nodeId": "eslint-plugin-react-hooks@4.6.2" + }, + { + "nodeId": "eslint-webpack-plugin@2.7.0" + }, + { + "nodeId": "event-source-polyfill@1.0.25" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "express@4.19.2" + }, + { + "nodeId": "express-graphql@0.12.0" + }, + { + "nodeId": "express-http-proxy@1.6.3" + }, + { + "nodeId": "fastest-levenshtein@1.0.16" + }, + { + "nodeId": "fastq@1.17.1" + }, + { + "nodeId": "file-loader@6.2.0" + }, + { + "nodeId": "find-cache-dir@3.3.2" + }, + { + "nodeId": "fs-exists-cached@1.0.0" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby-cli@4.25.0" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-graphiql-explorer@2.25.0" + }, + { + "nodeId": "gatsby-legacy-polyfills@2.25.0" + }, + { + "nodeId": "gatsby-link@4.25.0" + }, + { + "nodeId": "gatsby-page-utils@2.25.0" + }, + { + "nodeId": "gatsby-parcel-config@0.16.0" + }, + { + "nodeId": "gatsby-plugin-page-creator@4.25.0" + }, + { + "nodeId": "gatsby-plugin-typescript@4.25.0" + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0" + }, + { + "nodeId": "gatsby-react-router-scroll@5.25.0" + }, + { + "nodeId": "gatsby-script@1.10.0" + }, + { + "nodeId": "gatsby-telemetry@3.25.0" + }, + { + "nodeId": "gatsby-worker@1.25.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "got@11.8.6" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "graphql-compose@9.0.10" + }, + { + "nodeId": "graphql-playground-middleware-express@1.7.23" + }, + { + "nodeId": "graphql-tag@2.12.6" + }, + { + "nodeId": "hasha@5.2.2" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "is-relative@1.0.0" + }, + { + "nodeId": "is-relative-url@3.0.0" + }, + { + "nodeId": "joi@17.13.1" + }, + { + "nodeId": "json-loader@0.5.7" + }, + { + "nodeId": "latest-version@5.1.0" + }, + { + "nodeId": "lmdb@2.5.3" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "md5-file@5.0.0" + }, + { + "nodeId": "meant@1.0.3" + }, + { + "nodeId": "memoizee@0.4.15" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "mime@2.6.0" + }, + { + "nodeId": "mini-css-extract-plugin@1.6.2" + }, + { + "nodeId": "mitt@1.2.0" + }, + { + "nodeId": "moment@2.30.1" + }, + { + "nodeId": "multer@1.4.5-lts.1" + }, + { + "nodeId": "node-fetch@2.7.0" + }, + { + "nodeId": "node-html-parser@5.4.2" + }, + { + "nodeId": "normalize-path@3.0.0" + }, + { + "nodeId": "null-loader@4.0.1" + }, + { + "nodeId": "opentracing@0.14.7" + }, + { + "nodeId": "p-defer@3.0.0" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "physical-cpu-count@2.0.0" + }, + { + "nodeId": "platform@1.3.6" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-flexbugs-fixes@5.0.2" + }, + { + "nodeId": "postcss-loader@5.3.0" + }, + { + "nodeId": "prompts@2.4.2" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "query-string@6.14.1" + }, + { + "nodeId": "raw-loader@4.0.2" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dev-utils@12.0.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "react-refresh@0.14.2" + }, + { + "nodeId": "react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825" + }, + { + "nodeId": "redux@4.1.2" + }, + { + "nodeId": "redux-thunk@2.4.2" + }, + { + "nodeId": "resolve-from@5.0.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "shallow-compare@1.2.2" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "slugify@1.6.6" + }, + { + "nodeId": "socket.io@4.5.4" + }, + { + "nodeId": "socket.io-client@4.5.4" + }, + { + "nodeId": "st@2.0.0" + }, + { + "nodeId": "stack-trace@0.0.10" + }, + { + "nodeId": "string-similarity@1.2.2" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "style-loader@2.0.0" + }, + { + "nodeId": "terser-webpack-plugin@5.3.10" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "true-case-path@2.2.1" + }, + { + "nodeId": "type-of@2.0.1" + }, + { + "nodeId": "url-loader@4.1.1" + }, + { + "nodeId": "uuid@8.3.2" + }, + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-dev-middleware@4.3.0" + }, + { + "nodeId": "webpack-merge@5.10.0" + }, + { + "nodeId": "webpack-stats-plugin@1.1.3" + }, + { + "nodeId": "webpack-virtual-modules@0.3.2" + }, + { + "nodeId": "xstate@4.32.1" + }, + { + "nodeId": "yaml-loader@0.8.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/code-frame@7.24.2", + "pkgId": "@babel/code-frame@7.24.2", + "deps": [ + { + "nodeId": "@babel/highlight@7.24.5" + }, + { + "nodeId": "picocolors@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/highlight@7.24.5", + "pkgId": "@babel/highlight@7.24.5", + "deps": [ + { + "nodeId": "@babel/helper-validator-identifier@7.24.5" + }, + { + "nodeId": "chalk@2.4.2" + }, + { + "nodeId": "js-tokens@4.0.0" + }, + { + "nodeId": "picocolors@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-validator-identifier@7.24.5", + "pkgId": "@babel/helper-validator-identifier@7.24.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chalk@2.4.2", + "pkgId": "chalk@2.4.2", + "deps": [ + { + "nodeId": "ansi-styles@3.2.1" + }, + { + "nodeId": "escape-string-regexp@1.0.5" + }, + { + "nodeId": "supports-color@5.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-styles@3.2.1", + "pkgId": "ansi-styles@3.2.1", + "deps": [ + { + "nodeId": "color-convert@1.9.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-convert@1.9.3", + "pkgId": "color-convert@1.9.3", + "deps": [ + { + "nodeId": "color-name@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-name@1.1.3", + "pkgId": "color-name@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-string-regexp@1.0.5", + "pkgId": "escape-string-regexp@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-color@5.5.0", + "pkgId": "supports-color@5.5.0", + "deps": [ + { + "nodeId": "has-flag@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-flag@3.0.0", + "pkgId": "has-flag@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-tokens@4.0.0", + "pkgId": "js-tokens@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "picocolors@1.0.0", + "pkgId": "picocolors@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/core@7.24.5", + "pkgId": "@babel/core@7.24.5", + "deps": [ + { + "nodeId": "@ampproject/remapping@2.3.0" + }, + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helpers@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "convert-source-map@2.0.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "gensync@1.0.0-beta.2" + }, + { + "nodeId": "json5@2.2.3" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@ampproject/remapping@2.3.0", + "pkgId": "@ampproject/remapping@2.3.0", + "deps": [ + { + "nodeId": "@jridgewell/gen-mapping@0.3.5" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jridgewell/gen-mapping@0.3.5", + "pkgId": "@jridgewell/gen-mapping@0.3.5", + "deps": [ + { + "nodeId": "@jridgewell/set-array@1.2.1" + }, + { + "nodeId": "@jridgewell/sourcemap-codec@1.4.15" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jridgewell/set-array@1.2.1", + "pkgId": "@jridgewell/set-array@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jridgewell/sourcemap-codec@1.4.15", + "pkgId": "@jridgewell/sourcemap-codec@1.4.15", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25", + "pkgId": "@jridgewell/trace-mapping@0.3.25", + "deps": [ + { + "nodeId": "@jridgewell/resolve-uri@3.1.2" + }, + { + "nodeId": "@jridgewell/sourcemap-codec@1.4.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jridgewell/resolve-uri@3.1.2", + "pkgId": "@jridgewell/resolve-uri@3.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/generator@7.24.5", + "pkgId": "@babel/generator@7.24.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@jridgewell/gen-mapping@0.3.5" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "jsesc@2.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/types@7.24.5", + "pkgId": "@babel/types@7.24.5", + "deps": [ + { + "nodeId": "@babel/helper-string-parser@7.24.1" + }, + { + "nodeId": "@babel/helper-validator-identifier@7.24.5" + }, + { + "nodeId": "to-fast-properties@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-string-parser@7.24.1", + "pkgId": "@babel/helper-string-parser@7.24.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "to-fast-properties@2.0.0", + "pkgId": "to-fast-properties@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsesc@2.5.2", + "pkgId": "jsesc@2.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6", + "pkgId": "@babel/helper-compilation-targets@7.23.6", + "deps": [ + { + "nodeId": "@babel/compat-data@7.24.4" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "lru-cache@5.1.1" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/compat-data@7.24.4", + "pkgId": "@babel/compat-data@7.24.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5", + "pkgId": "@babel/helper-validator-option@7.23.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "browserslist@4.23.0", + "pkgId": "browserslist@4.23.0", + "deps": [ + { + "nodeId": "caniuse-lite@1.0.30001617" + }, + { + "nodeId": "electron-to-chromium@1.4.761" + }, + { + "nodeId": "node-releases@2.0.14" + }, + { + "nodeId": "update-browserslist-db@1.0.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "caniuse-lite@1.0.30001617", + "pkgId": "caniuse-lite@1.0.30001617", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "electron-to-chromium@1.4.761", + "pkgId": "electron-to-chromium@1.4.761", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-releases@2.0.14", + "pkgId": "node-releases@2.0.14", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "update-browserslist-db@1.0.15", + "pkgId": "update-browserslist-db@1.0.15", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "escalade@3.1.2" + }, + { + "nodeId": "picocolors@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escalade@3.1.2", + "pkgId": "escalade@3.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-cache@5.1.1", + "pkgId": "lru-cache@5.1.1", + "deps": [ + { + "nodeId": "yallist@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yallist@3.1.1", + "pkgId": "yallist@3.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver@6.3.1", + "pkgId": "semver@6.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5", + "pkgId": "@babel/helper-module-transforms@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/helper-simple-access@7.24.5" + }, + { + "nodeId": "@babel/helper-split-export-declaration@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-identifier@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20", + "pkgId": "@babel/helper-environment-visitor@7.22.20", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3", + "pkgId": "@babel/helper-module-imports@7.24.3", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-simple-access@7.24.5", + "pkgId": "@babel/helper-simple-access@7.24.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-split-export-declaration@7.24.5", + "pkgId": "@babel/helper-split-export-declaration@7.24.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helpers@7.24.5", + "pkgId": "@babel/helpers@7.24.5", + "deps": [ + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/template@7.24.0", + "pkgId": "@babel/template@7.24.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/parser@7.24.5", + "pkgId": "@babel/parser@7.24.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/traverse@7.24.5", + "pkgId": "@babel/traverse@7.24.5", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-function-name@7.23.0" + }, + { + "nodeId": "@babel/helper-hoist-variables@7.22.5" + }, + { + "nodeId": "@babel/helper-split-export-declaration@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "globals@11.12.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-function-name@7.23.0", + "pkgId": "@babel/helper-function-name@7.23.0", + "deps": [ + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-hoist-variables@7.22.5", + "pkgId": "@babel/helper-hoist-variables@7.22.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@4.3.4", + "pkgId": "debug@4.3.4", + "deps": [ + { + "nodeId": "ms@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.1.2", + "pkgId": "ms@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "globals@11.12.0", + "pkgId": "globals@11.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "convert-source-map@2.0.0", + "pkgId": "convert-source-map@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gensync@1.0.0-beta.2", + "pkgId": "gensync@1.0.0-beta.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json5@2.2.3", + "pkgId": "json5@2.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/eslint-parser@7.24.5", + "pkgId": "@babel/eslint-parser@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-visitor-keys@2.1.0" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1", + "pkgId": "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1", + "deps": [ + { + "nodeId": "eslint-scope@5.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-scope@5.1.1", + "pkgId": "eslint-scope@5.1.1", + "deps": [ + { + "nodeId": "esrecurse@4.3.0" + }, + { + "nodeId": "estraverse@4.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esrecurse@4.3.0", + "pkgId": "esrecurse@4.3.0", + "deps": [ + { + "nodeId": "estraverse@5.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "estraverse@5.3.0", + "pkgId": "estraverse@5.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "estraverse@4.3.0", + "pkgId": "estraverse@4.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint@7.32.0", + "pkgId": "eslint@7.32.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.12.11" + }, + { + "nodeId": "@eslint/eslintrc@0.4.3" + }, + { + "nodeId": "@humanwhocodes/config-array@0.5.0" + }, + { + "nodeId": "ajv@6.12.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cross-spawn@7.0.3" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "doctrine@3.0.0" + }, + { + "nodeId": "enquirer@2.4.1" + }, + { + "nodeId": "escape-string-regexp@4.0.0" + }, + { + "nodeId": "eslint-scope@5.1.1" + }, + { + "nodeId": "eslint-utils@2.1.0" + }, + { + "nodeId": "eslint-visitor-keys@2.1.0" + }, + { + "nodeId": "espree@7.3.1" + }, + { + "nodeId": "esquery@1.5.0" + }, + { + "nodeId": "esutils@2.0.3" + }, + { + "nodeId": "fast-deep-equal@3.1.3" + }, + { + "nodeId": "file-entry-cache@6.0.1" + }, + { + "nodeId": "functional-red-black-tree@1.0.1" + }, + { + "nodeId": "glob-parent@5.1.2" + }, + { + "nodeId": "globals@13.24.0" + }, + { + "nodeId": "ignore@4.0.6" + }, + { + "nodeId": "import-fresh@3.3.0" + }, + { + "nodeId": "imurmurhash@0.1.4" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "json-stable-stringify-without-jsonify@1.0.1" + }, + { + "nodeId": "levn@0.4.1" + }, + { + "nodeId": "lodash.merge@4.6.2" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "natural-compare@1.4.0" + }, + { + "nodeId": "optionator@0.9.4" + }, + { + "nodeId": "progress@2.0.3" + }, + { + "nodeId": "regexpp@3.2.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "strip-json-comments@3.1.1" + }, + { + "nodeId": "table@6.8.2" + }, + { + "nodeId": "text-table@0.2.0" + }, + { + "nodeId": "v8-compile-cache@2.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/code-frame@7.12.11", + "pkgId": "@babel/code-frame@7.12.11", + "deps": [ + { + "nodeId": "@babel/highlight@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@eslint/eslintrc@0.4.3", + "pkgId": "@eslint/eslintrc@0.4.3", + "deps": [ + { + "nodeId": "ajv@6.12.6" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "espree@7.3.1" + }, + { + "nodeId": "globals@13.24.0" + }, + { + "nodeId": "ignore@4.0.6" + }, + { + "nodeId": "import-fresh@3.3.0" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "strip-json-comments@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ajv@6.12.6", + "pkgId": "ajv@6.12.6", + "deps": [ + { + "nodeId": "fast-deep-equal@3.1.3" + }, + { + "nodeId": "fast-json-stable-stringify@2.1.0" + }, + { + "nodeId": "json-schema-traverse@0.4.1" + }, + { + "nodeId": "uri-js@4.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fast-deep-equal@3.1.3", + "pkgId": "fast-deep-equal@3.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fast-json-stable-stringify@2.1.0", + "pkgId": "fast-json-stable-stringify@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-schema-traverse@0.4.1", + "pkgId": "json-schema-traverse@0.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "uri-js@4.4.1", + "pkgId": "uri-js@4.4.1", + "deps": [ + { + "nodeId": "punycode@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "punycode@2.3.1", + "pkgId": "punycode@2.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "espree@7.3.1", + "pkgId": "espree@7.3.1", + "deps": [ + { + "nodeId": "acorn@7.4.1" + }, + { + "nodeId": "acorn-jsx@5.3.2" + }, + { + "nodeId": "eslint-visitor-keys@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn@7.4.1", + "pkgId": "acorn@7.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn-jsx@5.3.2", + "pkgId": "acorn-jsx@5.3.2", + "deps": [ + { + "nodeId": "acorn@7.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-visitor-keys@1.3.0", + "pkgId": "eslint-visitor-keys@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "globals@13.24.0", + "pkgId": "globals@13.24.0", + "deps": [ + { + "nodeId": "type-fest@0.20.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-fest@0.20.2", + "pkgId": "type-fest@0.20.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ignore@4.0.6", + "pkgId": "ignore@4.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "import-fresh@3.3.0", + "pkgId": "import-fresh@3.3.0", + "deps": [ + { + "nodeId": "parent-module@1.0.1" + }, + { + "nodeId": "resolve-from@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parent-module@1.0.1", + "pkgId": "parent-module@1.0.1", + "deps": [ + { + "nodeId": "callsites@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "callsites@3.1.0", + "pkgId": "callsites@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve-from@4.0.0", + "pkgId": "resolve-from@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-yaml@3.14.1", + "pkgId": "js-yaml@3.14.1", + "deps": [ + { + "nodeId": "argparse@1.0.10" + }, + { + "nodeId": "esprima@4.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "argparse@1.0.10", + "pkgId": "argparse@1.0.10", + "deps": [ + { + "nodeId": "sprintf-js@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sprintf-js@1.0.3", + "pkgId": "sprintf-js@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esprima@4.0.1", + "pkgId": "esprima@4.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimatch@3.1.2", + "pkgId": "minimatch@3.1.2", + "deps": [ + { + "nodeId": "brace-expansion@1.1.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "brace-expansion@1.1.11", + "pkgId": "brace-expansion@1.1.11", + "deps": [ + { + "nodeId": "balanced-match@1.0.2" + }, + { + "nodeId": "concat-map@0.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "balanced-match@1.0.2", + "pkgId": "balanced-match@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "concat-map@0.0.1", + "pkgId": "concat-map@0.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-json-comments@3.1.1", + "pkgId": "strip-json-comments@3.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@humanwhocodes/config-array@0.5.0", + "pkgId": "@humanwhocodes/config-array@0.5.0", + "deps": [ + { + "nodeId": "@humanwhocodes/object-schema@1.2.1" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "minimatch@3.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@humanwhocodes/object-schema@1.2.1", + "pkgId": "@humanwhocodes/object-schema@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chalk@4.1.2", + "pkgId": "chalk@4.1.2", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-styles@4.3.0", + "pkgId": "ansi-styles@4.3.0", + "deps": [ + { + "nodeId": "color-convert@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-convert@2.0.1", + "pkgId": "color-convert@2.0.1", + "deps": [ + { + "nodeId": "color-name@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-name@1.1.4", + "pkgId": "color-name@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-color@7.2.0", + "pkgId": "supports-color@7.2.0", + "deps": [ + { + "nodeId": "has-flag@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-flag@4.0.0", + "pkgId": "has-flag@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cross-spawn@7.0.3", + "pkgId": "cross-spawn@7.0.3", + "deps": [ + { + "nodeId": "path-key@3.1.1" + }, + { + "nodeId": "shebang-command@2.0.0" + }, + { + "nodeId": "which@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-key@3.1.1", + "pkgId": "path-key@3.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shebang-command@2.0.0", + "pkgId": "shebang-command@2.0.0", + "deps": [ + { + "nodeId": "shebang-regex@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shebang-regex@3.0.0", + "pkgId": "shebang-regex@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which@2.0.2", + "pkgId": "which@2.0.2", + "deps": [ + { + "nodeId": "isexe@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isexe@2.0.0", + "pkgId": "isexe@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "doctrine@3.0.0", + "pkgId": "doctrine@3.0.0", + "deps": [ + { + "nodeId": "esutils@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esutils@2.0.3", + "pkgId": "esutils@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "enquirer@2.4.1", + "pkgId": "enquirer@2.4.1", + "deps": [ + { + "nodeId": "ansi-colors@4.1.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-colors@4.1.3", + "pkgId": "ansi-colors@4.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@6.0.1", + "pkgId": "strip-ansi@6.0.1", + "deps": [ + { + "nodeId": "ansi-regex@5.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@5.0.1", + "pkgId": "ansi-regex@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-string-regexp@4.0.0", + "pkgId": "escape-string-regexp@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-utils@2.1.0", + "pkgId": "eslint-utils@2.1.0", + "deps": [ + { + "nodeId": "eslint-visitor-keys@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-visitor-keys@2.1.0", + "pkgId": "eslint-visitor-keys@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esquery@1.5.0", + "pkgId": "esquery@1.5.0", + "deps": [ + { + "nodeId": "estraverse@5.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "file-entry-cache@6.0.1", + "pkgId": "file-entry-cache@6.0.1", + "deps": [ + { + "nodeId": "flat-cache@3.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "flat-cache@3.2.0", + "pkgId": "flat-cache@3.2.0", + "deps": [ + { + "nodeId": "flatted@3.3.1" + }, + { + "nodeId": "keyv@4.5.4" + }, + { + "nodeId": "rimraf@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "flatted@3.3.1", + "pkgId": "flatted@3.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "keyv@4.5.4", + "pkgId": "keyv@4.5.4", + "deps": [ + { + "nodeId": "json-buffer@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-buffer@3.0.1", + "pkgId": "json-buffer@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rimraf@3.0.2", + "pkgId": "rimraf@3.0.2", + "deps": [ + { + "nodeId": "glob@7.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "glob@7.2.3", + "pkgId": "glob@7.2.3", + "deps": [ + { + "nodeId": "fs.realpath@1.0.0" + }, + { + "nodeId": "inflight@1.0.6" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "once@1.4.0" + }, + { + "nodeId": "path-is-absolute@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs.realpath@1.0.0", + "pkgId": "fs.realpath@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inflight@1.0.6", + "pkgId": "inflight@1.0.6", + "deps": [ + { + "nodeId": "once@1.4.0" + }, + { + "nodeId": "wrappy@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "once@1.4.0", + "pkgId": "once@1.4.0", + "deps": [ + { + "nodeId": "wrappy@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wrappy@1.0.2", + "pkgId": "wrappy@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.4", + "pkgId": "inherits@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-is-absolute@1.0.1", + "pkgId": "path-is-absolute@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "functional-red-black-tree@1.0.1", + "pkgId": "functional-red-black-tree@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "glob-parent@5.1.2", + "pkgId": "glob-parent@5.1.2", + "deps": [ + { + "nodeId": "is-glob@4.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-glob@4.0.3", + "pkgId": "is-glob@4.0.3", + "deps": [ + { + "nodeId": "is-extglob@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-extglob@2.1.1", + "pkgId": "is-extglob@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "imurmurhash@0.1.4", + "pkgId": "imurmurhash@0.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-stable-stringify-without-jsonify@1.0.1", + "pkgId": "json-stable-stringify-without-jsonify@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "levn@0.4.1", + "pkgId": "levn@0.4.1", + "deps": [ + { + "nodeId": "prelude-ls@1.2.1" + }, + { + "nodeId": "type-check@0.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "prelude-ls@1.2.1", + "pkgId": "prelude-ls@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-check@0.4.0", + "pkgId": "type-check@0.4.0", + "deps": [ + { + "nodeId": "prelude-ls@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.merge@4.6.2", + "pkgId": "lodash.merge@4.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "natural-compare@1.4.0", + "pkgId": "natural-compare@1.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "optionator@0.9.4", + "pkgId": "optionator@0.9.4", + "deps": [ + { + "nodeId": "deep-is@0.1.4" + }, + { + "nodeId": "fast-levenshtein@2.0.6" + }, + { + "nodeId": "levn@0.4.1" + }, + { + "nodeId": "prelude-ls@1.2.1" + }, + { + "nodeId": "type-check@0.4.0" + }, + { + "nodeId": "word-wrap@1.2.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "deep-is@0.1.4", + "pkgId": "deep-is@0.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fast-levenshtein@2.0.6", + "pkgId": "fast-levenshtein@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "word-wrap@1.2.5", + "pkgId": "word-wrap@1.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "progress@2.0.3", + "pkgId": "progress@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regexpp@3.2.0", + "pkgId": "regexpp@3.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver@7.6.1", + "pkgId": "semver@7.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "table@6.8.2", + "pkgId": "table@6.8.2", + "deps": [ + { + "nodeId": "ajv@8.13.0" + }, + { + "nodeId": "lodash.truncate@4.4.2" + }, + { + "nodeId": "slice-ansi@4.0.0" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ajv@8.13.0", + "pkgId": "ajv@8.13.0", + "deps": [ + { + "nodeId": "fast-deep-equal@3.1.3" + }, + { + "nodeId": "json-schema-traverse@1.0.0" + }, + { + "nodeId": "require-from-string@2.0.2" + }, + { + "nodeId": "uri-js@4.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-schema-traverse@1.0.0", + "pkgId": "json-schema-traverse@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "require-from-string@2.0.2", + "pkgId": "require-from-string@2.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.truncate@4.4.2", + "pkgId": "lodash.truncate@4.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "slice-ansi@4.0.0", + "pkgId": "slice-ansi@4.0.0", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "astral-regex@2.0.0" + }, + { + "nodeId": "is-fullwidth-code-point@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "astral-regex@2.0.0", + "pkgId": "astral-regex@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-fullwidth-code-point@3.0.0", + "pkgId": "is-fullwidth-code-point@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-width@4.2.3", + "pkgId": "string-width@4.2.3", + "deps": [ + { + "nodeId": "emoji-regex@8.0.0" + }, + { + "nodeId": "is-fullwidth-code-point@3.0.0" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emoji-regex@8.0.0", + "pkgId": "emoji-regex@8.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "text-table@0.2.0", + "pkgId": "text-table@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "v8-compile-cache@2.4.0", + "pkgId": "v8-compile-cache@2.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5", + "pkgId": "@babel/helper-plugin-utils@7.24.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/runtime@7.24.5", + "pkgId": "@babel/runtime@7.24.5", + "deps": [ + { + "nodeId": "regenerator-runtime@0.14.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regenerator-runtime@0.14.1", + "pkgId": "regenerator-runtime@0.14.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@builder.io/partytown@0.5.4", + "pkgId": "@builder.io/partytown@0.5.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@gatsbyjs/reach-router@1.3.9", + "pkgId": "@gatsbyjs/reach-router@1.3.9", + "deps": [ + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "react-lifecycles-compat@3.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "invariant@2.2.4", + "pkgId": "invariant@2.2.4", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loose-envify@1.4.0", + "pkgId": "loose-envify@1.4.0", + "deps": [ + { + "nodeId": "js-tokens@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "prop-types@15.8.1", + "pkgId": "prop-types@15.8.1", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + }, + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "react-is@16.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-assign@4.1.1", + "pkgId": "object-assign@4.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-is@16.13.1", + "pkgId": "react-is@16.13.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react@18.3.1", + "pkgId": "react@18.3.1", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-dom@18.3.1", + "pkgId": "react-dom@18.3.1", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "scheduler@0.23.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "scheduler@0.23.2", + "pkgId": "scheduler@0.23.2", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-lifecycles-compat@3.0.4", + "pkgId": "react-lifecycles-compat@3.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@gatsbyjs/webpack-hot-middleware@2.25.3", + "pkgId": "@gatsbyjs/webpack-hot-middleware@2.25.3", + "deps": [ + { + "nodeId": "ansi-html-community@0.0.8" + }, + { + "nodeId": "html-entities@2.5.2" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-html-community@0.0.8", + "pkgId": "ansi-html-community@0.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "html-entities@2.5.2", + "pkgId": "html-entities@2.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/add@3.2.3", + "pkgId": "@graphql-codegen/add@3.2.3", + "deps": [ + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2", + "pkgId": "@graphql-codegen/plugin-helpers@3.1.2", + "deps": [ + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "change-case-all@1.0.15" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "import-from@4.0.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/utils@9.2.1", + "pkgId": "@graphql-tools/utils@9.2.1", + "deps": [ + { + "nodeId": "@graphql-typed-document-node/core@3.2.0" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-typed-document-node/core@3.2.0", + "pkgId": "@graphql-typed-document-node/core@3.2.0", + "deps": [ + { + "nodeId": "graphql@15.8.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graphql@15.8.0", + "pkgId": "graphql@15.8.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tslib@2.4.1", + "pkgId": "tslib@2.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "change-case-all@1.0.15", + "pkgId": "change-case-all@1.0.15", + "deps": [ + { + "nodeId": "change-case@4.1.2" + }, + { + "nodeId": "is-lower-case@2.0.2" + }, + { + "nodeId": "is-upper-case@2.0.2" + }, + { + "nodeId": "lower-case@2.0.2" + }, + { + "nodeId": "lower-case-first@2.0.2" + }, + { + "nodeId": "sponge-case@1.0.1" + }, + { + "nodeId": "swap-case@2.0.2" + }, + { + "nodeId": "title-case@3.0.3" + }, + { + "nodeId": "upper-case@2.0.2" + }, + { + "nodeId": "upper-case-first@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "change-case@4.1.2", + "pkgId": "change-case@4.1.2", + "deps": [ + { + "nodeId": "camel-case@4.1.2" + }, + { + "nodeId": "capital-case@1.0.4" + }, + { + "nodeId": "constant-case@3.0.4" + }, + { + "nodeId": "dot-case@3.0.4" + }, + { + "nodeId": "header-case@2.0.4" + }, + { + "nodeId": "no-case@3.0.4" + }, + { + "nodeId": "param-case@3.0.4" + }, + { + "nodeId": "pascal-case@3.1.2" + }, + { + "nodeId": "path-case@3.0.4" + }, + { + "nodeId": "sentence-case@3.0.4" + }, + { + "nodeId": "snake-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "camel-case@4.1.2", + "pkgId": "camel-case@4.1.2", + "deps": [ + { + "nodeId": "pascal-case@3.1.2" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pascal-case@3.1.2", + "pkgId": "pascal-case@3.1.2", + "deps": [ + { + "nodeId": "no-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "no-case@3.0.4", + "pkgId": "no-case@3.0.4", + "deps": [ + { + "nodeId": "lower-case@2.0.2" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lower-case@2.0.2", + "pkgId": "lower-case@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "capital-case@1.0.4", + "pkgId": "capital-case@1.0.4", + "deps": [ + { + "nodeId": "no-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + }, + { + "nodeId": "upper-case-first@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "upper-case-first@2.0.2", + "pkgId": "upper-case-first@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "constant-case@3.0.4", + "pkgId": "constant-case@3.0.4", + "deps": [ + { + "nodeId": "no-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + }, + { + "nodeId": "upper-case@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "upper-case@2.0.2", + "pkgId": "upper-case@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dot-case@3.0.4", + "pkgId": "dot-case@3.0.4", + "deps": [ + { + "nodeId": "no-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "header-case@2.0.4", + "pkgId": "header-case@2.0.4", + "deps": [ + { + "nodeId": "capital-case@1.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "param-case@3.0.4", + "pkgId": "param-case@3.0.4", + "deps": [ + { + "nodeId": "dot-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-case@3.0.4", + "pkgId": "path-case@3.0.4", + "deps": [ + { + "nodeId": "dot-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sentence-case@3.0.4", + "pkgId": "sentence-case@3.0.4", + "deps": [ + { + "nodeId": "no-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + }, + { + "nodeId": "upper-case-first@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "snake-case@3.0.4", + "pkgId": "snake-case@3.0.4", + "deps": [ + { + "nodeId": "dot-case@3.0.4" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-lower-case@2.0.2", + "pkgId": "is-lower-case@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-upper-case@2.0.2", + "pkgId": "is-upper-case@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lower-case-first@2.0.2", + "pkgId": "lower-case-first@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sponge-case@1.0.1", + "pkgId": "sponge-case@1.0.1", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "swap-case@2.0.2", + "pkgId": "swap-case@2.0.2", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "title-case@3.0.3", + "pkgId": "title-case@3.0.3", + "deps": [ + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "common-tags@1.8.2", + "pkgId": "common-tags@1.8.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "import-from@4.0.0", + "pkgId": "import-from@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash@4.17.21", + "pkgId": "lodash@4.17.21", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/core@2.6.8", + "pkgId": "@graphql-codegen/core@2.6.8", + "deps": [ + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2" + }, + { + "nodeId": "@graphql-tools/schema@9.0.19" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/schema@9.0.19", + "pkgId": "@graphql-tools/schema@9.0.19", + "deps": [ + { + "nodeId": "@graphql-tools/merge@8.4.2" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + }, + { + "nodeId": "value-or-promise@1.0.12" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/merge@8.4.2", + "pkgId": "@graphql-tools/merge@8.4.2", + "deps": [ + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "value-or-promise@1.0.12", + "pkgId": "value-or-promise@1.0.12", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/plugin-helpers@2.7.2", + "pkgId": "@graphql-codegen/plugin-helpers@2.7.2", + "deps": [ + { + "nodeId": "@graphql-tools/utils@8.13.1" + }, + { + "nodeId": "change-case-all@1.0.14" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "import-from@4.0.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/utils@8.13.1", + "pkgId": "@graphql-tools/utils@8.13.1", + "deps": [ + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "change-case-all@1.0.14", + "pkgId": "change-case-all@1.0.14", + "deps": [ + { + "nodeId": "change-case@4.1.2" + }, + { + "nodeId": "is-lower-case@2.0.2" + }, + { + "nodeId": "is-upper-case@2.0.2" + }, + { + "nodeId": "lower-case@2.0.2" + }, + { + "nodeId": "lower-case-first@2.0.2" + }, + { + "nodeId": "sponge-case@1.0.1" + }, + { + "nodeId": "swap-case@2.0.2" + }, + { + "nodeId": "title-case@3.0.3" + }, + { + "nodeId": "upper-case@2.0.2" + }, + { + "nodeId": "upper-case-first@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/typescript@2.8.8", + "pkgId": "@graphql-codegen/typescript@2.8.8", + "deps": [ + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2" + }, + { + "nodeId": "@graphql-codegen/schema-ast@2.6.1" + }, + { + "nodeId": "@graphql-codegen/visitor-plugin-common@2.13.8" + }, + { + "nodeId": "auto-bind@4.0.0" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/schema-ast@2.6.1", + "pkgId": "@graphql-codegen/schema-ast@2.6.1", + "deps": [ + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/visitor-plugin-common@2.13.8", + "pkgId": "@graphql-codegen/visitor-plugin-common@2.13.8", + "deps": [ + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2" + }, + { + "nodeId": "@graphql-tools/optimize@1.4.0" + }, + { + "nodeId": "@graphql-tools/relay-operation-optimizer@6.5.18" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "auto-bind@4.0.0" + }, + { + "nodeId": "change-case-all@1.0.15" + }, + { + "nodeId": "dependency-graph@0.11.0" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "graphql-tag@2.12.6" + }, + { + "nodeId": "parse-filepath@1.0.2" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/optimize@1.4.0", + "pkgId": "@graphql-tools/optimize@1.4.0", + "deps": [ + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/relay-operation-optimizer@6.5.18", + "pkgId": "@graphql-tools/relay-operation-optimizer@6.5.18", + "deps": [ + { + "nodeId": "@ardatan/relay-compiler@12.0.0" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@ardatan/relay-compiler@12.0.0", + "pkgId": "@ardatan/relay-compiler@12.0.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "babel-preset-fbjs@3.4.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "fb-watchman@2.0.2" + }, + { + "nodeId": "fbjs@3.0.5" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "immutable@3.7.6" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "relay-runtime@12.0.0" + }, + { + "nodeId": "signedsource@1.0.0" + }, + { + "nodeId": "yargs@15.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-preset-fbjs@3.4.0", + "pkgId": "babel-preset-fbjs@3.4.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.20.7" + }, + { + "nodeId": "@babel/plugin-syntax-class-properties@7.12.13" + }, + { + "nodeId": "@babel/plugin-syntax-flow@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-transform-arrow-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoped-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoping@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-classes@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-computed-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-destructuring@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-flow-strip-types@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-for-of@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-function-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-member-expression-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-object-super@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-property-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-react-display-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx@7.23.4" + }, + { + "nodeId": "@babel/plugin-transform-shorthand-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-spread@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-template-literals@7.24.1" + }, + { + "nodeId": "babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6", + "pkgId": "@babel/plugin-proposal-class-properties@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5", + "pkgId": "@babel/helper-create-class-features-plugin@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-function-name@7.23.0" + }, + { + "nodeId": "@babel/helper-member-expression-to-functions@7.24.5" + }, + { + "nodeId": "@babel/helper-optimise-call-expression@7.22.5" + }, + { + "nodeId": "@babel/helper-replace-supers@7.24.1" + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5" + }, + { + "nodeId": "@babel/helper-split-export-declaration@7.24.5" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5", + "pkgId": "@babel/helper-annotate-as-pure@7.22.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-member-expression-to-functions@7.24.5", + "pkgId": "@babel/helper-member-expression-to-functions@7.24.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-optimise-call-expression@7.22.5", + "pkgId": "@babel/helper-optimise-call-expression@7.22.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-replace-supers@7.24.1", + "pkgId": "@babel/helper-replace-supers@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-member-expression-to-functions@7.24.5" + }, + { + "nodeId": "@babel/helper-optimise-call-expression@7.22.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5", + "pkgId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.20.7", + "pkgId": "@babel/plugin-proposal-object-rest-spread@7.20.7", + "deps": [ + { + "nodeId": "@babel/compat-data@7.24.4" + }, + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkgId": "@babel/plugin-syntax-object-rest-spread@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5", + "pkgId": "@babel/plugin-transform-parameters@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-class-properties@7.12.13", + "pkgId": "@babel/plugin-syntax-class-properties@7.12.13", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-flow@7.24.1", + "pkgId": "@babel/plugin-syntax-flow@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.24.1", + "pkgId": "@babel/plugin-syntax-jsx@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-arrow-functions@7.24.1", + "pkgId": "@babel/plugin-transform-arrow-functions@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-block-scoped-functions@7.24.1", + "pkgId": "@babel/plugin-transform-block-scoped-functions@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-block-scoping@7.24.5", + "pkgId": "@babel/plugin-transform-block-scoping@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-classes@7.24.5", + "pkgId": "@babel/plugin-transform-classes@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-function-name@7.23.0" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-replace-supers@7.24.1" + }, + { + "nodeId": "@babel/helper-split-export-declaration@7.24.5" + }, + { + "nodeId": "globals@11.12.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-computed-properties@7.24.1", + "pkgId": "@babel/plugin-transform-computed-properties@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-destructuring@7.24.5", + "pkgId": "@babel/plugin-transform-destructuring@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-flow-strip-types@7.24.1", + "pkgId": "@babel/plugin-transform-flow-strip-types@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-flow@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-for-of@7.24.1", + "pkgId": "@babel/plugin-transform-for-of@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-function-name@7.24.1", + "pkgId": "@babel/plugin-transform-function-name@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-function-name@7.23.0" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-literals@7.24.1", + "pkgId": "@babel/plugin-transform-literals@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-member-expression-literals@7.24.1", + "pkgId": "@babel/plugin-transform-member-expression-literals@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1", + "pkgId": "@babel/plugin-transform-modules-commonjs@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-simple-access@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-object-super@7.24.1", + "pkgId": "@babel/plugin-transform-object-super@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-replace-supers@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-property-literals@7.24.1", + "pkgId": "@babel/plugin-transform-property-literals@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-display-name@7.24.1", + "pkgId": "@babel/plugin-transform-react-display-name@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-jsx@7.23.4", + "pkgId": "@babel/plugin-transform-react-jsx@7.23.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.24.1" + }, + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-shorthand-properties@7.24.1", + "pkgId": "@babel/plugin-transform-shorthand-properties@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-spread@7.24.1", + "pkgId": "@babel/plugin-transform-spread@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-template-literals@7.24.1", + "pkgId": "@babel/plugin-transform-template-literals@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0", + "pkgId": "babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fb-watchman@2.0.2", + "pkgId": "fb-watchman@2.0.2", + "deps": [ + { + "nodeId": "bser@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bser@2.1.1", + "pkgId": "bser@2.1.1", + "deps": [ + { + "nodeId": "node-int64@0.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-int64@0.4.0", + "pkgId": "node-int64@0.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fbjs@3.0.5", + "pkgId": "fbjs@3.0.5", + "deps": [ + { + "nodeId": "cross-fetch@3.1.8" + }, + { + "nodeId": "fbjs-css-vars@1.0.2" + }, + { + "nodeId": "loose-envify@1.4.0" + }, + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "promise@7.3.1" + }, + { + "nodeId": "setimmediate@1.0.5" + }, + { + "nodeId": "ua-parser-js@1.0.37" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cross-fetch@3.1.8", + "pkgId": "cross-fetch@3.1.8", + "deps": [ + { + "nodeId": "node-fetch@2.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-fetch@2.7.0", + "pkgId": "node-fetch@2.7.0", + "deps": [ + { + "nodeId": "whatwg-url@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "whatwg-url@5.0.0", + "pkgId": "whatwg-url@5.0.0", + "deps": [ + { + "nodeId": "tr46@0.0.3" + }, + { + "nodeId": "webidl-conversions@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tr46@0.0.3", + "pkgId": "tr46@0.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webidl-conversions@3.0.1", + "pkgId": "webidl-conversions@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fbjs-css-vars@1.0.2", + "pkgId": "fbjs-css-vars@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "promise@7.3.1", + "pkgId": "promise@7.3.1", + "deps": [ + { + "nodeId": "asap@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "asap@2.0.6", + "pkgId": "asap@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "setimmediate@1.0.5", + "pkgId": "setimmediate@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ua-parser-js@1.0.37", + "pkgId": "ua-parser-js@1.0.37", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "immutable@3.7.6", + "pkgId": "immutable@3.7.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nullthrows@1.1.1", + "pkgId": "nullthrows@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "relay-runtime@12.0.0", + "pkgId": "relay-runtime@12.0.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "fbjs@3.0.5" + }, + { + "nodeId": "invariant@2.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "signedsource@1.0.0", + "pkgId": "signedsource@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yargs@15.4.1", + "pkgId": "yargs@15.4.1", + "deps": [ + { + "nodeId": "cliui@6.0.0" + }, + { + "nodeId": "decamelize@1.2.0" + }, + { + "nodeId": "find-up@4.1.0" + }, + { + "nodeId": "get-caller-file@2.0.5" + }, + { + "nodeId": "require-directory@2.1.1" + }, + { + "nodeId": "require-main-filename@2.0.0" + }, + { + "nodeId": "set-blocking@2.0.0" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "which-module@2.0.1" + }, + { + "nodeId": "y18n@4.0.3" + }, + { + "nodeId": "yargs-parser@18.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cliui@6.0.0", + "pkgId": "cliui@6.0.0", + "deps": [ + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "wrap-ansi@6.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wrap-ansi@6.2.0", + "pkgId": "wrap-ansi@6.2.0", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "decamelize@1.2.0", + "pkgId": "decamelize@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "find-up@4.1.0", + "pkgId": "find-up@4.1.0", + "deps": [ + { + "nodeId": "locate-path@5.0.0" + }, + { + "nodeId": "path-exists@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "locate-path@5.0.0", + "pkgId": "locate-path@5.0.0", + "deps": [ + { + "nodeId": "p-locate@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-locate@4.1.0", + "pkgId": "p-locate@4.1.0", + "deps": [ + { + "nodeId": "p-limit@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-limit@2.3.0", + "pkgId": "p-limit@2.3.0", + "deps": [ + { + "nodeId": "p-try@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-try@2.2.0", + "pkgId": "p-try@2.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-exists@4.0.0", + "pkgId": "path-exists@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-caller-file@2.0.5", + "pkgId": "get-caller-file@2.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "require-directory@2.1.1", + "pkgId": "require-directory@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "require-main-filename@2.0.0", + "pkgId": "require-main-filename@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "set-blocking@2.0.0", + "pkgId": "set-blocking@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which-module@2.0.1", + "pkgId": "which-module@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "y18n@4.0.3", + "pkgId": "y18n@4.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yargs-parser@18.1.3", + "pkgId": "yargs-parser@18.1.3", + "deps": [ + { + "nodeId": "camelcase@5.3.1" + }, + { + "nodeId": "decamelize@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "camelcase@5.3.1", + "pkgId": "camelcase@5.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "auto-bind@4.0.0", + "pkgId": "auto-bind@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dependency-graph@0.11.0", + "pkgId": "dependency-graph@0.11.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graphql-tag@2.12.6", + "pkgId": "graphql-tag@2.12.6", + "deps": [ + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tslib@2.6.2", + "pkgId": "tslib@2.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-filepath@1.0.2", + "pkgId": "parse-filepath@1.0.2", + "deps": [ + { + "nodeId": "is-absolute@1.0.0" + }, + { + "nodeId": "map-cache@0.2.2" + }, + { + "nodeId": "path-root@0.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-absolute@1.0.0", + "pkgId": "is-absolute@1.0.0", + "deps": [ + { + "nodeId": "is-relative@1.0.0" + }, + { + "nodeId": "is-windows@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-relative@1.0.0", + "pkgId": "is-relative@1.0.0", + "deps": [ + { + "nodeId": "is-unc-path@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-unc-path@1.0.0", + "pkgId": "is-unc-path@1.0.0", + "deps": [ + { + "nodeId": "unc-path-regex@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unc-path-regex@0.1.2", + "pkgId": "unc-path-regex@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-windows@1.0.2", + "pkgId": "is-windows@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "map-cache@0.2.2", + "pkgId": "map-cache@0.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-root@0.1.1", + "pkgId": "path-root@0.1.1", + "deps": [ + { + "nodeId": "path-root-regex@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-root-regex@0.1.2", + "pkgId": "path-root-regex@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-codegen/typescript-operations@2.5.13", + "pkgId": "@graphql-codegen/typescript-operations@2.5.13", + "deps": [ + { + "nodeId": "@graphql-codegen/plugin-helpers@3.1.2" + }, + { + "nodeId": "@graphql-codegen/typescript@2.8.8" + }, + { + "nodeId": "@graphql-codegen/visitor-plugin-common@2.13.8" + }, + { + "nodeId": "auto-bind@4.0.0" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/code-file-loader@7.3.23", + "pkgId": "@graphql-tools/code-file-loader@7.3.23", + "deps": [ + { + "nodeId": "@graphql-tools/graphql-tag-pluck@7.5.2" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "unixify@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/graphql-tag-pluck@7.5.2", + "pkgId": "@graphql-tools/graphql-tag-pluck@7.5.2", + "deps": [ + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-import-assertions@7.24.1" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-import-assertions@7.24.1", + "pkgId": "@babel/plugin-syntax-import-assertions@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "globby@11.1.0", + "pkgId": "globby@11.1.0", + "deps": [ + { + "nodeId": "array-union@2.1.0" + }, + { + "nodeId": "dir-glob@3.0.1" + }, + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "merge2@1.4.1" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-union@2.1.0", + "pkgId": "array-union@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dir-glob@3.0.1", + "pkgId": "dir-glob@3.0.1", + "deps": [ + { + "nodeId": "path-type@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-type@4.0.0", + "pkgId": "path-type@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fast-glob@3.3.2", + "pkgId": "fast-glob@3.3.2", + "deps": [ + { + "nodeId": "@nodelib/fs.stat@2.0.5" + }, + { + "nodeId": "@nodelib/fs.walk@1.2.8" + }, + { + "nodeId": "glob-parent@5.1.2" + }, + { + "nodeId": "merge2@1.4.1" + }, + { + "nodeId": "micromatch@4.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nodelib/fs.stat@2.0.5", + "pkgId": "@nodelib/fs.stat@2.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nodelib/fs.walk@1.2.8", + "pkgId": "@nodelib/fs.walk@1.2.8", + "deps": [ + { + "nodeId": "@nodelib/fs.scandir@2.1.5" + }, + { + "nodeId": "fastq@1.17.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nodelib/fs.scandir@2.1.5", + "pkgId": "@nodelib/fs.scandir@2.1.5", + "deps": [ + { + "nodeId": "@nodelib/fs.stat@2.0.5" + }, + { + "nodeId": "run-parallel@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "run-parallel@1.2.0", + "pkgId": "run-parallel@1.2.0", + "deps": [ + { + "nodeId": "queue-microtask@1.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "queue-microtask@1.2.3", + "pkgId": "queue-microtask@1.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fastq@1.17.1", + "pkgId": "fastq@1.17.1", + "deps": [ + { + "nodeId": "reusify@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "reusify@1.0.4", + "pkgId": "reusify@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge2@1.4.1", + "pkgId": "merge2@1.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "micromatch@4.0.5", + "pkgId": "micromatch@4.0.5", + "deps": [ + { + "nodeId": "braces@3.0.2" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "braces@3.0.2", + "pkgId": "braces@3.0.2", + "deps": [ + { + "nodeId": "fill-range@7.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fill-range@7.0.1", + "pkgId": "fill-range@7.0.1", + "deps": [ + { + "nodeId": "to-regex-range@5.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "to-regex-range@5.0.1", + "pkgId": "to-regex-range@5.0.1", + "deps": [ + { + "nodeId": "is-number@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-number@7.0.0", + "pkgId": "is-number@7.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "picomatch@2.3.1", + "pkgId": "picomatch@2.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ignore@5.3.1", + "pkgId": "ignore@5.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "slash@3.0.0", + "pkgId": "slash@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unixify@1.0.0", + "pkgId": "unixify@1.0.0", + "deps": [ + { + "nodeId": "normalize-path@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "normalize-path@2.1.1", + "pkgId": "normalize-path@2.1.1", + "deps": [ + { + "nodeId": "remove-trailing-separator@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remove-trailing-separator@1.1.0", + "pkgId": "remove-trailing-separator@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@graphql-tools/load@7.8.14", + "pkgId": "@graphql-tools/load@7.8.14", + "deps": [ + { + "nodeId": "@graphql-tools/schema@9.0.19" + }, + { + "nodeId": "@graphql-tools/utils@9.2.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "p-limit@3.1.0" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-limit@3.1.0", + "pkgId": "p-limit@3.1.0", + "deps": [ + { + "nodeId": "yocto-queue@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yocto-queue@0.1.0", + "pkgId": "yocto-queue@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/cache@2.6.2", + "pkgId": "@parcel/cache@2.6.2", + "deps": [ + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@parcel/fs@2.6.2" + }, + { + "nodeId": "@parcel/logger@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "lmdb@2.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/core@2.6.2", + "pkgId": "@parcel/core@2.6.2", + "deps": [ + { + "nodeId": "@mischnic/json-sourcemap@0.1.1" + }, + { + "nodeId": "@parcel/cache@2.6.2" + }, + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/events@2.6.2" + }, + { + "nodeId": "@parcel/fs@2.6.2" + }, + { + "nodeId": "@parcel/graph@2.6.2" + }, + { + "nodeId": "@parcel/hash@2.6.2" + }, + { + "nodeId": "@parcel/logger@2.6.2" + }, + { + "nodeId": "@parcel/package-manager@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/source-map@2.1.1" + }, + { + "nodeId": "@parcel/types@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "@parcel/workers@2.6.2" + }, + { + "nodeId": "abortcontroller-polyfill@1.7.5" + }, + { + "nodeId": "base-x@3.0.9" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "clone@2.1.2" + }, + { + "nodeId": "dotenv@7.0.0" + }, + { + "nodeId": "dotenv-expand@5.1.0" + }, + { + "nodeId": "json5@2.2.3" + }, + { + "nodeId": "msgpackr@1.10.1" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "semver@5.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@mischnic/json-sourcemap@0.1.1", + "pkgId": "@mischnic/json-sourcemap@0.1.1", + "deps": [ + { + "nodeId": "@lezer/common@1.2.1" + }, + { + "nodeId": "@lezer/lr@1.4.0" + }, + { + "nodeId": "json5@2.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@lezer/common@1.2.1", + "pkgId": "@lezer/common@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@lezer/lr@1.4.0", + "pkgId": "@lezer/lr@1.4.0", + "deps": [ + { + "nodeId": "@lezer/common@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/diagnostic@2.6.2", + "pkgId": "@parcel/diagnostic@2.6.2", + "deps": [ + { + "nodeId": "@mischnic/json-sourcemap@0.1.1" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/events@2.6.2", + "pkgId": "@parcel/events@2.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/fs@2.6.2", + "pkgId": "@parcel/fs@2.6.2", + "deps": [ + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@parcel/fs-search@2.6.2" + }, + { + "nodeId": "@parcel/types@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "@parcel/watcher@2.4.1" + }, + { + "nodeId": "@parcel/workers@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/fs-search@2.6.2", + "pkgId": "@parcel/fs-search@2.6.2", + "deps": [ + { + "nodeId": "detect-libc@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detect-libc@1.0.3", + "pkgId": "detect-libc@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/types@2.6.2", + "pkgId": "@parcel/types@2.6.2", + "deps": [ + { + "nodeId": "@parcel/cache@2.6.2" + }, + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/fs@2.6.2" + }, + { + "nodeId": "@parcel/package-manager@2.6.2" + }, + { + "nodeId": "@parcel/source-map@2.1.1" + }, + { + "nodeId": "@parcel/workers@2.6.2" + }, + { + "nodeId": "utility-types@3.11.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/package-manager@2.6.2", + "pkgId": "@parcel/package-manager@2.6.2", + "deps": [ + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/fs@2.6.2" + }, + { + "nodeId": "@parcel/logger@2.6.2" + }, + { + "nodeId": "@parcel/types@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "@parcel/workers@2.6.2" + }, + { + "nodeId": "semver@5.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/logger@2.6.2", + "pkgId": "@parcel/logger@2.6.2", + "deps": [ + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/events@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/utils@2.6.2", + "pkgId": "@parcel/utils@2.6.2", + "deps": [ + { + "nodeId": "@parcel/codeframe@2.6.2" + }, + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/hash@2.6.2" + }, + { + "nodeId": "@parcel/logger@2.6.2" + }, + { + "nodeId": "@parcel/markdown-ansi@2.6.2" + }, + { + "nodeId": "@parcel/source-map@2.1.1" + }, + { + "nodeId": "chalk@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/codeframe@2.6.2", + "pkgId": "@parcel/codeframe@2.6.2", + "deps": [ + { + "nodeId": "chalk@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/hash@2.6.2", + "pkgId": "@parcel/hash@2.6.2", + "deps": [ + { + "nodeId": "detect-libc@1.0.3" + }, + { + "nodeId": "xxhash-wasm@0.4.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xxhash-wasm@0.4.2", + "pkgId": "xxhash-wasm@0.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/markdown-ansi@2.6.2", + "pkgId": "@parcel/markdown-ansi@2.6.2", + "deps": [ + { + "nodeId": "chalk@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/source-map@2.1.1", + "pkgId": "@parcel/source-map@2.1.1", + "deps": [ + { + "nodeId": "detect-libc@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/workers@2.6.2", + "pkgId": "@parcel/workers@2.6.2", + "deps": [ + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/logger@2.6.2" + }, + { + "nodeId": "@parcel/types@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "chrome-trace-event@1.0.3" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chrome-trace-event@1.0.3", + "pkgId": "chrome-trace-event@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver@5.7.2", + "pkgId": "semver@5.7.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "utility-types@3.11.0", + "pkgId": "utility-types@3.11.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/watcher@2.4.1", + "pkgId": "@parcel/watcher@2.4.1", + "deps": [ + { + "nodeId": "detect-libc@1.0.3" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "node-addon-api@7.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-addon-api@7.1.0", + "pkgId": "node-addon-api@7.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/graph@2.6.2", + "pkgId": "@parcel/graph@2.6.2", + "deps": [ + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/plugin@2.6.2", + "pkgId": "@parcel/plugin@2.6.2", + "deps": [ + { + "nodeId": "@parcel/types@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "abortcontroller-polyfill@1.7.5", + "pkgId": "abortcontroller-polyfill@1.7.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "base-x@3.0.9", + "pkgId": "base-x@3.0.9", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-buffer@5.2.1", + "pkgId": "safe-buffer@5.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clone@2.1.2", + "pkgId": "clone@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dotenv@7.0.0", + "pkgId": "dotenv@7.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dotenv-expand@5.1.0", + "pkgId": "dotenv-expand@5.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "msgpackr@1.10.1", + "pkgId": "msgpackr@1.10.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lmdb@2.5.2", + "pkgId": "lmdb@2.5.2", + "deps": [ + { + "nodeId": "msgpackr@1.10.1" + }, + { + "nodeId": "node-addon-api@4.3.0" + }, + { + "nodeId": "node-gyp-build-optional-packages@5.0.3" + }, + { + "nodeId": "ordered-binary@1.5.1" + }, + { + "nodeId": "weak-lru-cache@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-addon-api@4.3.0", + "pkgId": "node-addon-api@4.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-gyp-build-optional-packages@5.0.3", + "pkgId": "node-gyp-build-optional-packages@5.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ordered-binary@1.5.1", + "pkgId": "ordered-binary@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "weak-lru-cache@1.2.2", + "pkgId": "weak-lru-cache@1.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13", + "pkgId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13", + "deps": [ + { + "nodeId": "ansi-html-community@0.0.8" + }, + { + "nodeId": "core-js-pure@3.37.0" + }, + { + "nodeId": "error-stack-parser@2.1.4" + }, + { + "nodeId": "html-entities@2.5.2" + }, + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "react-refresh@0.14.2" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "source-map@0.7.4" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-js-pure@3.37.0", + "pkgId": "core-js-pure@3.37.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "error-stack-parser@2.1.4", + "pkgId": "error-stack-parser@2.1.4", + "deps": [ + { + "nodeId": "stackframe@1.3.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stackframe@1.3.4", + "pkgId": "stackframe@1.3.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loader-utils@2.0.4", + "pkgId": "loader-utils@2.0.4", + "deps": [ + { + "nodeId": "big.js@5.2.2" + }, + { + "nodeId": "emojis-list@3.0.0" + }, + { + "nodeId": "json5@2.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "big.js@5.2.2", + "pkgId": "big.js@5.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emojis-list@3.0.0", + "pkgId": "emojis-list@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-refresh@0.14.2", + "pkgId": "react-refresh@0.14.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "schema-utils@3.3.0", + "pkgId": "schema-utils@3.3.0", + "deps": [ + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "ajv@6.12.6" + }, + { + "nodeId": "ajv-keywords@3.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/json-schema@7.0.15", + "pkgId": "@types/json-schema@7.0.15", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ajv-keywords@3.5.2", + "pkgId": "ajv-keywords@3.5.2", + "deps": [ + { + "nodeId": "ajv@6.12.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map@0.7.4", + "pkgId": "source-map@0.7.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack@5.91.0", + "pkgId": "webpack@5.91.0", + "deps": [ + { + "nodeId": "@types/eslint-scope@3.7.7" + }, + { + "nodeId": "@types/estree@1.0.5" + }, + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-edit@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-parser@1.12.1" + }, + { + "nodeId": "acorn@8.11.3" + }, + { + "nodeId": "acorn-import-assertions@1.9.0" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "chrome-trace-event@1.0.3" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "es-module-lexer@1.5.2" + }, + { + "nodeId": "eslint-scope@5.1.1" + }, + { + "nodeId": "events@3.3.0" + }, + { + "nodeId": "glob-to-regexp@0.4.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "json-parse-even-better-errors@2.3.1" + }, + { + "nodeId": "loader-runner@4.3.0" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "neo-async@2.6.2" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "tapable@2.2.1" + }, + { + "nodeId": "terser-webpack-plugin@5.3.10" + }, + { + "nodeId": "watchpack@2.4.1" + }, + { + "nodeId": "webpack-sources@3.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/eslint-scope@3.7.7", + "pkgId": "@types/eslint-scope@3.7.7", + "deps": [ + { + "nodeId": "@types/eslint@8.56.10" + }, + { + "nodeId": "@types/estree@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/eslint@8.56.10", + "pkgId": "@types/eslint@8.56.10", + "deps": [ + { + "nodeId": "@types/estree@1.0.5" + }, + { + "nodeId": "@types/json-schema@7.0.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/estree@1.0.5", + "pkgId": "@types/estree@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/ast@1.12.1", + "pkgId": "@webassemblyjs/ast@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/helper-numbers@1.11.6" + }, + { + "nodeId": "@webassemblyjs/helper-wasm-bytecode@1.11.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/helper-numbers@1.11.6", + "pkgId": "@webassemblyjs/helper-numbers@1.11.6", + "deps": [ + { + "nodeId": "@webassemblyjs/floating-point-hex-parser@1.11.6" + }, + { + "nodeId": "@webassemblyjs/helper-api-error@1.11.6" + }, + { + "nodeId": "@xtuc/long@4.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/floating-point-hex-parser@1.11.6", + "pkgId": "@webassemblyjs/floating-point-hex-parser@1.11.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/helper-api-error@1.11.6", + "pkgId": "@webassemblyjs/helper-api-error@1.11.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@xtuc/long@4.2.2", + "pkgId": "@xtuc/long@4.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/helper-wasm-bytecode@1.11.6", + "pkgId": "@webassemblyjs/helper-wasm-bytecode@1.11.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/wasm-edit@1.12.1", + "pkgId": "@webassemblyjs/wasm-edit@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-buffer@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-wasm-bytecode@1.11.6" + }, + { + "nodeId": "@webassemblyjs/helper-wasm-section@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-gen@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-opt@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-parser@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wast-printer@1.12.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/helper-buffer@1.12.1", + "pkgId": "@webassemblyjs/helper-buffer@1.12.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/helper-wasm-section@1.12.1", + "pkgId": "@webassemblyjs/helper-wasm-section@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-buffer@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-wasm-bytecode@1.11.6" + }, + { + "nodeId": "@webassemblyjs/wasm-gen@1.12.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/wasm-gen@1.12.1", + "pkgId": "@webassemblyjs/wasm-gen@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-wasm-bytecode@1.11.6" + }, + { + "nodeId": "@webassemblyjs/ieee754@1.11.6" + }, + { + "nodeId": "@webassemblyjs/leb128@1.11.6" + }, + { + "nodeId": "@webassemblyjs/utf8@1.11.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/ieee754@1.11.6", + "pkgId": "@webassemblyjs/ieee754@1.11.6", + "deps": [ + { + "nodeId": "@xtuc/ieee754@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@xtuc/ieee754@1.2.0", + "pkgId": "@xtuc/ieee754@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/leb128@1.11.6", + "pkgId": "@webassemblyjs/leb128@1.11.6", + "deps": [ + { + "nodeId": "@xtuc/long@4.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/utf8@1.11.6", + "pkgId": "@webassemblyjs/utf8@1.11.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/wasm-opt@1.12.1", + "pkgId": "@webassemblyjs/wasm-opt@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-buffer@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-gen@1.12.1" + }, + { + "nodeId": "@webassemblyjs/wasm-parser@1.12.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/wasm-parser@1.12.1", + "pkgId": "@webassemblyjs/wasm-parser@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@webassemblyjs/helper-api-error@1.11.6" + }, + { + "nodeId": "@webassemblyjs/helper-wasm-bytecode@1.11.6" + }, + { + "nodeId": "@webassemblyjs/ieee754@1.11.6" + }, + { + "nodeId": "@webassemblyjs/leb128@1.11.6" + }, + { + "nodeId": "@webassemblyjs/utf8@1.11.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@webassemblyjs/wast-printer@1.12.1", + "pkgId": "@webassemblyjs/wast-printer@1.12.1", + "deps": [ + { + "nodeId": "@webassemblyjs/ast@1.12.1" + }, + { + "nodeId": "@xtuc/long@4.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn@8.11.3", + "pkgId": "acorn@8.11.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn-import-assertions@1.9.0", + "pkgId": "acorn-import-assertions@1.9.0", + "deps": [ + { + "nodeId": "acorn@8.11.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "enhanced-resolve@5.16.1", + "pkgId": "enhanced-resolve@5.16.1", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "tapable@2.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graceful-fs@4.2.11", + "pkgId": "graceful-fs@4.2.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tapable@2.2.1", + "pkgId": "tapable@2.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-module-lexer@1.5.2", + "pkgId": "es-module-lexer@1.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "events@3.3.0", + "pkgId": "events@3.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "glob-to-regexp@0.4.1", + "pkgId": "glob-to-regexp@0.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-parse-even-better-errors@2.3.1", + "pkgId": "json-parse-even-better-errors@2.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loader-runner@4.3.0", + "pkgId": "loader-runner@4.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "neo-async@2.6.2", + "pkgId": "neo-async@2.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "terser-webpack-plugin@5.3.10", + "pkgId": "terser-webpack-plugin@5.3.10", + "deps": [ + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "serialize-javascript@6.0.2" + }, + { + "nodeId": "terser@5.31.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-worker@27.5.1", + "pkgId": "jest-worker@27.5.1", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "merge-stream@2.0.0" + }, + { + "nodeId": "supports-color@8.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/node@20.12.11", + "pkgId": "@types/node@20.12.11", + "deps": [ + { + "nodeId": "undici-types@5.26.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "undici-types@5.26.5", + "pkgId": "undici-types@5.26.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge-stream@2.0.0", + "pkgId": "merge-stream@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-color@8.1.1", + "pkgId": "supports-color@8.1.1", + "deps": [ + { + "nodeId": "has-flag@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serialize-javascript@6.0.2", + "pkgId": "serialize-javascript@6.0.2", + "deps": [ + { + "nodeId": "randombytes@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "randombytes@2.1.0", + "pkgId": "randombytes@2.1.0", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "terser@5.31.0", + "pkgId": "terser@5.31.0", + "deps": [ + { + "nodeId": "@jridgewell/source-map@0.3.6" + }, + { + "nodeId": "acorn@8.11.3" + }, + { + "nodeId": "commander@2.20.3" + }, + { + "nodeId": "source-map-support@0.5.21" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jridgewell/source-map@0.3.6", + "pkgId": "@jridgewell/source-map@0.3.6", + "deps": [ + { + "nodeId": "@jridgewell/gen-mapping@0.3.5" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "commander@2.20.3", + "pkgId": "commander@2.20.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-support@0.5.21", + "pkgId": "source-map-support@0.5.21", + "deps": [ + { + "nodeId": "buffer-from@1.1.2" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "buffer-from@1.1.2", + "pkgId": "buffer-from@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map@0.6.1", + "pkgId": "source-map@0.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "watchpack@2.4.1", + "pkgId": "watchpack@2.4.1", + "deps": [ + { + "nodeId": "glob-to-regexp@0.4.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-sources@3.2.3", + "pkgId": "webpack-sources@3.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/http-proxy@1.17.14", + "pkgId": "@types/http-proxy@1.17.14", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/eslint-plugin@4.33.0", + "pkgId": "@typescript-eslint/eslint-plugin@4.33.0", + "deps": [ + { + "nodeId": "@typescript-eslint/experimental-utils@4.33.0" + }, + { + "nodeId": "@typescript-eslint/parser@4.33.0" + }, + { + "nodeId": "@typescript-eslint/scope-manager@4.33.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "functional-red-black-tree@1.0.1" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "regexpp@3.2.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "tsutils@3.21.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/experimental-utils@4.33.0", + "pkgId": "@typescript-eslint/experimental-utils@4.33.0", + "deps": [ + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "@typescript-eslint/scope-manager@4.33.0" + }, + { + "nodeId": "@typescript-eslint/types@4.33.0" + }, + { + "nodeId": "@typescript-eslint/typescript-estree@4.33.0" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-scope@5.1.1" + }, + { + "nodeId": "eslint-utils@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/scope-manager@4.33.0", + "pkgId": "@typescript-eslint/scope-manager@4.33.0", + "deps": [ + { + "nodeId": "@typescript-eslint/types@4.33.0" + }, + { + "nodeId": "@typescript-eslint/visitor-keys@4.33.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/types@4.33.0", + "pkgId": "@typescript-eslint/types@4.33.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/visitor-keys@4.33.0", + "pkgId": "@typescript-eslint/visitor-keys@4.33.0", + "deps": [ + { + "nodeId": "@typescript-eslint/types@4.33.0" + }, + { + "nodeId": "eslint-visitor-keys@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/typescript-estree@4.33.0", + "pkgId": "@typescript-eslint/typescript-estree@4.33.0", + "deps": [ + { + "nodeId": "@typescript-eslint/types@4.33.0" + }, + { + "nodeId": "@typescript-eslint/visitor-keys@4.33.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "tsutils@3.21.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tsutils@3.21.0", + "pkgId": "tsutils@3.21.0", + "deps": [ + { + "nodeId": "tslib@1.14.1" + }, + { + "nodeId": "typescript@4.9.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tslib@1.14.1", + "pkgId": "tslib@1.14.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typescript@4.9.5", + "pkgId": "typescript@4.9.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-utils@3.0.0", + "pkgId": "eslint-utils@3.0.0", + "deps": [ + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-visitor-keys@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/parser@4.33.0", + "pkgId": "@typescript-eslint/parser@4.33.0", + "deps": [ + { + "nodeId": "@typescript-eslint/scope-manager@4.33.0" + }, + { + "nodeId": "@typescript-eslint/types@4.33.0" + }, + { + "nodeId": "@typescript-eslint/typescript-estree@4.33.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "eslint@7.32.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@vercel/webpack-asset-relocator-loader@1.7.3", + "pkgId": "@vercel/webpack-asset-relocator-loader@1.7.3", + "deps": [ + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve@1.22.8", + "pkgId": "resolve@1.22.8", + "deps": [ + { + "nodeId": "is-core-module@2.13.1" + }, + { + "nodeId": "path-parse@1.0.7" + }, + { + "nodeId": "supports-preserve-symlinks-flag@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-core-module@2.13.1", + "pkgId": "is-core-module@2.13.1", + "deps": [ + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hasown@2.0.2", + "pkgId": "hasown@2.0.2", + "deps": [ + { + "nodeId": "function-bind@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "function-bind@1.1.2", + "pkgId": "function-bind@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-parse@1.0.7", + "pkgId": "path-parse@1.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-preserve-symlinks-flag@1.0.0", + "pkgId": "supports-preserve-symlinks-flag@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn-loose@8.4.0", + "pkgId": "acorn-loose@8.4.0", + "deps": [ + { + "nodeId": "acorn@8.11.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn-walk@8.3.2", + "pkgId": "acorn-walk@8.3.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "address@1.1.2", + "pkgId": "address@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "anser@2.1.1", + "pkgId": "anser@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "autoprefixer@10.4.19", + "pkgId": "autoprefixer@10.4.19", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "caniuse-lite@1.0.30001617" + }, + { + "nodeId": "fraction.js@4.3.7" + }, + { + "nodeId": "normalize-range@0.1.2" + }, + { + "nodeId": "picocolors@1.0.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fraction.js@4.3.7", + "pkgId": "fraction.js@4.3.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "normalize-range@0.1.2", + "pkgId": "normalize-range@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss@8.4.38", + "pkgId": "postcss@8.4.38", + "deps": [ + { + "nodeId": "nanoid@3.3.7" + }, + { + "nodeId": "picocolors@1.0.0" + }, + { + "nodeId": "source-map-js@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nanoid@3.3.7", + "pkgId": "nanoid@3.3.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-js@1.2.0", + "pkgId": "source-map-js@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-value-parser@4.2.0", + "pkgId": "postcss-value-parser@4.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "axios@0.21.4", + "pkgId": "axios@0.21.4", + "deps": [ + { + "nodeId": "follow-redirects@1.15.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "follow-redirects@1.15.6", + "pkgId": "follow-redirects@1.15.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-loader@8.3.0", + "pkgId": "babel-loader@8.3.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "find-cache-dir@3.3.2" + }, + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "make-dir@3.1.0" + }, + { + "nodeId": "schema-utils@2.7.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "find-cache-dir@3.3.2", + "pkgId": "find-cache-dir@3.3.2", + "deps": [ + { + "nodeId": "commondir@1.0.1" + }, + { + "nodeId": "make-dir@3.1.0" + }, + { + "nodeId": "pkg-dir@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "commondir@1.0.1", + "pkgId": "commondir@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "make-dir@3.1.0", + "pkgId": "make-dir@3.1.0", + "deps": [ + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pkg-dir@4.2.0", + "pkgId": "pkg-dir@4.2.0", + "deps": [ + { + "nodeId": "find-up@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "schema-utils@2.7.1", + "pkgId": "schema-utils@2.7.1", + "deps": [ + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "ajv@6.12.6" + }, + { + "nodeId": "ajv-keywords@3.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-add-module-exports@1.0.4", + "pkgId": "babel-plugin-add-module-exports@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-dynamic-import-node@2.3.3", + "pkgId": "babel-plugin-dynamic-import-node@2.3.3", + "deps": [ + { + "nodeId": "object.assign@4.1.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.assign@4.1.5", + "pkgId": "object.assign@4.1.5", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "object-keys@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "call-bind@1.0.7", + "pkgId": "call-bind@1.0.7", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "set-function-length@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-define-property@1.0.0", + "pkgId": "es-define-property@1.0.0", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-intrinsic@1.2.4", + "pkgId": "get-intrinsic@1.2.4", + "deps": [ + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-errors@1.3.0", + "pkgId": "es-errors@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-proto@1.0.3", + "pkgId": "has-proto@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-symbols@1.0.3", + "pkgId": "has-symbols@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "set-function-length@1.2.2", + "pkgId": "set-function-length@1.2.2", + "deps": [ + { + "nodeId": "define-data-property@1.1.4" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-data-property@1.1.4", + "pkgId": "define-data-property@1.1.4", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "gopd@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gopd@1.0.1", + "pkgId": "gopd@1.0.1", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-property-descriptors@1.0.2", + "pkgId": "has-property-descriptors@1.0.2", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-properties@1.2.1", + "pkgId": "define-properties@1.2.1", + "deps": [ + { + "nodeId": "define-data-property@1.1.4" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + }, + { + "nodeId": "object-keys@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-keys@1.1.1", + "pkgId": "object-keys@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-lodash@3.3.4", + "pkgId": "babel-plugin-lodash@3.3.4", + "deps": [ + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "require-package-name@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "require-package-name@2.0.1", + "pkgId": "require-package-name@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-remove-graphql-queries@4.25.0", + "pkgId": "babel-plugin-remove-graphql-queries@4.25.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-core-utils@3.25.0", + "pkgId": "gatsby-core-utils@3.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "ci-info@2.0.0" + }, + { + "nodeId": "configstore@5.0.1" + }, + { + "nodeId": "fastq@1.17.1" + }, + { + "nodeId": "file-type@16.5.4" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "got@11.8.6" + }, + { + "nodeId": "import-from@4.0.0" + }, + { + "nodeId": "lmdb@2.5.3" + }, + { + "nodeId": "lock@1.1.0" + }, + { + "nodeId": "node-object-hash@2.3.10" + }, + { + "nodeId": "proper-lockfile@4.1.2" + }, + { + "nodeId": "resolve-from@5.0.0" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "xdg-basedir@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ci-info@2.0.0", + "pkgId": "ci-info@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "configstore@5.0.1", + "pkgId": "configstore@5.0.1", + "deps": [ + { + "nodeId": "dot-prop@5.3.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "make-dir@3.1.0" + }, + { + "nodeId": "unique-string@2.0.0" + }, + { + "nodeId": "write-file-atomic@3.0.3" + }, + { + "nodeId": "xdg-basedir@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dot-prop@5.3.0", + "pkgId": "dot-prop@5.3.0", + "deps": [ + { + "nodeId": "is-obj@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-obj@2.0.0", + "pkgId": "is-obj@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unique-string@2.0.0", + "pkgId": "unique-string@2.0.0", + "deps": [ + { + "nodeId": "crypto-random-string@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "crypto-random-string@2.0.0", + "pkgId": "crypto-random-string@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "write-file-atomic@3.0.3", + "pkgId": "write-file-atomic@3.0.3", + "deps": [ + { + "nodeId": "imurmurhash@0.1.4" + }, + { + "nodeId": "is-typedarray@1.0.0" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "typedarray-to-buffer@3.1.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-typedarray@1.0.0", + "pkgId": "is-typedarray@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "signal-exit@3.0.7", + "pkgId": "signal-exit@3.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typedarray-to-buffer@3.1.5", + "pkgId": "typedarray-to-buffer@3.1.5", + "deps": [ + { + "nodeId": "is-typedarray@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xdg-basedir@4.0.0", + "pkgId": "xdg-basedir@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "file-type@16.5.4", + "pkgId": "file-type@16.5.4", + "deps": [ + { + "nodeId": "readable-web-to-node-stream@3.0.2" + }, + { + "nodeId": "strtok3@6.3.0" + }, + { + "nodeId": "token-types@4.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-web-to-node-stream@3.0.2", + "pkgId": "readable-web-to-node-stream@3.0.2", + "deps": [ + { + "nodeId": "readable-stream@3.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-stream@3.6.2", + "pkgId": "readable-stream@3.6.2", + "deps": [ + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "string_decoder@1.3.0" + }, + { + "nodeId": "util-deprecate@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string_decoder@1.3.0", + "pkgId": "string_decoder@1.3.0", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "util-deprecate@1.0.2", + "pkgId": "util-deprecate@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strtok3@6.3.0", + "pkgId": "strtok3@6.3.0", + "deps": [ + { + "nodeId": "@tokenizer/token@0.3.0" + }, + { + "nodeId": "peek-readable@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@tokenizer/token@0.3.0", + "pkgId": "@tokenizer/token@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "peek-readable@4.1.0", + "pkgId": "peek-readable@4.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "token-types@4.2.1", + "pkgId": "token-types@4.2.1", + "deps": [ + { + "nodeId": "@tokenizer/token@0.3.0" + }, + { + "nodeId": "ieee754@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ieee754@1.2.1", + "pkgId": "ieee754@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-extra@10.1.0", + "pkgId": "fs-extra@10.1.0", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jsonfile@6.1.0" + }, + { + "nodeId": "universalify@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonfile@6.1.0", + "pkgId": "jsonfile@6.1.0", + "deps": [ + { + "nodeId": "universalify@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "universalify@2.0.1", + "pkgId": "universalify@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "got@11.8.6", + "pkgId": "got@11.8.6", + "deps": [ + { + "nodeId": "@sindresorhus/is@4.6.0" + }, + { + "nodeId": "@szmarczak/http-timer@4.0.6" + }, + { + "nodeId": "@types/cacheable-request@6.0.3" + }, + { + "nodeId": "@types/responselike@1.0.3" + }, + { + "nodeId": "cacheable-lookup@5.0.4" + }, + { + "nodeId": "cacheable-request@7.0.4" + }, + { + "nodeId": "decompress-response@6.0.0" + }, + { + "nodeId": "http2-wrapper@1.0.3" + }, + { + "nodeId": "lowercase-keys@2.0.0" + }, + { + "nodeId": "p-cancelable@2.1.1" + }, + { + "nodeId": "responselike@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sindresorhus/is@4.6.0", + "pkgId": "@sindresorhus/is@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@szmarczak/http-timer@4.0.6", + "pkgId": "@szmarczak/http-timer@4.0.6", + "deps": [ + { + "nodeId": "defer-to-connect@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "defer-to-connect@2.0.1", + "pkgId": "defer-to-connect@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/cacheable-request@6.0.3", + "pkgId": "@types/cacheable-request@6.0.3", + "deps": [ + { + "nodeId": "@types/http-cache-semantics@4.0.4" + }, + { + "nodeId": "@types/keyv@3.1.4" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/responselike@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/http-cache-semantics@4.0.4", + "pkgId": "@types/http-cache-semantics@4.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/keyv@3.1.4", + "pkgId": "@types/keyv@3.1.4", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/responselike@1.0.3", + "pkgId": "@types/responselike@1.0.3", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cacheable-lookup@5.0.4", + "pkgId": "cacheable-lookup@5.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cacheable-request@7.0.4", + "pkgId": "cacheable-request@7.0.4", + "deps": [ + { + "nodeId": "clone-response@1.0.3" + }, + { + "nodeId": "get-stream@5.2.0" + }, + { + "nodeId": "http-cache-semantics@4.1.1" + }, + { + "nodeId": "keyv@4.5.4" + }, + { + "nodeId": "lowercase-keys@2.0.0" + }, + { + "nodeId": "normalize-url@6.1.0" + }, + { + "nodeId": "responselike@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clone-response@1.0.3", + "pkgId": "clone-response@1.0.3", + "deps": [ + { + "nodeId": "mimic-response@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mimic-response@1.0.1", + "pkgId": "mimic-response@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-stream@5.2.0", + "pkgId": "get-stream@5.2.0", + "deps": [ + { + "nodeId": "pump@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pump@3.0.0", + "pkgId": "pump@3.0.0", + "deps": [ + { + "nodeId": "end-of-stream@1.4.4" + }, + { + "nodeId": "once@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "end-of-stream@1.4.4", + "pkgId": "end-of-stream@1.4.4", + "deps": [ + { + "nodeId": "once@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-cache-semantics@4.1.1", + "pkgId": "http-cache-semantics@4.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lowercase-keys@2.0.0", + "pkgId": "lowercase-keys@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "normalize-url@6.1.0", + "pkgId": "normalize-url@6.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "responselike@2.0.1", + "pkgId": "responselike@2.0.1", + "deps": [ + { + "nodeId": "lowercase-keys@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "decompress-response@6.0.0", + "pkgId": "decompress-response@6.0.0", + "deps": [ + { + "nodeId": "mimic-response@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mimic-response@3.1.0", + "pkgId": "mimic-response@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http2-wrapper@1.0.3", + "pkgId": "http2-wrapper@1.0.3", + "deps": [ + { + "nodeId": "quick-lru@5.1.1" + }, + { + "nodeId": "resolve-alpn@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "quick-lru@5.1.1", + "pkgId": "quick-lru@5.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve-alpn@1.2.1", + "pkgId": "resolve-alpn@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-cancelable@2.1.1", + "pkgId": "p-cancelable@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lmdb@2.5.3", + "pkgId": "lmdb@2.5.3", + "deps": [ + { + "nodeId": "msgpackr@1.10.1" + }, + { + "nodeId": "node-addon-api@4.3.0" + }, + { + "nodeId": "node-gyp-build-optional-packages@5.0.3" + }, + { + "nodeId": "ordered-binary@1.5.1" + }, + { + "nodeId": "weak-lru-cache@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lock@1.1.0", + "pkgId": "lock@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-object-hash@2.3.10", + "pkgId": "node-object-hash@2.3.10", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proper-lockfile@4.1.2", + "pkgId": "proper-lockfile@4.1.2", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "retry@0.12.0" + }, + { + "nodeId": "signal-exit@3.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "retry@0.12.0", + "pkgId": "retry@0.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve-from@5.0.0", + "pkgId": "resolve-from@5.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tmp@0.2.3", + "pkgId": "tmp@0.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-preset-gatsby@2.25.0", + "pkgId": "babel-preset-gatsby@2.25.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0" + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3" + }, + { + "nodeId": "@babel/plugin-transform-classes@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-runtime@7.24.3" + }, + { + "nodeId": "@babel/plugin-transform-spread@7.24.1" + }, + { + "nodeId": "@babel/preset-env@7.24.5" + }, + { + "nodeId": "@babel/preset-react@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "babel-plugin-dynamic-import-node@2.3.3" + }, + { + "nodeId": "babel-plugin-macros@3.1.0" + }, + { + "nodeId": "babel-plugin-transform-react-remove-prop-types@0.4.24" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-legacy-polyfills@2.25.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "pkgId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkgId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0", + "pkgId": "@babel/plugin-proposal-optional-chaining@7.21.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5" + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3", + "pkgId": "@babel/plugin-syntax-optional-chaining@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3", + "pkgId": "@babel/plugin-syntax-dynamic-import@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-runtime@7.24.3", + "pkgId": "@babel/plugin-transform-runtime@7.24.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "babel-plugin-polyfill-corejs2@0.4.11" + }, + { + "nodeId": "babel-plugin-polyfill-corejs3@0.10.4" + }, + { + "nodeId": "babel-plugin-polyfill-regenerator@0.6.2" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-polyfill-corejs2@0.4.11", + "pkgId": "babel-plugin-polyfill-corejs2@0.4.11", + "deps": [ + { + "nodeId": "@babel/compat-data@7.24.4" + }, + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-define-polyfill-provider@0.6.2" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-define-polyfill-provider@0.6.2", + "pkgId": "@babel/helper-define-polyfill-provider@0.6.2", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "lodash.debounce@4.0.8" + }, + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.debounce@4.0.8", + "pkgId": "lodash.debounce@4.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-polyfill-corejs3@0.10.4", + "pkgId": "babel-plugin-polyfill-corejs3@0.10.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-define-polyfill-provider@0.6.2" + }, + { + "nodeId": "core-js-compat@3.37.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-js-compat@3.37.0", + "pkgId": "core-js-compat@3.37.0", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-polyfill-regenerator@0.6.2", + "pkgId": "babel-plugin-polyfill-regenerator@0.6.2", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-define-polyfill-provider@0.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-env@7.24.5", + "pkgId": "@babel/preset-env@7.24.5", + "deps": [ + { + "nodeId": "@babel/compat-data@7.24.4" + }, + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5" + }, + { + "nodeId": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1" + }, + { + "nodeId": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1" + }, + { + "nodeId": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1" + }, + { + "nodeId": "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2" + }, + { + "nodeId": "@babel/plugin-syntax-async-generators@7.8.4" + }, + { + "nodeId": "@babel/plugin-syntax-class-properties@7.12.13" + }, + { + "nodeId": "@babel/plugin-syntax-class-static-block@7.14.5" + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-export-namespace-from@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-import-assertions@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-import-attributes@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-import-meta@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-json-strings@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-numeric-separator@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-catch-binding@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-private-property-in-object@7.14.5" + }, + { + "nodeId": "@babel/plugin-syntax-top-level-await@7.14.5" + }, + { + "nodeId": "@babel/plugin-syntax-unicode-sets-regex@7.18.6" + }, + { + "nodeId": "@babel/plugin-transform-arrow-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-async-generator-functions@7.24.3" + }, + { + "nodeId": "@babel/plugin-transform-async-to-generator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoped-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoping@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-class-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-class-static-block@7.24.4" + }, + { + "nodeId": "@babel/plugin-transform-classes@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-computed-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-destructuring@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-dotall-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-duplicate-keys@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-dynamic-import@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-exponentiation-operator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-export-namespace-from@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-for-of@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-function-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-json-strings@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-logical-assignment-operators@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-member-expression-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-amd@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-systemjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-umd@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-named-capturing-groups-regex@7.22.5" + }, + { + "nodeId": "@babel/plugin-transform-new-target@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-nullish-coalescing-operator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-numeric-separator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-object-rest-spread@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-object-super@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-optional-catch-binding@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-optional-chaining@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-private-methods@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-private-property-in-object@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-property-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-regenerator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-reserved-words@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-shorthand-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-spread@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-sticky-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-template-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-typeof-symbol@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-unicode-escapes@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-unicode-property-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-unicode-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-unicode-sets-regex@7.24.1" + }, + { + "nodeId": "@babel/preset-modules@0.1.6-no-external-plugins" + }, + { + "nodeId": "babel-plugin-polyfill-corejs2@0.4.11" + }, + { + "nodeId": "babel-plugin-polyfill-corejs3@0.10.4" + }, + { + "nodeId": "babel-plugin-polyfill-regenerator@0.6.2" + }, + { + "nodeId": "core-js-compat@3.37.0" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5", + "pkgId": "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1", + "pkgId": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1", + "pkgId": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5" + }, + { + "nodeId": "@babel/plugin-transform-optional-chaining@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-optional-chaining@7.24.5", + "pkgId": "@babel/plugin-transform-optional-chaining@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-skip-transparent-expression-wrappers@7.22.5" + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1", + "pkgId": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", + "pkgId": "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-async-generators@7.8.4", + "pkgId": "@babel/plugin-syntax-async-generators@7.8.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-class-static-block@7.14.5", + "pkgId": "@babel/plugin-syntax-class-static-block@7.14.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-export-namespace-from@7.8.3", + "pkgId": "@babel/plugin-syntax-export-namespace-from@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-import-attributes@7.24.1", + "pkgId": "@babel/plugin-syntax-import-attributes@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-import-meta@7.10.4", + "pkgId": "@babel/plugin-syntax-import-meta@7.10.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-json-strings@7.8.3", + "pkgId": "@babel/plugin-syntax-json-strings@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkgId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-numeric-separator@7.10.4", + "pkgId": "@babel/plugin-syntax-numeric-separator@7.10.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkgId": "@babel/plugin-syntax-optional-catch-binding@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-private-property-in-object@7.14.5", + "pkgId": "@babel/plugin-syntax-private-property-in-object@7.14.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-top-level-await@7.14.5", + "pkgId": "@babel/plugin-syntax-top-level-await@7.14.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-unicode-sets-regex@7.18.6", + "pkgId": "@babel/plugin-syntax-unicode-sets-regex@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15", + "pkgId": "@babel/helper-create-regexp-features-plugin@7.22.15", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "regexpu-core@5.3.2" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regexpu-core@5.3.2", + "pkgId": "regexpu-core@5.3.2", + "deps": [ + { + "nodeId": "@babel/regjsgen@0.8.0" + }, + { + "nodeId": "regenerate@1.4.2" + }, + { + "nodeId": "regenerate-unicode-properties@10.1.1" + }, + { + "nodeId": "regjsparser@0.9.1" + }, + { + "nodeId": "unicode-match-property-ecmascript@2.0.0" + }, + { + "nodeId": "unicode-match-property-value-ecmascript@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/regjsgen@0.8.0", + "pkgId": "@babel/regjsgen@0.8.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regenerate@1.4.2", + "pkgId": "regenerate@1.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regenerate-unicode-properties@10.1.1", + "pkgId": "regenerate-unicode-properties@10.1.1", + "deps": [ + { + "nodeId": "regenerate@1.4.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regjsparser@0.9.1", + "pkgId": "regjsparser@0.9.1", + "deps": [ + { + "nodeId": "jsesc@0.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsesc@0.5.0", + "pkgId": "jsesc@0.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unicode-match-property-ecmascript@2.0.0", + "pkgId": "unicode-match-property-ecmascript@2.0.0", + "deps": [ + { + "nodeId": "unicode-canonical-property-names-ecmascript@2.0.0" + }, + { + "nodeId": "unicode-property-aliases-ecmascript@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unicode-canonical-property-names-ecmascript@2.0.0", + "pkgId": "unicode-canonical-property-names-ecmascript@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unicode-property-aliases-ecmascript@2.1.0", + "pkgId": "unicode-property-aliases-ecmascript@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unicode-match-property-value-ecmascript@2.1.0", + "pkgId": "unicode-match-property-value-ecmascript@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-async-generator-functions@7.24.3", + "pkgId": "@babel/plugin-transform-async-generator-functions@7.24.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-remap-async-to-generator@7.22.20" + }, + { + "nodeId": "@babel/plugin-syntax-async-generators@7.8.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-remap-async-to-generator@7.22.20", + "pkgId": "@babel/helper-remap-async-to-generator@7.22.20", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-wrap-function@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-wrap-function@7.24.5", + "pkgId": "@babel/helper-wrap-function@7.24.5", + "deps": [ + { + "nodeId": "@babel/helper-function-name@7.23.0" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-async-to-generator@7.24.1", + "pkgId": "@babel/plugin-transform-async-to-generator@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-remap-async-to-generator@7.22.20" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-class-properties@7.24.1", + "pkgId": "@babel/plugin-transform-class-properties@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-class-static-block@7.24.4", + "pkgId": "@babel/plugin-transform-class-static-block@7.24.4", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-class-static-block@7.14.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-dotall-regex@7.24.1", + "pkgId": "@babel/plugin-transform-dotall-regex@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-duplicate-keys@7.24.1", + "pkgId": "@babel/plugin-transform-duplicate-keys@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-dynamic-import@7.24.1", + "pkgId": "@babel/plugin-transform-dynamic-import@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-exponentiation-operator@7.24.1", + "pkgId": "@babel/plugin-transform-exponentiation-operator@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15", + "pkgId": "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-export-namespace-from@7.24.1", + "pkgId": "@babel/plugin-transform-export-namespace-from@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-export-namespace-from@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-json-strings@7.24.1", + "pkgId": "@babel/plugin-transform-json-strings@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-json-strings@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-logical-assignment-operators@7.24.1", + "pkgId": "@babel/plugin-transform-logical-assignment-operators@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-modules-amd@7.24.1", + "pkgId": "@babel/plugin-transform-modules-amd@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-modules-systemjs@7.24.1", + "pkgId": "@babel/plugin-transform-modules-systemjs@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-hoist-variables@7.22.5" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-identifier@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-modules-umd@7.24.1", + "pkgId": "@babel/plugin-transform-modules-umd@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-named-capturing-groups-regex@7.22.5", + "pkgId": "@babel/plugin-transform-named-capturing-groups-regex@7.22.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-new-target@7.24.1", + "pkgId": "@babel/plugin-transform-new-target@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-nullish-coalescing-operator@7.24.1", + "pkgId": "@babel/plugin-transform-nullish-coalescing-operator@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-numeric-separator@7.24.1", + "pkgId": "@babel/plugin-transform-numeric-separator@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-numeric-separator@7.10.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-object-rest-spread@7.24.5", + "pkgId": "@babel/plugin-transform-object-rest-spread@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-optional-catch-binding@7.24.1", + "pkgId": "@babel/plugin-transform-optional-catch-binding@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-optional-catch-binding@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-private-methods@7.24.1", + "pkgId": "@babel/plugin-transform-private-methods@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-private-property-in-object@7.24.5", + "pkgId": "@babel/plugin-transform-private-property-in-object@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-private-property-in-object@7.14.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-regenerator@7.24.1", + "pkgId": "@babel/plugin-transform-regenerator@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "regenerator-transform@0.15.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regenerator-transform@0.15.2", + "pkgId": "regenerator-transform@0.15.2", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-reserved-words@7.24.1", + "pkgId": "@babel/plugin-transform-reserved-words@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-sticky-regex@7.24.1", + "pkgId": "@babel/plugin-transform-sticky-regex@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-typeof-symbol@7.24.5", + "pkgId": "@babel/plugin-transform-typeof-symbol@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-unicode-escapes@7.24.1", + "pkgId": "@babel/plugin-transform-unicode-escapes@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-unicode-property-regex@7.24.1", + "pkgId": "@babel/plugin-transform-unicode-property-regex@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-unicode-regex@7.24.1", + "pkgId": "@babel/plugin-transform-unicode-regex@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-unicode-sets-regex@7.24.1", + "pkgId": "@babel/plugin-transform-unicode-sets-regex@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-modules@0.1.6-no-external-plugins", + "pkgId": "@babel/preset-modules@0.1.6-no-external-plugins", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "esutils@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-react@7.24.1", + "pkgId": "@babel/preset-react@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "@babel/plugin-transform-react-display-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx@7.23.4" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-development@7.22.5" + }, + { + "nodeId": "@babel/plugin-transform-react-pure-annotations@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-development@7.22.5", + "pkgId": "@babel/plugin-transform-react-jsx-development@7.22.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx@7.23.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-pure-annotations@7.24.1", + "pkgId": "@babel/plugin-transform-react-pure-annotations@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-macros@3.1.0", + "pkgId": "babel-plugin-macros@3.1.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "cosmiconfig@7.1.0" + }, + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cosmiconfig@7.1.0", + "pkgId": "cosmiconfig@7.1.0", + "deps": [ + { + "nodeId": "@types/parse-json@4.0.2" + }, + { + "nodeId": "import-fresh@3.3.0" + }, + { + "nodeId": "parse-json@5.2.0" + }, + { + "nodeId": "path-type@4.0.0" + }, + { + "nodeId": "yaml@1.10.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/parse-json@4.0.2", + "pkgId": "@types/parse-json@4.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-json@5.2.0", + "pkgId": "parse-json@5.2.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "error-ex@1.3.2" + }, + { + "nodeId": "json-parse-even-better-errors@2.3.1" + }, + { + "nodeId": "lines-and-columns@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "error-ex@1.3.2", + "pkgId": "error-ex@1.3.2", + "deps": [ + { + "nodeId": "is-arrayish@0.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-arrayish@0.2.1", + "pkgId": "is-arrayish@0.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lines-and-columns@1.2.4", + "pkgId": "lines-and-columns@1.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yaml@1.10.2", + "pkgId": "yaml@1.10.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-transform-react-remove-prop-types@0.4.24", + "pkgId": "babel-plugin-transform-react-remove-prop-types@0.4.24", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-js@3.37.0", + "pkgId": "core-js@3.37.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-legacy-polyfills@2.25.0", + "pkgId": "gatsby-legacy-polyfills@2.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "core-js-compat@3.9.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-js-compat@3.9.0", + "pkgId": "core-js-compat@3.9.0", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "semver@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver@7.0.0", + "pkgId": "semver@7.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "better-opn@2.1.1", + "pkgId": "better-opn@2.1.1", + "deps": [ + { + "nodeId": "open@7.4.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "open@7.4.2", + "pkgId": "open@7.4.2", + "deps": [ + { + "nodeId": "is-docker@2.2.1" + }, + { + "nodeId": "is-wsl@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-docker@2.2.1", + "pkgId": "is-docker@2.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-wsl@2.2.0", + "pkgId": "is-wsl@2.2.0", + "deps": [ + { + "nodeId": "is-docker@2.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bluebird@3.7.2", + "pkgId": "bluebird@3.7.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cache-manager@2.11.1", + "pkgId": "cache-manager@2.11.1", + "deps": [ + { + "nodeId": "async@1.5.2" + }, + { + "nodeId": "lodash.clonedeep@4.5.0" + }, + { + "nodeId": "lru-cache@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async@1.5.2", + "pkgId": "async@1.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.clonedeep@4.5.0", + "pkgId": "lodash.clonedeep@4.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-cache@4.0.0", + "pkgId": "lru-cache@4.0.0", + "deps": [ + { + "nodeId": "pseudomap@1.0.2" + }, + { + "nodeId": "yallist@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pseudomap@1.0.2", + "pkgId": "pseudomap@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yallist@2.1.2", + "pkgId": "yallist@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chokidar@3.6.0", + "pkgId": "chokidar@3.6.0", + "deps": [ + { + "nodeId": "anymatch@3.1.3" + }, + { + "nodeId": "braces@3.0.2" + }, + { + "nodeId": "glob-parent@5.1.2" + }, + { + "nodeId": "is-binary-path@2.1.0" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "normalize-path@3.0.0" + }, + { + "nodeId": "readdirp@3.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "anymatch@3.1.3", + "pkgId": "anymatch@3.1.3", + "deps": [ + { + "nodeId": "normalize-path@3.0.0" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "normalize-path@3.0.0", + "pkgId": "normalize-path@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-binary-path@2.1.0", + "pkgId": "is-binary-path@2.1.0", + "deps": [ + { + "nodeId": "binary-extensions@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "binary-extensions@2.3.0", + "pkgId": "binary-extensions@2.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readdirp@3.6.0", + "pkgId": "readdirp@3.6.0", + "deps": [ + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "compression@1.7.4", + "pkgId": "compression@1.7.4", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "bytes@3.0.0" + }, + { + "nodeId": "compressible@2.0.18" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "on-headers@1.0.2" + }, + { + "nodeId": "safe-buffer@5.1.2" + }, + { + "nodeId": "vary@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "accepts@1.3.8", + "pkgId": "accepts@1.3.8", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.6.3", + "pkgId": "negotiator@0.6.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@3.0.0", + "pkgId": "bytes@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "compressible@2.0.18", + "pkgId": "compressible@2.0.18", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@2.6.9", + "pkgId": "debug@2.6.9", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.0.0", + "pkgId": "ms@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-headers@1.0.2", + "pkgId": "on-headers@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-buffer@5.1.2", + "pkgId": "safe-buffer@5.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vary@1.1.2", + "pkgId": "vary@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie@0.4.2", + "pkgId": "cookie@0.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cors@2.8.5", + "pkgId": "cors@2.8.5", + "deps": [ + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "vary@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-loader@5.2.7", + "pkgId": "css-loader@5.2.7", + "deps": [ + { + "nodeId": "icss-utils@5.1.0" + }, + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-modules-extract-imports@3.1.0" + }, + { + "nodeId": "postcss-modules-local-by-default@4.0.5" + }, + { + "nodeId": "postcss-modules-scope@3.2.0" + }, + { + "nodeId": "postcss-modules-values@4.0.0" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "icss-utils@5.1.0", + "pkgId": "icss-utils@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-modules-extract-imports@3.1.0", + "pkgId": "postcss-modules-extract-imports@3.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-modules-local-by-default@4.0.5", + "pkgId": "postcss-modules-local-by-default@4.0.5", + "deps": [ + { + "nodeId": "icss-utils@5.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-selector-parser@6.0.16", + "pkgId": "postcss-selector-parser@6.0.16", + "deps": [ + { + "nodeId": "cssesc@3.0.0" + }, + { + "nodeId": "util-deprecate@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssesc@3.0.0", + "pkgId": "cssesc@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-modules-scope@3.2.0", + "pkgId": "postcss-modules-scope@3.2.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-modules-values@4.0.0", + "pkgId": "postcss-modules-values@4.0.0", + "deps": [ + { + "nodeId": "icss-utils@5.1.0" + }, + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-minimizer-webpack-plugin@2.0.0", + "pkgId": "css-minimizer-webpack-plugin@2.0.0", + "deps": [ + { + "nodeId": "cssnano@5.1.15" + }, + { + "nodeId": "jest-worker@26.6.2" + }, + { + "nodeId": "p-limit@3.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "serialize-javascript@5.0.1" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssnano@5.1.15", + "pkgId": "cssnano@5.1.15", + "deps": [ + { + "nodeId": "cssnano-preset-default@5.2.14" + }, + { + "nodeId": "lilconfig@2.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "yaml@1.10.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssnano-preset-default@5.2.14", + "pkgId": "cssnano-preset-default@5.2.14", + "deps": [ + { + "nodeId": "css-declaration-sorter@6.4.1" + }, + { + "nodeId": "cssnano-utils@3.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-calc@8.2.4" + }, + { + "nodeId": "postcss-colormin@5.3.1" + }, + { + "nodeId": "postcss-convert-values@5.1.3" + }, + { + "nodeId": "postcss-discard-comments@5.1.2" + }, + { + "nodeId": "postcss-discard-duplicates@5.1.0" + }, + { + "nodeId": "postcss-discard-empty@5.1.1" + }, + { + "nodeId": "postcss-discard-overridden@5.1.0" + }, + { + "nodeId": "postcss-merge-longhand@5.1.7" + }, + { + "nodeId": "postcss-merge-rules@5.1.4" + }, + { + "nodeId": "postcss-minify-font-values@5.1.0" + }, + { + "nodeId": "postcss-minify-gradients@5.1.1" + }, + { + "nodeId": "postcss-minify-params@5.1.4" + }, + { + "nodeId": "postcss-minify-selectors@5.2.1" + }, + { + "nodeId": "postcss-normalize-charset@5.1.0" + }, + { + "nodeId": "postcss-normalize-display-values@5.1.0" + }, + { + "nodeId": "postcss-normalize-positions@5.1.1" + }, + { + "nodeId": "postcss-normalize-repeat-style@5.1.1" + }, + { + "nodeId": "postcss-normalize-string@5.1.0" + }, + { + "nodeId": "postcss-normalize-timing-functions@5.1.0" + }, + { + "nodeId": "postcss-normalize-unicode@5.1.1" + }, + { + "nodeId": "postcss-normalize-url@5.1.0" + }, + { + "nodeId": "postcss-normalize-whitespace@5.1.1" + }, + { + "nodeId": "postcss-ordered-values@5.1.3" + }, + { + "nodeId": "postcss-reduce-initial@5.1.2" + }, + { + "nodeId": "postcss-reduce-transforms@5.1.0" + }, + { + "nodeId": "postcss-svgo@5.1.0" + }, + { + "nodeId": "postcss-unique-selectors@5.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-declaration-sorter@6.4.1", + "pkgId": "css-declaration-sorter@6.4.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssnano-utils@3.1.0", + "pkgId": "cssnano-utils@3.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-calc@8.2.4", + "pkgId": "postcss-calc@8.2.4", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-colormin@5.3.1", + "pkgId": "postcss-colormin@5.3.1", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "caniuse-api@3.0.0" + }, + { + "nodeId": "colord@2.9.3" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "caniuse-api@3.0.0", + "pkgId": "caniuse-api@3.0.0", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "caniuse-lite@1.0.30001617" + }, + { + "nodeId": "lodash.memoize@4.1.2" + }, + { + "nodeId": "lodash.uniq@4.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.memoize@4.1.2", + "pkgId": "lodash.memoize@4.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.uniq@4.5.0", + "pkgId": "lodash.uniq@4.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "colord@2.9.3", + "pkgId": "colord@2.9.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-convert-values@5.1.3", + "pkgId": "postcss-convert-values@5.1.3", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-discard-comments@5.1.2", + "pkgId": "postcss-discard-comments@5.1.2", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-discard-duplicates@5.1.0", + "pkgId": "postcss-discard-duplicates@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-discard-empty@5.1.1", + "pkgId": "postcss-discard-empty@5.1.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-discard-overridden@5.1.0", + "pkgId": "postcss-discard-overridden@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-merge-longhand@5.1.7", + "pkgId": "postcss-merge-longhand@5.1.7", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + }, + { + "nodeId": "stylehacks@5.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stylehacks@5.1.1", + "pkgId": "stylehacks@5.1.1", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-merge-rules@5.1.4", + "pkgId": "postcss-merge-rules@5.1.4", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "caniuse-api@3.0.0" + }, + { + "nodeId": "cssnano-utils@3.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-minify-font-values@5.1.0", + "pkgId": "postcss-minify-font-values@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-minify-gradients@5.1.1", + "pkgId": "postcss-minify-gradients@5.1.1", + "deps": [ + { + "nodeId": "colord@2.9.3" + }, + { + "nodeId": "cssnano-utils@3.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-minify-params@5.1.4", + "pkgId": "postcss-minify-params@5.1.4", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "cssnano-utils@3.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-minify-selectors@5.2.1", + "pkgId": "postcss-minify-selectors@5.2.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-charset@5.1.0", + "pkgId": "postcss-normalize-charset@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-display-values@5.1.0", + "pkgId": "postcss-normalize-display-values@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-positions@5.1.1", + "pkgId": "postcss-normalize-positions@5.1.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-repeat-style@5.1.1", + "pkgId": "postcss-normalize-repeat-style@5.1.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-string@5.1.0", + "pkgId": "postcss-normalize-string@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-timing-functions@5.1.0", + "pkgId": "postcss-normalize-timing-functions@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-unicode@5.1.1", + "pkgId": "postcss-normalize-unicode@5.1.1", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-url@5.1.0", + "pkgId": "postcss-normalize-url@5.1.0", + "deps": [ + { + "nodeId": "normalize-url@6.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-normalize-whitespace@5.1.1", + "pkgId": "postcss-normalize-whitespace@5.1.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-ordered-values@5.1.3", + "pkgId": "postcss-ordered-values@5.1.3", + "deps": [ + { + "nodeId": "cssnano-utils@3.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-reduce-initial@5.1.2", + "pkgId": "postcss-reduce-initial@5.1.2", + "deps": [ + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "caniuse-api@3.0.0" + }, + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-reduce-transforms@5.1.0", + "pkgId": "postcss-reduce-transforms@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-svgo@5.1.0", + "pkgId": "postcss-svgo@5.1.0", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + }, + { + "nodeId": "svgo@2.8.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "svgo@2.8.0", + "pkgId": "svgo@2.8.0", + "deps": [ + { + "nodeId": "@trysound/sax@0.2.0" + }, + { + "nodeId": "commander@7.2.0" + }, + { + "nodeId": "css-select@4.3.0" + }, + { + "nodeId": "css-tree@1.1.3" + }, + { + "nodeId": "csso@4.2.0" + }, + { + "nodeId": "picocolors@1.0.0" + }, + { + "nodeId": "stable@0.1.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@trysound/sax@0.2.0", + "pkgId": "@trysound/sax@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "commander@7.2.0", + "pkgId": "commander@7.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-select@4.3.0", + "pkgId": "css-select@4.3.0", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + }, + { + "nodeId": "css-what@6.1.0" + }, + { + "nodeId": "domhandler@4.3.1" + }, + { + "nodeId": "domutils@2.8.0" + }, + { + "nodeId": "nth-check@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "boolbase@1.0.0", + "pkgId": "boolbase@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-what@6.1.0", + "pkgId": "css-what@6.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domhandler@4.3.1", + "pkgId": "domhandler@4.3.1", + "deps": [ + { + "nodeId": "domelementtype@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domelementtype@2.3.0", + "pkgId": "domelementtype@2.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domutils@2.8.0", + "pkgId": "domutils@2.8.0", + "deps": [ + { + "nodeId": "dom-serializer@1.4.1" + }, + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dom-serializer@1.4.1", + "pkgId": "dom-serializer@1.4.1", + "deps": [ + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@4.3.1" + }, + { + "nodeId": "entities@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "entities@2.2.0", + "pkgId": "entities@2.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nth-check@2.1.1", + "pkgId": "nth-check@2.1.1", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-tree@1.1.3", + "pkgId": "css-tree@1.1.3", + "deps": [ + { + "nodeId": "mdn-data@2.0.14" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdn-data@2.0.14", + "pkgId": "mdn-data@2.0.14", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "csso@4.2.0", + "pkgId": "csso@4.2.0", + "deps": [ + { + "nodeId": "css-tree@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stable@0.1.8", + "pkgId": "stable@0.1.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-unique-selectors@5.1.1", + "pkgId": "postcss-unique-selectors@5.1.1", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-selector-parser@6.0.16" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lilconfig@2.1.0", + "pkgId": "lilconfig@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-worker@26.6.2", + "pkgId": "jest-worker@26.6.2", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "merge-stream@2.0.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serialize-javascript@5.0.1", + "pkgId": "serialize-javascript@5.0.1", + "deps": [ + { + "nodeId": "randombytes@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css.escape@1.5.1", + "pkgId": "css.escape@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "date-fns@2.30.0", + "pkgId": "date-fns@2.30.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@3.2.7", + "pkgId": "debug@3.2.7", + "deps": [ + { + "nodeId": "ms@2.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.1.3", + "pkgId": "ms@2.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "deepmerge@4.3.1", + "pkgId": "deepmerge@4.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detect-port@1.6.1", + "pkgId": "detect-port@1.6.1", + "deps": [ + { + "nodeId": "address@1.1.2" + }, + { + "nodeId": "debug@4.3.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "devcert@1.2.2", + "pkgId": "devcert@1.2.2", + "deps": [ + { + "nodeId": "@types/configstore@2.1.1" + }, + { + "nodeId": "@types/debug@0.0.30" + }, + { + "nodeId": "@types/get-port@3.2.0" + }, + { + "nodeId": "@types/glob@5.0.38" + }, + { + "nodeId": "@types/lodash@4.17.1" + }, + { + "nodeId": "@types/mkdirp@0.5.2" + }, + { + "nodeId": "@types/node@8.10.66" + }, + { + "nodeId": "@types/rimraf@2.0.5" + }, + { + "nodeId": "@types/tmp@0.0.33" + }, + { + "nodeId": "application-config-path@0.1.1" + }, + { + "nodeId": "command-exists@1.2.9" + }, + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "eol@0.9.1" + }, + { + "nodeId": "get-port@3.2.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "is-valid-domain@0.1.6" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "mkdirp@0.5.6" + }, + { + "nodeId": "password-prompt@1.1.3" + }, + { + "nodeId": "rimraf@2.7.1" + }, + { + "nodeId": "sudo-prompt@8.2.5" + }, + { + "nodeId": "tmp@0.0.33" + }, + { + "nodeId": "tslib@1.14.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/configstore@2.1.1", + "pkgId": "@types/configstore@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/debug@0.0.30", + "pkgId": "@types/debug@0.0.30", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/get-port@3.2.0", + "pkgId": "@types/get-port@3.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/glob@5.0.38", + "pkgId": "@types/glob@5.0.38", + "deps": [ + { + "nodeId": "@types/minimatch@5.1.2" + }, + { + "nodeId": "@types/node@8.10.66" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/minimatch@5.1.2", + "pkgId": "@types/minimatch@5.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/node@8.10.66", + "pkgId": "@types/node@8.10.66", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/lodash@4.17.1", + "pkgId": "@types/lodash@4.17.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/mkdirp@0.5.2", + "pkgId": "@types/mkdirp@0.5.2", + "deps": [ + { + "nodeId": "@types/node@8.10.66" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/rimraf@2.0.5", + "pkgId": "@types/rimraf@2.0.5", + "deps": [ + { + "nodeId": "@types/glob@5.0.38" + }, + { + "nodeId": "@types/node@8.10.66" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/tmp@0.0.33", + "pkgId": "@types/tmp@0.0.33", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "application-config-path@0.1.1", + "pkgId": "application-config-path@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "command-exists@1.2.9", + "pkgId": "command-exists@1.2.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eol@0.9.1", + "pkgId": "eol@0.9.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-port@3.2.0", + "pkgId": "get-port@3.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-valid-domain@0.1.6", + "pkgId": "is-valid-domain@0.1.6", + "deps": [ + { + "nodeId": "punycode@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mkdirp@0.5.6", + "pkgId": "mkdirp@0.5.6", + "deps": [ + { + "nodeId": "minimist@1.2.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimist@1.2.8", + "pkgId": "minimist@1.2.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "password-prompt@1.1.3", + "pkgId": "password-prompt@1.1.3", + "deps": [ + { + "nodeId": "ansi-escapes@4.3.2" + }, + { + "nodeId": "cross-spawn@7.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-escapes@4.3.2", + "pkgId": "ansi-escapes@4.3.2", + "deps": [ + { + "nodeId": "type-fest@0.21.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-fest@0.21.3", + "pkgId": "type-fest@0.21.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rimraf@2.7.1", + "pkgId": "rimraf@2.7.1", + "deps": [ + { + "nodeId": "glob@7.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sudo-prompt@8.2.5", + "pkgId": "sudo-prompt@8.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tmp@0.0.33", + "pkgId": "tmp@0.0.33", + "deps": [ + { + "nodeId": "os-tmpdir@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "os-tmpdir@1.0.2", + "pkgId": "os-tmpdir@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dotenv@8.6.0", + "pkgId": "dotenv@8.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-config-react-app@6.0.0", + "pkgId": "eslint-config-react-app@6.0.0", + "deps": [ + { + "nodeId": "@typescript-eslint/eslint-plugin@4.33.0" + }, + { + "nodeId": "@typescript-eslint/parser@4.33.0" + }, + { + "nodeId": "babel-eslint@10.1.0" + }, + { + "nodeId": "confusing-browser-globals@1.0.11" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-plugin-flowtype@5.10.0" + }, + { + "nodeId": "eslint-plugin-import@2.29.1" + }, + { + "nodeId": "eslint-plugin-jsx-a11y@6.8.0" + }, + { + "nodeId": "eslint-plugin-react@7.34.1" + }, + { + "nodeId": "eslint-plugin-react-hooks@4.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-eslint@10.1.0", + "pkgId": "babel-eslint@10.1.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-visitor-keys@1.3.0" + }, + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "confusing-browser-globals@1.0.11", + "pkgId": "confusing-browser-globals@1.0.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-plugin-flowtype@5.10.0", + "pkgId": "eslint-plugin-flowtype@5.10.0", + "deps": [ + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "string-natural-compare@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-natural-compare@3.0.1", + "pkgId": "string-natural-compare@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-plugin-import@2.29.1", + "pkgId": "eslint-plugin-import@2.29.1", + "deps": [ + { + "nodeId": "array-includes@3.1.8" + }, + { + "nodeId": "array.prototype.findlastindex@1.2.5" + }, + { + "nodeId": "array.prototype.flat@1.3.2" + }, + { + "nodeId": "array.prototype.flatmap@1.3.2" + }, + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "doctrine@2.1.0" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-import-resolver-node@0.3.9" + }, + { + "nodeId": "eslint-module-utils@2.8.1" + }, + { + "nodeId": "hasown@2.0.2" + }, + { + "nodeId": "is-core-module@2.13.1" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "object.fromentries@2.0.8" + }, + { + "nodeId": "object.groupby@1.0.3" + }, + { + "nodeId": "object.values@1.2.0" + }, + { + "nodeId": "semver@6.3.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-includes@3.1.8", + "pkgId": "array-includes@3.1.8", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "is-string@1.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-abstract@1.23.3", + "pkgId": "es-abstract@1.23.3", + "deps": [ + { + "nodeId": "array-buffer-byte-length@1.0.1" + }, + { + "nodeId": "arraybuffer.prototype.slice@1.0.3" + }, + { + "nodeId": "available-typed-arrays@1.0.7" + }, + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "data-view-buffer@1.0.1" + }, + { + "nodeId": "data-view-byte-length@1.0.1" + }, + { + "nodeId": "data-view-byte-offset@1.0.0" + }, + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "es-set-tostringtag@2.0.3" + }, + { + "nodeId": "es-to-primitive@1.2.1" + }, + { + "nodeId": "function.prototype.name@1.1.6" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "get-symbol-description@1.0.2" + }, + { + "nodeId": "globalthis@1.0.4" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "hasown@2.0.2" + }, + { + "nodeId": "internal-slot@1.0.7" + }, + { + "nodeId": "is-array-buffer@3.0.4" + }, + { + "nodeId": "is-callable@1.2.7" + }, + { + "nodeId": "is-data-view@1.0.1" + }, + { + "nodeId": "is-negative-zero@2.0.3" + }, + { + "nodeId": "is-regex@1.1.4" + }, + { + "nodeId": "is-shared-array-buffer@1.0.3" + }, + { + "nodeId": "is-string@1.0.7" + }, + { + "nodeId": "is-typed-array@1.1.13" + }, + { + "nodeId": "is-weakref@1.0.2" + }, + { + "nodeId": "object-inspect@1.13.1" + }, + { + "nodeId": "object-keys@1.1.1" + }, + { + "nodeId": "object.assign@4.1.5" + }, + { + "nodeId": "regexp.prototype.flags@1.5.2" + }, + { + "nodeId": "safe-array-concat@1.1.2" + }, + { + "nodeId": "safe-regex-test@1.0.3" + }, + { + "nodeId": "string.prototype.trim@1.2.9" + }, + { + "nodeId": "string.prototype.trimend@1.0.8" + }, + { + "nodeId": "string.prototype.trimstart@1.0.8" + }, + { + "nodeId": "typed-array-buffer@1.0.2" + }, + { + "nodeId": "typed-array-byte-length@1.0.1" + }, + { + "nodeId": "typed-array-byte-offset@1.0.2" + }, + { + "nodeId": "typed-array-length@1.0.6" + }, + { + "nodeId": "unbox-primitive@1.0.2" + }, + { + "nodeId": "which-typed-array@1.1.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-buffer-byte-length@1.0.1", + "pkgId": "array-buffer-byte-length@1.0.1", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "is-array-buffer@3.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-array-buffer@3.0.4", + "pkgId": "is-array-buffer@3.0.4", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arraybuffer.prototype.slice@1.0.3", + "pkgId": "arraybuffer.prototype.slice@1.0.3", + "deps": [ + { + "nodeId": "array-buffer-byte-length@1.0.1" + }, + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "is-array-buffer@3.0.4" + }, + { + "nodeId": "is-shared-array-buffer@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-shared-array-buffer@1.0.3", + "pkgId": "is-shared-array-buffer@1.0.3", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "available-typed-arrays@1.0.7", + "pkgId": "available-typed-arrays@1.0.7", + "deps": [ + { + "nodeId": "possible-typed-array-names@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "possible-typed-array-names@1.0.0", + "pkgId": "possible-typed-array-names@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "data-view-buffer@1.0.1", + "pkgId": "data-view-buffer@1.0.1", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "is-data-view@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-data-view@1.0.1", + "pkgId": "is-data-view@1.0.1", + "deps": [ + { + "nodeId": "is-typed-array@1.1.13" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-typed-array@1.1.13", + "pkgId": "is-typed-array@1.1.13", + "deps": [ + { + "nodeId": "which-typed-array@1.1.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which-typed-array@1.1.15", + "pkgId": "which-typed-array@1.1.15", + "deps": [ + { + "nodeId": "available-typed-arrays@1.0.7" + }, + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "for-each@0.3.3" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "for-each@0.3.3", + "pkgId": "for-each@0.3.3", + "deps": [ + { + "nodeId": "is-callable@1.2.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-callable@1.2.7", + "pkgId": "is-callable@1.2.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-tostringtag@1.0.2", + "pkgId": "has-tostringtag@1.0.2", + "deps": [ + { + "nodeId": "has-symbols@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "data-view-byte-length@1.0.1", + "pkgId": "data-view-byte-length@1.0.1", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "is-data-view@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "data-view-byte-offset@1.0.0", + "pkgId": "data-view-byte-offset@1.0.0", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "is-data-view@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-object-atoms@1.0.0", + "pkgId": "es-object-atoms@1.0.0", + "deps": [ + { + "nodeId": "es-errors@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-set-tostringtag@2.0.3", + "pkgId": "es-set-tostringtag@2.0.3", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "has-tostringtag@1.0.2" + }, + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-to-primitive@1.2.1", + "pkgId": "es-to-primitive@1.2.1", + "deps": [ + { + "nodeId": "is-callable@1.2.7" + }, + { + "nodeId": "is-date-object@1.0.5" + }, + { + "nodeId": "is-symbol@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-date-object@1.0.5", + "pkgId": "is-date-object@1.0.5", + "deps": [ + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-symbol@1.0.4", + "pkgId": "is-symbol@1.0.4", + "deps": [ + { + "nodeId": "has-symbols@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "function.prototype.name@1.1.6", + "pkgId": "function.prototype.name@1.1.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "functions-have-names@1.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "functions-have-names@1.2.3", + "pkgId": "functions-have-names@1.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-symbol-description@1.0.2", + "pkgId": "get-symbol-description@1.0.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "globalthis@1.0.4", + "pkgId": "globalthis@1.0.4", + "deps": [ + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "gopd@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "internal-slot@1.0.7", + "pkgId": "internal-slot@1.0.7", + "deps": [ + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "hasown@2.0.2" + }, + { + "nodeId": "side-channel@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "side-channel@1.0.6", + "pkgId": "side-channel@1.0.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "object-inspect@1.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-inspect@1.13.1", + "pkgId": "object-inspect@1.13.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-negative-zero@2.0.3", + "pkgId": "is-negative-zero@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-regex@1.1.4", + "pkgId": "is-regex@1.1.4", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-string@1.0.7", + "pkgId": "is-string@1.0.7", + "deps": [ + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-weakref@1.0.2", + "pkgId": "is-weakref@1.0.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regexp.prototype.flags@1.5.2", + "pkgId": "regexp.prototype.flags@1.5.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "set-function-name@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "set-function-name@2.0.2", + "pkgId": "set-function-name@2.0.2", + "deps": [ + { + "nodeId": "define-data-property@1.1.4" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "functions-have-names@1.2.3" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-array-concat@1.1.2", + "pkgId": "safe-array-concat@1.1.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "isarray@2.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isarray@2.0.5", + "pkgId": "isarray@2.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-regex-test@1.0.3", + "pkgId": "safe-regex-test@1.0.3", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "is-regex@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string.prototype.trim@1.2.9", + "pkgId": "string.prototype.trim@1.2.9", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string.prototype.trimend@1.0.8", + "pkgId": "string.prototype.trimend@1.0.8", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string.prototype.trimstart@1.0.8", + "pkgId": "string.prototype.trimstart@1.0.8", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typed-array-buffer@1.0.2", + "pkgId": "typed-array-buffer@1.0.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "is-typed-array@1.1.13" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typed-array-byte-length@1.0.1", + "pkgId": "typed-array-byte-length@1.0.1", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "for-each@0.3.3" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "is-typed-array@1.1.13" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typed-array-byte-offset@1.0.2", + "pkgId": "typed-array-byte-offset@1.0.2", + "deps": [ + { + "nodeId": "available-typed-arrays@1.0.7" + }, + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "for-each@0.3.3" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "is-typed-array@1.1.13" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typed-array-length@1.0.6", + "pkgId": "typed-array-length@1.0.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "for-each@0.3.3" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "is-typed-array@1.1.13" + }, + { + "nodeId": "possible-typed-array-names@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unbox-primitive@1.0.2", + "pkgId": "unbox-primitive@1.0.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "has-bigints@1.0.2" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "which-boxed-primitive@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-bigints@1.0.2", + "pkgId": "has-bigints@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which-boxed-primitive@1.0.2", + "pkgId": "which-boxed-primitive@1.0.2", + "deps": [ + { + "nodeId": "is-bigint@1.0.4" + }, + { + "nodeId": "is-boolean-object@1.1.2" + }, + { + "nodeId": "is-number-object@1.0.7" + }, + { + "nodeId": "is-string@1.0.7" + }, + { + "nodeId": "is-symbol@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-bigint@1.0.4", + "pkgId": "is-bigint@1.0.4", + "deps": [ + { + "nodeId": "has-bigints@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-boolean-object@1.1.2", + "pkgId": "is-boolean-object@1.1.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-number-object@1.0.7", + "pkgId": "is-number-object@1.0.7", + "deps": [ + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.findlastindex@1.2.5", + "pkgId": "array.prototype.findlastindex@1.2.5", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "es-shim-unscopables@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-shim-unscopables@1.0.2", + "pkgId": "es-shim-unscopables@1.0.2", + "deps": [ + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.flat@1.3.2", + "pkgId": "array.prototype.flat@1.3.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-shim-unscopables@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.flatmap@1.3.2", + "pkgId": "array.prototype.flatmap@1.3.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-shim-unscopables@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "doctrine@2.1.0", + "pkgId": "doctrine@2.1.0", + "deps": [ + { + "nodeId": "esutils@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-import-resolver-node@0.3.9", + "pkgId": "eslint-import-resolver-node@0.3.9", + "deps": [ + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "is-core-module@2.13.1" + }, + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-module-utils@2.8.1", + "pkgId": "eslint-module-utils@2.8.1", + "deps": [ + { + "nodeId": "debug@3.2.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.fromentries@2.0.8", + "pkgId": "object.fromentries@2.0.8", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.groupby@1.0.3", + "pkgId": "object.groupby@1.0.3", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.values@1.2.0", + "pkgId": "object.values@1.2.0", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tsconfig-paths@3.15.0", + "pkgId": "tsconfig-paths@3.15.0", + "deps": [ + { + "nodeId": "@types/json5@0.0.29" + }, + { + "nodeId": "json5@1.0.2" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "strip-bom@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/json5@0.0.29", + "pkgId": "@types/json5@0.0.29", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json5@1.0.2", + "pkgId": "json5@1.0.2", + "deps": [ + { + "nodeId": "minimist@1.2.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-bom@3.0.0", + "pkgId": "strip-bom@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-plugin-jsx-a11y@6.8.0", + "pkgId": "eslint-plugin-jsx-a11y@6.8.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "aria-query@5.3.0" + }, + { + "nodeId": "array-includes@3.1.8" + }, + { + "nodeId": "array.prototype.flatmap@1.3.2" + }, + { + "nodeId": "ast-types-flow@0.0.8" + }, + { + "nodeId": "axe-core@4.7.0" + }, + { + "nodeId": "axobject-query@3.2.1" + }, + { + "nodeId": "damerau-levenshtein@1.0.8" + }, + { + "nodeId": "emoji-regex@9.2.2" + }, + { + "nodeId": "es-iterator-helpers@1.0.19" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "hasown@2.0.2" + }, + { + "nodeId": "jsx-ast-utils@3.3.5" + }, + { + "nodeId": "language-tags@1.0.9" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "object.entries@1.1.8" + }, + { + "nodeId": "object.fromentries@2.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "aria-query@5.3.0", + "pkgId": "aria-query@5.3.0", + "deps": [ + { + "nodeId": "dequal@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dequal@2.0.3", + "pkgId": "dequal@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ast-types-flow@0.0.8", + "pkgId": "ast-types-flow@0.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "axe-core@4.7.0", + "pkgId": "axe-core@4.7.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "axobject-query@3.2.1", + "pkgId": "axobject-query@3.2.1", + "deps": [ + { + "nodeId": "dequal@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "damerau-levenshtein@1.0.8", + "pkgId": "damerau-levenshtein@1.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emoji-regex@9.2.2", + "pkgId": "emoji-regex@9.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-iterator-helpers@1.0.19", + "pkgId": "es-iterator-helpers@1.0.19", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-set-tostringtag@2.0.3" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "globalthis@1.0.4" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "internal-slot@1.0.7" + }, + { + "nodeId": "iterator.prototype@1.1.2" + }, + { + "nodeId": "safe-array-concat@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iterator.prototype@1.1.2", + "pkgId": "iterator.prototype@1.1.2", + "deps": [ + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "reflect.getprototypeof@1.0.6" + }, + { + "nodeId": "set-function-name@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "reflect.getprototypeof@1.0.6", + "pkgId": "reflect.getprototypeof@1.0.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "globalthis@1.0.4" + }, + { + "nodeId": "which-builtin-type@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which-builtin-type@1.1.3", + "pkgId": "which-builtin-type@1.1.3", + "deps": [ + { + "nodeId": "function.prototype.name@1.1.6" + }, + { + "nodeId": "has-tostringtag@1.0.2" + }, + { + "nodeId": "is-async-function@2.0.0" + }, + { + "nodeId": "is-date-object@1.0.5" + }, + { + "nodeId": "is-finalizationregistry@1.0.2" + }, + { + "nodeId": "is-generator-function@1.0.10" + }, + { + "nodeId": "is-regex@1.1.4" + }, + { + "nodeId": "is-weakref@1.0.2" + }, + { + "nodeId": "isarray@2.0.5" + }, + { + "nodeId": "which-boxed-primitive@1.0.2" + }, + { + "nodeId": "which-collection@1.0.2" + }, + { + "nodeId": "which-typed-array@1.1.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-async-function@2.0.0", + "pkgId": "is-async-function@2.0.0", + "deps": [ + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-finalizationregistry@1.0.2", + "pkgId": "is-finalizationregistry@1.0.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-generator-function@1.0.10", + "pkgId": "is-generator-function@1.0.10", + "deps": [ + { + "nodeId": "has-tostringtag@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which-collection@1.0.2", + "pkgId": "which-collection@1.0.2", + "deps": [ + { + "nodeId": "is-map@2.0.3" + }, + { + "nodeId": "is-set@2.0.3" + }, + { + "nodeId": "is-weakmap@2.0.2" + }, + { + "nodeId": "is-weakset@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-map@2.0.3", + "pkgId": "is-map@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-set@2.0.3", + "pkgId": "is-set@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-weakmap@2.0.2", + "pkgId": "is-weakmap@2.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-weakset@2.0.3", + "pkgId": "is-weakset@2.0.3", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsx-ast-utils@3.3.5", + "pkgId": "jsx-ast-utils@3.3.5", + "deps": [ + { + "nodeId": "array-includes@3.1.8" + }, + { + "nodeId": "array.prototype.flat@1.3.2" + }, + { + "nodeId": "object.assign@4.1.5" + }, + { + "nodeId": "object.values@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "language-tags@1.0.9", + "pkgId": "language-tags@1.0.9", + "deps": [ + { + "nodeId": "language-subtag-registry@0.3.22" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "language-subtag-registry@0.3.22", + "pkgId": "language-subtag-registry@0.3.22", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.entries@1.1.8", + "pkgId": "object.entries@1.1.8", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-plugin-react@7.34.1", + "pkgId": "eslint-plugin-react@7.34.1", + "deps": [ + { + "nodeId": "array-includes@3.1.8" + }, + { + "nodeId": "array.prototype.findlast@1.2.5" + }, + { + "nodeId": "array.prototype.flatmap@1.3.2" + }, + { + "nodeId": "array.prototype.toreversed@1.1.2" + }, + { + "nodeId": "array.prototype.tosorted@1.1.3" + }, + { + "nodeId": "doctrine@2.1.0" + }, + { + "nodeId": "es-iterator-helpers@1.0.19" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "estraverse@5.3.0" + }, + { + "nodeId": "jsx-ast-utils@3.3.5" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "object.entries@1.1.8" + }, + { + "nodeId": "object.fromentries@2.0.8" + }, + { + "nodeId": "object.hasown@1.1.4" + }, + { + "nodeId": "object.values@1.2.0" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "resolve@2.0.0-next.5" + }, + { + "nodeId": "semver@6.3.1" + }, + { + "nodeId": "string.prototype.matchall@4.0.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.findlast@1.2.5", + "pkgId": "array.prototype.findlast@1.2.5", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "es-shim-unscopables@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.toreversed@1.1.2", + "pkgId": "array.prototype.toreversed@1.1.2", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-shim-unscopables@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.tosorted@1.1.3", + "pkgId": "array.prototype.tosorted@1.1.3", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-shim-unscopables@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.hasown@1.1.4", + "pkgId": "object.hasown@1.1.4", + "deps": [ + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve@2.0.0-next.5", + "pkgId": "resolve@2.0.0-next.5", + "deps": [ + { + "nodeId": "is-core-module@2.13.1" + }, + { + "nodeId": "path-parse@1.0.7" + }, + { + "nodeId": "supports-preserve-symlinks-flag@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string.prototype.matchall@4.0.11", + "pkgId": "string.prototype.matchall@4.0.11", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "internal-slot@1.0.7" + }, + { + "nodeId": "regexp.prototype.flags@1.5.2" + }, + { + "nodeId": "set-function-name@2.0.2" + }, + { + "nodeId": "side-channel@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-plugin-react-hooks@4.6.2", + "pkgId": "eslint-plugin-react-hooks@4.6.2", + "deps": [ + { + "nodeId": "eslint@7.32.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-webpack-plugin@2.7.0", + "pkgId": "eslint-webpack-plugin@2.7.0", + "deps": [ + { + "nodeId": "@types/eslint@7.29.0" + }, + { + "nodeId": "arrify@2.0.1" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "normalize-path@3.0.0" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/eslint@7.29.0", + "pkgId": "@types/eslint@7.29.0", + "deps": [ + { + "nodeId": "@types/estree@1.0.5" + }, + { + "nodeId": "@types/json-schema@7.0.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arrify@2.0.1", + "pkgId": "arrify@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "event-source-polyfill@1.0.25", + "pkgId": "event-source-polyfill@1.0.25", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "execa@5.1.1", + "pkgId": "execa@5.1.1", + "deps": [ + { + "nodeId": "cross-spawn@7.0.3" + }, + { + "nodeId": "get-stream@6.0.1" + }, + { + "nodeId": "human-signals@2.1.0" + }, + { + "nodeId": "is-stream@2.0.1" + }, + { + "nodeId": "merge-stream@2.0.0" + }, + { + "nodeId": "npm-run-path@4.0.1" + }, + { + "nodeId": "onetime@5.1.2" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "strip-final-newline@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-stream@6.0.1", + "pkgId": "get-stream@6.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "human-signals@2.1.0", + "pkgId": "human-signals@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-stream@2.0.1", + "pkgId": "is-stream@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "npm-run-path@4.0.1", + "pkgId": "npm-run-path@4.0.1", + "deps": [ + { + "nodeId": "path-key@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "onetime@5.1.2", + "pkgId": "onetime@5.1.2", + "deps": [ + { + "nodeId": "mimic-fn@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mimic-fn@2.1.0", + "pkgId": "mimic-fn@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-final-newline@2.0.0", + "pkgId": "strip-final-newline@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express@4.19.2", + "pkgId": "express@4.19.2", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "array-flatten@1.1.1" + }, + { + "nodeId": "body-parser@1.20.2" + }, + { + "nodeId": "content-disposition@0.5.4" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "cookie@0.6.0" + }, + { + "nodeId": "cookie-signature@1.0.6" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "finalhandler@1.2.0" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "merge-descriptors@1.0.1" + }, + { + "nodeId": "methods@1.1.2" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "path-to-regexp@0.1.7" + }, + { + "nodeId": "proxy-addr@2.0.7" + }, + { + "nodeId": "qs@6.11.0" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "safe-buffer@5.2.1" + }, + { + "nodeId": "send@0.18.0" + }, + { + "nodeId": "serve-static@1.15.0" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "utils-merge@1.0.1" + }, + { + "nodeId": "vary@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-flatten@1.1.1", + "pkgId": "array-flatten@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "body-parser@1.20.2", + "pkgId": "body-parser@1.20.2", + "deps": [ + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "destroy@1.2.0" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "qs@6.11.0" + }, + { + "nodeId": "raw-body@2.5.2" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@3.1.2", + "pkgId": "bytes@3.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-type@1.0.5", + "pkgId": "content-type@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@2.0.0", + "pkgId": "depd@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "destroy@1.2.0", + "pkgId": "destroy@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-errors@2.0.0", + "pkgId": "http-errors@2.0.0", + "deps": [ + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "toidentifier@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "setprototypeof@1.2.0", + "pkgId": "setprototypeof@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "statuses@2.0.1", + "pkgId": "statuses@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "toidentifier@1.0.1", + "pkgId": "toidentifier@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.4.24", + "pkgId": "iconv-lite@0.4.24", + "deps": [ + { + "nodeId": "safer-buffer@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safer-buffer@2.1.2", + "pkgId": "safer-buffer@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.4.1", + "pkgId": "on-finished@2.4.1", + "deps": [ + { + "nodeId": "ee-first@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.1.1", + "pkgId": "ee-first@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@6.11.0", + "pkgId": "qs@6.11.0", + "deps": [ + { + "nodeId": "side-channel@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-body@2.5.2", + "pkgId": "raw-body@2.5.2", + "deps": [ + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unpipe@1.0.0", + "pkgId": "unpipe@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.6.18", + "pkgId": "type-is@1.6.18", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "media-typer@0.3.0", + "pkgId": "media-typer@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-disposition@0.5.4", + "pkgId": "content-disposition@0.5.4", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie@0.6.0", + "pkgId": "cookie@0.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie-signature@1.0.6", + "pkgId": "cookie-signature@1.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "encodeurl@1.0.2", + "pkgId": "encodeurl@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-html@1.0.3", + "pkgId": "escape-html@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "etag@1.8.1", + "pkgId": "etag@1.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "finalhandler@1.2.0", + "pkgId": "finalhandler@1.2.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parseurl@1.3.3", + "pkgId": "parseurl@1.3.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fresh@0.5.2", + "pkgId": "fresh@0.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge-descriptors@1.0.1", + "pkgId": "merge-descriptors@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "methods@1.1.2", + "pkgId": "methods@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-to-regexp@0.1.7", + "pkgId": "path-to-regexp@0.1.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proxy-addr@2.0.7", + "pkgId": "proxy-addr@2.0.7", + "deps": [ + { + "nodeId": "forwarded@0.2.0" + }, + { + "nodeId": "ipaddr.js@1.9.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "forwarded@0.2.0", + "pkgId": "forwarded@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ipaddr.js@1.9.1", + "pkgId": "ipaddr.js@1.9.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "range-parser@1.2.1", + "pkgId": "range-parser@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "send@0.18.0", + "pkgId": "send@0.18.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "destroy@1.2.0" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "mime@1.6.0" + }, + { + "nodeId": "ms@2.1.3" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "statuses@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@1.6.0", + "pkgId": "mime@1.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serve-static@1.15.0", + "pkgId": "serve-static@1.15.0", + "deps": [ + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "send@0.18.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "utils-merge@1.0.1", + "pkgId": "utils-merge@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express-graphql@0.12.0", + "pkgId": "express-graphql@0.12.0", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "http-errors@1.8.0" + }, + { + "nodeId": "raw-body@2.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-errors@1.8.0", + "pkgId": "http-errors@1.8.0", + "deps": [ + { + "nodeId": "depd@1.1.2" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@1.5.0" + }, + { + "nodeId": "toidentifier@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@1.1.2", + "pkgId": "depd@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "statuses@1.5.0", + "pkgId": "statuses@1.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "toidentifier@1.0.0", + "pkgId": "toidentifier@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express-http-proxy@1.6.3", + "pkgId": "express-http-proxy@1.6.3", + "deps": [ + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "es6-promise@4.2.8" + }, + { + "nodeId": "raw-body@2.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es6-promise@4.2.8", + "pkgId": "es6-promise@4.2.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fastest-levenshtein@1.0.16", + "pkgId": "fastest-levenshtein@1.0.16", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "file-loader@6.2.0", + "pkgId": "file-loader@6.2.0", + "deps": [ + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-exists-cached@1.0.0", + "pkgId": "fs-exists-cached@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-cli@4.25.0", + "pkgId": "gatsby-cli@4.25.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "@types/common-tags@1.8.4" + }, + { + "nodeId": "better-opn@2.1.1" + }, + { + "nodeId": "boxen@5.1.2" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "clipboardy@2.3.0" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "convert-hrtime@3.0.0" + }, + { + "nodeId": "create-gatsby@2.25.0" + }, + { + "nodeId": "envinfo@7.13.0" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "fs-exists-cached@1.0.0" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-telemetry@3.25.0" + }, + { + "nodeId": "hosted-git-info@3.0.8" + }, + { + "nodeId": "is-valid-path@0.1.1" + }, + { + "nodeId": "joi@17.13.1" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "node-fetch@2.7.0" + }, + { + "nodeId": "opentracing@0.14.7" + }, + { + "nodeId": "pretty-error@2.1.2" + }, + { + "nodeId": "progress@2.0.3" + }, + { + "nodeId": "prompts@2.4.2" + }, + { + "nodeId": "redux@4.1.2" + }, + { + "nodeId": "resolve-cwd@3.0.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "stack-trace@0.0.10" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "update-notifier@5.1.0" + }, + { + "nodeId": "yargs@15.4.1" + }, + { + "nodeId": "yoga-layout-prebuilt@1.10.0" + }, + { + "nodeId": "yurnalist@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-typescript@7.24.1", + "pkgId": "@babel/preset-typescript@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-typescript@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-typescript@7.24.5", + "pkgId": "@babel/plugin-transform-typescript@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-typescript@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-typescript@7.24.1", + "pkgId": "@babel/plugin-syntax-typescript@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/common-tags@1.8.4", + "pkgId": "@types/common-tags@1.8.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "boxen@5.1.2", + "pkgId": "boxen@5.1.2", + "deps": [ + { + "nodeId": "ansi-align@3.0.1" + }, + { + "nodeId": "camelcase@6.3.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cli-boxes@2.2.1" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "type-fest@0.20.2" + }, + { + "nodeId": "widest-line@3.1.0" + }, + { + "nodeId": "wrap-ansi@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-align@3.0.1", + "pkgId": "ansi-align@3.0.1", + "deps": [ + { + "nodeId": "string-width@4.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "camelcase@6.3.0", + "pkgId": "camelcase@6.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-boxes@2.2.1", + "pkgId": "cli-boxes@2.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "widest-line@3.1.0", + "pkgId": "widest-line@3.1.0", + "deps": [ + { + "nodeId": "string-width@4.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wrap-ansi@7.0.0", + "pkgId": "wrap-ansi@7.0.0", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clipboardy@2.3.0", + "pkgId": "clipboardy@2.3.0", + "deps": [ + { + "nodeId": "arch@2.2.0" + }, + { + "nodeId": "execa@1.0.0" + }, + { + "nodeId": "is-wsl@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arch@2.2.0", + "pkgId": "arch@2.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "execa@1.0.0", + "pkgId": "execa@1.0.0", + "deps": [ + { + "nodeId": "cross-spawn@6.0.5" + }, + { + "nodeId": "get-stream@4.1.0" + }, + { + "nodeId": "is-stream@1.1.0" + }, + { + "nodeId": "npm-run-path@2.0.2" + }, + { + "nodeId": "p-finally@1.0.0" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "strip-eof@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cross-spawn@6.0.5", + "pkgId": "cross-spawn@6.0.5", + "deps": [ + { + "nodeId": "nice-try@1.0.5" + }, + { + "nodeId": "path-key@2.0.1" + }, + { + "nodeId": "semver@5.7.2" + }, + { + "nodeId": "shebang-command@1.2.0" + }, + { + "nodeId": "which@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nice-try@1.0.5", + "pkgId": "nice-try@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-key@2.0.1", + "pkgId": "path-key@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shebang-command@1.2.0", + "pkgId": "shebang-command@1.2.0", + "deps": [ + { + "nodeId": "shebang-regex@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shebang-regex@1.0.0", + "pkgId": "shebang-regex@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which@1.3.1", + "pkgId": "which@1.3.1", + "deps": [ + { + "nodeId": "isexe@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-stream@4.1.0", + "pkgId": "get-stream@4.1.0", + "deps": [ + { + "nodeId": "pump@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-stream@1.1.0", + "pkgId": "is-stream@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "npm-run-path@2.0.2", + "pkgId": "npm-run-path@2.0.2", + "deps": [ + { + "nodeId": "path-key@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-finally@1.0.0", + "pkgId": "p-finally@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-eof@1.0.0", + "pkgId": "strip-eof@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "convert-hrtime@3.0.0", + "pkgId": "convert-hrtime@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "create-gatsby@2.25.0", + "pkgId": "create-gatsby@2.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "envinfo@7.13.0", + "pkgId": "envinfo@7.13.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-telemetry@3.25.0", + "pkgId": "gatsby-telemetry@3.25.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@turist/fetch@7.2.0" + }, + { + "nodeId": "@turist/time@0.0.2" + }, + { + "nodeId": "boxen@4.2.0" + }, + { + "nodeId": "configstore@5.0.1" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "git-up@7.0.0" + }, + { + "nodeId": "is-docker@2.2.1" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "node-fetch@2.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@turist/fetch@7.2.0", + "pkgId": "@turist/fetch@7.2.0", + "deps": [ + { + "nodeId": "@types/node-fetch@2.6.11" + }, + { + "nodeId": "node-fetch@2.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/node-fetch@2.6.11", + "pkgId": "@types/node-fetch@2.6.11", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "form-data@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "form-data@4.0.0", + "pkgId": "form-data@4.0.0", + "deps": [ + { + "nodeId": "asynckit@0.4.0" + }, + { + "nodeId": "combined-stream@1.0.8" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "asynckit@0.4.0", + "pkgId": "asynckit@0.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "combined-stream@1.0.8", + "pkgId": "combined-stream@1.0.8", + "deps": [ + { + "nodeId": "delayed-stream@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "delayed-stream@1.0.0", + "pkgId": "delayed-stream@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@turist/time@0.0.2", + "pkgId": "@turist/time@0.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "boxen@4.2.0", + "pkgId": "boxen@4.2.0", + "deps": [ + { + "nodeId": "ansi-align@3.0.1" + }, + { + "nodeId": "camelcase@5.3.1" + }, + { + "nodeId": "chalk@3.0.0" + }, + { + "nodeId": "cli-boxes@2.2.1" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "term-size@2.2.1" + }, + { + "nodeId": "type-fest@0.8.1" + }, + { + "nodeId": "widest-line@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chalk@3.0.0", + "pkgId": "chalk@3.0.0", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "term-size@2.2.1", + "pkgId": "term-size@2.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-fest@0.8.1", + "pkgId": "type-fest@0.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "git-up@7.0.0", + "pkgId": "git-up@7.0.0", + "deps": [ + { + "nodeId": "is-ssh@1.4.0" + }, + { + "nodeId": "parse-url@8.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-ssh@1.4.0", + "pkgId": "is-ssh@1.4.0", + "deps": [ + { + "nodeId": "protocols@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "protocols@2.0.1", + "pkgId": "protocols@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-url@8.1.0", + "pkgId": "parse-url@8.1.0", + "deps": [ + { + "nodeId": "parse-path@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-path@7.0.0", + "pkgId": "parse-path@7.0.0", + "deps": [ + { + "nodeId": "protocols@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hosted-git-info@3.0.8", + "pkgId": "hosted-git-info@3.0.8", + "deps": [ + { + "nodeId": "lru-cache@6.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-cache@6.0.0", + "pkgId": "lru-cache@6.0.0", + "deps": [ + { + "nodeId": "yallist@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yallist@4.0.0", + "pkgId": "yallist@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-valid-path@0.1.1", + "pkgId": "is-valid-path@0.1.1", + "deps": [ + { + "nodeId": "is-invalid-path@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-invalid-path@0.1.0", + "pkgId": "is-invalid-path@0.1.0", + "deps": [ + { + "nodeId": "is-glob@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-glob@2.0.1", + "pkgId": "is-glob@2.0.1", + "deps": [ + { + "nodeId": "is-extglob@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-extglob@1.0.0", + "pkgId": "is-extglob@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "joi@17.13.1", + "pkgId": "joi@17.13.1", + "deps": [ + { + "nodeId": "@hapi/hoek@9.3.0" + }, + { + "nodeId": "@hapi/topo@5.1.0" + }, + { + "nodeId": "@sideway/address@4.1.5" + }, + { + "nodeId": "@sideway/formula@3.0.1" + }, + { + "nodeId": "@sideway/pinpoint@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/hoek@9.3.0", + "pkgId": "@hapi/hoek@9.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/topo@5.1.0", + "pkgId": "@hapi/topo@5.1.0", + "deps": [ + { + "nodeId": "@hapi/hoek@9.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sideway/address@4.1.5", + "pkgId": "@sideway/address@4.1.5", + "deps": [ + { + "nodeId": "@hapi/hoek@9.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sideway/formula@3.0.1", + "pkgId": "@sideway/formula@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sideway/pinpoint@2.0.0", + "pkgId": "@sideway/pinpoint@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "opentracing@0.14.7", + "pkgId": "opentracing@0.14.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-error@2.1.2", + "pkgId": "pretty-error@2.1.2", + "deps": [ + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "renderkid@2.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "renderkid@2.0.7", + "pkgId": "renderkid@2.0.7", + "deps": [ + { + "nodeId": "css-select@4.3.0" + }, + { + "nodeId": "dom-converter@0.2.0" + }, + { + "nodeId": "htmlparser2@6.1.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "strip-ansi@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dom-converter@0.2.0", + "pkgId": "dom-converter@0.2.0", + "deps": [ + { + "nodeId": "utila@0.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "utila@0.4.0", + "pkgId": "utila@0.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "htmlparser2@6.1.0", + "pkgId": "htmlparser2@6.1.0", + "deps": [ + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@4.3.1" + }, + { + "nodeId": "domutils@2.8.0" + }, + { + "nodeId": "entities@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@3.0.1", + "pkgId": "strip-ansi@3.0.1", + "deps": [ + { + "nodeId": "ansi-regex@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@2.1.1", + "pkgId": "ansi-regex@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "prompts@2.4.2", + "pkgId": "prompts@2.4.2", + "deps": [ + { + "nodeId": "kleur@3.0.3" + }, + { + "nodeId": "sisteransi@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "kleur@3.0.3", + "pkgId": "kleur@3.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sisteransi@1.0.5", + "pkgId": "sisteransi@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "redux@4.1.2", + "pkgId": "redux@4.1.2", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve-cwd@3.0.0", + "pkgId": "resolve-cwd@3.0.0", + "deps": [ + { + "nodeId": "resolve-from@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stack-trace@0.0.10", + "pkgId": "stack-trace@0.0.10", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "update-notifier@5.1.0", + "pkgId": "update-notifier@5.1.0", + "deps": [ + { + "nodeId": "boxen@5.1.2" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "configstore@5.0.1" + }, + { + "nodeId": "has-yarn@2.1.0" + }, + { + "nodeId": "import-lazy@2.1.0" + }, + { + "nodeId": "is-ci@2.0.0" + }, + { + "nodeId": "is-installed-globally@0.4.0" + }, + { + "nodeId": "is-npm@5.0.0" + }, + { + "nodeId": "is-yarn-global@0.3.0" + }, + { + "nodeId": "latest-version@5.1.0" + }, + { + "nodeId": "pupa@2.1.1" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "semver-diff@3.1.1" + }, + { + "nodeId": "xdg-basedir@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-yarn@2.1.0", + "pkgId": "has-yarn@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "import-lazy@2.1.0", + "pkgId": "import-lazy@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-ci@2.0.0", + "pkgId": "is-ci@2.0.0", + "deps": [ + { + "nodeId": "ci-info@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-installed-globally@0.4.0", + "pkgId": "is-installed-globally@0.4.0", + "deps": [ + { + "nodeId": "global-dirs@3.0.1" + }, + { + "nodeId": "is-path-inside@3.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "global-dirs@3.0.1", + "pkgId": "global-dirs@3.0.1", + "deps": [ + { + "nodeId": "ini@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ini@2.0.0", + "pkgId": "ini@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-path-inside@3.0.3", + "pkgId": "is-path-inside@3.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-npm@5.0.0", + "pkgId": "is-npm@5.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-yarn-global@0.3.0", + "pkgId": "is-yarn-global@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "latest-version@5.1.0", + "pkgId": "latest-version@5.1.0", + "deps": [ + { + "nodeId": "package-json@6.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "package-json@6.5.0", + "pkgId": "package-json@6.5.0", + "deps": [ + { + "nodeId": "got@9.6.0" + }, + { + "nodeId": "registry-auth-token@4.2.2" + }, + { + "nodeId": "registry-url@5.1.0" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "got@9.6.0", + "pkgId": "got@9.6.0", + "deps": [ + { + "nodeId": "@sindresorhus/is@0.14.0" + }, + { + "nodeId": "@szmarczak/http-timer@1.1.2" + }, + { + "nodeId": "@types/keyv@3.1.4" + }, + { + "nodeId": "@types/responselike@1.0.3" + }, + { + "nodeId": "cacheable-request@6.1.0" + }, + { + "nodeId": "decompress-response@3.3.0" + }, + { + "nodeId": "duplexer3@0.1.5" + }, + { + "nodeId": "get-stream@4.1.0" + }, + { + "nodeId": "lowercase-keys@1.0.1" + }, + { + "nodeId": "mimic-response@1.0.1" + }, + { + "nodeId": "p-cancelable@1.1.0" + }, + { + "nodeId": "to-readable-stream@1.0.0" + }, + { + "nodeId": "url-parse-lax@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sindresorhus/is@0.14.0", + "pkgId": "@sindresorhus/is@0.14.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@szmarczak/http-timer@1.1.2", + "pkgId": "@szmarczak/http-timer@1.1.2", + "deps": [ + { + "nodeId": "defer-to-connect@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "defer-to-connect@1.1.3", + "pkgId": "defer-to-connect@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cacheable-request@6.1.0", + "pkgId": "cacheable-request@6.1.0", + "deps": [ + { + "nodeId": "clone-response@1.0.3" + }, + { + "nodeId": "get-stream@5.2.0" + }, + { + "nodeId": "http-cache-semantics@4.1.1" + }, + { + "nodeId": "keyv@3.1.0" + }, + { + "nodeId": "lowercase-keys@2.0.0" + }, + { + "nodeId": "normalize-url@4.5.1" + }, + { + "nodeId": "responselike@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "keyv@3.1.0", + "pkgId": "keyv@3.1.0", + "deps": [ + { + "nodeId": "json-buffer@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-buffer@3.0.0", + "pkgId": "json-buffer@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "normalize-url@4.5.1", + "pkgId": "normalize-url@4.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "responselike@1.0.2", + "pkgId": "responselike@1.0.2", + "deps": [ + { + "nodeId": "lowercase-keys@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lowercase-keys@1.0.1", + "pkgId": "lowercase-keys@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "decompress-response@3.3.0", + "pkgId": "decompress-response@3.3.0", + "deps": [ + { + "nodeId": "mimic-response@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "duplexer3@0.1.5", + "pkgId": "duplexer3@0.1.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-cancelable@1.1.0", + "pkgId": "p-cancelable@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "to-readable-stream@1.0.0", + "pkgId": "to-readable-stream@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "url-parse-lax@3.0.0", + "pkgId": "url-parse-lax@3.0.0", + "deps": [ + { + "nodeId": "prepend-http@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "prepend-http@2.0.0", + "pkgId": "prepend-http@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "registry-auth-token@4.2.2", + "pkgId": "registry-auth-token@4.2.2", + "deps": [ + { + "nodeId": "rc@1.2.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rc@1.2.8", + "pkgId": "rc@1.2.8", + "deps": [ + { + "nodeId": "deep-extend@0.6.0" + }, + { + "nodeId": "ini@1.3.8" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "strip-json-comments@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "deep-extend@0.6.0", + "pkgId": "deep-extend@0.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ini@1.3.8", + "pkgId": "ini@1.3.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-json-comments@2.0.1", + "pkgId": "strip-json-comments@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "registry-url@5.1.0", + "pkgId": "registry-url@5.1.0", + "deps": [ + { + "nodeId": "rc@1.2.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pupa@2.1.1", + "pkgId": "pupa@2.1.1", + "deps": [ + { + "nodeId": "escape-goat@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-goat@2.1.1", + "pkgId": "escape-goat@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver-diff@3.1.1", + "pkgId": "semver-diff@3.1.1", + "deps": [ + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yoga-layout-prebuilt@1.10.0", + "pkgId": "yoga-layout-prebuilt@1.10.0", + "deps": [ + { + "nodeId": "@types/yoga-layout@1.9.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/yoga-layout@1.9.2", + "pkgId": "@types/yoga-layout@1.9.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yurnalist@2.1.0", + "pkgId": "yurnalist@2.1.0", + "deps": [ + { + "nodeId": "chalk@2.4.2" + }, + { + "nodeId": "inquirer@7.3.3" + }, + { + "nodeId": "is-ci@2.0.0" + }, + { + "nodeId": "read@1.0.7" + }, + { + "nodeId": "strip-ansi@5.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inquirer@7.3.3", + "pkgId": "inquirer@7.3.3", + "deps": [ + { + "nodeId": "ansi-escapes@4.3.2" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-width@3.0.0" + }, + { + "nodeId": "external-editor@3.1.0" + }, + { + "nodeId": "figures@3.2.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "mute-stream@0.0.8" + }, + { + "nodeId": "run-async@2.4.1" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "through@2.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-cursor@3.1.0", + "pkgId": "cli-cursor@3.1.0", + "deps": [ + { + "nodeId": "restore-cursor@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "restore-cursor@3.1.0", + "pkgId": "restore-cursor@3.1.0", + "deps": [ + { + "nodeId": "onetime@5.1.2" + }, + { + "nodeId": "signal-exit@3.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-width@3.0.0", + "pkgId": "cli-width@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "external-editor@3.1.0", + "pkgId": "external-editor@3.1.0", + "deps": [ + { + "nodeId": "chardet@0.7.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "tmp@0.0.33" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chardet@0.7.0", + "pkgId": "chardet@0.7.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "figures@3.2.0", + "pkgId": "figures@3.2.0", + "deps": [ + { + "nodeId": "escape-string-regexp@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mute-stream@0.0.8", + "pkgId": "mute-stream@0.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "run-async@2.4.1", + "pkgId": "run-async@2.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rxjs@6.6.7", + "pkgId": "rxjs@6.6.7", + "deps": [ + { + "nodeId": "tslib@1.14.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "through@2.3.8", + "pkgId": "through@2.3.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "read@1.0.7", + "pkgId": "read@1.0.7", + "deps": [ + { + "nodeId": "mute-stream@0.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@5.2.0", + "pkgId": "strip-ansi@5.2.0", + "deps": [ + { + "nodeId": "ansi-regex@4.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@4.1.1", + "pkgId": "ansi-regex@4.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-graphiql-explorer@2.25.0", + "pkgId": "gatsby-graphiql-explorer@2.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-link@4.25.0", + "pkgId": "gatsby-link@4.25.0", + "deps": [ + { + "nodeId": "@gatsbyjs/reach-router@1.3.9" + }, + { + "nodeId": "@types/reach__router@1.3.15" + }, + { + "nodeId": "gatsby-page-utils@2.25.0" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/reach__router@1.3.15", + "pkgId": "@types/reach__router@1.3.15", + "deps": [ + { + "nodeId": "@types/react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/react@18.3.1", + "pkgId": "@types/react@18.3.1", + "deps": [ + { + "nodeId": "@types/prop-types@15.7.12" + }, + { + "nodeId": "csstype@3.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/prop-types@15.7.12", + "pkgId": "@types/prop-types@15.7.12", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "csstype@3.1.3", + "pkgId": "csstype@3.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-page-utils@2.25.0", + "pkgId": "gatsby-page-utils@2.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "bluebird@3.7.2" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "fs-exists-cached@1.0.0" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "micromatch@4.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-parcel-config@0.16.0", + "pkgId": "gatsby-parcel-config@0.16.0", + "deps": [ + { + "nodeId": "@gatsbyjs/parcel-namer-relative-to-cwd@1.10.0" + }, + { + "nodeId": "@parcel/bundler-default@2.6.2" + }, + { + "nodeId": "@parcel/compressor-raw@2.6.2" + }, + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@parcel/namer-default@2.6.2" + }, + { + "nodeId": "@parcel/optimizer-terser@2.6.2" + }, + { + "nodeId": "@parcel/packager-js@2.6.2" + }, + { + "nodeId": "@parcel/packager-raw@2.6.2" + }, + { + "nodeId": "@parcel/reporter-dev-server@2.6.2" + }, + { + "nodeId": "@parcel/resolver-default@2.6.2" + }, + { + "nodeId": "@parcel/runtime-js@2.6.2" + }, + { + "nodeId": "@parcel/transformer-js@2.6.2" + }, + { + "nodeId": "@parcel/transformer-json@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@gatsbyjs/parcel-namer-relative-to-cwd@1.10.0", + "pkgId": "@gatsbyjs/parcel-namer-relative-to-cwd@1.10.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@parcel/namer-default@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/namer-default@2.6.2", + "pkgId": "@parcel/namer-default@2.6.2", + "deps": [ + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/bundler-default@2.6.2", + "pkgId": "@parcel/bundler-default@2.6.2", + "deps": [ + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/hash@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/compressor-raw@2.6.2", + "pkgId": "@parcel/compressor-raw@2.6.2", + "deps": [ + { + "nodeId": "@parcel/plugin@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/optimizer-terser@2.6.2", + "pkgId": "@parcel/optimizer-terser@2.6.2", + "deps": [ + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/source-map@2.1.1" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "terser@5.31.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/packager-js@2.6.2", + "pkgId": "@parcel/packager-js@2.6.2", + "deps": [ + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/hash@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/source-map@2.1.1" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "globals@13.24.0" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/packager-raw@2.6.2", + "pkgId": "@parcel/packager-raw@2.6.2", + "deps": [ + { + "nodeId": "@parcel/plugin@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/reporter-dev-server@2.6.2", + "pkgId": "@parcel/reporter-dev-server@2.6.2", + "deps": [ + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/resolver-default@2.6.2", + "pkgId": "@parcel/resolver-default@2.6.2", + "deps": [ + { + "nodeId": "@parcel/node-resolver-core@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/node-resolver-core@2.6.2", + "pkgId": "@parcel/node-resolver-core@2.6.2", + "deps": [ + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "semver@5.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/runtime-js@2.6.2", + "pkgId": "@parcel/runtime-js@2.6.2", + "deps": [ + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/transformer-js@2.6.2", + "pkgId": "@parcel/transformer-js@2.6.2", + "deps": [ + { + "nodeId": "@parcel/core@2.6.2" + }, + { + "nodeId": "@parcel/diagnostic@2.6.2" + }, + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "@parcel/source-map@2.1.1" + }, + { + "nodeId": "@parcel/utils@2.6.2" + }, + { + "nodeId": "@parcel/workers@2.6.2" + }, + { + "nodeId": "@swc/helpers@0.4.36" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "detect-libc@1.0.3" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "regenerator-runtime@0.13.11" + }, + { + "nodeId": "semver@5.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc/helpers@0.4.36", + "pkgId": "@swc/helpers@0.4.36", + "deps": [ + { + "nodeId": "legacy-swc-helpers@@swc/helpers@0.4.14" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "legacy-swc-helpers@@swc/helpers@0.4.14", + "pkgId": "legacy-swc-helpers@@swc/helpers@0.4.14", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regenerator-runtime@0.13.11", + "pkgId": "regenerator-runtime@0.13.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/transformer-json@2.6.2", + "pkgId": "@parcel/transformer-json@2.6.2", + "deps": [ + { + "nodeId": "@parcel/plugin@2.6.2" + }, + { + "nodeId": "json5@2.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-page-creator@4.25.0", + "pkgId": "gatsby-plugin-page-creator@4.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@sindresorhus/slugify@1.1.2" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "fs-exists-cached@1.0.0" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-page-utils@2.25.0" + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0" + }, + { + "nodeId": "gatsby-telemetry@3.25.0" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "lodash@4.17.21" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sindresorhus/slugify@1.1.2", + "pkgId": "@sindresorhus/slugify@1.1.2", + "deps": [ + { + "nodeId": "@sindresorhus/transliterate@0.1.2" + }, + { + "nodeId": "escape-string-regexp@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sindresorhus/transliterate@0.1.2", + "pkgId": "@sindresorhus/transliterate@0.1.2", + "deps": [ + { + "nodeId": "escape-string-regexp@2.0.0" + }, + { + "nodeId": "lodash.deburr@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-string-regexp@2.0.0", + "pkgId": "escape-string-regexp@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.deburr@4.1.0", + "pkgId": "lodash.deburr@4.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0", + "pkgId": "gatsby-plugin-utils@3.19.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "fastq@1.17.1" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-sharp@0.19.0" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "graphql-compose@9.0.10" + }, + { + "nodeId": "import-from@4.0.0" + }, + { + "nodeId": "joi@17.13.1" + }, + { + "nodeId": "mime@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-sharp@0.19.0", + "pkgId": "gatsby-sharp@0.19.0", + "deps": [ + { + "nodeId": "@types/sharp@0.30.5" + }, + { + "nodeId": "sharp@0.30.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/sharp@0.30.5", + "pkgId": "@types/sharp@0.30.5", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sharp@0.30.7", + "pkgId": "sharp@0.30.7", + "deps": [ + { + "nodeId": "color@4.2.3" + }, + { + "nodeId": "detect-libc@2.0.3" + }, + { + "nodeId": "node-addon-api@5.1.0" + }, + { + "nodeId": "prebuild-install@7.1.2" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "simple-get@4.0.1" + }, + { + "nodeId": "tar-fs@2.1.1" + }, + { + "nodeId": "tunnel-agent@0.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color@4.2.3", + "pkgId": "color@4.2.3", + "deps": [ + { + "nodeId": "color-convert@2.0.1" + }, + { + "nodeId": "color-string@1.9.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-string@1.9.1", + "pkgId": "color-string@1.9.1", + "deps": [ + { + "nodeId": "color-name@1.1.4" + }, + { + "nodeId": "simple-swizzle@0.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "simple-swizzle@0.2.2", + "pkgId": "simple-swizzle@0.2.2", + "deps": [ + { + "nodeId": "is-arrayish@0.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-arrayish@0.3.2", + "pkgId": "is-arrayish@0.3.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detect-libc@2.0.3", + "pkgId": "detect-libc@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-addon-api@5.1.0", + "pkgId": "node-addon-api@5.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "prebuild-install@7.1.2", + "pkgId": "prebuild-install@7.1.2", + "deps": [ + { + "nodeId": "detect-libc@2.0.3" + }, + { + "nodeId": "expand-template@2.0.3" + }, + { + "nodeId": "github-from-package@0.0.0" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "mkdirp-classic@0.5.3" + }, + { + "nodeId": "napi-build-utils@1.0.2" + }, + { + "nodeId": "node-abi@3.62.0" + }, + { + "nodeId": "pump@3.0.0" + }, + { + "nodeId": "rc@1.2.8" + }, + { + "nodeId": "simple-get@4.0.1" + }, + { + "nodeId": "tar-fs@2.1.1" + }, + { + "nodeId": "tunnel-agent@0.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "expand-template@2.0.3", + "pkgId": "expand-template@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "github-from-package@0.0.0", + "pkgId": "github-from-package@0.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mkdirp-classic@0.5.3", + "pkgId": "mkdirp-classic@0.5.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "napi-build-utils@1.0.2", + "pkgId": "napi-build-utils@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-abi@3.62.0", + "pkgId": "node-abi@3.62.0", + "deps": [ + { + "nodeId": "semver@7.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "simple-get@4.0.1", + "pkgId": "simple-get@4.0.1", + "deps": [ + { + "nodeId": "decompress-response@6.0.0" + }, + { + "nodeId": "once@1.4.0" + }, + { + "nodeId": "simple-concat@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "simple-concat@1.0.1", + "pkgId": "simple-concat@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tar-fs@2.1.1", + "pkgId": "tar-fs@2.1.1", + "deps": [ + { + "nodeId": "chownr@1.1.4" + }, + { + "nodeId": "mkdirp-classic@0.5.3" + }, + { + "nodeId": "pump@3.0.0" + }, + { + "nodeId": "tar-stream@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chownr@1.1.4", + "pkgId": "chownr@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tar-stream@2.2.0", + "pkgId": "tar-stream@2.2.0", + "deps": [ + { + "nodeId": "bl@4.1.0" + }, + { + "nodeId": "end-of-stream@1.4.4" + }, + { + "nodeId": "fs-constants@1.0.0" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "readable-stream@3.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bl@4.1.0", + "pkgId": "bl@4.1.0", + "deps": [ + { + "nodeId": "buffer@5.7.1" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "readable-stream@3.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "buffer@5.7.1", + "pkgId": "buffer@5.7.1", + "deps": [ + { + "nodeId": "base64-js@1.5.1" + }, + { + "nodeId": "ieee754@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "base64-js@1.5.1", + "pkgId": "base64-js@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-constants@1.0.0", + "pkgId": "fs-constants@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tunnel-agent@0.6.0", + "pkgId": "tunnel-agent@0.6.0", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graphql-compose@9.0.10", + "pkgId": "graphql-compose@9.0.10", + "deps": [ + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "graphql-type-json@0.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graphql-type-json@0.3.2", + "pkgId": "graphql-type-json@0.3.2", + "deps": [ + { + "nodeId": "graphql@15.8.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@3.0.0", + "pkgId": "mime@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-typescript@4.25.0", + "pkgId": "gatsby-plugin-typescript@4.25.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-numeric-separator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "babel-plugin-remove-graphql-queries@4.25.0" + }, + { + "nodeId": "gatsby@4.25.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-numeric-separator@7.18.6", + "pkgId": "@babel/plugin-proposal-numeric-separator@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-numeric-separator@7.10.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-react-router-scroll@5.25.0", + "pkgId": "gatsby-react-router-scroll@5.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@gatsbyjs/reach-router@1.3.9" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-script@1.10.0", + "pkgId": "gatsby-script@1.10.0", + "deps": [ + { + "nodeId": "@gatsbyjs/reach-router@1.3.9" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-worker@1.25.0", + "pkgId": "gatsby-worker@1.25.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graphql-playground-middleware-express@1.7.23", + "pkgId": "graphql-playground-middleware-express@1.7.23", + "deps": [ + { + "nodeId": "express@4.19.2" + }, + { + "nodeId": "graphql-playground-html@1.6.30" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graphql-playground-html@1.6.30", + "pkgId": "graphql-playground-html@1.6.30", + "deps": [ + { + "nodeId": "xss@1.0.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xss@1.0.15", + "pkgId": "xss@1.0.15", + "deps": [ + { + "nodeId": "commander@2.20.3" + }, + { + "nodeId": "cssfilter@0.0.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssfilter@0.0.10", + "pkgId": "cssfilter@0.0.10", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hasha@5.2.2", + "pkgId": "hasha@5.2.2", + "deps": [ + { + "nodeId": "is-stream@2.0.1" + }, + { + "nodeId": "type-fest@0.8.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-relative-url@3.0.0", + "pkgId": "is-relative-url@3.0.0", + "deps": [ + { + "nodeId": "is-absolute-url@3.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-absolute-url@3.0.3", + "pkgId": "is-absolute-url@3.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-loader@0.5.7", + "pkgId": "json-loader@0.5.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "md5-file@5.0.0", + "pkgId": "md5-file@5.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "meant@1.0.3", + "pkgId": "meant@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "memoizee@0.4.15", + "pkgId": "memoizee@0.4.15", + "deps": [ + { + "nodeId": "d@1.0.2" + }, + { + "nodeId": "es5-ext@0.10.64" + }, + { + "nodeId": "es6-weak-map@2.0.3" + }, + { + "nodeId": "event-emitter@0.3.5" + }, + { + "nodeId": "is-promise@2.2.2" + }, + { + "nodeId": "lru-queue@0.1.0" + }, + { + "nodeId": "next-tick@1.1.0" + }, + { + "nodeId": "timers-ext@0.1.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "d@1.0.2", + "pkgId": "d@1.0.2", + "deps": [ + { + "nodeId": "es5-ext@0.10.64" + }, + { + "nodeId": "type@2.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es5-ext@0.10.64", + "pkgId": "es5-ext@0.10.64", + "deps": [ + { + "nodeId": "es6-iterator@2.0.3" + }, + { + "nodeId": "es6-symbol@3.1.4" + }, + { + "nodeId": "esniff@2.0.1" + }, + { + "nodeId": "next-tick@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es6-iterator@2.0.3", + "pkgId": "es6-iterator@2.0.3", + "deps": [ + { + "nodeId": "d@1.0.2" + }, + { + "nodeId": "es5-ext@0.10.64" + }, + { + "nodeId": "es6-symbol@3.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es6-symbol@3.1.4", + "pkgId": "es6-symbol@3.1.4", + "deps": [ + { + "nodeId": "d@1.0.2" + }, + { + "nodeId": "ext@1.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ext@1.7.0", + "pkgId": "ext@1.7.0", + "deps": [ + { + "nodeId": "type@2.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type@2.7.2", + "pkgId": "type@2.7.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esniff@2.0.1", + "pkgId": "esniff@2.0.1", + "deps": [ + { + "nodeId": "d@1.0.2" + }, + { + "nodeId": "es5-ext@0.10.64" + }, + { + "nodeId": "event-emitter@0.3.5" + }, + { + "nodeId": "type@2.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "event-emitter@0.3.5", + "pkgId": "event-emitter@0.3.5", + "deps": [ + { + "nodeId": "d@1.0.2" + }, + { + "nodeId": "es5-ext@0.10.64" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "next-tick@1.1.0", + "pkgId": "next-tick@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es6-weak-map@2.0.3", + "pkgId": "es6-weak-map@2.0.3", + "deps": [ + { + "nodeId": "d@1.0.2" + }, + { + "nodeId": "es5-ext@0.10.64" + }, + { + "nodeId": "es6-iterator@2.0.3" + }, + { + "nodeId": "es6-symbol@3.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-promise@2.2.2", + "pkgId": "is-promise@2.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-queue@0.1.0", + "pkgId": "lru-queue@0.1.0", + "deps": [ + { + "nodeId": "es5-ext@0.10.64" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "timers-ext@0.1.7", + "pkgId": "timers-ext@0.1.7", + "deps": [ + { + "nodeId": "es5-ext@0.10.64" + }, + { + "nodeId": "next-tick@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@2.6.0", + "pkgId": "mime@2.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mini-css-extract-plugin@1.6.2", + "pkgId": "mini-css-extract-plugin@1.6.2", + "deps": [ + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-sources@1.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-sources@1.4.3", + "pkgId": "webpack-sources@1.4.3", + "deps": [ + { + "nodeId": "source-list-map@2.0.1" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-list-map@2.0.1", + "pkgId": "source-list-map@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mitt@1.2.0", + "pkgId": "mitt@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "moment@2.30.1", + "pkgId": "moment@2.30.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "multer@1.4.5-lts.1", + "pkgId": "multer@1.4.5-lts.1", + "deps": [ + { + "nodeId": "append-field@1.0.0" + }, + { + "nodeId": "busboy@1.6.0" + }, + { + "nodeId": "concat-stream@1.6.2" + }, + { + "nodeId": "mkdirp@0.5.6" + }, + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "append-field@1.0.0", + "pkgId": "append-field@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "busboy@1.6.0", + "pkgId": "busboy@1.6.0", + "deps": [ + { + "nodeId": "streamsearch@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "streamsearch@1.1.0", + "pkgId": "streamsearch@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "concat-stream@1.6.2", + "pkgId": "concat-stream@1.6.2", + "deps": [ + { + "nodeId": "buffer-from@1.1.2" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "readable-stream@2.3.8" + }, + { + "nodeId": "typedarray@0.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-stream@2.3.8", + "pkgId": "readable-stream@2.3.8", + "deps": [ + { + "nodeId": "core-util-is@1.0.3" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "isarray@1.0.0" + }, + { + "nodeId": "process-nextick-args@2.0.1" + }, + { + "nodeId": "safe-buffer@5.1.2" + }, + { + "nodeId": "string_decoder@1.1.1" + }, + { + "nodeId": "util-deprecate@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-util-is@1.0.3", + "pkgId": "core-util-is@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isarray@1.0.0", + "pkgId": "isarray@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "process-nextick-args@2.0.1", + "pkgId": "process-nextick-args@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string_decoder@1.1.1", + "pkgId": "string_decoder@1.1.1", + "deps": [ + { + "nodeId": "safe-buffer@5.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typedarray@0.0.6", + "pkgId": "typedarray@0.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xtend@4.0.2", + "pkgId": "xtend@4.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-html-parser@5.4.2", + "pkgId": "node-html-parser@5.4.2", + "deps": [ + { + "nodeId": "css-select@4.3.0" + }, + { + "nodeId": "he@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "he@1.2.0", + "pkgId": "he@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "null-loader@4.0.1", + "pkgId": "null-loader@4.0.1", + "deps": [ + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-defer@3.0.0", + "pkgId": "p-defer@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "physical-cpu-count@2.0.0", + "pkgId": "physical-cpu-count@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "platform@1.3.6", + "pkgId": "platform@1.3.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-flexbugs-fixes@5.0.2", + "pkgId": "postcss-flexbugs-fixes@5.0.2", + "deps": [ + { + "nodeId": "postcss@8.4.38" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-loader@5.3.0", + "pkgId": "postcss-loader@5.3.0", + "deps": [ + { + "nodeId": "cosmiconfig@7.1.0" + }, + { + "nodeId": "klona@2.0.6" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "klona@2.0.6", + "pkgId": "klona@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "query-string@6.14.1", + "pkgId": "query-string@6.14.1", + "deps": [ + { + "nodeId": "decode-uri-component@0.2.2" + }, + { + "nodeId": "filter-obj@1.1.0" + }, + { + "nodeId": "split-on-first@1.1.0" + }, + { + "nodeId": "strict-uri-encode@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "decode-uri-component@0.2.2", + "pkgId": "decode-uri-component@0.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "filter-obj@1.1.0", + "pkgId": "filter-obj@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "split-on-first@1.1.0", + "pkgId": "split-on-first@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strict-uri-encode@2.0.0", + "pkgId": "strict-uri-encode@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-loader@4.0.2", + "pkgId": "raw-loader@4.0.2", + "deps": [ + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-dev-utils@12.0.1", + "pkgId": "react-dev-utils@12.0.1", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "address@1.1.2" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cross-spawn@7.0.3" + }, + { + "nodeId": "detect-port-alt@1.1.6" + }, + { + "nodeId": "escape-string-regexp@4.0.0" + }, + { + "nodeId": "filesize@8.0.7" + }, + { + "nodeId": "find-up@5.0.0" + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.5.3" + }, + { + "nodeId": "global-modules@2.0.0" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "gzip-size@6.0.0" + }, + { + "nodeId": "immer@9.0.21" + }, + { + "nodeId": "is-root@2.1.0" + }, + { + "nodeId": "loader-utils@3.2.1" + }, + { + "nodeId": "open@8.4.2" + }, + { + "nodeId": "pkg-up@3.1.0" + }, + { + "nodeId": "prompts@2.4.2" + }, + { + "nodeId": "react-error-overlay@6.0.11" + }, + { + "nodeId": "recursive-readdir@2.2.3" + }, + { + "nodeId": "shell-quote@1.8.1" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "text-table@0.2.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detect-port-alt@1.1.6", + "pkgId": "detect-port-alt@1.1.6", + "deps": [ + { + "nodeId": "address@1.1.2" + }, + { + "nodeId": "debug@2.6.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "filesize@8.0.7", + "pkgId": "filesize@8.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "find-up@5.0.0", + "pkgId": "find-up@5.0.0", + "deps": [ + { + "nodeId": "locate-path@6.0.0" + }, + { + "nodeId": "path-exists@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "locate-path@6.0.0", + "pkgId": "locate-path@6.0.0", + "deps": [ + { + "nodeId": "p-locate@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-locate@5.0.0", + "pkgId": "p-locate@5.0.0", + "deps": [ + { + "nodeId": "p-limit@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.5.3", + "pkgId": "fork-ts-checker-webpack-plugin@6.5.3", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cosmiconfig@6.0.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "memfs@3.5.3" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "schema-utils@2.7.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "tapable@1.1.3" + }, + { + "nodeId": "typescript@4.9.5" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cosmiconfig@6.0.0", + "pkgId": "cosmiconfig@6.0.0", + "deps": [ + { + "nodeId": "@types/parse-json@4.0.2" + }, + { + "nodeId": "import-fresh@3.3.0" + }, + { + "nodeId": "parse-json@5.2.0" + }, + { + "nodeId": "path-type@4.0.0" + }, + { + "nodeId": "yaml@1.10.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-extra@9.1.0", + "pkgId": "fs-extra@9.1.0", + "deps": [ + { + "nodeId": "at-least-node@1.0.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jsonfile@6.1.0" + }, + { + "nodeId": "universalify@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "at-least-node@1.0.0", + "pkgId": "at-least-node@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "memfs@3.5.3", + "pkgId": "memfs@3.5.3", + "deps": [ + { + "nodeId": "fs-monkey@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-monkey@1.0.6", + "pkgId": "fs-monkey@1.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "schema-utils@2.7.0", + "pkgId": "schema-utils@2.7.0", + "deps": [ + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "ajv@6.12.6" + }, + { + "nodeId": "ajv-keywords@3.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tapable@1.1.3", + "pkgId": "tapable@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "global-modules@2.0.0", + "pkgId": "global-modules@2.0.0", + "deps": [ + { + "nodeId": "global-prefix@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "global-prefix@3.0.0", + "pkgId": "global-prefix@3.0.0", + "deps": [ + { + "nodeId": "ini@1.3.8" + }, + { + "nodeId": "kind-of@6.0.3" + }, + { + "nodeId": "which@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "kind-of@6.0.3", + "pkgId": "kind-of@6.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gzip-size@6.0.0", + "pkgId": "gzip-size@6.0.0", + "deps": [ + { + "nodeId": "duplexer@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "duplexer@0.1.2", + "pkgId": "duplexer@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "immer@9.0.21", + "pkgId": "immer@9.0.21", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-root@2.1.0", + "pkgId": "is-root@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loader-utils@3.2.1", + "pkgId": "loader-utils@3.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "open@8.4.2", + "pkgId": "open@8.4.2", + "deps": [ + { + "nodeId": "define-lazy-prop@2.0.0" + }, + { + "nodeId": "is-docker@2.2.1" + }, + { + "nodeId": "is-wsl@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-lazy-prop@2.0.0", + "pkgId": "define-lazy-prop@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pkg-up@3.1.0", + "pkgId": "pkg-up@3.1.0", + "deps": [ + { + "nodeId": "find-up@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "find-up@3.0.0", + "pkgId": "find-up@3.0.0", + "deps": [ + { + "nodeId": "locate-path@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "locate-path@3.0.0", + "pkgId": "locate-path@3.0.0", + "deps": [ + { + "nodeId": "p-locate@3.0.0" + }, + { + "nodeId": "path-exists@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-locate@3.0.0", + "pkgId": "p-locate@3.0.0", + "deps": [ + { + "nodeId": "p-limit@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-exists@3.0.0", + "pkgId": "path-exists@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-error-overlay@6.0.11", + "pkgId": "react-error-overlay@6.0.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "recursive-readdir@2.2.3", + "pkgId": "recursive-readdir@2.2.3", + "deps": [ + { + "nodeId": "minimatch@3.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shell-quote@1.8.1", + "pkgId": "shell-quote@1.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825", + "pkgId": "react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825", + "deps": [ + { + "nodeId": "acorn@6.4.2" + }, + { + "nodeId": "loose-envify@1.4.0" + }, + { + "nodeId": "neo-async@2.6.2" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn@6.4.2", + "pkgId": "acorn@6.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "redux-thunk@2.4.2", + "pkgId": "redux-thunk@2.4.2", + "deps": [ + { + "nodeId": "redux@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shallow-compare@1.2.2", + "pkgId": "shallow-compare@1.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "slugify@1.6.6", + "pkgId": "slugify@1.6.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "socket.io@4.5.4", + "pkgId": "socket.io@4.5.4", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "base64id@2.0.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "engine.io@6.2.1" + }, + { + "nodeId": "socket.io-adapter@2.4.0" + }, + { + "nodeId": "socket.io-parser@4.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "base64id@2.0.0", + "pkgId": "base64id@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "engine.io@6.2.1", + "pkgId": "engine.io@6.2.1", + "deps": [ + { + "nodeId": "@types/cookie@0.4.1" + }, + { + "nodeId": "@types/cors@2.8.17" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "base64id@2.0.0" + }, + { + "nodeId": "cookie@0.4.2" + }, + { + "nodeId": "cors@2.8.5" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "engine.io-parser@5.0.7" + }, + { + "nodeId": "ws@8.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/cookie@0.4.1", + "pkgId": "@types/cookie@0.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/cors@2.8.17", + "pkgId": "@types/cors@2.8.17", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "engine.io-parser@5.0.7", + "pkgId": "engine.io-parser@5.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ws@8.2.3", + "pkgId": "ws@8.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "socket.io-adapter@2.4.0", + "pkgId": "socket.io-adapter@2.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "socket.io-parser@4.2.4", + "pkgId": "socket.io-parser@4.2.4", + "deps": [ + { + "nodeId": "@socket.io/component-emitter@3.1.2" + }, + { + "nodeId": "debug@4.3.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@socket.io/component-emitter@3.1.2", + "pkgId": "@socket.io/component-emitter@3.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "socket.io-client@4.5.4", + "pkgId": "socket.io-client@4.5.4", + "deps": [ + { + "nodeId": "@socket.io/component-emitter@3.1.2" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "engine.io-client@6.2.3" + }, + { + "nodeId": "socket.io-parser@4.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "engine.io-client@6.2.3", + "pkgId": "engine.io-client@6.2.3", + "deps": [ + { + "nodeId": "@socket.io/component-emitter@3.1.2" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "engine.io-parser@5.0.7" + }, + { + "nodeId": "ws@8.2.3" + }, + { + "nodeId": "xmlhttprequest-ssl@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xmlhttprequest-ssl@2.0.0", + "pkgId": "xmlhttprequest-ssl@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "st@2.0.0", + "pkgId": "st@2.0.0", + "deps": [ + { + "nodeId": "async-cache@1.1.0" + }, + { + "nodeId": "bl@4.1.0" + }, + { + "nodeId": "fd@0.0.3" + }, + { + "nodeId": "mime@2.6.0" + }, + { + "nodeId": "negotiator@0.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async-cache@1.1.0", + "pkgId": "async-cache@1.1.0", + "deps": [ + { + "nodeId": "lru-cache@4.1.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-cache@4.1.5", + "pkgId": "lru-cache@4.1.5", + "deps": [ + { + "nodeId": "pseudomap@1.0.2" + }, + { + "nodeId": "yallist@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fd@0.0.3", + "pkgId": "fd@0.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-similarity@1.2.2", + "pkgId": "string-similarity@1.2.2", + "deps": [ + { + "nodeId": "lodash.every@4.6.0" + }, + { + "nodeId": "lodash.flattendeep@4.4.0" + }, + { + "nodeId": "lodash.foreach@4.5.0" + }, + { + "nodeId": "lodash.map@4.6.0" + }, + { + "nodeId": "lodash.maxby@4.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.every@4.6.0", + "pkgId": "lodash.every@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.flattendeep@4.4.0", + "pkgId": "lodash.flattendeep@4.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.foreach@4.5.0", + "pkgId": "lodash.foreach@4.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.map@4.6.0", + "pkgId": "lodash.map@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.maxby@4.6.0", + "pkgId": "lodash.maxby@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "style-loader@2.0.0", + "pkgId": "style-loader@2.0.0", + "deps": [ + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "true-case-path@2.2.1", + "pkgId": "true-case-path@2.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-of@2.0.1", + "pkgId": "type-of@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "url-loader@4.1.1", + "pkgId": "url-loader@4.1.1", + "deps": [ + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "uuid@8.3.2", + "pkgId": "uuid@8.3.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-dev-middleware@4.3.0", + "pkgId": "webpack-dev-middleware@4.3.0", + "deps": [ + { + "nodeId": "colorette@1.4.0" + }, + { + "nodeId": "mem@8.1.1" + }, + { + "nodeId": "memfs@3.5.3" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "colorette@1.4.0", + "pkgId": "colorette@1.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mem@8.1.1", + "pkgId": "mem@8.1.1", + "deps": [ + { + "nodeId": "map-age-cleaner@0.1.3" + }, + { + "nodeId": "mimic-fn@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "map-age-cleaner@0.1.3", + "pkgId": "map-age-cleaner@0.1.3", + "deps": [ + { + "nodeId": "p-defer@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-defer@1.0.0", + "pkgId": "p-defer@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mimic-fn@3.1.0", + "pkgId": "mimic-fn@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-merge@5.10.0", + "pkgId": "webpack-merge@5.10.0", + "deps": [ + { + "nodeId": "clone-deep@4.0.1" + }, + { + "nodeId": "flat@5.0.2" + }, + { + "nodeId": "wildcard@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clone-deep@4.0.1", + "pkgId": "clone-deep@4.0.1", + "deps": [ + { + "nodeId": "is-plain-object@2.0.4" + }, + { + "nodeId": "kind-of@6.0.3" + }, + { + "nodeId": "shallow-clone@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-plain-object@2.0.4", + "pkgId": "is-plain-object@2.0.4", + "deps": [ + { + "nodeId": "isobject@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isobject@3.0.1", + "pkgId": "isobject@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shallow-clone@3.0.1", + "pkgId": "shallow-clone@3.0.1", + "deps": [ + { + "nodeId": "kind-of@6.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "flat@5.0.2", + "pkgId": "flat@5.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wildcard@2.0.1", + "pkgId": "wildcard@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-stats-plugin@1.1.3", + "pkgId": "webpack-stats-plugin@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-virtual-modules@0.3.2", + "pkgId": "webpack-virtual-modules@0.3.2", + "deps": [ + { + "nodeId": "debug@3.2.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xstate@4.32.1", + "pkgId": "xstate@4.32.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yaml-loader@0.8.1", + "pkgId": "yaml-loader@0.8.1", + "deps": [ + { + "nodeId": "javascript-stringify@2.1.0" + }, + { + "nodeId": "loader-utils@2.0.4" + }, + { + "nodeId": "yaml@2.4.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "javascript-stringify@2.1.0", + "pkgId": "javascript-stringify@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yaml@2.4.2", + "pkgId": "yaml@2.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-image@2.25.0", + "pkgId": "gatsby-plugin-image@2.25.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "babel-jsx-utils@1.1.0" + }, + { + "nodeId": "babel-plugin-remove-graphql-queries@4.25.0" + }, + { + "nodeId": "camelcase@5.3.1" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-plugin-sharp@4.25.1" + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0" + }, + { + "nodeId": "gatsby-source-filesystem@4.25.0" + }, + { + "nodeId": "objectFitPolyfill@2.3.5" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/core@7.12.13", + "pkgId": "@babel/core@7.12.13", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helpers@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "convert-source-map@1.9.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "gensync@1.0.0-beta.2" + }, + { + "nodeId": "json5@2.2.3" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "semver@5.7.2" + }, + { + "nodeId": "source-map@0.5.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "convert-source-map@1.9.0", + "pkgId": "convert-source-map@1.9.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map@0.5.7", + "pkgId": "source-map@0.5.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-jsx-utils@1.1.0", + "pkgId": "babel-jsx-utils@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-sharp@4.25.1", + "pkgId": "gatsby-plugin-sharp@4.25.1", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "async@3.2.5" + }, + { + "nodeId": "bluebird@3.7.2" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "filenamify@4.3.0" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "probe-image-size@7.2.3" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "sharp@0.30.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async@3.2.5", + "pkgId": "async@3.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "filenamify@4.3.0", + "pkgId": "filenamify@4.3.0", + "deps": [ + { + "nodeId": "filename-reserved-regex@2.0.0" + }, + { + "nodeId": "strip-outer@1.0.1" + }, + { + "nodeId": "trim-repeated@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "filename-reserved-regex@2.0.0", + "pkgId": "filename-reserved-regex@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-outer@1.0.1", + "pkgId": "strip-outer@1.0.1", + "deps": [ + { + "nodeId": "escape-string-regexp@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "trim-repeated@1.0.0", + "pkgId": "trim-repeated@1.0.0", + "deps": [ + { + "nodeId": "escape-string-regexp@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "probe-image-size@7.2.3", + "pkgId": "probe-image-size@7.2.3", + "deps": [ + { + "nodeId": "lodash.merge@4.6.2" + }, + { + "nodeId": "needle@2.9.1" + }, + { + "nodeId": "stream-parser@0.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "needle@2.9.1", + "pkgId": "needle@2.9.1", + "deps": [ + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "sax@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sax@1.3.0", + "pkgId": "sax@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stream-parser@0.3.1", + "pkgId": "stream-parser@0.3.1", + "deps": [ + { + "nodeId": "debug@2.6.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-source-filesystem@4.25.0", + "pkgId": "gatsby-source-filesystem@4.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "file-type@16.5.4" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "md5-file@5.0.0" + }, + { + "nodeId": "mime@2.6.0" + }, + { + "nodeId": "pretty-bytes@5.6.0" + }, + { + "nodeId": "valid-url@1.0.9" + }, + { + "nodeId": "xstate@4.32.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-bytes@5.6.0", + "pkgId": "pretty-bytes@5.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "valid-url@1.0.9", + "pkgId": "valid-url@1.0.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "objectFitPolyfill@2.3.5", + "pkgId": "objectFitPolyfill@2.3.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-manifest@4.25.0", + "pkgId": "gatsby-plugin-manifest@4.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "sharp@0.30.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-mdx@3.20.0", + "pkgId": "gatsby-plugin-mdx@3.20.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.20.7" + }, + { + "nodeId": "@babel/preset-env@7.24.5" + }, + { + "nodeId": "@babel/preset-react@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@mdx-js/mdx@1.6.22" + }, + { + "nodeId": "@mdx-js/react@1.6.22" + }, + { + "nodeId": "camelcase-css@2.0.1" + }, + { + "nodeId": "change-case@3.1.0" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "dataloader@1.4.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "escape-string-regexp@1.0.5" + }, + { + "nodeId": "eval@0.1.8" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "gray-matter@4.0.3" + }, + { + "nodeId": "json5@2.2.3" + }, + { + "nodeId": "loader-utils@1.4.2" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "mdast-util-to-string@1.1.0" + }, + { + "nodeId": "mdast-util-toc@3.1.0" + }, + { + "nodeId": "mime@2.6.0" + }, + { + "nodeId": "mkdirp@1.0.4" + }, + { + "nodeId": "p-queue@6.6.2" + }, + { + "nodeId": "pretty-bytes@5.6.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "remark@10.0.1" + }, + { + "nodeId": "remark-retext@3.1.3" + }, + { + "nodeId": "retext-english@3.0.4" + }, + { + "nodeId": "slugify@1.6.6" + }, + { + "nodeId": "static-site-generator-webpack-plugin@3.4.2" + }, + { + "nodeId": "style-to-object@0.3.0" + }, + { + "nodeId": "underscore.string@3.3.6" + }, + { + "nodeId": "unified@8.4.2" + }, + { + "nodeId": "unist-util-map@1.0.5" + }, + { + "nodeId": "unist-util-remove@1.0.3" + }, + { + "nodeId": "unist-util-visit@1.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@mdx-js/mdx@1.6.22", + "pkgId": "@mdx-js/mdx@1.6.22", + "deps": [ + { + "nodeId": "@babel/core@7.12.9" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.12.1" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@mdx-js/util@1.6.22" + }, + { + "nodeId": "babel-plugin-apply-mdx-type-prop@1.6.22" + }, + { + "nodeId": "babel-plugin-extract-import-names@1.6.22" + }, + { + "nodeId": "camelcase-css@2.0.1" + }, + { + "nodeId": "detab@2.0.4" + }, + { + "nodeId": "hast-util-raw@6.0.1" + }, + { + "nodeId": "lodash.uniq@4.5.0" + }, + { + "nodeId": "mdast-util-to-hast@10.0.1" + }, + { + "nodeId": "remark-footnotes@2.0.0" + }, + { + "nodeId": "remark-mdx@1.6.22" + }, + { + "nodeId": "remark-parse@8.0.3" + }, + { + "nodeId": "remark-squeeze-paragraphs@4.0.0" + }, + { + "nodeId": "style-to-object@0.3.0" + }, + { + "nodeId": "unified@9.2.0" + }, + { + "nodeId": "unist-builder@2.0.3" + }, + { + "nodeId": "unist-util-visit@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/core@7.12.9", + "pkgId": "@babel/core@7.12.9", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/helper-module-transforms@7.24.5" + }, + { + "nodeId": "@babel/helpers@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "convert-source-map@1.9.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "gensync@1.0.0-beta.2" + }, + { + "nodeId": "json5@2.2.3" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "semver@5.7.2" + }, + { + "nodeId": "source-map@0.5.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.12.1", + "pkgId": "@babel/plugin-syntax-jsx@7.12.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.9" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@mdx-js/util@1.6.22", + "pkgId": "@mdx-js/util@1.6.22", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-apply-mdx-type-prop@1.6.22", + "pkgId": "babel-plugin-apply-mdx-type-prop@1.6.22", + "deps": [ + { + "nodeId": "@babel/core@7.12.9" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.10.4" + }, + { + "nodeId": "@mdx-js/util@1.6.22" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/helper-plugin-utils@7.10.4", + "pkgId": "@babel/helper-plugin-utils@7.10.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-extract-import-names@1.6.22", + "pkgId": "babel-plugin-extract-import-names@1.6.22", + "deps": [ + { + "nodeId": "@babel/helper-plugin-utils@7.10.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "camelcase-css@2.0.1", + "pkgId": "camelcase-css@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detab@2.0.4", + "pkgId": "detab@2.0.4", + "deps": [ + { + "nodeId": "repeat-string@1.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "repeat-string@1.6.1", + "pkgId": "repeat-string@1.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hast-util-raw@6.0.1", + "pkgId": "hast-util-raw@6.0.1", + "deps": [ + { + "nodeId": "@types/hast@2.3.10" + }, + { + "nodeId": "hast-util-from-parse5@6.0.1" + }, + { + "nodeId": "hast-util-to-parse5@6.0.0" + }, + { + "nodeId": "html-void-elements@1.0.5" + }, + { + "nodeId": "parse5@6.0.1" + }, + { + "nodeId": "unist-util-position@3.1.0" + }, + { + "nodeId": "vfile@4.2.1" + }, + { + "nodeId": "web-namespaces@1.1.4" + }, + { + "nodeId": "xtend@4.0.2" + }, + { + "nodeId": "zwitch@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/hast@2.3.10", + "pkgId": "@types/hast@2.3.10", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/unist@2.0.10", + "pkgId": "@types/unist@2.0.10", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hast-util-from-parse5@6.0.1", + "pkgId": "hast-util-from-parse5@6.0.1", + "deps": [ + { + "nodeId": "@types/parse5@5.0.3" + }, + { + "nodeId": "hastscript@6.0.0" + }, + { + "nodeId": "property-information@5.6.0" + }, + { + "nodeId": "vfile@4.2.1" + }, + { + "nodeId": "vfile-location@3.2.0" + }, + { + "nodeId": "web-namespaces@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/parse5@5.0.3", + "pkgId": "@types/parse5@5.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hastscript@6.0.0", + "pkgId": "hastscript@6.0.0", + "deps": [ + { + "nodeId": "@types/hast@2.3.10" + }, + { + "nodeId": "comma-separated-tokens@1.0.8" + }, + { + "nodeId": "hast-util-parse-selector@2.2.5" + }, + { + "nodeId": "property-information@5.6.0" + }, + { + "nodeId": "space-separated-tokens@1.1.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "comma-separated-tokens@1.0.8", + "pkgId": "comma-separated-tokens@1.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hast-util-parse-selector@2.2.5", + "pkgId": "hast-util-parse-selector@2.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "property-information@5.6.0", + "pkgId": "property-information@5.6.0", + "deps": [ + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "space-separated-tokens@1.1.5", + "pkgId": "space-separated-tokens@1.1.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile@4.2.1", + "pkgId": "vfile@4.2.1", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "is-buffer@2.0.5" + }, + { + "nodeId": "unist-util-stringify-position@2.0.3" + }, + { + "nodeId": "vfile-message@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-buffer@2.0.5", + "pkgId": "is-buffer@2.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-stringify-position@2.0.3", + "pkgId": "unist-util-stringify-position@2.0.3", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile-message@2.0.4", + "pkgId": "vfile-message@2.0.4", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "unist-util-stringify-position@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile-location@3.2.0", + "pkgId": "vfile-location@3.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "web-namespaces@1.1.4", + "pkgId": "web-namespaces@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hast-util-to-parse5@6.0.0", + "pkgId": "hast-util-to-parse5@6.0.0", + "deps": [ + { + "nodeId": "hast-to-hyperscript@9.0.1" + }, + { + "nodeId": "property-information@5.6.0" + }, + { + "nodeId": "web-namespaces@1.1.4" + }, + { + "nodeId": "xtend@4.0.2" + }, + { + "nodeId": "zwitch@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hast-to-hyperscript@9.0.1", + "pkgId": "hast-to-hyperscript@9.0.1", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "comma-separated-tokens@1.0.8" + }, + { + "nodeId": "property-information@5.6.0" + }, + { + "nodeId": "space-separated-tokens@1.1.5" + }, + { + "nodeId": "style-to-object@0.3.0" + }, + { + "nodeId": "unist-util-is@4.1.0" + }, + { + "nodeId": "web-namespaces@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "style-to-object@0.3.0", + "pkgId": "style-to-object@0.3.0", + "deps": [ + { + "nodeId": "inline-style-parser@0.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inline-style-parser@0.1.1", + "pkgId": "inline-style-parser@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-is@4.1.0", + "pkgId": "unist-util-is@4.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "zwitch@1.0.5", + "pkgId": "zwitch@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "html-void-elements@1.0.5", + "pkgId": "html-void-elements@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse5@6.0.1", + "pkgId": "parse5@6.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-position@3.1.0", + "pkgId": "unist-util-position@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-util-to-hast@10.0.1", + "pkgId": "mdast-util-to-hast@10.0.1", + "deps": [ + { + "nodeId": "@types/mdast@3.0.15" + }, + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "mdast-util-definitions@4.0.0" + }, + { + "nodeId": "mdurl@1.0.1" + }, + { + "nodeId": "unist-builder@2.0.3" + }, + { + "nodeId": "unist-util-generated@1.1.6" + }, + { + "nodeId": "unist-util-position@3.1.0" + }, + { + "nodeId": "unist-util-visit@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/mdast@3.0.15", + "pkgId": "@types/mdast@3.0.15", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-util-definitions@4.0.0", + "pkgId": "mdast-util-definitions@4.0.0", + "deps": [ + { + "nodeId": "unist-util-visit@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-visit@2.0.3", + "pkgId": "unist-util-visit@2.0.3", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "unist-util-is@4.1.0" + }, + { + "nodeId": "unist-util-visit-parents@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-visit-parents@3.1.1", + "pkgId": "unist-util-visit-parents@3.1.1", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "unist-util-is@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdurl@1.0.1", + "pkgId": "mdurl@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-builder@2.0.3", + "pkgId": "unist-builder@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-generated@1.1.6", + "pkgId": "unist-util-generated@1.1.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-footnotes@2.0.0", + "pkgId": "remark-footnotes@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-mdx@1.6.22", + "pkgId": "remark-mdx@1.6.22", + "deps": [ + { + "nodeId": "@babel/core@7.12.9" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.10.4" + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.12.1" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.12.1" + }, + { + "nodeId": "@mdx-js/util@1.6.22" + }, + { + "nodeId": "is-alphabetical@1.0.4" + }, + { + "nodeId": "remark-parse@8.0.3" + }, + { + "nodeId": "unified@9.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.12.1", + "pkgId": "@babel/plugin-proposal-object-rest-spread@7.12.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.9" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-alphabetical@1.0.4", + "pkgId": "is-alphabetical@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-parse@8.0.3", + "pkgId": "remark-parse@8.0.3", + "deps": [ + { + "nodeId": "ccount@1.1.0" + }, + { + "nodeId": "collapse-white-space@1.0.6" + }, + { + "nodeId": "is-alphabetical@1.0.4" + }, + { + "nodeId": "is-decimal@1.0.4" + }, + { + "nodeId": "is-whitespace-character@1.0.4" + }, + { + "nodeId": "is-word-character@1.0.4" + }, + { + "nodeId": "markdown-escapes@1.0.4" + }, + { + "nodeId": "parse-entities@2.0.0" + }, + { + "nodeId": "repeat-string@1.6.1" + }, + { + "nodeId": "state-toggle@1.0.3" + }, + { + "nodeId": "trim@0.0.1" + }, + { + "nodeId": "trim-trailing-lines@1.1.4" + }, + { + "nodeId": "unherit@1.1.3" + }, + { + "nodeId": "unist-util-remove-position@2.0.1" + }, + { + "nodeId": "vfile-location@3.2.0" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ccount@1.1.0", + "pkgId": "ccount@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "collapse-white-space@1.0.6", + "pkgId": "collapse-white-space@1.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-decimal@1.0.4", + "pkgId": "is-decimal@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-whitespace-character@1.0.4", + "pkgId": "is-whitespace-character@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-word-character@1.0.4", + "pkgId": "is-word-character@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "markdown-escapes@1.0.4", + "pkgId": "markdown-escapes@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-entities@2.0.0", + "pkgId": "parse-entities@2.0.0", + "deps": [ + { + "nodeId": "character-entities@1.2.4" + }, + { + "nodeId": "character-entities-legacy@1.1.4" + }, + { + "nodeId": "character-reference-invalid@1.1.4" + }, + { + "nodeId": "is-alphanumerical@1.0.4" + }, + { + "nodeId": "is-decimal@1.0.4" + }, + { + "nodeId": "is-hexadecimal@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "character-entities@1.2.4", + "pkgId": "character-entities@1.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "character-entities-legacy@1.1.4", + "pkgId": "character-entities-legacy@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "character-reference-invalid@1.1.4", + "pkgId": "character-reference-invalid@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-alphanumerical@1.0.4", + "pkgId": "is-alphanumerical@1.0.4", + "deps": [ + { + "nodeId": "is-alphabetical@1.0.4" + }, + { + "nodeId": "is-decimal@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-hexadecimal@1.0.4", + "pkgId": "is-hexadecimal@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "state-toggle@1.0.3", + "pkgId": "state-toggle@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "trim@0.0.1", + "pkgId": "trim@0.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "trim-trailing-lines@1.1.4", + "pkgId": "trim-trailing-lines@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unherit@1.1.3", + "pkgId": "unherit@1.1.3", + "deps": [ + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-remove-position@2.0.1", + "pkgId": "unist-util-remove-position@2.0.1", + "deps": [ + { + "nodeId": "unist-util-visit@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unified@9.2.0", + "pkgId": "unified@9.2.0", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "bail@1.0.5" + }, + { + "nodeId": "extend@3.0.2" + }, + { + "nodeId": "is-buffer@2.0.5" + }, + { + "nodeId": "is-plain-obj@2.1.0" + }, + { + "nodeId": "trough@1.0.5" + }, + { + "nodeId": "vfile@4.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bail@1.0.5", + "pkgId": "bail@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "extend@3.0.2", + "pkgId": "extend@3.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-plain-obj@2.1.0", + "pkgId": "is-plain-obj@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "trough@1.0.5", + "pkgId": "trough@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-squeeze-paragraphs@4.0.0", + "pkgId": "remark-squeeze-paragraphs@4.0.0", + "deps": [ + { + "nodeId": "mdast-squeeze-paragraphs@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-squeeze-paragraphs@4.0.0", + "pkgId": "mdast-squeeze-paragraphs@4.0.0", + "deps": [ + { + "nodeId": "unist-util-remove@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-remove@2.1.0", + "pkgId": "unist-util-remove@2.1.0", + "deps": [ + { + "nodeId": "unist-util-is@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@mdx-js/react@1.6.22", + "pkgId": "@mdx-js/react@1.6.22", + "deps": [ + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "change-case@3.1.0", + "pkgId": "change-case@3.1.0", + "deps": [ + { + "nodeId": "camel-case@3.0.0" + }, + { + "nodeId": "constant-case@2.0.0" + }, + { + "nodeId": "dot-case@2.1.1" + }, + { + "nodeId": "header-case@1.0.1" + }, + { + "nodeId": "is-lower-case@1.1.3" + }, + { + "nodeId": "is-upper-case@1.1.2" + }, + { + "nodeId": "lower-case@1.1.4" + }, + { + "nodeId": "lower-case-first@1.0.2" + }, + { + "nodeId": "no-case@2.3.2" + }, + { + "nodeId": "param-case@2.1.1" + }, + { + "nodeId": "pascal-case@2.0.1" + }, + { + "nodeId": "path-case@2.1.1" + }, + { + "nodeId": "sentence-case@2.1.1" + }, + { + "nodeId": "snake-case@2.1.0" + }, + { + "nodeId": "swap-case@1.1.2" + }, + { + "nodeId": "title-case@2.1.1" + }, + { + "nodeId": "upper-case@1.1.3" + }, + { + "nodeId": "upper-case-first@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "camel-case@3.0.0", + "pkgId": "camel-case@3.0.0", + "deps": [ + { + "nodeId": "no-case@2.3.2" + }, + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "no-case@2.3.2", + "pkgId": "no-case@2.3.2", + "deps": [ + { + "nodeId": "lower-case@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lower-case@1.1.4", + "pkgId": "lower-case@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "upper-case@1.1.3", + "pkgId": "upper-case@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "constant-case@2.0.0", + "pkgId": "constant-case@2.0.0", + "deps": [ + { + "nodeId": "snake-case@2.1.0" + }, + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "snake-case@2.1.0", + "pkgId": "snake-case@2.1.0", + "deps": [ + { + "nodeId": "no-case@2.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dot-case@2.1.1", + "pkgId": "dot-case@2.1.1", + "deps": [ + { + "nodeId": "no-case@2.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "header-case@1.0.1", + "pkgId": "header-case@1.0.1", + "deps": [ + { + "nodeId": "no-case@2.3.2" + }, + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-lower-case@1.1.3", + "pkgId": "is-lower-case@1.1.3", + "deps": [ + { + "nodeId": "lower-case@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-upper-case@1.1.2", + "pkgId": "is-upper-case@1.1.2", + "deps": [ + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lower-case-first@1.0.2", + "pkgId": "lower-case-first@1.0.2", + "deps": [ + { + "nodeId": "lower-case@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "param-case@2.1.1", + "pkgId": "param-case@2.1.1", + "deps": [ + { + "nodeId": "no-case@2.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pascal-case@2.0.1", + "pkgId": "pascal-case@2.0.1", + "deps": [ + { + "nodeId": "camel-case@3.0.0" + }, + { + "nodeId": "upper-case-first@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "upper-case-first@1.1.2", + "pkgId": "upper-case-first@1.1.2", + "deps": [ + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-case@2.1.1", + "pkgId": "path-case@2.1.1", + "deps": [ + { + "nodeId": "no-case@2.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sentence-case@2.1.1", + "pkgId": "sentence-case@2.1.1", + "deps": [ + { + "nodeId": "no-case@2.3.2" + }, + { + "nodeId": "upper-case-first@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "swap-case@1.1.2", + "pkgId": "swap-case@1.1.2", + "deps": [ + { + "nodeId": "lower-case@1.1.4" + }, + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "title-case@2.1.1", + "pkgId": "title-case@2.1.1", + "deps": [ + { + "nodeId": "no-case@2.3.2" + }, + { + "nodeId": "upper-case@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dataloader@1.4.0", + "pkgId": "dataloader@1.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eval@0.1.8", + "pkgId": "eval@0.1.8", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "require-like@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "require-like@0.1.2", + "pkgId": "require-like@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gray-matter@4.0.3", + "pkgId": "gray-matter@4.0.3", + "deps": [ + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "kind-of@6.0.3" + }, + { + "nodeId": "section-matter@1.0.0" + }, + { + "nodeId": "strip-bom-string@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "section-matter@1.0.0", + "pkgId": "section-matter@1.0.0", + "deps": [ + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "kind-of@6.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "extend-shallow@2.0.1", + "pkgId": "extend-shallow@2.0.1", + "deps": [ + { + "nodeId": "is-extendable@0.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-extendable@0.1.1", + "pkgId": "is-extendable@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-bom-string@1.0.0", + "pkgId": "strip-bom-string@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loader-utils@1.4.2", + "pkgId": "loader-utils@1.4.2", + "deps": [ + { + "nodeId": "big.js@5.2.2" + }, + { + "nodeId": "emojis-list@3.0.0" + }, + { + "nodeId": "json5@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-util-to-string@1.1.0", + "pkgId": "mdast-util-to-string@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-util-toc@3.1.0", + "pkgId": "mdast-util-toc@3.1.0", + "deps": [ + { + "nodeId": "github-slugger@1.5.0" + }, + { + "nodeId": "mdast-util-to-string@1.1.0" + }, + { + "nodeId": "unist-util-is@2.1.3" + }, + { + "nodeId": "unist-util-visit@1.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "github-slugger@1.5.0", + "pkgId": "github-slugger@1.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-is@2.1.3", + "pkgId": "unist-util-is@2.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-visit@1.4.1", + "pkgId": "unist-util-visit@1.4.1", + "deps": [ + { + "nodeId": "unist-util-visit-parents@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-visit-parents@2.1.2", + "pkgId": "unist-util-visit-parents@2.1.2", + "deps": [ + { + "nodeId": "unist-util-is@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-is@3.0.0", + "pkgId": "unist-util-is@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mkdirp@1.0.4", + "pkgId": "mkdirp@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-queue@6.6.2", + "pkgId": "p-queue@6.6.2", + "deps": [ + { + "nodeId": "eventemitter3@4.0.7" + }, + { + "nodeId": "p-timeout@3.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eventemitter3@4.0.7", + "pkgId": "eventemitter3@4.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-timeout@3.2.0", + "pkgId": "p-timeout@3.2.0", + "deps": [ + { + "nodeId": "p-finally@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark@10.0.1", + "pkgId": "remark@10.0.1", + "deps": [ + { + "nodeId": "remark-parse@6.0.3" + }, + { + "nodeId": "remark-stringify@6.0.4" + }, + { + "nodeId": "unified@7.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-parse@6.0.3", + "pkgId": "remark-parse@6.0.3", + "deps": [ + { + "nodeId": "collapse-white-space@1.0.6" + }, + { + "nodeId": "is-alphabetical@1.0.4" + }, + { + "nodeId": "is-decimal@1.0.4" + }, + { + "nodeId": "is-whitespace-character@1.0.4" + }, + { + "nodeId": "is-word-character@1.0.4" + }, + { + "nodeId": "markdown-escapes@1.0.4" + }, + { + "nodeId": "parse-entities@1.2.2" + }, + { + "nodeId": "repeat-string@1.6.1" + }, + { + "nodeId": "state-toggle@1.0.3" + }, + { + "nodeId": "trim@0.0.1" + }, + { + "nodeId": "trim-trailing-lines@1.1.4" + }, + { + "nodeId": "unherit@1.1.3" + }, + { + "nodeId": "unist-util-remove-position@1.1.4" + }, + { + "nodeId": "vfile-location@2.0.6" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-entities@1.2.2", + "pkgId": "parse-entities@1.2.2", + "deps": [ + { + "nodeId": "character-entities@1.2.4" + }, + { + "nodeId": "character-entities-legacy@1.1.4" + }, + { + "nodeId": "character-reference-invalid@1.1.4" + }, + { + "nodeId": "is-alphanumerical@1.0.4" + }, + { + "nodeId": "is-decimal@1.0.4" + }, + { + "nodeId": "is-hexadecimal@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-remove-position@1.1.4", + "pkgId": "unist-util-remove-position@1.1.4", + "deps": [ + { + "nodeId": "unist-util-visit@1.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile-location@2.0.6", + "pkgId": "vfile-location@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-stringify@6.0.4", + "pkgId": "remark-stringify@6.0.4", + "deps": [ + { + "nodeId": "ccount@1.1.0" + }, + { + "nodeId": "is-alphanumeric@1.0.0" + }, + { + "nodeId": "is-decimal@1.0.4" + }, + { + "nodeId": "is-whitespace-character@1.0.4" + }, + { + "nodeId": "longest-streak@2.0.4" + }, + { + "nodeId": "markdown-escapes@1.0.4" + }, + { + "nodeId": "markdown-table@1.1.3" + }, + { + "nodeId": "mdast-util-compact@1.0.4" + }, + { + "nodeId": "parse-entities@1.2.2" + }, + { + "nodeId": "repeat-string@1.6.1" + }, + { + "nodeId": "state-toggle@1.0.3" + }, + { + "nodeId": "stringify-entities@1.3.2" + }, + { + "nodeId": "unherit@1.1.3" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-alphanumeric@1.0.0", + "pkgId": "is-alphanumeric@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "longest-streak@2.0.4", + "pkgId": "longest-streak@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "markdown-table@1.1.3", + "pkgId": "markdown-table@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-util-compact@1.0.4", + "pkgId": "mdast-util-compact@1.0.4", + "deps": [ + { + "nodeId": "unist-util-visit@1.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stringify-entities@1.3.2", + "pkgId": "stringify-entities@1.3.2", + "deps": [ + { + "nodeId": "character-entities-html4@1.1.4" + }, + { + "nodeId": "character-entities-legacy@1.1.4" + }, + { + "nodeId": "is-alphanumerical@1.0.4" + }, + { + "nodeId": "is-hexadecimal@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "character-entities-html4@1.1.4", + "pkgId": "character-entities-html4@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unified@7.1.0", + "pkgId": "unified@7.1.0", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "@types/vfile@3.0.2" + }, + { + "nodeId": "bail@1.0.5" + }, + { + "nodeId": "extend@3.0.2" + }, + { + "nodeId": "is-plain-obj@1.1.0" + }, + { + "nodeId": "trough@1.0.5" + }, + { + "nodeId": "vfile@3.0.1" + }, + { + "nodeId": "x-is-string@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/vfile@3.0.2", + "pkgId": "@types/vfile@3.0.2", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "@types/vfile-message@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/vfile-message@2.0.0", + "pkgId": "@types/vfile-message@2.0.0", + "deps": [ + { + "nodeId": "vfile-message@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile-message@4.0.2", + "pkgId": "vfile-message@4.0.2", + "deps": [ + { + "nodeId": "@types/unist@3.0.2" + }, + { + "nodeId": "unist-util-stringify-position@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/unist@3.0.2", + "pkgId": "@types/unist@3.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-stringify-position@4.0.0", + "pkgId": "unist-util-stringify-position@4.0.0", + "deps": [ + { + "nodeId": "@types/unist@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-plain-obj@1.1.0", + "pkgId": "is-plain-obj@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile@3.0.1", + "pkgId": "vfile@3.0.1", + "deps": [ + { + "nodeId": "is-buffer@2.0.5" + }, + { + "nodeId": "replace-ext@1.0.0" + }, + { + "nodeId": "unist-util-stringify-position@1.1.2" + }, + { + "nodeId": "vfile-message@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "replace-ext@1.0.0", + "pkgId": "replace-ext@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-stringify-position@1.1.2", + "pkgId": "unist-util-stringify-position@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vfile-message@1.1.1", + "pkgId": "vfile-message@1.1.1", + "deps": [ + { + "nodeId": "unist-util-stringify-position@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "x-is-string@0.1.0", + "pkgId": "x-is-string@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "remark-retext@3.1.3", + "pkgId": "remark-retext@3.1.3", + "deps": [ + { + "nodeId": "mdast-util-to-nlcst@3.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdast-util-to-nlcst@3.2.3", + "pkgId": "mdast-util-to-nlcst@3.2.3", + "deps": [ + { + "nodeId": "nlcst-to-string@2.0.4" + }, + { + "nodeId": "repeat-string@1.6.1" + }, + { + "nodeId": "unist-util-position@3.1.0" + }, + { + "nodeId": "vfile-location@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nlcst-to-string@2.0.4", + "pkgId": "nlcst-to-string@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "retext-english@3.0.4", + "pkgId": "retext-english@3.0.4", + "deps": [ + { + "nodeId": "parse-english@4.2.0" + }, + { + "nodeId": "unherit@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-english@4.2.0", + "pkgId": "parse-english@4.2.0", + "deps": [ + { + "nodeId": "nlcst-to-string@2.0.4" + }, + { + "nodeId": "parse-latin@4.3.0" + }, + { + "nodeId": "unist-util-modify-children@2.0.0" + }, + { + "nodeId": "unist-util-visit-children@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-latin@4.3.0", + "pkgId": "parse-latin@4.3.0", + "deps": [ + { + "nodeId": "nlcst-to-string@2.0.4" + }, + { + "nodeId": "unist-util-modify-children@2.0.0" + }, + { + "nodeId": "unist-util-visit-children@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-modify-children@2.0.0", + "pkgId": "unist-util-modify-children@2.0.0", + "deps": [ + { + "nodeId": "array-iterate@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-iterate@1.1.4", + "pkgId": "array-iterate@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-visit-children@1.1.4", + "pkgId": "unist-util-visit-children@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "static-site-generator-webpack-plugin@3.4.2", + "pkgId": "static-site-generator-webpack-plugin@3.4.2", + "deps": [ + { + "nodeId": "bluebird@3.7.2" + }, + { + "nodeId": "cheerio@0.22.0" + }, + { + "nodeId": "eval@0.1.8" + }, + { + "nodeId": "url@0.11.3" + }, + { + "nodeId": "webpack-sources@0.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cheerio@0.22.0", + "pkgId": "cheerio@0.22.0", + "deps": [ + { + "nodeId": "css-select@1.2.0" + }, + { + "nodeId": "dom-serializer@0.1.1" + }, + { + "nodeId": "entities@1.1.2" + }, + { + "nodeId": "htmlparser2@3.10.1" + }, + { + "nodeId": "lodash.assignin@4.2.0" + }, + { + "nodeId": "lodash.bind@4.2.1" + }, + { + "nodeId": "lodash.defaults@4.2.0" + }, + { + "nodeId": "lodash.filter@4.6.0" + }, + { + "nodeId": "lodash.flatten@4.4.0" + }, + { + "nodeId": "lodash.foreach@4.5.0" + }, + { + "nodeId": "lodash.map@4.6.0" + }, + { + "nodeId": "lodash.merge@4.6.2" + }, + { + "nodeId": "lodash.pick@4.4.0" + }, + { + "nodeId": "lodash.reduce@4.6.0" + }, + { + "nodeId": "lodash.reject@4.6.0" + }, + { + "nodeId": "lodash.some@4.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-select@1.2.0", + "pkgId": "css-select@1.2.0", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + }, + { + "nodeId": "css-what@2.1.3" + }, + { + "nodeId": "domutils@1.5.1" + }, + { + "nodeId": "nth-check@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-what@2.1.3", + "pkgId": "css-what@2.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domutils@1.5.1", + "pkgId": "domutils@1.5.1", + "deps": [ + { + "nodeId": "dom-serializer@0.1.1" + }, + { + "nodeId": "domelementtype@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dom-serializer@0.1.1", + "pkgId": "dom-serializer@0.1.1", + "deps": [ + { + "nodeId": "domelementtype@1.3.1" + }, + { + "nodeId": "entities@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domelementtype@1.3.1", + "pkgId": "domelementtype@1.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "entities@1.1.2", + "pkgId": "entities@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nth-check@1.0.2", + "pkgId": "nth-check@1.0.2", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "htmlparser2@3.10.1", + "pkgId": "htmlparser2@3.10.1", + "deps": [ + { + "nodeId": "domelementtype@1.3.1" + }, + { + "nodeId": "domhandler@2.4.2" + }, + { + "nodeId": "domutils@1.7.0" + }, + { + "nodeId": "entities@1.1.2" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "readable-stream@3.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domhandler@2.4.2", + "pkgId": "domhandler@2.4.2", + "deps": [ + { + "nodeId": "domelementtype@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domutils@1.7.0", + "pkgId": "domutils@1.7.0", + "deps": [ + { + "nodeId": "dom-serializer@0.1.1" + }, + { + "nodeId": "domelementtype@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.assignin@4.2.0", + "pkgId": "lodash.assignin@4.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.bind@4.2.1", + "pkgId": "lodash.bind@4.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.defaults@4.2.0", + "pkgId": "lodash.defaults@4.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.filter@4.6.0", + "pkgId": "lodash.filter@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.flatten@4.4.0", + "pkgId": "lodash.flatten@4.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.pick@4.4.0", + "pkgId": "lodash.pick@4.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.reduce@4.6.0", + "pkgId": "lodash.reduce@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.reject@4.6.0", + "pkgId": "lodash.reject@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.some@4.6.0", + "pkgId": "lodash.some@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "url@0.11.3", + "pkgId": "url@0.11.3", + "deps": [ + { + "nodeId": "punycode@1.4.1" + }, + { + "nodeId": "qs@6.12.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "punycode@1.4.1", + "pkgId": "punycode@1.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@6.12.1", + "pkgId": "qs@6.12.1", + "deps": [ + { + "nodeId": "side-channel@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-sources@0.2.3", + "pkgId": "webpack-sources@0.2.3", + "deps": [ + { + "nodeId": "source-list-map@1.1.2" + }, + { + "nodeId": "source-map@0.5.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-list-map@1.1.2", + "pkgId": "source-list-map@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "underscore.string@3.3.6", + "pkgId": "underscore.string@3.3.6", + "deps": [ + { + "nodeId": "sprintf-js@1.1.3" + }, + { + "nodeId": "util-deprecate@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sprintf-js@1.1.3", + "pkgId": "sprintf-js@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unified@8.4.2", + "pkgId": "unified@8.4.2", + "deps": [ + { + "nodeId": "@types/unist@2.0.10" + }, + { + "nodeId": "bail@1.0.5" + }, + { + "nodeId": "extend@3.0.2" + }, + { + "nodeId": "is-plain-obj@2.1.0" + }, + { + "nodeId": "trough@1.0.5" + }, + { + "nodeId": "vfile@4.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-map@1.0.5", + "pkgId": "unist-util-map@1.0.5", + "deps": [ + { + "nodeId": "object-assign@4.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unist-util-remove@1.0.3", + "pkgId": "unist-util-remove@1.0.3", + "deps": [ + { + "nodeId": "unist-util-is@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-offline@5.25.0", + "pkgId": "gatsby-plugin-offline@5.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "cheerio@1.0.0-rc.12" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-core-utils@3.25.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "idb-keyval@3.2.0" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "workbox-build@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cheerio@1.0.0-rc.12", + "pkgId": "cheerio@1.0.0-rc.12", + "deps": [ + { + "nodeId": "cheerio-select@2.1.0" + }, + { + "nodeId": "dom-serializer@2.0.0" + }, + { + "nodeId": "domhandler@5.0.3" + }, + { + "nodeId": "domutils@3.1.0" + }, + { + "nodeId": "htmlparser2@8.0.2" + }, + { + "nodeId": "parse5@7.1.2" + }, + { + "nodeId": "parse5-htmlparser2-tree-adapter@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cheerio-select@2.1.0", + "pkgId": "cheerio-select@2.1.0", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + }, + { + "nodeId": "css-select@5.1.0" + }, + { + "nodeId": "css-what@6.1.0" + }, + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@5.0.3" + }, + { + "nodeId": "domutils@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-select@5.1.0", + "pkgId": "css-select@5.1.0", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + }, + { + "nodeId": "css-what@6.1.0" + }, + { + "nodeId": "domhandler@5.0.3" + }, + { + "nodeId": "domutils@3.1.0" + }, + { + "nodeId": "nth-check@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domhandler@5.0.3", + "pkgId": "domhandler@5.0.3", + "deps": [ + { + "nodeId": "domelementtype@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domutils@3.1.0", + "pkgId": "domutils@3.1.0", + "deps": [ + { + "nodeId": "dom-serializer@2.0.0" + }, + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@5.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dom-serializer@2.0.0", + "pkgId": "dom-serializer@2.0.0", + "deps": [ + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@5.0.3" + }, + { + "nodeId": "entities@4.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "entities@4.5.0", + "pkgId": "entities@4.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "htmlparser2@8.0.2", + "pkgId": "htmlparser2@8.0.2", + "deps": [ + { + "nodeId": "domelementtype@2.3.0" + }, + { + "nodeId": "domhandler@5.0.3" + }, + { + "nodeId": "domutils@3.1.0" + }, + { + "nodeId": "entities@4.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse5@7.1.2", + "pkgId": "parse5@7.1.2", + "deps": [ + { + "nodeId": "entities@4.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse5-htmlparser2-tree-adapter@7.0.0", + "pkgId": "parse5-htmlparser2-tree-adapter@7.0.0", + "deps": [ + { + "nodeId": "domhandler@5.0.3" + }, + { + "nodeId": "parse5@7.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "idb-keyval@3.2.0", + "pkgId": "idb-keyval@3.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-build@4.3.1", + "pkgId": "workbox-build@4.3.1", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@hapi/joi@15.1.1" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "fs-extra@4.0.3" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "lodash.template@4.5.0" + }, + { + "nodeId": "pretty-bytes@5.6.0" + }, + { + "nodeId": "stringify-object@3.3.0" + }, + { + "nodeId": "strip-comments@1.0.2" + }, + { + "nodeId": "workbox-background-sync@4.3.1" + }, + { + "nodeId": "workbox-broadcast-update@4.3.1" + }, + { + "nodeId": "workbox-cacheable-response@4.3.1" + }, + { + "nodeId": "workbox-core@4.3.1" + }, + { + "nodeId": "workbox-expiration@4.3.1" + }, + { + "nodeId": "workbox-google-analytics@4.3.1" + }, + { + "nodeId": "workbox-navigation-preload@4.3.1" + }, + { + "nodeId": "workbox-precaching@4.3.1" + }, + { + "nodeId": "workbox-range-requests@4.3.1" + }, + { + "nodeId": "workbox-routing@4.3.1" + }, + { + "nodeId": "workbox-strategies@4.3.1" + }, + { + "nodeId": "workbox-streams@4.3.1" + }, + { + "nodeId": "workbox-sw@4.3.1" + }, + { + "nodeId": "workbox-window@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/joi@15.1.1", + "pkgId": "@hapi/joi@15.1.1", + "deps": [ + { + "nodeId": "@hapi/address@2.1.4" + }, + { + "nodeId": "@hapi/bourne@1.3.2" + }, + { + "nodeId": "@hapi/hoek@8.5.1" + }, + { + "nodeId": "@hapi/topo@3.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/address@2.1.4", + "pkgId": "@hapi/address@2.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/bourne@1.3.2", + "pkgId": "@hapi/bourne@1.3.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/hoek@8.5.1", + "pkgId": "@hapi/hoek@8.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@hapi/topo@3.1.6", + "pkgId": "@hapi/topo@3.1.6", + "deps": [ + { + "nodeId": "@hapi/hoek@8.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-extra@4.0.3", + "pkgId": "fs-extra@4.0.3", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jsonfile@4.0.0" + }, + { + "nodeId": "universalify@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonfile@4.0.0", + "pkgId": "jsonfile@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "universalify@0.1.2", + "pkgId": "universalify@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.template@4.5.0", + "pkgId": "lodash.template@4.5.0", + "deps": [ + { + "nodeId": "lodash._reinterpolate@3.0.0" + }, + { + "nodeId": "lodash.templatesettings@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash._reinterpolate@3.0.0", + "pkgId": "lodash._reinterpolate@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.templatesettings@4.2.0", + "pkgId": "lodash.templatesettings@4.2.0", + "deps": [ + { + "nodeId": "lodash._reinterpolate@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stringify-object@3.3.0", + "pkgId": "stringify-object@3.3.0", + "deps": [ + { + "nodeId": "get-own-enumerable-property-symbols@3.0.2" + }, + { + "nodeId": "is-obj@1.0.1" + }, + { + "nodeId": "is-regexp@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-own-enumerable-property-symbols@3.0.2", + "pkgId": "get-own-enumerable-property-symbols@3.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-obj@1.0.1", + "pkgId": "is-obj@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-regexp@1.0.0", + "pkgId": "is-regexp@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-comments@1.0.2", + "pkgId": "strip-comments@1.0.2", + "deps": [ + { + "nodeId": "babel-extract-comments@1.0.0" + }, + { + "nodeId": "babel-plugin-transform-object-rest-spread@6.26.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-extract-comments@1.0.0", + "pkgId": "babel-extract-comments@1.0.0", + "deps": [ + { + "nodeId": "babylon@6.18.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babylon@6.18.0", + "pkgId": "babylon@6.18.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-transform-object-rest-spread@6.26.0", + "pkgId": "babel-plugin-transform-object-rest-spread@6.26.0", + "deps": [ + { + "nodeId": "babel-plugin-syntax-object-rest-spread@6.13.0" + }, + { + "nodeId": "babel-runtime@6.26.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-syntax-object-rest-spread@6.13.0", + "pkgId": "babel-plugin-syntax-object-rest-spread@6.13.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-runtime@6.26.0", + "pkgId": "babel-runtime@6.26.0", + "deps": [ + { + "nodeId": "core-js@2.6.12" + }, + { + "nodeId": "regenerator-runtime@0.11.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-js@2.6.12", + "pkgId": "core-js@2.6.12", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regenerator-runtime@0.11.1", + "pkgId": "regenerator-runtime@0.11.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-background-sync@4.3.1", + "pkgId": "workbox-background-sync@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-core@4.3.1", + "pkgId": "workbox-core@4.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-broadcast-update@4.3.1", + "pkgId": "workbox-broadcast-update@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-cacheable-response@4.3.1", + "pkgId": "workbox-cacheable-response@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-expiration@4.3.1", + "pkgId": "workbox-expiration@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-google-analytics@4.3.1", + "pkgId": "workbox-google-analytics@4.3.1", + "deps": [ + { + "nodeId": "workbox-background-sync@4.3.1" + }, + { + "nodeId": "workbox-core@4.3.1" + }, + { + "nodeId": "workbox-routing@4.3.1" + }, + { + "nodeId": "workbox-strategies@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-routing@4.3.1", + "pkgId": "workbox-routing@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-strategies@4.3.1", + "pkgId": "workbox-strategies@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-navigation-preload@4.3.1", + "pkgId": "workbox-navigation-preload@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-precaching@4.3.1", + "pkgId": "workbox-precaching@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-range-requests@4.3.1", + "pkgId": "workbox-range-requests@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-streams@4.3.1", + "pkgId": "workbox-streams@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-sw@4.3.1", + "pkgId": "workbox-sw@4.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "workbox-window@4.3.1", + "pkgId": "workbox-window@4.3.1", + "deps": [ + { + "nodeId": "workbox-core@4.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-react-helmet@5.25.0", + "pkgId": "gatsby-plugin-react-helmet@5.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "react-helmet@6.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-helmet@6.1.0", + "pkgId": "react-helmet@6.1.0", + "deps": [ + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-fast-compare@3.2.2" + }, + { + "nodeId": "react-side-effect@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-fast-compare@3.2.2", + "pkgId": "react-fast-compare@3.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-side-effect@2.1.2", + "pkgId": "react-side-effect@2.1.2", + "deps": [ + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-styled-components@5.25.0", + "pkgId": "gatsby-plugin-styled-components@5.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "babel-plugin-styled-components@2.1.4" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "styled-components@6.1.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-styled-components@2.1.4", + "pkgId": "babel-plugin-styled-components@2.1.4", + "deps": [ + { + "nodeId": "@babel/helper-annotate-as-pure@7.22.5" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.24.1" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "picomatch@2.3.1" + }, + { + "nodeId": "styled-components@6.1.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "styled-components@6.1.10", + "pkgId": "styled-components@6.1.10", + "deps": [ + { + "nodeId": "@emotion/is-prop-valid@1.2.2" + }, + { + "nodeId": "@emotion/unitless@0.8.1" + }, + { + "nodeId": "@types/stylis@4.2.5" + }, + { + "nodeId": "css-to-react-native@3.2.0" + }, + { + "nodeId": "csstype@3.1.3" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "shallowequal@1.1.0" + }, + { + "nodeId": "stylis@4.3.2" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@emotion/is-prop-valid@1.2.2", + "pkgId": "@emotion/is-prop-valid@1.2.2", + "deps": [ + { + "nodeId": "@emotion/memoize@0.8.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@emotion/memoize@0.8.1", + "pkgId": "@emotion/memoize@0.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@emotion/unitless@0.8.1", + "pkgId": "@emotion/unitless@0.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/stylis@4.2.5", + "pkgId": "@types/stylis@4.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-to-react-native@3.2.0", + "pkgId": "css-to-react-native@3.2.0", + "deps": [ + { + "nodeId": "camelize@1.0.1" + }, + { + "nodeId": "css-color-keywords@1.0.0" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "camelize@1.0.1", + "pkgId": "camelize@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-color-keywords@1.0.0", + "pkgId": "css-color-keywords@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shallowequal@1.1.0", + "pkgId": "shallowequal@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stylis@4.3.2", + "pkgId": "stylis@4.3.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-svgr@3.0.0-beta.0", + "pkgId": "gatsby-plugin-svgr@3.0.0-beta.0", + "deps": [ + { + "nodeId": "@svgr/webpack@6.5.1" + }, + { + "nodeId": "gatsby@4.25.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/webpack@6.5.1", + "pkgId": "@svgr/webpack@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-react-constant-elements@7.24.1" + }, + { + "nodeId": "@babel/preset-env@7.24.5" + }, + { + "nodeId": "@babel/preset-react@7.24.1" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@svgr/core@6.5.1" + }, + { + "nodeId": "@svgr/plugin-jsx@6.5.1" + }, + { + "nodeId": "@svgr/plugin-svgo@6.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-constant-elements@7.24.1", + "pkgId": "@babel/plugin-transform-react-constant-elements@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/core@6.5.1", + "pkgId": "@svgr/core@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@svgr/babel-preset@6.5.1" + }, + { + "nodeId": "@svgr/plugin-jsx@6.5.1" + }, + { + "nodeId": "camelcase@6.3.0" + }, + { + "nodeId": "cosmiconfig@7.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-preset@6.5.1", + "pkgId": "@svgr/babel-preset@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@svgr/babel-plugin-add-jsx-attribute@6.5.1" + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-attribute@8.0.0" + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0" + }, + { + "nodeId": "@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1" + }, + { + "nodeId": "@svgr/babel-plugin-svg-dynamic-title@6.5.1" + }, + { + "nodeId": "@svgr/babel-plugin-svg-em-dimensions@6.5.1" + }, + { + "nodeId": "@svgr/babel-plugin-transform-react-native-svg@6.5.1" + }, + { + "nodeId": "@svgr/babel-plugin-transform-svg-component@6.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-add-jsx-attribute@6.5.1", + "pkgId": "@svgr/babel-plugin-add-jsx-attribute@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-attribute@8.0.0", + "pkgId": "@svgr/babel-plugin-remove-jsx-attribute@8.0.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0", + "pkgId": "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1", + "pkgId": "@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-svg-dynamic-title@6.5.1", + "pkgId": "@svgr/babel-plugin-svg-dynamic-title@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-svg-em-dimensions@6.5.1", + "pkgId": "@svgr/babel-plugin-svg-em-dimensions@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-transform-react-native-svg@6.5.1", + "pkgId": "@svgr/babel-plugin-transform-react-native-svg@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-transform-svg-component@6.5.1", + "pkgId": "@svgr/babel-plugin-transform-svg-component@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/plugin-jsx@6.5.1", + "pkgId": "@svgr/plugin-jsx@6.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@svgr/babel-preset@6.5.1" + }, + { + "nodeId": "@svgr/core@6.5.1" + }, + { + "nodeId": "@svgr/hast-util-to-babel-ast@6.5.1" + }, + { + "nodeId": "svg-parser@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/hast-util-to-babel-ast@6.5.1", + "pkgId": "@svgr/hast-util-to-babel-ast@6.5.1", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "entities@4.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "svg-parser@2.0.4", + "pkgId": "svg-parser@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/plugin-svgo@6.5.1", + "pkgId": "@svgr/plugin-svgo@6.5.1", + "deps": [ + { + "nodeId": "@svgr/core@6.5.1" + }, + { + "nodeId": "cosmiconfig@7.1.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "svgo@2.8.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-plugin-web-font-loader@1.0.4", + "pkgId": "gatsby-plugin-web-font-loader@1.0.4", + "deps": [ + { + "nodeId": "babel-runtime@6.26.0" + }, + { + "nodeId": "webfontloader@1.6.28" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webfontloader@1.6.28", + "pkgId": "webfontloader@1.6.28", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-transformer-sharp@4.25.0", + "pkgId": "gatsby-transformer-sharp@4.25.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "bluebird@3.7.2" + }, + { + "nodeId": "common-tags@1.8.2" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-plugin-sharp@4.25.1" + }, + { + "nodeId": "gatsby-plugin-utils@3.19.0" + }, + { + "nodeId": "probe-image-size@7.2.3" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "sharp@0.30.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-calendar@3.9.0", + "pkgId": "react-calendar@3.9.0", + "deps": [ + { + "nodeId": "@wojtekmaj/date-utils@1.5.1" + }, + { + "nodeId": "get-user-locale@1.5.1" + }, + { + "nodeId": "merge-class-names@1.4.2" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@wojtekmaj/date-utils@1.5.1", + "pkgId": "@wojtekmaj/date-utils@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-user-locale@1.5.1", + "pkgId": "get-user-locale@1.5.1", + "deps": [ + { + "nodeId": "lodash.memoize@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge-class-names@1.4.2", + "pkgId": "merge-class-names@1.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-hook-form@7.51.4", + "pkgId": "react-hook-form@7.51.4", + "deps": [ + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-is@18.3.1", + "pkgId": "react-is@18.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-redux@8.1.3", + "pkgId": "react-redux@8.1.3", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@types/hoist-non-react-statics@3.3.5" + }, + { + "nodeId": "@types/use-sync-external-store@0.0.3" + }, + { + "nodeId": "hoist-non-react-statics@3.3.2" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-is@18.3.1" + }, + { + "nodeId": "use-sync-external-store@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/hoist-non-react-statics@3.3.5", + "pkgId": "@types/hoist-non-react-statics@3.3.5", + "deps": [ + { + "nodeId": "@types/react@18.3.1" + }, + { + "nodeId": "hoist-non-react-statics@3.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hoist-non-react-statics@3.3.2", + "pkgId": "hoist-non-react-statics@3.3.2", + "deps": [ + { + "nodeId": "react-is@16.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/use-sync-external-store@0.0.3", + "pkgId": "@types/use-sync-external-store@0.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "use-sync-external-store@1.2.2", + "pkgId": "use-sync-external-store@1.2.2", + "deps": [ + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-responsive@8.2.0", + "pkgId": "react-responsive@8.2.0", + "deps": [ + { + "nodeId": "hyphenate-style-name@1.0.4" + }, + { + "nodeId": "matchmediaquery@0.3.1" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "shallow-equal@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hyphenate-style-name@1.0.4", + "pkgId": "hyphenate-style-name@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "matchmediaquery@0.3.1", + "pkgId": "matchmediaquery@0.3.1", + "deps": [ + { + "nodeId": "css-mediaquery@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-mediaquery@0.1.2", + "pkgId": "css-mediaquery@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "shallow-equal@1.2.1", + "pkgId": "shallow-equal@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-router-dom@6.23.0", + "pkgId": "react-router-dom@6.23.0", + "deps": [ + { + "nodeId": "@remix-run/router@1.16.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "react-router@6.23.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@remix-run/router@1.16.0", + "pkgId": "@remix-run/router@1.16.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-router@6.23.0", + "pkgId": "react-router@6.23.0", + "deps": [ + { + "nodeId": "@remix-run/router@1.16.0" + }, + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-slick@0.28.1", + "pkgId": "react-slick@0.28.1", + "deps": [ + { + "nodeId": "classnames@2.5.1" + }, + { + "nodeId": "enquire.js@2.1.6" + }, + { + "nodeId": "json2mq@0.2.0" + }, + { + "nodeId": "lodash.debounce@4.0.8" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "resize-observer-polyfill@1.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "classnames@2.5.1", + "pkgId": "classnames@2.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "enquire.js@2.1.6", + "pkgId": "enquire.js@2.1.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json2mq@0.2.0", + "pkgId": "json2mq@0.2.0", + "deps": [ + { + "nodeId": "string-convert@0.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-convert@0.2.1", + "pkgId": "string-convert@0.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resize-observer-polyfill@1.5.1", + "pkgId": "resize-observer-polyfill@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-spring@9.7.3", + "pkgId": "react-spring@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/core@9.7.3" + }, + { + "nodeId": "@react-spring/konva@9.7.3" + }, + { + "nodeId": "@react-spring/native@9.7.3" + }, + { + "nodeId": "@react-spring/three@9.7.3" + }, + { + "nodeId": "@react-spring/web@9.7.3" + }, + { + "nodeId": "@react-spring/zdog@9.7.3" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/core@9.7.3", + "pkgId": "@react-spring/core@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/animated@9.7.3" + }, + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/animated@9.7.3", + "pkgId": "@react-spring/animated@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/shared@9.7.3", + "pkgId": "@react-spring/shared@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/types@9.7.3", + "pkgId": "@react-spring/types@9.7.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/konva@9.7.3", + "pkgId": "@react-spring/konva@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/animated@9.7.3" + }, + { + "nodeId": "@react-spring/core@9.7.3" + }, + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "konva@9.3.6" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-konva@18.2.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "konva@9.3.6", + "pkgId": "konva@9.3.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-konva@18.2.10", + "pkgId": "react-konva@18.2.10", + "deps": [ + { + "nodeId": "@types/react-reconciler@0.28.8" + }, + { + "nodeId": "its-fine@1.2.5" + }, + { + "nodeId": "konva@9.3.6" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "react-reconciler@0.29.2" + }, + { + "nodeId": "scheduler@0.23.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/react-reconciler@0.28.8", + "pkgId": "@types/react-reconciler@0.28.8", + "deps": [ + { + "nodeId": "@types/react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "its-fine@1.2.5", + "pkgId": "its-fine@1.2.5", + "deps": [ + { + "nodeId": "@types/react-reconciler@0.28.8" + }, + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-reconciler@0.29.2", + "pkgId": "react-reconciler@0.29.2", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "scheduler@0.23.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/native@9.7.3", + "pkgId": "@react-spring/native@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/animated@9.7.3" + }, + { + "nodeId": "@react-spring/core@9.7.3" + }, + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-native@0.74.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-native@0.74.1", + "pkgId": "react-native@0.74.1", + "deps": [ + { + "nodeId": "@jest/create-cache-key-function@29.7.0" + }, + { + "nodeId": "@react-native-community/cli@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-platform-android@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-platform-ios@13.6.6" + }, + { + "nodeId": "@react-native/assets-registry@0.74.83" + }, + { + "nodeId": "@react-native/codegen@0.74.83" + }, + { + "nodeId": "@react-native/community-cli-plugin@0.74.83" + }, + { + "nodeId": "@react-native/gradle-plugin@0.74.83" + }, + { + "nodeId": "@react-native/js-polyfills@0.74.83" + }, + { + "nodeId": "@react-native/normalize-colors@0.74.83" + }, + { + "nodeId": "@react-native/virtualized-lists@0.74.83" + }, + { + "nodeId": "abort-controller@3.0.0" + }, + { + "nodeId": "anser@1.4.10" + }, + { + "nodeId": "ansi-regex@5.0.1" + }, + { + "nodeId": "base64-js@1.5.1" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "event-target-shim@5.0.1" + }, + { + "nodeId": "flow-enums-runtime@0.0.6" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "jest-environment-node@29.7.0" + }, + { + "nodeId": "jsc-android@250231.0.0" + }, + { + "nodeId": "memoize-one@5.2.1" + }, + { + "nodeId": "metro-runtime@0.80.9" + }, + { + "nodeId": "metro-source-map@0.80.9" + }, + { + "nodeId": "mkdirp@0.5.6" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "pretty-format@26.6.2" + }, + { + "nodeId": "promise@8.3.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-devtools-core@5.2.0" + }, + { + "nodeId": "react-refresh@0.14.2" + }, + { + "nodeId": "react-shallow-renderer@16.15.0" + }, + { + "nodeId": "regenerator-runtime@0.13.11" + }, + { + "nodeId": "scheduler@0.24.0-canary-efb381bbf-20230505" + }, + { + "nodeId": "stacktrace-parser@0.1.10" + }, + { + "nodeId": "whatwg-fetch@3.6.20" + }, + { + "nodeId": "ws@6.2.2" + }, + { + "nodeId": "yargs@17.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/create-cache-key-function@29.7.0", + "pkgId": "@jest/create-cache-key-function@29.7.0", + "deps": [ + { + "nodeId": "@jest/types@29.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/types@29.6.3", + "pkgId": "@jest/types@29.6.3", + "deps": [ + { + "nodeId": "@jest/schemas@29.6.3" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "@types/istanbul-reports@3.0.4" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/yargs@17.0.32" + }, + { + "nodeId": "chalk@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/schemas@29.6.3", + "pkgId": "@jest/schemas@29.6.3", + "deps": [ + { + "nodeId": "@sinclair/typebox@0.27.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinclair/typebox@0.27.8", + "pkgId": "@sinclair/typebox@0.27.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6", + "pkgId": "@types/istanbul-lib-coverage@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/istanbul-reports@3.0.4", + "pkgId": "@types/istanbul-reports@3.0.4", + "deps": [ + { + "nodeId": "@types/istanbul-lib-report@3.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/istanbul-lib-report@3.0.3", + "pkgId": "@types/istanbul-lib-report@3.0.3", + "deps": [ + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/yargs@17.0.32", + "pkgId": "@types/yargs@17.0.32", + "deps": [ + { + "nodeId": "@types/yargs-parser@21.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/yargs-parser@21.0.3", + "pkgId": "@types/yargs-parser@21.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli@13.6.6", + "pkgId": "@react-native-community/cli@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-clean@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-config@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-debugger-ui@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-doctor@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-hermes@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-server-api@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-types@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "commander@9.5.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "find-up@4.1.0" + }, + { + "nodeId": "fs-extra@8.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "prompts@2.4.2" + }, + { + "nodeId": "semver@7.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-clean@13.6.6", + "pkgId": "@react-native-community/cli-clean@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "fast-glob@3.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-tools@13.6.6", + "pkgId": "@react-native-community/cli-tools@13.6.6", + "deps": [ + { + "nodeId": "appdirsjs@1.2.7" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "find-up@5.0.0" + }, + { + "nodeId": "mime@2.6.0" + }, + { + "nodeId": "node-fetch@2.7.0" + }, + { + "nodeId": "open@6.4.0" + }, + { + "nodeId": "ora@5.4.1" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "shell-quote@1.8.1" + }, + { + "nodeId": "sudo-prompt@9.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "appdirsjs@1.2.7", + "pkgId": "appdirsjs@1.2.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "open@6.4.0", + "pkgId": "open@6.4.0", + "deps": [ + { + "nodeId": "is-wsl@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-wsl@1.1.0", + "pkgId": "is-wsl@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ora@5.4.1", + "pkgId": "ora@5.4.1", + "deps": [ + { + "nodeId": "bl@4.1.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-spinners@2.9.2" + }, + { + "nodeId": "is-interactive@1.0.0" + }, + { + "nodeId": "is-unicode-supported@0.1.0" + }, + { + "nodeId": "log-symbols@4.1.0" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "wcwidth@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-spinners@2.9.2", + "pkgId": "cli-spinners@2.9.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-interactive@1.0.0", + "pkgId": "is-interactive@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-unicode-supported@0.1.0", + "pkgId": "is-unicode-supported@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "log-symbols@4.1.0", + "pkgId": "log-symbols@4.1.0", + "deps": [ + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "is-unicode-supported@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wcwidth@1.0.1", + "pkgId": "wcwidth@1.0.1", + "deps": [ + { + "nodeId": "defaults@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "defaults@1.0.4", + "pkgId": "defaults@1.0.4", + "deps": [ + { + "nodeId": "clone@1.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clone@1.0.4", + "pkgId": "clone@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sudo-prompt@9.2.1", + "pkgId": "sudo-prompt@9.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-config@13.6.6", + "pkgId": "@react-native-community/cli-config@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "cosmiconfig@5.2.1" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "joi@17.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cosmiconfig@5.2.1", + "pkgId": "cosmiconfig@5.2.1", + "deps": [ + { + "nodeId": "import-fresh@2.0.0" + }, + { + "nodeId": "is-directory@0.3.1" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "parse-json@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "import-fresh@2.0.0", + "pkgId": "import-fresh@2.0.0", + "deps": [ + { + "nodeId": "caller-path@2.0.0" + }, + { + "nodeId": "resolve-from@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "caller-path@2.0.0", + "pkgId": "caller-path@2.0.0", + "deps": [ + { + "nodeId": "caller-callsite@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "caller-callsite@2.0.0", + "pkgId": "caller-callsite@2.0.0", + "deps": [ + { + "nodeId": "callsites@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "callsites@2.0.0", + "pkgId": "callsites@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve-from@3.0.0", + "pkgId": "resolve-from@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-directory@0.3.1", + "pkgId": "is-directory@0.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse-json@4.0.0", + "pkgId": "parse-json@4.0.0", + "deps": [ + { + "nodeId": "error-ex@1.3.2" + }, + { + "nodeId": "json-parse-better-errors@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-parse-better-errors@1.0.2", + "pkgId": "json-parse-better-errors@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-debugger-ui@13.6.6", + "pkgId": "@react-native-community/cli-debugger-ui@13.6.6", + "deps": [ + { + "nodeId": "serve-static@1.15.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-doctor@13.6.6", + "pkgId": "@react-native-community/cli-doctor@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-config@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-platform-android@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-platform-apple@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-platform-ios@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "command-exists@1.2.9" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "envinfo@7.13.0" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "hermes-profile-transformer@0.0.6" + }, + { + "nodeId": "node-stream-zip@1.15.0" + }, + { + "nodeId": "ora@5.4.1" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "strip-ansi@5.2.0" + }, + { + "nodeId": "wcwidth@1.0.1" + }, + { + "nodeId": "yaml@2.4.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-platform-android@13.6.6", + "pkgId": "@react-native-community/cli-platform-android@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "fast-xml-parser@4.3.6" + }, + { + "nodeId": "logkitty@0.7.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fast-xml-parser@4.3.6", + "pkgId": "fast-xml-parser@4.3.6", + "deps": [ + { + "nodeId": "strnum@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strnum@1.0.5", + "pkgId": "strnum@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "logkitty@0.7.1", + "pkgId": "logkitty@0.7.1", + "deps": [ + { + "nodeId": "ansi-fragments@0.2.1" + }, + { + "nodeId": "dayjs@1.11.11" + }, + { + "nodeId": "yargs@15.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-fragments@0.2.1", + "pkgId": "ansi-fragments@0.2.1", + "deps": [ + { + "nodeId": "colorette@1.4.0" + }, + { + "nodeId": "slice-ansi@2.1.0" + }, + { + "nodeId": "strip-ansi@5.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "slice-ansi@2.1.0", + "pkgId": "slice-ansi@2.1.0", + "deps": [ + { + "nodeId": "ansi-styles@3.2.1" + }, + { + "nodeId": "astral-regex@1.0.0" + }, + { + "nodeId": "is-fullwidth-code-point@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "astral-regex@1.0.0", + "pkgId": "astral-regex@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-fullwidth-code-point@2.0.0", + "pkgId": "is-fullwidth-code-point@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dayjs@1.11.11", + "pkgId": "dayjs@1.11.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-platform-apple@13.6.6", + "pkgId": "@react-native-community/cli-platform-apple@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "fast-xml-parser@4.3.6" + }, + { + "nodeId": "ora@5.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-platform-ios@13.6.6", + "pkgId": "@react-native-community/cli-platform-ios@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-platform-apple@13.6.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hermes-profile-transformer@0.0.6", + "pkgId": "hermes-profile-transformer@0.0.6", + "deps": [ + { + "nodeId": "source-map@0.7.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-stream-zip@1.15.0", + "pkgId": "node-stream-zip@1.15.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-hermes@13.6.6", + "pkgId": "@react-native-community/cli-hermes@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-platform-android@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "hermes-profile-transformer@0.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-server-api@13.6.6", + "pkgId": "@react-native-community/cli-server-api@13.6.6", + "deps": [ + { + "nodeId": "@react-native-community/cli-debugger-ui@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "compression@1.7.4" + }, + { + "nodeId": "connect@3.7.0" + }, + { + "nodeId": "errorhandler@1.5.1" + }, + { + "nodeId": "nocache@3.0.4" + }, + { + "nodeId": "pretty-format@26.6.2" + }, + { + "nodeId": "serve-static@1.15.0" + }, + { + "nodeId": "ws@6.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "connect@3.7.0", + "pkgId": "connect@3.7.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "finalhandler@1.1.2" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "utils-merge@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "finalhandler@1.1.2", + "pkgId": "finalhandler@1.1.2", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "on-finished@2.3.0" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "statuses@1.5.0" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.3.0", + "pkgId": "on-finished@2.3.0", + "deps": [ + { + "nodeId": "ee-first@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "errorhandler@1.5.1", + "pkgId": "errorhandler@1.5.1", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "escape-html@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nocache@3.0.4", + "pkgId": "nocache@3.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-format@26.6.2", + "pkgId": "pretty-format@26.6.2", + "deps": [ + { + "nodeId": "@jest/types@26.6.2" + }, + { + "nodeId": "ansi-regex@5.0.1" + }, + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "react-is@17.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/types@26.6.2", + "pkgId": "@jest/types@26.6.2", + "deps": [ + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "@types/istanbul-reports@3.0.4" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/yargs@15.0.19" + }, + { + "nodeId": "chalk@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/yargs@15.0.19", + "pkgId": "@types/yargs@15.0.19", + "deps": [ + { + "nodeId": "@types/yargs-parser@21.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-is@17.0.2", + "pkgId": "react-is@17.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ws@6.2.2", + "pkgId": "ws@6.2.2", + "deps": [ + { + "nodeId": "async-limiter@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async-limiter@1.0.1", + "pkgId": "async-limiter@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native-community/cli-types@13.6.6", + "pkgId": "@react-native-community/cli-types@13.6.6", + "deps": [ + { + "nodeId": "joi@17.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "commander@9.5.0", + "pkgId": "commander@9.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-extra@8.1.0", + "pkgId": "fs-extra@8.1.0", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jsonfile@4.0.0" + }, + { + "nodeId": "universalify@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/assets-registry@0.74.83", + "pkgId": "@react-native/assets-registry@0.74.83", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/codegen@0.74.83", + "pkgId": "@react-native/codegen@0.74.83", + "deps": [ + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/preset-env@7.12.13" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "hermes-parser@0.19.1" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "jscodeshift@0.14.0" + }, + { + "nodeId": "mkdirp@0.5.6" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-env@7.12.13", + "pkgId": "@babel/preset-env@7.12.13", + "deps": [ + { + "nodeId": "@babel/compat-data@7.24.4" + }, + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-compilation-targets@7.23.6" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "@babel/plugin-proposal-async-generator-functions@7.20.7" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-dynamic-import@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-export-namespace-from@7.18.9" + }, + { + "nodeId": "@babel/plugin-proposal-json-strings@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-logical-assignment-operators@7.20.7" + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-numeric-separator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.20.7" + }, + { + "nodeId": "@babel/plugin-proposal-optional-catch-binding@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0" + }, + { + "nodeId": "@babel/plugin-proposal-private-methods@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-unicode-property-regex@7.18.6" + }, + { + "nodeId": "@babel/plugin-syntax-async-generators@7.8.4" + }, + { + "nodeId": "@babel/plugin-syntax-class-properties@7.12.13" + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-export-namespace-from@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-json-strings@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-numeric-separator@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-catch-binding@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-top-level-await@7.14.5" + }, + { + "nodeId": "@babel/plugin-transform-arrow-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-async-to-generator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoped-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoping@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-classes@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-computed-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-destructuring@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-dotall-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-duplicate-keys@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-exponentiation-operator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-for-of@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-function-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-member-expression-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-amd@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-systemjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-umd@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-named-capturing-groups-regex@7.22.5" + }, + { + "nodeId": "@babel/plugin-transform-new-target@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-object-super@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-property-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-regenerator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-reserved-words@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-shorthand-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-spread@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-sticky-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-template-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-typeof-symbol@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-unicode-escapes@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-unicode-regex@7.24.1" + }, + { + "nodeId": "@babel/preset-modules@0.1.6" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "core-js-compat@3.37.0" + }, + { + "nodeId": "semver@5.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-async-generator-functions@7.20.7", + "pkgId": "@babel/plugin-proposal-async-generator-functions@7.20.7", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-environment-visitor@7.22.20" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-remap-async-to-generator@7.22.20" + }, + { + "nodeId": "@babel/plugin-syntax-async-generators@7.8.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-dynamic-import@7.18.6", + "pkgId": "@babel/plugin-proposal-dynamic-import@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-export-namespace-from@7.18.9", + "pkgId": "@babel/plugin-proposal-export-namespace-from@7.18.9", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-export-namespace-from@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-json-strings@7.18.6", + "pkgId": "@babel/plugin-proposal-json-strings@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-json-strings@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "pkgId": "@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-optional-catch-binding@7.18.6", + "pkgId": "@babel/plugin-proposal-optional-catch-binding@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-optional-catch-binding@7.8.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-private-methods@7.18.6", + "pkgId": "@babel/plugin-proposal-private-methods@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-unicode-property-regex@7.18.6", + "pkgId": "@babel/plugin-proposal-unicode-property-regex@7.18.6", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-create-regexp-features-plugin@7.22.15" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-modules@0.1.6", + "pkgId": "@babel/preset-modules@0.1.6", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-unicode-property-regex@7.18.6" + }, + { + "nodeId": "@babel/plugin-transform-dotall-regex@7.24.1" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "esutils@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hermes-parser@0.19.1", + "pkgId": "hermes-parser@0.19.1", + "deps": [ + { + "nodeId": "hermes-estree@0.19.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hermes-estree@0.19.1", + "pkgId": "hermes-estree@0.19.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jscodeshift@0.14.0", + "pkgId": "jscodeshift@0.14.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/preset-env@7.12.13" + }, + { + "nodeId": "@babel/preset-flow@7.24.1" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@babel/register@7.23.7" + }, + { + "nodeId": "babel-core@7.0.0-bridge.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "flow-parser@0.235.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "neo-async@2.6.2" + }, + { + "nodeId": "node-dir@0.1.17" + }, + { + "nodeId": "recast@0.21.5" + }, + { + "nodeId": "temp@0.8.4" + }, + { + "nodeId": "write-file-atomic@2.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-flow@7.24.1", + "pkgId": "@babel/preset-flow@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "@babel/plugin-transform-flow-strip-types@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/register@7.23.7", + "pkgId": "@babel/register@7.23.7", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "clone-deep@4.0.1" + }, + { + "nodeId": "find-cache-dir@2.1.0" + }, + { + "nodeId": "make-dir@2.1.0" + }, + { + "nodeId": "pirates@4.0.6" + }, + { + "nodeId": "source-map-support@0.5.21" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "find-cache-dir@2.1.0", + "pkgId": "find-cache-dir@2.1.0", + "deps": [ + { + "nodeId": "commondir@1.0.1" + }, + { + "nodeId": "make-dir@2.1.0" + }, + { + "nodeId": "pkg-dir@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "make-dir@2.1.0", + "pkgId": "make-dir@2.1.0", + "deps": [ + { + "nodeId": "pify@4.0.1" + }, + { + "nodeId": "semver@5.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pify@4.0.1", + "pkgId": "pify@4.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pkg-dir@3.0.0", + "pkgId": "pkg-dir@3.0.0", + "deps": [ + { + "nodeId": "find-up@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pirates@4.0.6", + "pkgId": "pirates@4.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-core@7.0.0-bridge.0", + "pkgId": "babel-core@7.0.0-bridge.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "flow-parser@0.235.1", + "pkgId": "flow-parser@0.235.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-dir@0.1.17", + "pkgId": "node-dir@0.1.17", + "deps": [ + { + "nodeId": "minimatch@3.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "recast@0.21.5", + "pkgId": "recast@0.21.5", + "deps": [ + { + "nodeId": "ast-types@0.15.2" + }, + { + "nodeId": "esprima@4.0.1" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ast-types@0.15.2", + "pkgId": "ast-types@0.15.2", + "deps": [ + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "temp@0.8.4", + "pkgId": "temp@0.8.4", + "deps": [ + { + "nodeId": "rimraf@2.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rimraf@2.6.3", + "pkgId": "rimraf@2.6.3", + "deps": [ + { + "nodeId": "glob@7.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "write-file-atomic@2.4.3", + "pkgId": "write-file-atomic@2.4.3", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "imurmurhash@0.1.4" + }, + { + "nodeId": "signal-exit@3.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/community-cli-plugin@0.74.83", + "pkgId": "@react-native/community-cli-plugin@0.74.83", + "deps": [ + { + "nodeId": "@react-native-community/cli-server-api@13.6.6" + }, + { + "nodeId": "@react-native-community/cli-tools@13.6.6" + }, + { + "nodeId": "@react-native/dev-middleware@0.74.83" + }, + { + "nodeId": "@react-native/metro-babel-transformer@0.74.83" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "metro@0.80.9" + }, + { + "nodeId": "metro-config@0.80.9" + }, + { + "nodeId": "metro-core@0.80.9" + }, + { + "nodeId": "node-fetch@2.7.0" + }, + { + "nodeId": "querystring@0.2.1" + }, + { + "nodeId": "readline@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/dev-middleware@0.74.83", + "pkgId": "@react-native/dev-middleware@0.74.83", + "deps": [ + { + "nodeId": "@isaacs/ttlcache@1.4.1" + }, + { + "nodeId": "@react-native/debugger-frontend@0.74.83" + }, + { + "nodeId": "@rnx-kit/chromium-edge-launcher@1.0.0" + }, + { + "nodeId": "chrome-launcher@0.15.2" + }, + { + "nodeId": "connect@3.7.0" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "node-fetch@2.7.0" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "open@7.4.2" + }, + { + "nodeId": "selfsigned@2.4.1" + }, + { + "nodeId": "serve-static@1.15.0" + }, + { + "nodeId": "temp-dir@2.0.0" + }, + { + "nodeId": "ws@6.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@isaacs/ttlcache@1.4.1", + "pkgId": "@isaacs/ttlcache@1.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/debugger-frontend@0.74.83", + "pkgId": "@react-native/debugger-frontend@0.74.83", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rnx-kit/chromium-edge-launcher@1.0.0", + "pkgId": "@rnx-kit/chromium-edge-launcher@1.0.0", + "deps": [ + { + "nodeId": "@types/node@18.19.33" + }, + { + "nodeId": "escape-string-regexp@4.0.0" + }, + { + "nodeId": "is-wsl@2.2.0" + }, + { + "nodeId": "lighthouse-logger@1.4.2" + }, + { + "nodeId": "mkdirp@1.0.4" + }, + { + "nodeId": "rimraf@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/node@18.19.33", + "pkgId": "@types/node@18.19.33", + "deps": [ + { + "nodeId": "undici-types@5.26.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lighthouse-logger@1.4.2", + "pkgId": "lighthouse-logger@1.4.2", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "marky@1.2.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "marky@1.2.5", + "pkgId": "marky@1.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chrome-launcher@0.15.2", + "pkgId": "chrome-launcher@0.15.2", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "escape-string-regexp@4.0.0" + }, + { + "nodeId": "is-wsl@2.2.0" + }, + { + "nodeId": "lighthouse-logger@1.4.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "selfsigned@2.4.1", + "pkgId": "selfsigned@2.4.1", + "deps": [ + { + "nodeId": "@types/node-forge@1.3.11" + }, + { + "nodeId": "node-forge@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/node-forge@1.3.11", + "pkgId": "@types/node-forge@1.3.11", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-forge@1.3.1", + "pkgId": "node-forge@1.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "temp-dir@2.0.0", + "pkgId": "temp-dir@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/metro-babel-transformer@0.74.83", + "pkgId": "@react-native/metro-babel-transformer@0.74.83", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@react-native/babel-preset@0.74.83" + }, + { + "nodeId": "hermes-parser@0.19.1" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/babel-preset@0.74.83", + "pkgId": "@react-native/babel-preset@0.74.83", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/plugin-proposal-async-generator-functions@7.20.7" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-export-default-from@7.24.1" + }, + { + "nodeId": "@babel/plugin-proposal-logical-assignment-operators@7.20.7" + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-numeric-separator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-object-rest-spread@7.20.7" + }, + { + "nodeId": "@babel/plugin-proposal-optional-catch-binding@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0" + }, + { + "nodeId": "@babel/plugin-syntax-dynamic-import@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-export-default-from@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-flow@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3" + }, + { + "nodeId": "@babel/plugin-transform-arrow-functions@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-async-to-generator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-block-scoping@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-classes@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-computed-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-destructuring@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-flow-strip-types@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-function-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-literals@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-named-capturing-groups-regex@7.22.5" + }, + { + "nodeId": "@babel/plugin-transform-parameters@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-private-methods@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-private-property-in-object@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-react-display-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx@7.23.4" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-self@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-source@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-runtime@7.24.3" + }, + { + "nodeId": "@babel/plugin-transform-shorthand-properties@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-spread@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-sticky-regex@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-typescript@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-unicode-regex@7.24.1" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@react-native/babel-plugin-codegen@0.74.83" + }, + { + "nodeId": "babel-plugin-transform-flow-enums@0.0.2" + }, + { + "nodeId": "react-refresh@0.14.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-export-default-from@7.24.1", + "pkgId": "@babel/plugin-proposal-export-default-from@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-export-default-from@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-export-default-from@7.24.1", + "pkgId": "@babel/plugin-syntax-export-default-from@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-self@7.24.5", + "pkgId": "@babel/plugin-transform-react-jsx-self@7.24.5", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-source@7.24.1", + "pkgId": "@babel/plugin-transform-react-jsx-source@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/babel-plugin-codegen@0.74.83", + "pkgId": "@react-native/babel-plugin-codegen@0.74.83", + "deps": [ + { + "nodeId": "@react-native/codegen@0.74.83" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-transform-flow-enums@0.0.2", + "pkgId": "babel-plugin-transform-flow-enums@0.0.2", + "deps": [ + { + "nodeId": "@babel/plugin-syntax-flow@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro@0.80.9", + "pkgId": "metro@0.80.9", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "ci-info@2.0.0" + }, + { + "nodeId": "connect@3.7.0" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "denodeify@1.2.1" + }, + { + "nodeId": "error-stack-parser@2.1.4" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "hermes-parser@0.20.1" + }, + { + "nodeId": "image-size@1.1.1" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "jest-worker@29.7.0" + }, + { + "nodeId": "jsc-safe-url@0.2.4" + }, + { + "nodeId": "lodash.throttle@4.1.1" + }, + { + "nodeId": "metro-babel-transformer@0.80.9" + }, + { + "nodeId": "metro-cache@0.80.9" + }, + { + "nodeId": "metro-cache-key@0.80.9" + }, + { + "nodeId": "metro-config@0.80.9" + }, + { + "nodeId": "metro-core@0.80.9" + }, + { + "nodeId": "metro-file-map@0.80.9" + }, + { + "nodeId": "metro-resolver@0.80.9" + }, + { + "nodeId": "metro-runtime@0.80.9" + }, + { + "nodeId": "metro-source-map@0.80.9" + }, + { + "nodeId": "metro-symbolicate@0.80.9" + }, + { + "nodeId": "metro-transform-plugins@0.80.9" + }, + { + "nodeId": "metro-transform-worker@0.80.9" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "node-fetch@2.7.0" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "rimraf@3.0.2" + }, + { + "nodeId": "serialize-error@2.1.0" + }, + { + "nodeId": "source-map@0.5.7" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "throat@5.0.0" + }, + { + "nodeId": "ws@7.5.9" + }, + { + "nodeId": "yargs@17.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "denodeify@1.2.1", + "pkgId": "denodeify@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hermes-parser@0.20.1", + "pkgId": "hermes-parser@0.20.1", + "deps": [ + { + "nodeId": "hermes-estree@0.20.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hermes-estree@0.20.1", + "pkgId": "hermes-estree@0.20.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "image-size@1.1.1", + "pkgId": "image-size@1.1.1", + "deps": [ + { + "nodeId": "queue@6.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "queue@6.0.2", + "pkgId": "queue@6.0.2", + "deps": [ + { + "nodeId": "inherits@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-worker@29.7.0", + "pkgId": "jest-worker@29.7.0", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-util@29.7.0" + }, + { + "nodeId": "merge-stream@2.0.0" + }, + { + "nodeId": "supports-color@8.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-util@29.7.0", + "pkgId": "jest-util@29.7.0", + "deps": [ + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "ci-info@3.9.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ci-info@3.9.0", + "pkgId": "ci-info@3.9.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsc-safe-url@0.2.4", + "pkgId": "jsc-safe-url@0.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.throttle@4.1.1", + "pkgId": "lodash.throttle@4.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-babel-transformer@0.80.9", + "pkgId": "metro-babel-transformer@0.80.9", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "hermes-parser@0.20.1" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-cache@0.80.9", + "pkgId": "metro-cache@0.80.9", + "deps": [ + { + "nodeId": "metro-core@0.80.9" + }, + { + "nodeId": "rimraf@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-core@0.80.9", + "pkgId": "metro-core@0.80.9", + "deps": [ + { + "nodeId": "lodash.throttle@4.1.1" + }, + { + "nodeId": "metro-resolver@0.80.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-resolver@0.80.9", + "pkgId": "metro-resolver@0.80.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-cache-key@0.80.9", + "pkgId": "metro-cache-key@0.80.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-config@0.80.9", + "pkgId": "metro-config@0.80.9", + "deps": [ + { + "nodeId": "connect@3.7.0" + }, + { + "nodeId": "cosmiconfig@5.2.1" + }, + { + "nodeId": "jest-validate@29.7.0" + }, + { + "nodeId": "metro@0.80.9" + }, + { + "nodeId": "metro-cache@0.80.9" + }, + { + "nodeId": "metro-core@0.80.9" + }, + { + "nodeId": "metro-runtime@0.80.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-validate@29.7.0", + "pkgId": "jest-validate@29.7.0", + "deps": [ + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "camelcase@6.3.0" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "jest-get-type@29.6.3" + }, + { + "nodeId": "leven@3.1.0" + }, + { + "nodeId": "pretty-format@29.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-get-type@29.6.3", + "pkgId": "jest-get-type@29.6.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "leven@3.1.0", + "pkgId": "leven@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-format@29.7.0", + "pkgId": "pretty-format@29.7.0", + "deps": [ + { + "nodeId": "@jest/schemas@29.6.3" + }, + { + "nodeId": "ansi-styles@5.2.0" + }, + { + "nodeId": "react-is@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-styles@5.2.0", + "pkgId": "ansi-styles@5.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-runtime@0.80.9", + "pkgId": "metro-runtime@0.80.9", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-file-map@0.80.9", + "pkgId": "metro-file-map@0.80.9", + "deps": [ + { + "nodeId": "anymatch@3.1.3" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "fb-watchman@2.0.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "jest-worker@29.7.0" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "node-abort-controller@3.1.1" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "walker@1.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-abort-controller@3.1.1", + "pkgId": "node-abort-controller@3.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "walker@1.0.8", + "pkgId": "walker@1.0.8", + "deps": [ + { + "nodeId": "makeerror@1.0.12" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "makeerror@1.0.12", + "pkgId": "makeerror@1.0.12", + "deps": [ + { + "nodeId": "tmpl@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tmpl@1.0.5", + "pkgId": "tmpl@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-source-map@0.80.9", + "pkgId": "metro-source-map@0.80.9", + "deps": [ + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "metro-symbolicate@0.80.9" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "ob1@0.80.9" + }, + { + "nodeId": "source-map@0.5.7" + }, + { + "nodeId": "vlq@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-symbolicate@0.80.9", + "pkgId": "metro-symbolicate@0.80.9", + "deps": [ + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "metro-source-map@0.80.9" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "source-map@0.5.7" + }, + { + "nodeId": "through2@2.0.5" + }, + { + "nodeId": "vlq@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "through2@2.0.5", + "pkgId": "through2@2.0.5", + "deps": [ + { + "nodeId": "readable-stream@2.3.8" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vlq@1.0.1", + "pkgId": "vlq@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ob1@0.80.9", + "pkgId": "ob1@0.80.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-transform-plugins@0.80.9", + "pkgId": "metro-transform-plugins@0.80.9", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-transform-worker@0.80.9", + "pkgId": "metro-transform-worker@0.80.9", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "metro@0.80.9" + }, + { + "nodeId": "metro-babel-transformer@0.80.9" + }, + { + "nodeId": "metro-cache@0.80.9" + }, + { + "nodeId": "metro-cache-key@0.80.9" + }, + { + "nodeId": "metro-minify-terser@0.80.9" + }, + { + "nodeId": "metro-source-map@0.80.9" + }, + { + "nodeId": "metro-transform-plugins@0.80.9" + }, + { + "nodeId": "nullthrows@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "metro-minify-terser@0.80.9", + "pkgId": "metro-minify-terser@0.80.9", + "deps": [ + { + "nodeId": "terser@5.31.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serialize-error@2.1.0", + "pkgId": "serialize-error@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "throat@5.0.0", + "pkgId": "throat@5.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ws@7.5.9", + "pkgId": "ws@7.5.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yargs@17.7.2", + "pkgId": "yargs@17.7.2", + "deps": [ + { + "nodeId": "cliui@8.0.1" + }, + { + "nodeId": "escalade@3.1.2" + }, + { + "nodeId": "get-caller-file@2.0.5" + }, + { + "nodeId": "require-directory@2.1.1" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "y18n@5.0.8" + }, + { + "nodeId": "yargs-parser@21.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cliui@8.0.1", + "pkgId": "cliui@8.0.1", + "deps": [ + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "wrap-ansi@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "y18n@5.0.8", + "pkgId": "y18n@5.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yargs-parser@21.1.1", + "pkgId": "yargs-parser@21.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "querystring@0.2.1", + "pkgId": "querystring@0.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readline@1.3.0", + "pkgId": "readline@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/gradle-plugin@0.74.83", + "pkgId": "@react-native/gradle-plugin@0.74.83", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/js-polyfills@0.74.83", + "pkgId": "@react-native/js-polyfills@0.74.83", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/normalize-colors@0.74.83", + "pkgId": "@react-native/normalize-colors@0.74.83", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-native/virtualized-lists@0.74.83", + "pkgId": "@react-native/virtualized-lists@0.74.83", + "deps": [ + { + "nodeId": "invariant@2.2.4" + }, + { + "nodeId": "nullthrows@1.1.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-native@0.74.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "abort-controller@3.0.0", + "pkgId": "abort-controller@3.0.0", + "deps": [ + { + "nodeId": "event-target-shim@5.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "event-target-shim@5.0.1", + "pkgId": "event-target-shim@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "anser@1.4.10", + "pkgId": "anser@1.4.10", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "flow-enums-runtime@0.0.6", + "pkgId": "flow-enums-runtime@0.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-environment-node@29.7.0", + "pkgId": "jest-environment-node@29.7.0", + "deps": [ + { + "nodeId": "@jest/environment@29.7.0" + }, + { + "nodeId": "@jest/fake-timers@29.7.0" + }, + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@29.7.0" + }, + { + "nodeId": "jest-util@29.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/environment@29.7.0", + "pkgId": "@jest/environment@29.7.0", + "deps": [ + { + "nodeId": "@jest/fake-timers@29.7.0" + }, + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@29.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/fake-timers@29.7.0", + "pkgId": "@jest/fake-timers@29.7.0", + "deps": [ + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "@sinonjs/fake-timers@10.3.0" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-message-util@29.7.0" + }, + { + "nodeId": "jest-mock@29.7.0" + }, + { + "nodeId": "jest-util@29.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinonjs/fake-timers@10.3.0", + "pkgId": "@sinonjs/fake-timers@10.3.0", + "deps": [ + { + "nodeId": "@sinonjs/commons@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinonjs/commons@3.0.1", + "pkgId": "@sinonjs/commons@3.0.1", + "deps": [ + { + "nodeId": "type-detect@4.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-detect@4.0.8", + "pkgId": "type-detect@4.0.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-message-util@29.7.0", + "pkgId": "jest-message-util@29.7.0", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "@types/stack-utils@2.0.3" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "pretty-format@29.7.0" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "stack-utils@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/stack-utils@2.0.3", + "pkgId": "@types/stack-utils@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stack-utils@2.0.6", + "pkgId": "stack-utils@2.0.6", + "deps": [ + { + "nodeId": "escape-string-regexp@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-mock@29.7.0", + "pkgId": "jest-mock@29.7.0", + "deps": [ + { + "nodeId": "@jest/types@29.6.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-util@29.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsc-android@250231.0.0", + "pkgId": "jsc-android@250231.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "memoize-one@5.2.1", + "pkgId": "memoize-one@5.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "promise@8.3.0", + "pkgId": "promise@8.3.0", + "deps": [ + { + "nodeId": "asap@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-devtools-core@5.2.0", + "pkgId": "react-devtools-core@5.2.0", + "deps": [ + { + "nodeId": "shell-quote@1.8.1" + }, + { + "nodeId": "ws@7.5.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-shallow-renderer@16.15.0", + "pkgId": "react-shallow-renderer@16.15.0", + "deps": [ + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-is@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "scheduler@0.24.0-canary-efb381bbf-20230505", + "pkgId": "scheduler@0.24.0-canary-efb381bbf-20230505", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stacktrace-parser@0.1.10", + "pkgId": "stacktrace-parser@0.1.10", + "deps": [ + { + "nodeId": "type-fest@0.7.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-fest@0.7.1", + "pkgId": "type-fest@0.7.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "whatwg-fetch@3.6.20", + "pkgId": "whatwg-fetch@3.6.20", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/three@9.7.3", + "pkgId": "@react-spring/three@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/animated@9.7.3" + }, + { + "nodeId": "@react-spring/core@9.7.3" + }, + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "@react-three/fiber@8.16.5" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "three@0.164.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-three/fiber@8.16.5", + "pkgId": "@react-three/fiber@8.16.5", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@types/react-reconciler@0.26.7" + }, + { + "nodeId": "@types/webxr@0.5.16" + }, + { + "nodeId": "base64-js@1.5.1" + }, + { + "nodeId": "buffer@6.0.3" + }, + { + "nodeId": "its-fine@1.2.5" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-reconciler@0.27.0" + }, + { + "nodeId": "react-use-measure@2.1.1" + }, + { + "nodeId": "scheduler@0.21.0" + }, + { + "nodeId": "suspend-react@0.1.3" + }, + { + "nodeId": "three@0.164.1" + }, + { + "nodeId": "zustand@3.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/react-reconciler@0.26.7", + "pkgId": "@types/react-reconciler@0.26.7", + "deps": [ + { + "nodeId": "@types/react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/webxr@0.5.16", + "pkgId": "@types/webxr@0.5.16", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "buffer@6.0.3", + "pkgId": "buffer@6.0.3", + "deps": [ + { + "nodeId": "base64-js@1.5.1" + }, + { + "nodeId": "ieee754@1.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-reconciler@0.27.0", + "pkgId": "react-reconciler@0.27.0", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "scheduler@0.21.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "scheduler@0.21.0", + "pkgId": "scheduler@0.21.0", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-use-measure@2.1.1", + "pkgId": "react-use-measure@2.1.1", + "deps": [ + { + "nodeId": "debounce@1.2.1" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debounce@1.2.1", + "pkgId": "debounce@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "suspend-react@0.1.3", + "pkgId": "suspend-react@0.1.3", + "deps": [ + { + "nodeId": "react@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "three@0.164.1", + "pkgId": "three@0.164.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "zustand@3.7.2", + "pkgId": "zustand@3.7.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/web@9.7.3", + "pkgId": "@react-spring/web@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/animated@9.7.3" + }, + { + "nodeId": "@react-spring/core@9.7.3" + }, + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@react-spring/zdog@9.7.3", + "pkgId": "@react-spring/zdog@9.7.3", + "deps": [ + { + "nodeId": "@react-spring/animated@9.7.3" + }, + { + "nodeId": "@react-spring/core@9.7.3" + }, + { + "nodeId": "@react-spring/shared@9.7.3" + }, + { + "nodeId": "@react-spring/types@9.7.3" + }, + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "react-zdog@1.2.2" + }, + { + "nodeId": "zdog@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-zdog@1.2.2", + "pkgId": "react-zdog@1.2.2", + "deps": [ + { + "nodeId": "react@18.3.1" + }, + { + "nodeId": "react-dom@18.3.1" + }, + { + "nodeId": "resize-observer-polyfill@1.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "zdog@1.1.3", + "pkgId": "zdog@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "redux-persist@6.0.0", + "pkgId": "redux-persist@6.0.0", + "deps": [ + { + "nodeId": "redux@4.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-react@7.12.13", + "pkgId": "@babel/preset-react@7.12.13", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-transform-react-display-name@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx@7.23.4" + }, + { + "nodeId": "@babel/plugin-transform-react-jsx-development@7.22.5" + }, + { + "nodeId": "@babel/plugin-transform-react-pure-annotations@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/preset-typescript@7.12.13", + "pkgId": "@babel/preset-typescript@7.12.13", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/helper-validator-option@7.23.5" + }, + { + "nodeId": "@babel/plugin-transform-typescript@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/cli@14.0.5", + "pkgId": "@nrwl/cli@14.0.5", + "deps": [ + { + "nodeId": "nx@14.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nx@14.0.5", + "pkgId": "nx@14.0.5", + "deps": [ + { + "nodeId": "@nrwl/cli@14.0.5" + }, + { + "nodeId": "@nrwl/tao@14.0.5" + }, + { + "nodeId": "@parcel/watcher@2.0.4" + }, + { + "nodeId": "@swc-node/register@1.9.1" + }, + { + "nodeId": "@swc/core@1.5.5" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-spinners@2.6.1" + }, + { + "nodeId": "cliui@7.0.4" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "fast-glob@3.2.7" + }, + { + "nodeId": "figures@3.2.0" + }, + { + "nodeId": "flat@5.0.2" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "glob@7.1.4" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "jsonc-parser@3.0.0" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "npm-run-path@4.0.1" + }, + { + "nodeId": "open@8.4.2" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "rxjs-for-await@0.0.2" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "tar-stream@2.2.0" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "v8-compile-cache@2.3.0" + }, + { + "nodeId": "yargs@17.7.2" + }, + { + "nodeId": "yargs-parser@21.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/tao@14.0.5", + "pkgId": "@nrwl/tao@14.0.5", + "deps": [ + { + "nodeId": "nx@14.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/watcher@2.0.4", + "pkgId": "@parcel/watcher@2.0.4", + "deps": [ + { + "nodeId": "node-addon-api@3.2.1" + }, + { + "nodeId": "node-gyp-build@4.8.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-addon-api@3.2.1", + "pkgId": "node-addon-api@3.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-gyp-build@4.8.1", + "pkgId": "node-gyp-build@4.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc-node/register@1.9.1", + "pkgId": "@swc-node/register@1.9.1", + "deps": [ + { + "nodeId": "@swc-node/core@1.13.1" + }, + { + "nodeId": "@swc-node/sourcemap-support@0.5.0" + }, + { + "nodeId": "@swc/core@1.5.5" + }, + { + "nodeId": "colorette@2.0.20" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "pirates@4.0.6" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "typescript@4.9.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc-node/core@1.13.1", + "pkgId": "@swc-node/core@1.13.1", + "deps": [ + { + "nodeId": "@swc/core@1.5.5" + }, + { + "nodeId": "@swc/types@0.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc/core@1.5.5", + "pkgId": "@swc/core@1.5.5", + "deps": [ + { + "nodeId": "@swc/counter@0.1.3" + }, + { + "nodeId": "@swc/types@0.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc/counter@0.1.3", + "pkgId": "@swc/counter@0.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc/types@0.1.6", + "pkgId": "@swc/types@0.1.6", + "deps": [ + { + "nodeId": "@swc/counter@0.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@swc-node/sourcemap-support@0.5.0", + "pkgId": "@swc-node/sourcemap-support@0.5.0", + "deps": [ + { + "nodeId": "source-map-support@0.5.21" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "colorette@2.0.20", + "pkgId": "colorette@2.0.20", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chalk@4.1.0", + "pkgId": "chalk@4.1.0", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cli-spinners@2.6.1", + "pkgId": "cli-spinners@2.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cliui@7.0.4", + "pkgId": "cliui@7.0.4", + "deps": [ + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "wrap-ansi@7.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dotenv@10.0.0", + "pkgId": "dotenv@10.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "enquirer@2.3.6", + "pkgId": "enquirer@2.3.6", + "deps": [ + { + "nodeId": "ansi-colors@4.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fast-glob@3.2.7", + "pkgId": "fast-glob@3.2.7", + "deps": [ + { + "nodeId": "@nodelib/fs.stat@2.0.5" + }, + { + "nodeId": "@nodelib/fs.walk@1.2.8" + }, + { + "nodeId": "glob-parent@5.1.2" + }, + { + "nodeId": "merge2@1.4.1" + }, + { + "nodeId": "micromatch@4.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "glob@7.1.4", + "pkgId": "glob@7.1.4", + "deps": [ + { + "nodeId": "fs.realpath@1.0.0" + }, + { + "nodeId": "inflight@1.0.6" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "once@1.4.0" + }, + { + "nodeId": "path-is-absolute@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimatch@3.0.4", + "pkgId": "minimatch@3.0.4", + "deps": [ + { + "nodeId": "brace-expansion@1.1.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonc-parser@3.0.0", + "pkgId": "jsonc-parser@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rxjs-for-await@0.0.2", + "pkgId": "rxjs-for-await@0.0.2", + "deps": [ + { + "nodeId": "rxjs@6.6.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver@7.3.4", + "pkgId": "semver@7.3.4", + "deps": [ + { + "nodeId": "lru-cache@6.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "v8-compile-cache@2.3.0", + "pkgId": "v8-compile-cache@2.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yargs-parser@21.0.1", + "pkgId": "yargs-parser@21.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/devkit@14.0.5", + "pkgId": "@nrwl/devkit@14.0.5", + "deps": [ + { + "nodeId": "ejs@3.1.10" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "nx@14.0.5" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ejs@3.1.10", + "pkgId": "ejs@3.1.10", + "deps": [ + { + "nodeId": "jake@10.9.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jake@10.9.1", + "pkgId": "jake@10.9.1", + "deps": [ + { + "nodeId": "async@3.2.5" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "filelist@1.0.4" + }, + { + "nodeId": "minimatch@3.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "filelist@1.0.4", + "pkgId": "filelist@1.0.4", + "deps": [ + { + "nodeId": "minimatch@5.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimatch@5.1.6", + "pkgId": "minimatch@5.1.6", + "deps": [ + { + "nodeId": "brace-expansion@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "brace-expansion@2.0.1", + "pkgId": "brace-expansion@2.0.1", + "deps": [ + { + "nodeId": "balanced-match@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/eslint-plugin-nx@14.0.5", + "pkgId": "@nrwl/eslint-plugin-nx@14.0.5", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + }, + { + "nodeId": "@typescript-eslint/experimental-utils@5.18.0" + }, + { + "nodeId": "@typescript-eslint/parser@4.33.0" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "confusing-browser-globals@1.0.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/workspace@14.0.5", + "pkgId": "@nrwl/workspace@14.0.5", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/jest@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@parcel/watcher@2.0.4" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-spinners@2.6.1" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "figures@3.2.0" + }, + { + "nodeId": "flat@5.0.2" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "glob@7.1.4" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "npm-run-path@4.0.1" + }, + { + "nodeId": "nx@14.0.5" + }, + { + "nodeId": "open@8.4.2" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "yargs@17.7.2" + }, + { + "nodeId": "yargs-parser@21.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/jest@14.0.5", + "pkgId": "@nrwl/jest@14.0.5", + "deps": [ + { + "nodeId": "@jest/reporters@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "identity-obj-proxy@3.0.0" + }, + { + "nodeId": "jest-config@27.5.1" + }, + { + "nodeId": "jest-resolve@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "resolve.exports@1.1.0" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/reporters@27.5.1", + "pkgId": "@jest/reporters@27.5.1", + "deps": [ + { + "nodeId": "@bcoe/v8-coverage@0.2.3" + }, + { + "nodeId": "@jest/console@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "@jest/transform@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + }, + { + "nodeId": "exit@0.1.2" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "istanbul-lib-instrument@5.2.1" + }, + { + "nodeId": "istanbul-lib-report@3.0.1" + }, + { + "nodeId": "istanbul-lib-source-maps@4.0.1" + }, + { + "nodeId": "istanbul-reports@3.1.7" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-resolve@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "string-length@4.0.2" + }, + { + "nodeId": "terminal-link@2.1.1" + }, + { + "nodeId": "v8-to-istanbul@8.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@bcoe/v8-coverage@0.2.3", + "pkgId": "@bcoe/v8-coverage@0.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/console@27.5.1", + "pkgId": "@jest/console@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/types@27.5.1", + "pkgId": "@jest/types@27.5.1", + "deps": [ + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "@types/istanbul-reports@3.0.4" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/yargs@16.0.9" + }, + { + "nodeId": "chalk@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/yargs@16.0.9", + "pkgId": "@types/yargs@16.0.9", + "deps": [ + { + "nodeId": "@types/yargs-parser@21.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-message-util@27.5.1", + "pkgId": "jest-message-util@27.5.1", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/stack-utils@2.0.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "pretty-format@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "stack-utils@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-format@27.5.1", + "pkgId": "pretty-format@27.5.1", + "deps": [ + { + "nodeId": "ansi-regex@5.0.1" + }, + { + "nodeId": "ansi-styles@5.2.0" + }, + { + "nodeId": "react-is@17.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-util@27.5.1", + "pkgId": "jest-util@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "ci-info@3.9.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/test-result@27.5.1", + "pkgId": "@jest/test-result@27.5.1", + "deps": [ + { + "nodeId": "@jest/console@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "collect-v8-coverage@1.0.2", + "pkgId": "collect-v8-coverage@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/transform@27.5.1", + "pkgId": "@jest/transform@27.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "babel-plugin-istanbul@6.1.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "convert-source-map@1.9.0" + }, + { + "nodeId": "fast-json-stable-stringify@2.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-regex-util@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "pirates@4.0.6" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "write-file-atomic@3.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-istanbul@6.1.1", + "pkgId": "babel-plugin-istanbul@6.1.1", + "deps": [ + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@istanbuljs/load-nyc-config@1.1.0" + }, + { + "nodeId": "@istanbuljs/schema@0.1.3" + }, + { + "nodeId": "istanbul-lib-instrument@5.2.1" + }, + { + "nodeId": "test-exclude@6.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@istanbuljs/load-nyc-config@1.1.0", + "pkgId": "@istanbuljs/load-nyc-config@1.1.0", + "deps": [ + { + "nodeId": "camelcase@5.3.1" + }, + { + "nodeId": "find-up@4.1.0" + }, + { + "nodeId": "get-package-type@0.1.0" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "resolve-from@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-package-type@0.1.0", + "pkgId": "get-package-type@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@istanbuljs/schema@0.1.3", + "pkgId": "@istanbuljs/schema@0.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "istanbul-lib-instrument@5.2.1", + "pkgId": "istanbul-lib-instrument@5.2.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@istanbuljs/schema@0.1.3" + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2", + "pkgId": "istanbul-lib-coverage@3.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "test-exclude@6.0.0", + "pkgId": "test-exclude@6.0.0", + "deps": [ + { + "nodeId": "@istanbuljs/schema@0.1.3" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "minimatch@3.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-haste-map@27.5.1", + "pkgId": "jest-haste-map@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/graceful-fs@4.1.9" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "anymatch@3.1.3" + }, + { + "nodeId": "fb-watchman@2.0.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-regex-util@27.5.1" + }, + { + "nodeId": "jest-serializer@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "walker@1.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/graceful-fs@4.1.9", + "pkgId": "@types/graceful-fs@4.1.9", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-regex-util@27.5.1", + "pkgId": "jest-regex-util@27.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-serializer@27.5.1", + "pkgId": "jest-serializer@27.5.1", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "graceful-fs@4.2.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "exit@0.1.2", + "pkgId": "exit@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "istanbul-lib-report@3.0.1", + "pkgId": "istanbul-lib-report@3.0.1", + "deps": [ + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "make-dir@4.0.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "make-dir@4.0.0", + "pkgId": "make-dir@4.0.0", + "deps": [ + { + "nodeId": "semver@7.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "istanbul-lib-source-maps@4.0.1", + "pkgId": "istanbul-lib-source-maps@4.0.1", + "deps": [ + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "istanbul-reports@3.1.7", + "pkgId": "istanbul-reports@3.1.7", + "deps": [ + { + "nodeId": "html-escaper@2.0.2" + }, + { + "nodeId": "istanbul-lib-report@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "html-escaper@2.0.2", + "pkgId": "html-escaper@2.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-resolve@27.5.1", + "pkgId": "jest-resolve@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-pnp-resolver@1.2.3" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "jest-validate@27.5.1" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "resolve.exports@1.1.0" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-pnp-resolver@1.2.3", + "pkgId": "jest-pnp-resolver@1.2.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-validate@27.5.1", + "pkgId": "jest-validate@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "camelcase@6.3.0" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "leven@3.1.0" + }, + { + "nodeId": "pretty-format@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-get-type@27.5.1", + "pkgId": "jest-get-type@27.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve.exports@1.1.0", + "pkgId": "resolve.exports@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-length@4.0.2", + "pkgId": "string-length@4.0.2", + "deps": [ + { + "nodeId": "char-regex@1.0.2" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "char-regex@1.0.2", + "pkgId": "char-regex@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "terminal-link@2.1.1", + "pkgId": "terminal-link@2.1.1", + "deps": [ + { + "nodeId": "ansi-escapes@4.3.2" + }, + { + "nodeId": "supports-hyperlinks@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-hyperlinks@2.3.0", + "pkgId": "supports-hyperlinks@2.3.0", + "deps": [ + { + "nodeId": "has-flag@4.0.0" + }, + { + "nodeId": "supports-color@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "v8-to-istanbul@8.1.1", + "pkgId": "v8-to-istanbul@8.1.1", + "deps": [ + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "convert-source-map@1.9.0" + }, + { + "nodeId": "source-map@0.7.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "identity-obj-proxy@3.0.0", + "pkgId": "identity-obj-proxy@3.0.0", + "deps": [ + { + "nodeId": "harmony-reflect@1.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "harmony-reflect@1.6.2", + "pkgId": "harmony-reflect@1.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-config@27.5.1", + "pkgId": "jest-config@27.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/test-sequencer@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "babel-jest@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "ci-info@3.9.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-circus@27.5.1" + }, + { + "nodeId": "jest-environment-jsdom@27.5.1" + }, + { + "nodeId": "jest-environment-node@27.5.1" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "jest-jasmine2@27.5.1" + }, + { + "nodeId": "jest-regex-util@27.5.1" + }, + { + "nodeId": "jest-resolve@27.5.1" + }, + { + "nodeId": "jest-runner@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "jest-validate@27.5.1" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "parse-json@5.2.0" + }, + { + "nodeId": "pretty-format@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "strip-json-comments@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/test-sequencer@27.5.1", + "pkgId": "@jest/test-sequencer@27.5.1", + "deps": [ + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-runtime@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-runtime@27.5.1", + "pkgId": "jest-runtime@27.5.1", + "deps": [ + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/fake-timers@27.5.1" + }, + { + "nodeId": "@jest/globals@27.5.1" + }, + { + "nodeId": "@jest/source-map@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "@jest/transform@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "cjs-module-lexer@1.3.1" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-mock@27.5.1" + }, + { + "nodeId": "jest-regex-util@27.5.1" + }, + { + "nodeId": "jest-resolve@27.5.1" + }, + { + "nodeId": "jest-snapshot@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "strip-bom@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/environment@27.5.1", + "pkgId": "@jest/environment@27.5.1", + "deps": [ + { + "nodeId": "@jest/fake-timers@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/fake-timers@27.5.1", + "pkgId": "@jest/fake-timers@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@sinonjs/fake-timers@8.1.0" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-mock@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinonjs/fake-timers@8.1.0", + "pkgId": "@sinonjs/fake-timers@8.1.0", + "deps": [ + { + "nodeId": "@sinonjs/commons@1.8.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinonjs/commons@1.8.6", + "pkgId": "@sinonjs/commons@1.8.6", + "deps": [ + { + "nodeId": "type-detect@4.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-mock@27.5.1", + "pkgId": "jest-mock@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/globals@27.5.1", + "pkgId": "@jest/globals@27.5.1", + "deps": [ + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "expect@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "expect@27.5.1", + "pkgId": "expect@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "jest-matcher-utils@27.5.1" + }, + { + "nodeId": "jest-message-util@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-matcher-utils@27.5.1", + "pkgId": "jest-matcher-utils@27.5.1", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-diff@27.5.1" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "pretty-format@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-diff@27.5.1", + "pkgId": "jest-diff@27.5.1", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "diff-sequences@27.5.1" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "pretty-format@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "diff-sequences@27.5.1", + "pkgId": "diff-sequences@27.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/source-map@27.5.1", + "pkgId": "@jest/source-map@27.5.1", + "deps": [ + { + "nodeId": "callsites@3.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cjs-module-lexer@1.3.1", + "pkgId": "cjs-module-lexer@1.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-snapshot@27.5.1", + "pkgId": "jest-snapshot@27.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-typescript@7.24.1" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@jest/transform@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/babel__traverse@7.20.5" + }, + { + "nodeId": "@types/prettier@2.7.3" + }, + { + "nodeId": "babel-preset-current-node-syntax@1.0.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "expect@27.5.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-diff@27.5.1" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-matcher-utils@27.5.1" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "natural-compare@1.4.0" + }, + { + "nodeId": "pretty-format@27.5.1" + }, + { + "nodeId": "semver@7.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/babel__traverse@7.20.5", + "pkgId": "@types/babel__traverse@7.20.5", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/prettier@2.7.3", + "pkgId": "@types/prettier@2.7.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-preset-current-node-syntax@1.0.1", + "pkgId": "babel-preset-current-node-syntax@1.0.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/plugin-syntax-async-generators@7.8.4" + }, + { + "nodeId": "@babel/plugin-syntax-bigint@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-class-properties@7.12.13" + }, + { + "nodeId": "@babel/plugin-syntax-import-meta@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-json-strings@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-logical-assignment-operators@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-numeric-separator@7.10.4" + }, + { + "nodeId": "@babel/plugin-syntax-object-rest-spread@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-catch-binding@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-optional-chaining@7.8.3" + }, + { + "nodeId": "@babel/plugin-syntax-top-level-await@7.14.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-bigint@7.8.3", + "pkgId": "@babel/plugin-syntax-bigint@7.8.3", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-bom@4.0.0", + "pkgId": "strip-bom@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-jest@27.5.1", + "pkgId": "babel-jest@27.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/transform@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/babel__core@7.20.5" + }, + { + "nodeId": "babel-plugin-istanbul@6.1.1" + }, + { + "nodeId": "babel-preset-jest@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/babel__core@7.20.5", + "pkgId": "@types/babel__core@7.20.5", + "deps": [ + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@types/babel__generator@7.6.8" + }, + { + "nodeId": "@types/babel__template@7.4.4" + }, + { + "nodeId": "@types/babel__traverse@7.20.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/babel__generator@7.6.8", + "pkgId": "@types/babel__generator@7.6.8", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/babel__template@7.4.4", + "pkgId": "@types/babel__template@7.4.4", + "deps": [ + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-preset-jest@27.5.1", + "pkgId": "babel-preset-jest@27.5.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "babel-plugin-jest-hoist@27.5.1" + }, + { + "nodeId": "babel-preset-current-node-syntax@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-jest-hoist@27.5.1", + "pkgId": "babel-plugin-jest-hoist@27.5.1", + "deps": [ + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@types/babel__core@7.20.5" + }, + { + "nodeId": "@types/babel__traverse@7.20.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-circus@27.5.1", + "pkgId": "jest-circus@27.5.1", + "deps": [ + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "co@4.6.0" + }, + { + "nodeId": "dedent@0.7.0" + }, + { + "nodeId": "expect@27.5.1" + }, + { + "nodeId": "is-generator-fn@2.1.0" + }, + { + "nodeId": "jest-each@27.5.1" + }, + { + "nodeId": "jest-matcher-utils@27.5.1" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-runtime@27.5.1" + }, + { + "nodeId": "jest-snapshot@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "pretty-format@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "stack-utils@2.0.6" + }, + { + "nodeId": "throat@6.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "co@4.6.0", + "pkgId": "co@4.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dedent@0.7.0", + "pkgId": "dedent@0.7.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-generator-fn@2.1.0", + "pkgId": "is-generator-fn@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-each@27.5.1", + "pkgId": "jest-each@27.5.1", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "pretty-format@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "throat@6.0.2", + "pkgId": "throat@6.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-environment-jsdom@27.5.1", + "pkgId": "jest-environment-jsdom@27.5.1", + "deps": [ + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/fake-timers@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "jsdom@16.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsdom@16.7.0", + "pkgId": "jsdom@16.7.0", + "deps": [ + { + "nodeId": "abab@2.0.6" + }, + { + "nodeId": "acorn@8.11.3" + }, + { + "nodeId": "acorn-globals@6.0.0" + }, + { + "nodeId": "cssom@0.4.4" + }, + { + "nodeId": "cssstyle@2.3.0" + }, + { + "nodeId": "data-urls@2.0.0" + }, + { + "nodeId": "decimal.js@10.4.3" + }, + { + "nodeId": "domexception@2.0.1" + }, + { + "nodeId": "escodegen@2.1.0" + }, + { + "nodeId": "form-data@3.0.1" + }, + { + "nodeId": "html-encoding-sniffer@2.0.1" + }, + { + "nodeId": "http-proxy-agent@4.0.1" + }, + { + "nodeId": "https-proxy-agent@5.0.1" + }, + { + "nodeId": "is-potential-custom-element-name@1.0.1" + }, + { + "nodeId": "nwsapi@2.2.9" + }, + { + "nodeId": "parse5@6.0.1" + }, + { + "nodeId": "saxes@5.0.1" + }, + { + "nodeId": "symbol-tree@3.2.4" + }, + { + "nodeId": "tough-cookie@4.1.4" + }, + { + "nodeId": "w3c-hr-time@1.0.2" + }, + { + "nodeId": "w3c-xmlserializer@2.0.0" + }, + { + "nodeId": "webidl-conversions@6.1.0" + }, + { + "nodeId": "whatwg-encoding@1.0.5" + }, + { + "nodeId": "whatwg-mimetype@2.3.0" + }, + { + "nodeId": "whatwg-url@8.7.0" + }, + { + "nodeId": "ws@7.5.9" + }, + { + "nodeId": "xml-name-validator@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "abab@2.0.6", + "pkgId": "abab@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn-globals@6.0.0", + "pkgId": "acorn-globals@6.0.0", + "deps": [ + { + "nodeId": "acorn@7.4.1" + }, + { + "nodeId": "acorn-walk@7.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "acorn-walk@7.2.0", + "pkgId": "acorn-walk@7.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssom@0.4.4", + "pkgId": "cssom@0.4.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssstyle@2.3.0", + "pkgId": "cssstyle@2.3.0", + "deps": [ + { + "nodeId": "cssom@0.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cssom@0.3.8", + "pkgId": "cssom@0.3.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "data-urls@2.0.0", + "pkgId": "data-urls@2.0.0", + "deps": [ + { + "nodeId": "abab@2.0.6" + }, + { + "nodeId": "whatwg-mimetype@2.3.0" + }, + { + "nodeId": "whatwg-url@8.7.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "whatwg-mimetype@2.3.0", + "pkgId": "whatwg-mimetype@2.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "whatwg-url@8.7.0", + "pkgId": "whatwg-url@8.7.0", + "deps": [ + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "tr46@2.1.0" + }, + { + "nodeId": "webidl-conversions@6.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tr46@2.1.0", + "pkgId": "tr46@2.1.0", + "deps": [ + { + "nodeId": "punycode@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webidl-conversions@6.1.0", + "pkgId": "webidl-conversions@6.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "decimal.js@10.4.3", + "pkgId": "decimal.js@10.4.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "domexception@2.0.1", + "pkgId": "domexception@2.0.1", + "deps": [ + { + "nodeId": "webidl-conversions@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webidl-conversions@5.0.0", + "pkgId": "webidl-conversions@5.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escodegen@2.1.0", + "pkgId": "escodegen@2.1.0", + "deps": [ + { + "nodeId": "esprima@4.0.1" + }, + { + "nodeId": "estraverse@5.3.0" + }, + { + "nodeId": "esutils@2.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "form-data@3.0.1", + "pkgId": "form-data@3.0.1", + "deps": [ + { + "nodeId": "asynckit@0.4.0" + }, + { + "nodeId": "combined-stream@1.0.8" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "html-encoding-sniffer@2.0.1", + "pkgId": "html-encoding-sniffer@2.0.1", + "deps": [ + { + "nodeId": "whatwg-encoding@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "whatwg-encoding@1.0.5", + "pkgId": "whatwg-encoding@1.0.5", + "deps": [ + { + "nodeId": "iconv-lite@0.4.24" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-proxy-agent@4.0.1", + "pkgId": "http-proxy-agent@4.0.1", + "deps": [ + { + "nodeId": "@tootallnate/once@1.1.2" + }, + { + "nodeId": "agent-base@6.0.2" + }, + { + "nodeId": "debug@4.3.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@tootallnate/once@1.1.2", + "pkgId": "@tootallnate/once@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "agent-base@6.0.2", + "pkgId": "agent-base@6.0.2", + "deps": [ + { + "nodeId": "debug@4.3.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "https-proxy-agent@5.0.1", + "pkgId": "https-proxy-agent@5.0.1", + "deps": [ + { + "nodeId": "agent-base@6.0.2" + }, + { + "nodeId": "debug@4.3.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-potential-custom-element-name@1.0.1", + "pkgId": "is-potential-custom-element-name@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nwsapi@2.2.9", + "pkgId": "nwsapi@2.2.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "saxes@5.0.1", + "pkgId": "saxes@5.0.1", + "deps": [ + { + "nodeId": "xmlchars@2.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xmlchars@2.2.0", + "pkgId": "xmlchars@2.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "symbol-tree@3.2.4", + "pkgId": "symbol-tree@3.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tough-cookie@4.1.4", + "pkgId": "tough-cookie@4.1.4", + "deps": [ + { + "nodeId": "psl@1.9.0" + }, + { + "nodeId": "punycode@2.3.1" + }, + { + "nodeId": "universalify@0.2.0" + }, + { + "nodeId": "url-parse@1.5.10" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "psl@1.9.0", + "pkgId": "psl@1.9.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "universalify@0.2.0", + "pkgId": "universalify@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "url-parse@1.5.10", + "pkgId": "url-parse@1.5.10", + "deps": [ + { + "nodeId": "querystringify@2.2.0" + }, + { + "nodeId": "requires-port@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "querystringify@2.2.0", + "pkgId": "querystringify@2.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "requires-port@1.0.0", + "pkgId": "requires-port@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "w3c-hr-time@1.0.2", + "pkgId": "w3c-hr-time@1.0.2", + "deps": [ + { + "nodeId": "browser-process-hrtime@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "browser-process-hrtime@1.0.0", + "pkgId": "browser-process-hrtime@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "w3c-xmlserializer@2.0.0", + "pkgId": "w3c-xmlserializer@2.0.0", + "deps": [ + { + "nodeId": "xml-name-validator@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xml-name-validator@3.0.0", + "pkgId": "xml-name-validator@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-environment-node@27.5.1", + "pkgId": "jest-environment-node@27.5.1", + "deps": [ + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/fake-timers@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-jasmine2@27.5.1", + "pkgId": "jest-jasmine2@27.5.1", + "deps": [ + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/source-map@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "co@4.6.0" + }, + { + "nodeId": "expect@27.5.1" + }, + { + "nodeId": "is-generator-fn@2.1.0" + }, + { + "nodeId": "jest-each@27.5.1" + }, + { + "nodeId": "jest-matcher-utils@27.5.1" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-runtime@27.5.1" + }, + { + "nodeId": "jest-snapshot@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "pretty-format@27.5.1" + }, + { + "nodeId": "throat@6.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-runner@27.5.1", + "pkgId": "jest-runner@27.5.1", + "deps": [ + { + "nodeId": "@jest/console@27.5.1" + }, + { + "nodeId": "@jest/environment@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.5.1" + }, + { + "nodeId": "@jest/transform@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "emittery@0.8.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-docblock@27.5.1" + }, + { + "nodeId": "jest-environment-jsdom@27.5.1" + }, + { + "nodeId": "jest-environment-node@27.5.1" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-leak-detector@27.5.1" + }, + { + "nodeId": "jest-message-util@27.5.1" + }, + { + "nodeId": "jest-resolve@27.5.1" + }, + { + "nodeId": "jest-runtime@27.5.1" + }, + { + "nodeId": "jest-util@27.5.1" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "source-map-support@0.5.21" + }, + { + "nodeId": "throat@6.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emittery@0.8.1", + "pkgId": "emittery@0.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-docblock@27.5.1", + "pkgId": "jest-docblock@27.5.1", + "deps": [ + { + "nodeId": "detect-newline@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detect-newline@3.1.0", + "pkgId": "detect-newline@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-leak-detector@27.5.1", + "pkgId": "jest-leak-detector@27.5.1", + "deps": [ + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "pretty-format@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/linter@14.0.5", + "pkgId": "@nrwl/linter@14.0.5", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/jest@14.0.5" + }, + { + "nodeId": "@phenomnomnominal/tsquery@4.1.1" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@phenomnomnominal/tsquery@4.1.1", + "pkgId": "@phenomnomnominal/tsquery@4.1.1", + "deps": [ + { + "nodeId": "esquery@1.5.0" + }, + { + "nodeId": "typescript@4.9.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/experimental-utils@5.18.0", + "pkgId": "@typescript-eslint/experimental-utils@5.18.0", + "deps": [ + { + "nodeId": "@typescript-eslint/utils@5.18.0" + }, + { + "nodeId": "eslint@7.32.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/utils@5.18.0", + "pkgId": "@typescript-eslint/utils@5.18.0", + "deps": [ + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "@typescript-eslint/scope-manager@5.18.0" + }, + { + "nodeId": "@typescript-eslint/types@5.18.0" + }, + { + "nodeId": "@typescript-eslint/typescript-estree@5.18.0" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "eslint-scope@5.1.1" + }, + { + "nodeId": "eslint-utils@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/scope-manager@5.18.0", + "pkgId": "@typescript-eslint/scope-manager@5.18.0", + "deps": [ + { + "nodeId": "@typescript-eslint/types@5.18.0" + }, + { + "nodeId": "@typescript-eslint/visitor-keys@5.18.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/types@5.18.0", + "pkgId": "@typescript-eslint/types@5.18.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/visitor-keys@5.18.0", + "pkgId": "@typescript-eslint/visitor-keys@5.18.0", + "deps": [ + { + "nodeId": "@typescript-eslint/types@5.18.0" + }, + { + "nodeId": "eslint-visitor-keys@3.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-visitor-keys@3.4.3", + "pkgId": "eslint-visitor-keys@3.4.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@typescript-eslint/typescript-estree@5.18.0", + "pkgId": "@typescript-eslint/typescript-estree@5.18.0", + "deps": [ + { + "nodeId": "@typescript-eslint/types@5.18.0" + }, + { + "nodeId": "@typescript-eslint/visitor-keys@5.18.0" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "tsutils@3.21.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/gatsby@13.2.3", + "pkgId": "@nrwl/gatsby@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/cypress@13.2.3" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/jest@13.2.3" + }, + { + "nodeId": "@nrwl/linter@13.2.3" + }, + { + "nodeId": "@nrwl/react@13.2.3" + }, + { + "nodeId": "@nrwl/workspace@13.2.3" + }, + { + "nodeId": "gatsby@4.25.8" + }, + { + "nodeId": "gatsby-cli@4.25.0" + }, + { + "nodeId": "gatsby-codemods@3.25.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/cypress@13.2.3", + "pkgId": "@nrwl/cypress@13.2.3", + "deps": [ + { + "nodeId": "@cypress/webpack-preprocessor@5.17.1" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/linter@13.2.3" + }, + { + "nodeId": "@nrwl/workspace@13.2.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.2.10" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "ts-loader@9.5.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.4.1" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "webpack-node-externals@3.0.0" + }, + { + "nodeId": "yargs-parser@20.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@cypress/webpack-preprocessor@5.17.1", + "pkgId": "@cypress/webpack-preprocessor@5.17.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/preset-env@7.24.5" + }, + { + "nodeId": "babel-loader@8.3.0" + }, + { + "nodeId": "bluebird@3.7.1" + }, + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "lodash@4.17.21" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bluebird@3.7.1", + "pkgId": "bluebird@3.7.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/devkit@13.2.3", + "pkgId": "@nrwl/devkit@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/tao@13.2.3" + }, + { + "nodeId": "ejs@3.1.10" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/tao@13.2.3", + "pkgId": "@nrwl/tao@13.2.3", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "jsonc-parser@3.0.0" + }, + { + "nodeId": "nx@13.2.3" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "rxjs-for-await@0.0.2" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "yargs-parser@20.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nx@13.2.3", + "pkgId": "nx@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/cli@14.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yargs-parser@20.0.0", + "pkgId": "yargs-parser@20.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/linter@13.2.3", + "pkgId": "@nrwl/linter@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/jest@13.2.3" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "glob@7.1.4" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/jest@13.2.3", + "pkgId": "@nrwl/jest@13.2.3", + "deps": [ + { + "nodeId": "@jest/reporters@27.2.2" + }, + { + "nodeId": "@jest/test-result@27.2.2" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "identity-obj-proxy@3.0.0" + }, + { + "nodeId": "jest-config@27.2.2" + }, + { + "nodeId": "jest-resolve@27.2.2" + }, + { + "nodeId": "jest-util@27.2.0" + }, + { + "nodeId": "resolve.exports@1.1.0" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/reporters@27.2.2", + "pkgId": "@jest/reporters@27.2.2", + "deps": [ + { + "nodeId": "@bcoe/v8-coverage@0.2.3" + }, + { + "nodeId": "@jest/console@27.5.1" + }, + { + "nodeId": "@jest/test-result@27.2.2" + }, + { + "nodeId": "@jest/transform@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + }, + { + "nodeId": "exit@0.1.2" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "istanbul-lib-instrument@4.0.3" + }, + { + "nodeId": "istanbul-lib-report@3.0.1" + }, + { + "nodeId": "istanbul-lib-source-maps@4.0.1" + }, + { + "nodeId": "istanbul-reports@3.1.7" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-resolve@27.2.2" + }, + { + "nodeId": "jest-util@27.2.0" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "string-length@4.0.2" + }, + { + "nodeId": "terminal-link@2.1.1" + }, + { + "nodeId": "v8-to-istanbul@8.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/test-result@27.2.2", + "pkgId": "@jest/test-result@27.2.2", + "deps": [ + { + "nodeId": "@jest/console@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "istanbul-lib-instrument@4.0.3", + "pkgId": "istanbul-lib-instrument@4.0.3", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@istanbuljs/schema@0.1.3" + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "semver@6.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-resolve@27.2.2", + "pkgId": "jest-resolve@27.2.2", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "escalade@3.1.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@27.5.1" + }, + { + "nodeId": "jest-pnp-resolver@1.2.3" + }, + { + "nodeId": "jest-util@27.2.0" + }, + { + "nodeId": "jest-validate@27.5.1" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-util@27.2.0", + "pkgId": "jest-util@27.2.0", + "deps": [ + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "is-ci@3.0.1" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-ci@3.0.1", + "pkgId": "is-ci@3.0.1", + "deps": [ + { + "nodeId": "ci-info@3.9.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-config@27.2.2", + "pkgId": "jest-config@27.2.2", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/test-sequencer@27.5.1" + }, + { + "nodeId": "@jest/types@27.5.1" + }, + { + "nodeId": "babel-jest@27.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "is-ci@3.0.1" + }, + { + "nodeId": "jest-circus@27.5.1" + }, + { + "nodeId": "jest-environment-jsdom@27.5.1" + }, + { + "nodeId": "jest-environment-node@27.5.1" + }, + { + "nodeId": "jest-get-type@27.5.1" + }, + { + "nodeId": "jest-jasmine2@27.5.1" + }, + { + "nodeId": "jest-regex-util@27.5.1" + }, + { + "nodeId": "jest-resolve@27.2.2" + }, + { + "nodeId": "jest-runner@27.5.1" + }, + { + "nodeId": "jest-util@27.2.0" + }, + { + "nodeId": "jest-validate@27.5.1" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "pretty-format@27.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/workspace@13.2.3", + "pkgId": "@nrwl/workspace@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/cli@13.2.3" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/jest@13.2.3" + }, + { + "nodeId": "@nrwl/linter@13.2.3" + }, + { + "nodeId": "@parcel/watcher@2.0.0-alpha.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cosmiconfig@4.0.0" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "flat@5.0.2" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "glob@7.1.4" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "npm-run-all@4.1.5" + }, + { + "nodeId": "npm-run-path@4.0.1" + }, + { + "nodeId": "open@7.4.2" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "strip-ansi@6.0.0" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "yargs@15.4.1" + }, + { + "nodeId": "yargs-parser@20.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/cli@13.2.3", + "pkgId": "@nrwl/cli@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/tao@13.2.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "v8-compile-cache@2.3.0" + }, + { + "nodeId": "yargs@15.4.1" + }, + { + "nodeId": "yargs-parser@20.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@parcel/watcher@2.0.0-alpha.11", + "pkgId": "@parcel/watcher@2.0.0-alpha.11", + "deps": [ + { + "nodeId": "node-addon-api@3.2.1" + }, + { + "nodeId": "node-gyp-build@4.8.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cosmiconfig@4.0.0", + "pkgId": "cosmiconfig@4.0.0", + "deps": [ + { + "nodeId": "is-directory@0.3.1" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "parse-json@4.0.0" + }, + { + "nodeId": "require-from-string@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "npm-run-all@4.1.5", + "pkgId": "npm-run-all@4.1.5", + "deps": [ + { + "nodeId": "ansi-styles@3.2.1" + }, + { + "nodeId": "chalk@2.4.2" + }, + { + "nodeId": "cross-spawn@6.0.5" + }, + { + "nodeId": "memorystream@0.3.1" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "pidtree@0.3.1" + }, + { + "nodeId": "read-pkg@3.0.0" + }, + { + "nodeId": "shell-quote@1.8.1" + }, + { + "nodeId": "string.prototype.padend@3.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "memorystream@0.3.1", + "pkgId": "memorystream@0.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pidtree@0.3.1", + "pkgId": "pidtree@0.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "read-pkg@3.0.0", + "pkgId": "read-pkg@3.0.0", + "deps": [ + { + "nodeId": "load-json-file@4.0.0" + }, + { + "nodeId": "normalize-package-data@2.5.0" + }, + { + "nodeId": "path-type@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "load-json-file@4.0.0", + "pkgId": "load-json-file@4.0.0", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "parse-json@4.0.0" + }, + { + "nodeId": "pify@3.0.0" + }, + { + "nodeId": "strip-bom@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pify@3.0.0", + "pkgId": "pify@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "normalize-package-data@2.5.0", + "pkgId": "normalize-package-data@2.5.0", + "deps": [ + { + "nodeId": "hosted-git-info@2.8.9" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "semver@5.7.2" + }, + { + "nodeId": "validate-npm-package-license@3.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hosted-git-info@2.8.9", + "pkgId": "hosted-git-info@2.8.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "validate-npm-package-license@3.0.4", + "pkgId": "validate-npm-package-license@3.0.4", + "deps": [ + { + "nodeId": "spdx-correct@3.2.0" + }, + { + "nodeId": "spdx-expression-parse@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "spdx-correct@3.2.0", + "pkgId": "spdx-correct@3.2.0", + "deps": [ + { + "nodeId": "spdx-expression-parse@3.0.1" + }, + { + "nodeId": "spdx-license-ids@3.0.17" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "spdx-expression-parse@3.0.1", + "pkgId": "spdx-expression-parse@3.0.1", + "deps": [ + { + "nodeId": "spdx-exceptions@2.5.0" + }, + { + "nodeId": "spdx-license-ids@3.0.17" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "spdx-exceptions@2.5.0", + "pkgId": "spdx-exceptions@2.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "spdx-license-ids@3.0.17", + "pkgId": "spdx-license-ids@3.0.17", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-type@3.0.0", + "pkgId": "path-type@3.0.0", + "deps": [ + { + "nodeId": "pify@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string.prototype.padend@3.1.6", + "pkgId": "string.prototype.padend@3.1.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-object-atoms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@6.0.0", + "pkgId": "strip-ansi@6.0.0", + "deps": [ + { + "nodeId": "ansi-regex@5.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.2.10", + "pkgId": "fork-ts-checker-webpack-plugin@6.2.10", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cosmiconfig@6.0.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "memfs@3.5.3" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "schema-utils@2.7.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "tapable@1.1.3" + }, + { + "nodeId": "typescript@4.9.5" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ts-loader@9.5.1", + "pkgId": "ts-loader@9.5.1", + "deps": [ + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "source-map@0.7.4" + }, + { + "nodeId": "typescript@4.9.5" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.4.1", + "pkgId": "tsconfig-paths-webpack-plugin@3.4.1", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-node-externals@3.0.0", + "pkgId": "webpack-node-externals@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/react@13.2.3", + "pkgId": "@nrwl/react@13.2.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/preset-react@7.24.1" + }, + { + "nodeId": "@nrwl/cypress@13.2.3" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/jest@13.2.3" + }, + { + "nodeId": "@nrwl/linter@13.2.3" + }, + { + "nodeId": "@nrwl/storybook@13.2.3" + }, + { + "nodeId": "@nrwl/web@13.2.3" + }, + { + "nodeId": "@nrwl/workspace@13.2.3" + }, + { + "nodeId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13" + }, + { + "nodeId": "@storybook/node-logger@6.1.20" + }, + { + "nodeId": "@svgr/webpack@5.5.0" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "eslint-plugin-import@2.29.1" + }, + { + "nodeId": "eslint-plugin-jsx-a11y@6.8.0" + }, + { + "nodeId": "eslint-plugin-react@7.34.1" + }, + { + "nodeId": "eslint-plugin-react-hooks@4.6.2" + }, + { + "nodeId": "react-refresh@0.10.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "url-loader@4.1.1" + }, + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-merge@5.10.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/storybook@13.2.3", + "pkgId": "@nrwl/storybook@13.2.3", + "deps": [ + { + "nodeId": "@nrwl/cypress@13.2.3" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/linter@13.2.3" + }, + { + "nodeId": "@nrwl/workspace@13.2.3" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "ts-loader@9.5.1" + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/web@13.2.3", + "pkgId": "@nrwl/web@13.2.3", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-decorators@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-regenerator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-runtime@7.24.3" + }, + { + "nodeId": "@babel/preset-env@7.24.5" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@nrwl/cypress@13.2.3" + }, + { + "nodeId": "@nrwl/devkit@13.2.3" + }, + { + "nodeId": "@nrwl/jest@13.2.3" + }, + { + "nodeId": "@nrwl/linter@13.2.3" + }, + { + "nodeId": "@nrwl/workspace@13.2.3" + }, + { + "nodeId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13" + }, + { + "nodeId": "@rollup/plugin-babel@5.3.1" + }, + { + "nodeId": "@rollup/plugin-commonjs@20.0.0" + }, + { + "nodeId": "@rollup/plugin-image@2.1.1" + }, + { + "nodeId": "@rollup/plugin-json@4.1.0" + }, + { + "nodeId": "@rollup/plugin-node-resolve@13.3.0" + }, + { + "nodeId": "autoprefixer@10.4.19" + }, + { + "nodeId": "babel-loader@8.3.0" + }, + { + "nodeId": "babel-plugin-const-enum@1.2.0" + }, + { + "nodeId": "babel-plugin-macros@2.8.0" + }, + { + "nodeId": "babel-plugin-transform-async-to-promises@0.8.18" + }, + { + "nodeId": "babel-plugin-transform-typescript-metadata@0.3.2" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "caniuse-lite@1.0.30001617" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "copy-webpack-plugin@9.1.0" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "css-loader@6.11.0" + }, + { + "nodeId": "css-minimizer-webpack-plugin@3.4.1" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "file-loader@6.2.0" + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.2.10" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "http-server@0.12.3" + }, + { + "nodeId": "identity-obj-proxy@3.0.0" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "less@3.12.2" + }, + { + "nodeId": "less-loader@10.2.0" + }, + { + "nodeId": "license-webpack-plugin@2.3.15" + }, + { + "nodeId": "loader-utils@1.2.3" + }, + { + "nodeId": "mini-css-extract-plugin@2.9.0" + }, + { + "nodeId": "open@7.4.2" + }, + { + "nodeId": "parse5@4.0.0" + }, + { + "nodeId": "parse5-html-rewriting-stream@6.0.1" + }, + { + "nodeId": "postcss@8.3.0" + }, + { + "nodeId": "postcss-import@14.0.2" + }, + { + "nodeId": "postcss-loader@6.2.1" + }, + { + "nodeId": "raw-loader@4.0.2" + }, + { + "nodeId": "react-refresh@0.10.0" + }, + { + "nodeId": "rimraf@3.0.2" + }, + { + "nodeId": "rollup@2.79.1" + }, + { + "nodeId": "rollup-plugin-copy@3.5.0" + }, + { + "nodeId": "rollup-plugin-peer-deps-external@2.2.4" + }, + { + "nodeId": "rollup-plugin-postcss@4.0.2" + }, + { + "nodeId": "rollup-plugin-typescript2@0.30.0" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "rxjs-for-await@0.0.2" + }, + { + "nodeId": "sass@1.77.0" + }, + { + "nodeId": "sass-loader@12.6.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "source-map@0.7.3" + }, + { + "nodeId": "source-map-loader@3.0.2" + }, + { + "nodeId": "style-loader@3.3.4" + }, + { + "nodeId": "stylus@0.55.0" + }, + { + "nodeId": "stylus-loader@6.2.0" + }, + { + "nodeId": "terser@4.3.8" + }, + { + "nodeId": "terser-webpack-plugin@5.3.10" + }, + { + "nodeId": "ts-loader@9.5.1" + }, + { + "nodeId": "ts-node@9.1.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.4.1" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-dev-server@4.15.2" + }, + { + "nodeId": "webpack-merge@5.10.0" + }, + { + "nodeId": "webpack-sources@3.2.3" + }, + { + "nodeId": "webpack-subresource-integrity@1.5.2" + }, + { + "nodeId": "worker-plugin@3.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-proposal-decorators@7.24.1", + "pkgId": "@babel/plugin-proposal-decorators@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-create-class-features-plugin@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-decorators@7.24.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@babel/plugin-syntax-decorators@7.24.1", + "pkgId": "@babel/plugin-syntax-decorators@7.24.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/plugin-babel@5.3.1", + "pkgId": "@rollup/plugin-babel@5.3.1", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-module-imports@7.24.3" + }, + { + "nodeId": "@rollup/pluginutils@3.1.0" + }, + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/pluginutils@3.1.0", + "pkgId": "@rollup/pluginutils@3.1.0", + "deps": [ + { + "nodeId": "@types/estree@0.0.39" + }, + { + "nodeId": "estree-walker@1.0.1" + }, + { + "nodeId": "picomatch@2.3.1" + }, + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/estree@0.0.39", + "pkgId": "@types/estree@0.0.39", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "estree-walker@1.0.1", + "pkgId": "estree-walker@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup@2.79.1", + "pkgId": "rollup@2.79.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/plugin-commonjs@20.0.0", + "pkgId": "@rollup/plugin-commonjs@20.0.0", + "deps": [ + { + "nodeId": "@rollup/pluginutils@3.1.0" + }, + { + "nodeId": "commondir@1.0.1" + }, + { + "nodeId": "estree-walker@2.0.2" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "is-reference@1.2.1" + }, + { + "nodeId": "magic-string@0.25.9" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "estree-walker@2.0.2", + "pkgId": "estree-walker@2.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-reference@1.2.1", + "pkgId": "is-reference@1.2.1", + "deps": [ + { + "nodeId": "@types/estree@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "magic-string@0.25.9", + "pkgId": "magic-string@0.25.9", + "deps": [ + { + "nodeId": "sourcemap-codec@1.4.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sourcemap-codec@1.4.8", + "pkgId": "sourcemap-codec@1.4.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/plugin-image@2.1.1", + "pkgId": "@rollup/plugin-image@2.1.1", + "deps": [ + { + "nodeId": "@rollup/pluginutils@3.1.0" + }, + { + "nodeId": "mini-svg-data-uri@1.4.4" + }, + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mini-svg-data-uri@1.4.4", + "pkgId": "mini-svg-data-uri@1.4.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/plugin-json@4.1.0", + "pkgId": "@rollup/plugin-json@4.1.0", + "deps": [ + { + "nodeId": "@rollup/pluginutils@3.1.0" + }, + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/plugin-node-resolve@13.3.0", + "pkgId": "@rollup/plugin-node-resolve@13.3.0", + "deps": [ + { + "nodeId": "@rollup/pluginutils@3.1.0" + }, + { + "nodeId": "@types/resolve@1.17.1" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "is-builtin-module@3.2.1" + }, + { + "nodeId": "is-module@1.0.0" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/resolve@1.17.1", + "pkgId": "@types/resolve@1.17.1", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-builtin-module@3.2.1", + "pkgId": "is-builtin-module@3.2.1", + "deps": [ + { + "nodeId": "builtin-modules@3.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "builtin-modules@3.3.0", + "pkgId": "builtin-modules@3.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-module@1.0.0", + "pkgId": "is-module@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-const-enum@1.2.0", + "pkgId": "babel-plugin-const-enum@1.2.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-typescript@7.24.1" + }, + { + "nodeId": "@babel/traverse@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-macros@2.8.0", + "pkgId": "babel-plugin-macros@2.8.0", + "deps": [ + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "cosmiconfig@6.0.0" + }, + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-transform-async-to-promises@0.8.18", + "pkgId": "babel-plugin-transform-async-to-promises@0.8.18", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-transform-typescript-metadata@0.3.2", + "pkgId": "babel-plugin-transform-typescript-metadata@0.3.2", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/helper-plugin-utils@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "copy-webpack-plugin@9.1.0", + "pkgId": "copy-webpack-plugin@9.1.0", + "deps": [ + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "glob-parent@6.0.2" + }, + { + "nodeId": "globby@11.1.0" + }, + { + "nodeId": "normalize-path@3.0.0" + }, + { + "nodeId": "schema-utils@3.3.0" + }, + { + "nodeId": "serialize-javascript@6.0.2" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "glob-parent@6.0.2", + "pkgId": "glob-parent@6.0.2", + "deps": [ + { + "nodeId": "is-glob@4.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-loader@6.11.0", + "pkgId": "css-loader@6.11.0", + "deps": [ + { + "nodeId": "icss-utils@5.1.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-modules-extract-imports@3.1.0" + }, + { + "nodeId": "postcss-modules-local-by-default@4.0.5" + }, + { + "nodeId": "postcss-modules-scope@3.2.0" + }, + { + "nodeId": "postcss-modules-values@4.0.0" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + }, + { + "nodeId": "semver@7.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-minimizer-webpack-plugin@3.4.1", + "pkgId": "css-minimizer-webpack-plugin@3.4.1", + "deps": [ + { + "nodeId": "cssnano@5.1.15" + }, + { + "nodeId": "jest-worker@27.5.1" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "schema-utils@4.2.0" + }, + { + "nodeId": "serialize-javascript@6.0.2" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "schema-utils@4.2.0", + "pkgId": "schema-utils@4.2.0", + "deps": [ + { + "nodeId": "@types/json-schema@7.0.15" + }, + { + "nodeId": "ajv@8.13.0" + }, + { + "nodeId": "ajv-formats@2.1.1" + }, + { + "nodeId": "ajv-keywords@5.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ajv-formats@2.1.1", + "pkgId": "ajv-formats@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ajv-keywords@5.1.0", + "pkgId": "ajv-keywords@5.1.0", + "deps": [ + { + "nodeId": "ajv@8.13.0" + }, + { + "nodeId": "fast-deep-equal@3.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-server@0.12.3", + "pkgId": "http-server@0.12.3", + "deps": [ + { + "nodeId": "basic-auth@1.1.0" + }, + { + "nodeId": "colors@1.4.0" + }, + { + "nodeId": "corser@2.0.1" + }, + { + "nodeId": "ecstatic@3.3.2" + }, + { + "nodeId": "http-proxy@1.18.1" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "opener@1.5.2" + }, + { + "nodeId": "portfinder@1.0.32" + }, + { + "nodeId": "secure-compare@3.0.1" + }, + { + "nodeId": "union@0.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "basic-auth@1.1.0", + "pkgId": "basic-auth@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "colors@1.4.0", + "pkgId": "colors@1.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "corser@2.0.1", + "pkgId": "corser@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ecstatic@3.3.2", + "pkgId": "ecstatic@3.3.2", + "deps": [ + { + "nodeId": "he@1.2.0" + }, + { + "nodeId": "mime@1.6.0" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "url-join@2.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "url-join@2.0.5", + "pkgId": "url-join@2.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-proxy@1.18.1", + "pkgId": "http-proxy@1.18.1", + "deps": [ + { + "nodeId": "eventemitter3@4.0.7" + }, + { + "nodeId": "follow-redirects@1.15.6" + }, + { + "nodeId": "requires-port@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "opener@1.5.2", + "pkgId": "opener@1.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "portfinder@1.0.32", + "pkgId": "portfinder@1.0.32", + "deps": [ + { + "nodeId": "async@2.6.4" + }, + { + "nodeId": "debug@3.2.7" + }, + { + "nodeId": "mkdirp@0.5.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async@2.6.4", + "pkgId": "async@2.6.4", + "deps": [ + { + "nodeId": "lodash@4.17.21" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "secure-compare@3.0.1", + "pkgId": "secure-compare@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "union@0.5.0", + "pkgId": "union@0.5.0", + "deps": [ + { + "nodeId": "qs@6.12.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "less@3.12.2", + "pkgId": "less@3.12.2", + "deps": [ + { + "nodeId": "tslib@1.14.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "less-loader@10.2.0", + "pkgId": "less-loader@10.2.0", + "deps": [ + { + "nodeId": "klona@2.0.6" + }, + { + "nodeId": "less@3.12.2" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "license-webpack-plugin@2.3.15", + "pkgId": "license-webpack-plugin@2.3.15", + "deps": [ + { + "nodeId": "@types/webpack-sources@0.1.12" + }, + { + "nodeId": "webpack-sources@1.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/webpack-sources@0.1.12", + "pkgId": "@types/webpack-sources@0.1.12", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/source-list-map@0.1.6" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/source-list-map@0.1.6", + "pkgId": "@types/source-list-map@0.1.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loader-utils@1.2.3", + "pkgId": "loader-utils@1.2.3", + "deps": [ + { + "nodeId": "big.js@5.2.2" + }, + { + "nodeId": "emojis-list@2.1.0" + }, + { + "nodeId": "json5@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emojis-list@2.1.0", + "pkgId": "emojis-list@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mini-css-extract-plugin@2.9.0", + "pkgId": "mini-css-extract-plugin@2.9.0", + "deps": [ + { + "nodeId": "schema-utils@4.2.0" + }, + { + "nodeId": "tapable@2.2.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse5@4.0.0", + "pkgId": "parse5@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse5-html-rewriting-stream@6.0.1", + "pkgId": "parse5-html-rewriting-stream@6.0.1", + "deps": [ + { + "nodeId": "parse5@6.0.1" + }, + { + "nodeId": "parse5-sax-parser@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parse5-sax-parser@6.0.1", + "pkgId": "parse5-sax-parser@6.0.1", + "deps": [ + { + "nodeId": "parse5@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss@8.3.0", + "pkgId": "postcss@8.3.0", + "deps": [ + { + "nodeId": "colorette@1.4.0" + }, + { + "nodeId": "nanoid@3.3.7" + }, + { + "nodeId": "source-map-js@0.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-js@0.6.2", + "pkgId": "source-map-js@0.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-import@14.0.2", + "pkgId": "postcss-import@14.0.2", + "deps": [ + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-value-parser@4.2.0" + }, + { + "nodeId": "read-cache@1.0.0" + }, + { + "nodeId": "resolve@1.22.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "read-cache@1.0.0", + "pkgId": "read-cache@1.0.0", + "deps": [ + { + "nodeId": "pify@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pify@2.3.0", + "pkgId": "pify@2.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-loader@6.2.1", + "pkgId": "postcss-loader@6.2.1", + "deps": [ + { + "nodeId": "cosmiconfig@7.1.0" + }, + { + "nodeId": "klona@2.0.6" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "semver@7.6.1" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react-refresh@0.10.0", + "pkgId": "react-refresh@0.10.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup-plugin-copy@3.5.0", + "pkgId": "rollup-plugin-copy@3.5.0", + "deps": [ + { + "nodeId": "@types/fs-extra@8.1.5" + }, + { + "nodeId": "colorette@1.4.0" + }, + { + "nodeId": "fs-extra@8.1.0" + }, + { + "nodeId": "globby@10.0.1" + }, + { + "nodeId": "is-plain-object@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/fs-extra@8.1.5", + "pkgId": "@types/fs-extra@8.1.5", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "globby@10.0.1", + "pkgId": "globby@10.0.1", + "deps": [ + { + "nodeId": "@types/glob@7.2.0" + }, + { + "nodeId": "array-union@2.1.0" + }, + { + "nodeId": "dir-glob@3.0.1" + }, + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "merge2@1.4.1" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/glob@7.2.0", + "pkgId": "@types/glob@7.2.0", + "deps": [ + { + "nodeId": "@types/minimatch@5.1.2" + }, + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-plain-object@3.0.1", + "pkgId": "is-plain-object@3.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup-plugin-peer-deps-external@2.2.4", + "pkgId": "rollup-plugin-peer-deps-external@2.2.4", + "deps": [ + { + "nodeId": "rollup@2.79.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup-plugin-postcss@4.0.2", + "pkgId": "rollup-plugin-postcss@4.0.2", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "concat-with-sourcemaps@1.1.0" + }, + { + "nodeId": "cssnano@5.1.15" + }, + { + "nodeId": "import-cwd@3.0.0" + }, + { + "nodeId": "p-queue@6.6.2" + }, + { + "nodeId": "pify@5.0.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-load-config@3.1.4" + }, + { + "nodeId": "postcss-modules@4.3.1" + }, + { + "nodeId": "promise.series@0.2.0" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "rollup-pluginutils@2.8.2" + }, + { + "nodeId": "safe-identifier@0.4.2" + }, + { + "nodeId": "style-inject@0.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "concat-with-sourcemaps@1.1.0", + "pkgId": "concat-with-sourcemaps@1.1.0", + "deps": [ + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "import-cwd@3.0.0", + "pkgId": "import-cwd@3.0.0", + "deps": [ + { + "nodeId": "import-from@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "import-from@3.0.0", + "pkgId": "import-from@3.0.0", + "deps": [ + { + "nodeId": "resolve-from@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pify@5.0.0", + "pkgId": "pify@5.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-load-config@3.1.4", + "pkgId": "postcss-load-config@3.1.4", + "deps": [ + { + "nodeId": "lilconfig@2.1.0" + }, + { + "nodeId": "yaml@1.10.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "postcss-modules@4.3.1", + "pkgId": "postcss-modules@4.3.1", + "deps": [ + { + "nodeId": "generic-names@4.0.0" + }, + { + "nodeId": "icss-replace-symbols@1.1.0" + }, + { + "nodeId": "lodash.camelcase@4.3.0" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-modules-extract-imports@3.1.0" + }, + { + "nodeId": "postcss-modules-local-by-default@4.0.5" + }, + { + "nodeId": "postcss-modules-scope@3.2.0" + }, + { + "nodeId": "postcss-modules-values@4.0.0" + }, + { + "nodeId": "string-hash@1.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "generic-names@4.0.0", + "pkgId": "generic-names@4.0.0", + "deps": [ + { + "nodeId": "loader-utils@3.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "icss-replace-symbols@1.1.0", + "pkgId": "icss-replace-symbols@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lodash.camelcase@4.3.0", + "pkgId": "lodash.camelcase@4.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-hash@1.1.3", + "pkgId": "string-hash@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "promise.series@0.2.0", + "pkgId": "promise.series@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup-pluginutils@2.8.2", + "pkgId": "rollup-pluginutils@2.8.2", + "deps": [ + { + "nodeId": "estree-walker@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "estree-walker@0.6.1", + "pkgId": "estree-walker@0.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-identifier@0.4.2", + "pkgId": "safe-identifier@0.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "style-inject@0.3.0", + "pkgId": "style-inject@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup-plugin-typescript2@0.30.0", + "pkgId": "rollup-plugin-typescript2@0.30.0", + "deps": [ + { + "nodeId": "@rollup/pluginutils@4.2.1" + }, + { + "nodeId": "find-cache-dir@3.3.2" + }, + { + "nodeId": "fs-extra@8.1.0" + }, + { + "nodeId": "resolve@1.20.0" + }, + { + "nodeId": "rollup@2.79.1" + }, + { + "nodeId": "tslib@2.1.0" + }, + { + "nodeId": "typescript@4.9.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@rollup/pluginutils@4.2.1", + "pkgId": "@rollup/pluginutils@4.2.1", + "deps": [ + { + "nodeId": "estree-walker@2.0.2" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve@1.20.0", + "pkgId": "resolve@1.20.0", + "deps": [ + { + "nodeId": "is-core-module@2.13.1" + }, + { + "nodeId": "path-parse@1.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tslib@2.1.0", + "pkgId": "tslib@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sass@1.77.0", + "pkgId": "sass@1.77.0", + "deps": [ + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "immutable@4.3.5" + }, + { + "nodeId": "source-map-js@1.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "immutable@4.3.5", + "pkgId": "immutable@4.3.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sass-loader@12.6.0", + "pkgId": "sass-loader@12.6.0", + "deps": [ + { + "nodeId": "klona@2.0.6" + }, + { + "nodeId": "neo-async@2.6.2" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map@0.7.3", + "pkgId": "source-map@0.7.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-loader@3.0.2", + "pkgId": "source-map-loader@3.0.2", + "deps": [ + { + "nodeId": "abab@2.0.6" + }, + { + "nodeId": "iconv-lite@0.6.3" + }, + { + "nodeId": "source-map-js@1.2.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.6.3", + "pkgId": "iconv-lite@0.6.3", + "deps": [ + { + "nodeId": "safer-buffer@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "style-loader@3.3.4", + "pkgId": "style-loader@3.3.4", + "deps": [ + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stylus@0.55.0", + "pkgId": "stylus@0.55.0", + "deps": [ + { + "nodeId": "css@3.0.0" + }, + { + "nodeId": "debug@3.1.0" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "mkdirp@1.0.4" + }, + { + "nodeId": "safer-buffer@2.1.2" + }, + { + "nodeId": "sax@1.2.4" + }, + { + "nodeId": "semver@6.3.1" + }, + { + "nodeId": "source-map@0.7.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css@3.0.0", + "pkgId": "css@3.0.0", + "deps": [ + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "source-map-resolve@0.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-resolve@0.6.0", + "pkgId": "source-map-resolve@0.6.0", + "deps": [ + { + "nodeId": "atob@2.1.2" + }, + { + "nodeId": "decode-uri-component@0.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "atob@2.1.2", + "pkgId": "atob@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@3.1.0", + "pkgId": "debug@3.1.0", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sax@1.2.4", + "pkgId": "sax@1.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stylus-loader@6.2.0", + "pkgId": "stylus-loader@6.2.0", + "deps": [ + { + "nodeId": "fast-glob@3.3.2" + }, + { + "nodeId": "klona@2.0.6" + }, + { + "nodeId": "normalize-path@3.0.0" + }, + { + "nodeId": "stylus@0.55.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "terser@4.3.8", + "pkgId": "terser@4.3.8", + "deps": [ + { + "nodeId": "acorn@8.11.3" + }, + { + "nodeId": "commander@2.20.3" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "source-map-support@0.5.21" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ts-node@9.1.1", + "pkgId": "ts-node@9.1.1", + "deps": [ + { + "nodeId": "arg@4.1.3" + }, + { + "nodeId": "create-require@1.1.1" + }, + { + "nodeId": "diff@4.0.2" + }, + { + "nodeId": "make-error@1.3.6" + }, + { + "nodeId": "source-map-support@0.5.21" + }, + { + "nodeId": "typescript@4.9.5" + }, + { + "nodeId": "yn@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arg@4.1.3", + "pkgId": "arg@4.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "create-require@1.1.1", + "pkgId": "create-require@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "diff@4.0.2", + "pkgId": "diff@4.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "make-error@1.3.6", + "pkgId": "make-error@1.3.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yn@3.1.1", + "pkgId": "yn@3.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-dev-server@4.15.2", + "pkgId": "webpack-dev-server@4.15.2", + "deps": [ + { + "nodeId": "@types/bonjour@3.5.13" + }, + { + "nodeId": "@types/connect-history-api-fallback@1.5.4" + }, + { + "nodeId": "@types/express@4.17.21" + }, + { + "nodeId": "@types/serve-index@1.9.4" + }, + { + "nodeId": "@types/serve-static@1.15.7" + }, + { + "nodeId": "@types/sockjs@0.3.36" + }, + { + "nodeId": "@types/ws@8.5.10" + }, + { + "nodeId": "ansi-html-community@0.0.8" + }, + { + "nodeId": "bonjour-service@1.2.1" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "colorette@2.0.20" + }, + { + "nodeId": "compression@1.7.4" + }, + { + "nodeId": "connect-history-api-fallback@2.0.0" + }, + { + "nodeId": "default-gateway@6.0.3" + }, + { + "nodeId": "express@4.19.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "html-entities@2.5.2" + }, + { + "nodeId": "http-proxy-middleware@2.0.6" + }, + { + "nodeId": "ipaddr.js@2.2.0" + }, + { + "nodeId": "launch-editor@2.6.1" + }, + { + "nodeId": "open@8.4.2" + }, + { + "nodeId": "p-retry@4.6.2" + }, + { + "nodeId": "rimraf@3.0.2" + }, + { + "nodeId": "schema-utils@4.2.0" + }, + { + "nodeId": "selfsigned@2.4.1" + }, + { + "nodeId": "serve-index@1.9.1" + }, + { + "nodeId": "sockjs@0.3.24" + }, + { + "nodeId": "spdy@4.0.2" + }, + { + "nodeId": "webpack-dev-middleware@5.3.4" + }, + { + "nodeId": "ws@8.17.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/bonjour@3.5.13", + "pkgId": "@types/bonjour@3.5.13", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/connect-history-api-fallback@1.5.4", + "pkgId": "@types/connect-history-api-fallback@1.5.4", + "deps": [ + { + "nodeId": "@types/express-serve-static-core@4.19.0" + }, + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/express-serve-static-core@4.19.0", + "pkgId": "@types/express-serve-static-core@4.19.0", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/qs@6.9.15" + }, + { + "nodeId": "@types/range-parser@1.2.7" + }, + { + "nodeId": "@types/send@0.17.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/qs@6.9.15", + "pkgId": "@types/qs@6.9.15", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/range-parser@1.2.7", + "pkgId": "@types/range-parser@1.2.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/send@0.17.4", + "pkgId": "@types/send@0.17.4", + "deps": [ + { + "nodeId": "@types/mime@1.3.5" + }, + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/mime@1.3.5", + "pkgId": "@types/mime@1.3.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/express@4.17.21", + "pkgId": "@types/express@4.17.21", + "deps": [ + { + "nodeId": "@types/body-parser@1.19.5" + }, + { + "nodeId": "@types/express-serve-static-core@4.19.0" + }, + { + "nodeId": "@types/qs@6.9.15" + }, + { + "nodeId": "@types/serve-static@1.15.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/body-parser@1.19.5", + "pkgId": "@types/body-parser@1.19.5", + "deps": [ + { + "nodeId": "@types/connect@3.4.38" + }, + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/connect@3.4.38", + "pkgId": "@types/connect@3.4.38", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/serve-static@1.15.7", + "pkgId": "@types/serve-static@1.15.7", + "deps": [ + { + "nodeId": "@types/http-errors@2.0.4" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/send@0.17.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/http-errors@2.0.4", + "pkgId": "@types/http-errors@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/serve-index@1.9.4", + "pkgId": "@types/serve-index@1.9.4", + "deps": [ + { + "nodeId": "@types/express@4.17.21" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/sockjs@0.3.36", + "pkgId": "@types/sockjs@0.3.36", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/ws@8.5.10", + "pkgId": "@types/ws@8.5.10", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bonjour-service@1.2.1", + "pkgId": "bonjour-service@1.2.1", + "deps": [ + { + "nodeId": "fast-deep-equal@3.1.3" + }, + { + "nodeId": "multicast-dns@7.2.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "multicast-dns@7.2.5", + "pkgId": "multicast-dns@7.2.5", + "deps": [ + { + "nodeId": "dns-packet@5.6.1" + }, + { + "nodeId": "thunky@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dns-packet@5.6.1", + "pkgId": "dns-packet@5.6.1", + "deps": [ + { + "nodeId": "@leichtgewicht/ip-codec@2.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@leichtgewicht/ip-codec@2.0.5", + "pkgId": "@leichtgewicht/ip-codec@2.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "thunky@1.1.0", + "pkgId": "thunky@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "connect-history-api-fallback@2.0.0", + "pkgId": "connect-history-api-fallback@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "default-gateway@6.0.3", + "pkgId": "default-gateway@6.0.3", + "deps": [ + { + "nodeId": "execa@5.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-proxy-middleware@2.0.6", + "pkgId": "http-proxy-middleware@2.0.6", + "deps": [ + { + "nodeId": "@types/http-proxy@1.17.14" + }, + { + "nodeId": "http-proxy@1.18.1" + }, + { + "nodeId": "is-glob@4.0.3" + }, + { + "nodeId": "is-plain-obj@3.0.0" + }, + { + "nodeId": "micromatch@4.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-plain-obj@3.0.0", + "pkgId": "is-plain-obj@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ipaddr.js@2.2.0", + "pkgId": "ipaddr.js@2.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "launch-editor@2.6.1", + "pkgId": "launch-editor@2.6.1", + "deps": [ + { + "nodeId": "picocolors@1.0.0" + }, + { + "nodeId": "shell-quote@1.8.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "p-retry@4.6.2", + "pkgId": "p-retry@4.6.2", + "deps": [ + { + "nodeId": "@types/retry@0.12.0" + }, + { + "nodeId": "retry@0.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/retry@0.12.0", + "pkgId": "@types/retry@0.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "retry@0.13.1", + "pkgId": "retry@0.13.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serve-index@1.9.1", + "pkgId": "serve-index@1.9.1", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "batch@0.6.1" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "http-errors@1.6.3" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "parseurl@1.3.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "batch@0.6.1", + "pkgId": "batch@0.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-errors@1.6.3", + "pkgId": "http-errors@1.6.3", + "deps": [ + { + "nodeId": "depd@1.1.2" + }, + { + "nodeId": "inherits@2.0.3" + }, + { + "nodeId": "setprototypeof@1.1.0" + }, + { + "nodeId": "statuses@1.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.3", + "pkgId": "inherits@2.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "setprototypeof@1.1.0", + "pkgId": "setprototypeof@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sockjs@0.3.24", + "pkgId": "sockjs@0.3.24", + "deps": [ + { + "nodeId": "faye-websocket@0.11.4" + }, + { + "nodeId": "uuid@8.3.2" + }, + { + "nodeId": "websocket-driver@0.7.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "faye-websocket@0.11.4", + "pkgId": "faye-websocket@0.11.4", + "deps": [ + { + "nodeId": "websocket-driver@0.7.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "websocket-driver@0.7.4", + "pkgId": "websocket-driver@0.7.4", + "deps": [ + { + "nodeId": "http-parser-js@0.5.8" + }, + { + "nodeId": "safe-buffer@5.2.1" + }, + { + "nodeId": "websocket-extensions@0.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-parser-js@0.5.8", + "pkgId": "http-parser-js@0.5.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "websocket-extensions@0.1.4", + "pkgId": "websocket-extensions@0.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "spdy@4.0.2", + "pkgId": "spdy@4.0.2", + "deps": [ + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "handle-thing@2.0.1" + }, + { + "nodeId": "http-deceiver@1.2.7" + }, + { + "nodeId": "select-hose@2.0.0" + }, + { + "nodeId": "spdy-transport@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "handle-thing@2.0.1", + "pkgId": "handle-thing@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-deceiver@1.2.7", + "pkgId": "http-deceiver@1.2.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "select-hose@2.0.0", + "pkgId": "select-hose@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "spdy-transport@3.0.0", + "pkgId": "spdy-transport@3.0.0", + "deps": [ + { + "nodeId": "debug@4.3.4" + }, + { + "nodeId": "detect-node@2.1.0" + }, + { + "nodeId": "hpack.js@2.1.6" + }, + { + "nodeId": "obuf@1.1.2" + }, + { + "nodeId": "readable-stream@3.6.2" + }, + { + "nodeId": "wbuf@1.7.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "detect-node@2.1.0", + "pkgId": "detect-node@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hpack.js@2.1.6", + "pkgId": "hpack.js@2.1.6", + "deps": [ + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "obuf@1.1.2" + }, + { + "nodeId": "readable-stream@2.3.8" + }, + { + "nodeId": "wbuf@1.7.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "obuf@1.1.2", + "pkgId": "obuf@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wbuf@1.7.3", + "pkgId": "wbuf@1.7.3", + "deps": [ + { + "nodeId": "minimalistic-assert@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimalistic-assert@1.0.1", + "pkgId": "minimalistic-assert@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-dev-middleware@5.3.4", + "pkgId": "webpack-dev-middleware@5.3.4", + "deps": [ + { + "nodeId": "colorette@2.0.20" + }, + { + "nodeId": "memfs@3.5.3" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "schema-utils@4.2.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ws@8.17.0", + "pkgId": "ws@8.17.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-subresource-integrity@1.5.2", + "pkgId": "webpack-subresource-integrity@1.5.2", + "deps": [ + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-sources@1.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "worker-plugin@3.2.0", + "pkgId": "worker-plugin@3.2.0", + "deps": [ + { + "nodeId": "loader-utils@1.2.3" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@storybook/node-logger@6.1.20", + "pkgId": "@storybook/node-logger@6.1.20", + "deps": [ + { + "nodeId": "@types/npmlog@4.1.6" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "npmlog@4.1.2" + }, + { + "nodeId": "pretty-hrtime@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/npmlog@4.1.6", + "pkgId": "@types/npmlog@4.1.6", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "npmlog@4.1.2", + "pkgId": "npmlog@4.1.2", + "deps": [ + { + "nodeId": "are-we-there-yet@1.1.7" + }, + { + "nodeId": "console-control-strings@1.1.0" + }, + { + "nodeId": "gauge@2.7.4" + }, + { + "nodeId": "set-blocking@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "are-we-there-yet@1.1.7", + "pkgId": "are-we-there-yet@1.1.7", + "deps": [ + { + "nodeId": "delegates@1.0.0" + }, + { + "nodeId": "readable-stream@2.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "delegates@1.0.0", + "pkgId": "delegates@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "console-control-strings@1.1.0", + "pkgId": "console-control-strings@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gauge@2.7.4", + "pkgId": "gauge@2.7.4", + "deps": [ + { + "nodeId": "aproba@1.2.0" + }, + { + "nodeId": "console-control-strings@1.1.0" + }, + { + "nodeId": "has-unicode@2.0.1" + }, + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "string-width@1.0.2" + }, + { + "nodeId": "strip-ansi@3.0.1" + }, + { + "nodeId": "wide-align@1.1.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "aproba@1.2.0", + "pkgId": "aproba@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-unicode@2.0.1", + "pkgId": "has-unicode@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-width@1.0.2", + "pkgId": "string-width@1.0.2", + "deps": [ + { + "nodeId": "code-point-at@1.1.0" + }, + { + "nodeId": "is-fullwidth-code-point@1.0.0" + }, + { + "nodeId": "strip-ansi@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "code-point-at@1.1.0", + "pkgId": "code-point-at@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-fullwidth-code-point@1.0.0", + "pkgId": "is-fullwidth-code-point@1.0.0", + "deps": [ + { + "nodeId": "number-is-nan@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "number-is-nan@1.0.1", + "pkgId": "number-is-nan@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wide-align@1.1.5", + "pkgId": "wide-align@1.1.5", + "deps": [ + { + "nodeId": "string-width@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-hrtime@1.0.3", + "pkgId": "pretty-hrtime@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/webpack@5.5.0", + "pkgId": "@svgr/webpack@5.5.0", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/plugin-transform-react-constant-elements@7.24.1" + }, + { + "nodeId": "@babel/preset-env@7.12.13" + }, + { + "nodeId": "@babel/preset-react@7.12.13" + }, + { + "nodeId": "@svgr/core@5.5.0" + }, + { + "nodeId": "@svgr/plugin-jsx@5.5.0" + }, + { + "nodeId": "@svgr/plugin-svgo@5.5.0" + }, + { + "nodeId": "loader-utils@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/core@5.5.0", + "pkgId": "@svgr/core@5.5.0", + "deps": [ + { + "nodeId": "@svgr/plugin-jsx@5.5.0" + }, + { + "nodeId": "camelcase@6.3.0" + }, + { + "nodeId": "cosmiconfig@7.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/plugin-jsx@5.5.0", + "pkgId": "@svgr/plugin-jsx@5.5.0", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@svgr/babel-preset@5.5.0" + }, + { + "nodeId": "@svgr/hast-util-to-babel-ast@5.5.0" + }, + { + "nodeId": "svg-parser@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-preset@5.5.0", + "pkgId": "@svgr/babel-preset@5.5.0", + "deps": [ + { + "nodeId": "@svgr/babel-plugin-add-jsx-attribute@5.4.0" + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-attribute@5.4.0" + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1" + }, + { + "nodeId": "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1" + }, + { + "nodeId": "@svgr/babel-plugin-svg-dynamic-title@5.4.0" + }, + { + "nodeId": "@svgr/babel-plugin-svg-em-dimensions@5.4.0" + }, + { + "nodeId": "@svgr/babel-plugin-transform-react-native-svg@5.4.0" + }, + { + "nodeId": "@svgr/babel-plugin-transform-svg-component@5.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-add-jsx-attribute@5.4.0", + "pkgId": "@svgr/babel-plugin-add-jsx-attribute@5.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-attribute@5.4.0", + "pkgId": "@svgr/babel-plugin-remove-jsx-attribute@5.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1", + "pkgId": "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1", + "pkgId": "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-svg-dynamic-title@5.4.0", + "pkgId": "@svgr/babel-plugin-svg-dynamic-title@5.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-svg-em-dimensions@5.4.0", + "pkgId": "@svgr/babel-plugin-svg-em-dimensions@5.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-transform-react-native-svg@5.4.0", + "pkgId": "@svgr/babel-plugin-transform-react-native-svg@5.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/babel-plugin-transform-svg-component@5.5.0", + "pkgId": "@svgr/babel-plugin-transform-svg-component@5.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/hast-util-to-babel-ast@5.5.0", + "pkgId": "@svgr/hast-util-to-babel-ast@5.5.0", + "deps": [ + { + "nodeId": "@babel/types@7.24.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@svgr/plugin-svgo@5.5.0", + "pkgId": "@svgr/plugin-svgo@5.5.0", + "deps": [ + { + "nodeId": "cosmiconfig@7.1.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "svgo@1.3.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "svgo@1.3.2", + "pkgId": "svgo@1.3.2", + "deps": [ + { + "nodeId": "chalk@2.4.2" + }, + { + "nodeId": "coa@2.0.2" + }, + { + "nodeId": "css-select@2.1.0" + }, + { + "nodeId": "css-select-base-adapter@0.1.1" + }, + { + "nodeId": "css-tree@1.0.0-alpha.37" + }, + { + "nodeId": "csso@4.2.0" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "mkdirp@0.5.6" + }, + { + "nodeId": "object.values@1.2.0" + }, + { + "nodeId": "sax@1.2.4" + }, + { + "nodeId": "stable@0.1.8" + }, + { + "nodeId": "unquote@1.1.1" + }, + { + "nodeId": "util.promisify@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "coa@2.0.2", + "pkgId": "coa@2.0.2", + "deps": [ + { + "nodeId": "@types/q@1.5.8" + }, + { + "nodeId": "chalk@2.4.2" + }, + { + "nodeId": "q@1.5.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@types/q@1.5.8", + "pkgId": "@types/q@1.5.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "q@1.5.1", + "pkgId": "q@1.5.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-select@2.1.0", + "pkgId": "css-select@2.1.0", + "deps": [ + { + "nodeId": "boolbase@1.0.0" + }, + { + "nodeId": "css-what@3.4.2" + }, + { + "nodeId": "domutils@1.7.0" + }, + { + "nodeId": "nth-check@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-what@3.4.2", + "pkgId": "css-what@3.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-select-base-adapter@0.1.1", + "pkgId": "css-select-base-adapter@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "css-tree@1.0.0-alpha.37", + "pkgId": "css-tree@1.0.0-alpha.37", + "deps": [ + { + "nodeId": "mdn-data@2.0.4" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mdn-data@2.0.4", + "pkgId": "mdn-data@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unquote@1.1.1", + "pkgId": "unquote@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "util.promisify@1.0.1", + "pkgId": "util.promisify@1.0.1", + "deps": [ + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "object.getownpropertydescriptors@2.1.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.getownpropertydescriptors@2.1.8", + "pkgId": "object.getownpropertydescriptors@2.1.8", + "deps": [ + { + "nodeId": "array.prototype.reduce@1.0.7" + }, + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "safe-array-concat@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array.prototype.reduce@1.0.7", + "pkgId": "array.prototype.reduce@1.0.7", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "define-properties@1.2.1" + }, + { + "nodeId": "es-abstract@1.23.3" + }, + { + "nodeId": "es-array-method-boxes-properly@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "es-object-atoms@1.0.0" + }, + { + "nodeId": "is-string@1.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-array-method-boxes-properly@1.0.0", + "pkgId": "es-array-method-boxes-properly@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gatsby-codemods@3.25.0", + "pkgId": "gatsby-codemods@3.25.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-syntax-jsx@7.24.1" + }, + { + "nodeId": "@babel/plugin-syntax-typescript@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "graphql@15.8.0" + }, + { + "nodeId": "jscodeshift@0.12.0" + }, + { + "nodeId": "recast@0.20.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jscodeshift@0.12.0", + "pkgId": "jscodeshift@0.12.0", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/parser@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-optional-chaining@7.21.0" + }, + { + "nodeId": "@babel/plugin-transform-modules-commonjs@7.24.1" + }, + { + "nodeId": "@babel/preset-env@7.12.13" + }, + { + "nodeId": "@babel/preset-flow@7.24.1" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@babel/register@7.23.7" + }, + { + "nodeId": "babel-core@7.0.0-bridge.0" + }, + { + "nodeId": "colors@1.4.0" + }, + { + "nodeId": "flow-parser@0.235.1" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "micromatch@3.1.10" + }, + { + "nodeId": "neo-async@2.6.2" + }, + { + "nodeId": "node-dir@0.1.17" + }, + { + "nodeId": "recast@0.20.5" + }, + { + "nodeId": "temp@0.8.4" + }, + { + "nodeId": "write-file-atomic@2.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "micromatch@3.1.10", + "pkgId": "micromatch@3.1.10", + "deps": [ + { + "nodeId": "arr-diff@4.0.0" + }, + { + "nodeId": "array-unique@0.3.2" + }, + { + "nodeId": "braces@2.3.2" + }, + { + "nodeId": "define-property@2.0.2" + }, + { + "nodeId": "extend-shallow@3.0.2" + }, + { + "nodeId": "extglob@2.0.4" + }, + { + "nodeId": "fragment-cache@0.2.1" + }, + { + "nodeId": "kind-of@6.0.3" + }, + { + "nodeId": "nanomatch@1.2.13" + }, + { + "nodeId": "object.pick@1.3.0" + }, + { + "nodeId": "regex-not@1.0.2" + }, + { + "nodeId": "snapdragon@0.8.2" + }, + { + "nodeId": "to-regex@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arr-diff@4.0.0", + "pkgId": "arr-diff@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-unique@0.3.2", + "pkgId": "array-unique@0.3.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "braces@2.3.2", + "pkgId": "braces@2.3.2", + "deps": [ + { + "nodeId": "arr-flatten@1.1.0" + }, + { + "nodeId": "array-unique@0.3.2" + }, + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "fill-range@4.0.0" + }, + { + "nodeId": "isobject@3.0.1" + }, + { + "nodeId": "repeat-element@1.1.4" + }, + { + "nodeId": "snapdragon@0.8.2" + }, + { + "nodeId": "snapdragon-node@2.1.1" + }, + { + "nodeId": "split-string@3.1.0" + }, + { + "nodeId": "to-regex@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arr-flatten@1.1.0", + "pkgId": "arr-flatten@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fill-range@4.0.0", + "pkgId": "fill-range@4.0.0", + "deps": [ + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "is-number@3.0.0" + }, + { + "nodeId": "repeat-string@1.6.1" + }, + { + "nodeId": "to-regex-range@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-number@3.0.0", + "pkgId": "is-number@3.0.0", + "deps": [ + { + "nodeId": "kind-of@3.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "kind-of@3.2.2", + "pkgId": "kind-of@3.2.2", + "deps": [ + { + "nodeId": "is-buffer@1.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-buffer@1.1.6", + "pkgId": "is-buffer@1.1.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "to-regex-range@2.1.1", + "pkgId": "to-regex-range@2.1.1", + "deps": [ + { + "nodeId": "is-number@3.0.0" + }, + { + "nodeId": "repeat-string@1.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "repeat-element@1.1.4", + "pkgId": "repeat-element@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "snapdragon@0.8.2", + "pkgId": "snapdragon@0.8.2", + "deps": [ + { + "nodeId": "base@0.11.2" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "define-property@0.2.5" + }, + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "map-cache@0.2.2" + }, + { + "nodeId": "source-map@0.5.7" + }, + { + "nodeId": "source-map-resolve@0.5.3" + }, + { + "nodeId": "use@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "base@0.11.2", + "pkgId": "base@0.11.2", + "deps": [ + { + "nodeId": "cache-base@1.0.1" + }, + { + "nodeId": "class-utils@0.3.6" + }, + { + "nodeId": "component-emitter@1.3.1" + }, + { + "nodeId": "define-property@1.0.0" + }, + { + "nodeId": "isobject@3.0.1" + }, + { + "nodeId": "mixin-deep@1.3.2" + }, + { + "nodeId": "pascalcase@0.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cache-base@1.0.1", + "pkgId": "cache-base@1.0.1", + "deps": [ + { + "nodeId": "collection-visit@1.0.0" + }, + { + "nodeId": "component-emitter@1.3.1" + }, + { + "nodeId": "get-value@2.0.6" + }, + { + "nodeId": "has-value@1.0.0" + }, + { + "nodeId": "isobject@3.0.1" + }, + { + "nodeId": "set-value@2.0.1" + }, + { + "nodeId": "to-object-path@0.3.0" + }, + { + "nodeId": "union-value@1.0.1" + }, + { + "nodeId": "unset-value@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "collection-visit@1.0.0", + "pkgId": "collection-visit@1.0.0", + "deps": [ + { + "nodeId": "map-visit@1.0.0" + }, + { + "nodeId": "object-visit@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "map-visit@1.0.0", + "pkgId": "map-visit@1.0.0", + "deps": [ + { + "nodeId": "object-visit@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-visit@1.0.1", + "pkgId": "object-visit@1.0.1", + "deps": [ + { + "nodeId": "isobject@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "component-emitter@1.3.1", + "pkgId": "component-emitter@1.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-value@2.0.6", + "pkgId": "get-value@2.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-value@1.0.0", + "pkgId": "has-value@1.0.0", + "deps": [ + { + "nodeId": "get-value@2.0.6" + }, + { + "nodeId": "has-values@1.0.0" + }, + { + "nodeId": "isobject@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-values@1.0.0", + "pkgId": "has-values@1.0.0", + "deps": [ + { + "nodeId": "is-number@3.0.0" + }, + { + "nodeId": "kind-of@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "kind-of@4.0.0", + "pkgId": "kind-of@4.0.0", + "deps": [ + { + "nodeId": "is-buffer@1.1.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "set-value@2.0.1", + "pkgId": "set-value@2.0.1", + "deps": [ + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "is-extendable@0.1.1" + }, + { + "nodeId": "is-plain-object@2.0.4" + }, + { + "nodeId": "split-string@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "split-string@3.1.0", + "pkgId": "split-string@3.1.0", + "deps": [ + { + "nodeId": "extend-shallow@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "extend-shallow@3.0.2", + "pkgId": "extend-shallow@3.0.2", + "deps": [ + { + "nodeId": "assign-symbols@1.0.0" + }, + { + "nodeId": "is-extendable@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "assign-symbols@1.0.0", + "pkgId": "assign-symbols@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-extendable@1.0.1", + "pkgId": "is-extendable@1.0.1", + "deps": [ + { + "nodeId": "is-plain-object@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "to-object-path@0.3.0", + "pkgId": "to-object-path@0.3.0", + "deps": [ + { + "nodeId": "kind-of@3.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "union-value@1.0.1", + "pkgId": "union-value@1.0.1", + "deps": [ + { + "nodeId": "arr-union@3.1.0" + }, + { + "nodeId": "get-value@2.0.6" + }, + { + "nodeId": "is-extendable@0.1.1" + }, + { + "nodeId": "set-value@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "arr-union@3.1.0", + "pkgId": "arr-union@3.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unset-value@1.0.0", + "pkgId": "unset-value@1.0.0", + "deps": [ + { + "nodeId": "has-value@0.3.1" + }, + { + "nodeId": "isobject@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-value@0.3.1", + "pkgId": "has-value@0.3.1", + "deps": [ + { + "nodeId": "get-value@2.0.6" + }, + { + "nodeId": "has-values@0.1.4" + }, + { + "nodeId": "isobject@2.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-values@0.1.4", + "pkgId": "has-values@0.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isobject@2.1.0", + "pkgId": "isobject@2.1.0", + "deps": [ + { + "nodeId": "isarray@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "class-utils@0.3.6", + "pkgId": "class-utils@0.3.6", + "deps": [ + { + "nodeId": "arr-union@3.1.0" + }, + { + "nodeId": "define-property@0.2.5" + }, + { + "nodeId": "isobject@3.0.1" + }, + { + "nodeId": "static-extend@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-property@0.2.5", + "pkgId": "define-property@0.2.5", + "deps": [ + { + "nodeId": "is-descriptor@0.1.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-descriptor@0.1.7", + "pkgId": "is-descriptor@0.1.7", + "deps": [ + { + "nodeId": "is-accessor-descriptor@1.0.1" + }, + { + "nodeId": "is-data-descriptor@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-accessor-descriptor@1.0.1", + "pkgId": "is-accessor-descriptor@1.0.1", + "deps": [ + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-data-descriptor@1.0.1", + "pkgId": "is-data-descriptor@1.0.1", + "deps": [ + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "static-extend@0.1.2", + "pkgId": "static-extend@0.1.2", + "deps": [ + { + "nodeId": "define-property@0.2.5" + }, + { + "nodeId": "object-copy@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-copy@0.1.0", + "pkgId": "object-copy@0.1.0", + "deps": [ + { + "nodeId": "copy-descriptor@0.1.1" + }, + { + "nodeId": "define-property@0.2.5" + }, + { + "nodeId": "kind-of@3.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "copy-descriptor@0.1.1", + "pkgId": "copy-descriptor@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-property@1.0.0", + "pkgId": "define-property@1.0.0", + "deps": [ + { + "nodeId": "is-descriptor@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-descriptor@1.0.3", + "pkgId": "is-descriptor@1.0.3", + "deps": [ + { + "nodeId": "is-accessor-descriptor@1.0.1" + }, + { + "nodeId": "is-data-descriptor@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mixin-deep@1.3.2", + "pkgId": "mixin-deep@1.3.2", + "deps": [ + { + "nodeId": "for-in@1.0.2" + }, + { + "nodeId": "is-extendable@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "for-in@1.0.2", + "pkgId": "for-in@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pascalcase@0.1.1", + "pkgId": "pascalcase@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-resolve@0.5.3", + "pkgId": "source-map-resolve@0.5.3", + "deps": [ + { + "nodeId": "atob@2.1.2" + }, + { + "nodeId": "decode-uri-component@0.2.2" + }, + { + "nodeId": "resolve-url@0.2.1" + }, + { + "nodeId": "source-map-url@0.4.1" + }, + { + "nodeId": "urix@0.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resolve-url@0.2.1", + "pkgId": "resolve-url@0.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-url@0.4.1", + "pkgId": "source-map-url@0.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "urix@0.1.0", + "pkgId": "urix@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "use@3.1.1", + "pkgId": "use@3.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "snapdragon-node@2.1.1", + "pkgId": "snapdragon-node@2.1.1", + "deps": [ + { + "nodeId": "define-property@1.0.0" + }, + { + "nodeId": "isobject@3.0.1" + }, + { + "nodeId": "snapdragon-util@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "snapdragon-util@3.0.1", + "pkgId": "snapdragon-util@3.0.1", + "deps": [ + { + "nodeId": "kind-of@3.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "to-regex@3.0.2", + "pkgId": "to-regex@3.0.2", + "deps": [ + { + "nodeId": "define-property@2.0.2" + }, + { + "nodeId": "extend-shallow@3.0.2" + }, + { + "nodeId": "regex-not@1.0.2" + }, + { + "nodeId": "safe-regex@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-property@2.0.2", + "pkgId": "define-property@2.0.2", + "deps": [ + { + "nodeId": "is-descriptor@1.0.3" + }, + { + "nodeId": "isobject@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regex-not@1.0.2", + "pkgId": "regex-not@1.0.2", + "deps": [ + { + "nodeId": "extend-shallow@3.0.2" + }, + { + "nodeId": "safe-regex@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-regex@1.1.0", + "pkgId": "safe-regex@1.1.0", + "deps": [ + { + "nodeId": "ret@0.1.15" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ret@0.1.15", + "pkgId": "ret@0.1.15", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "extglob@2.0.4", + "pkgId": "extglob@2.0.4", + "deps": [ + { + "nodeId": "array-unique@0.3.2" + }, + { + "nodeId": "define-property@1.0.0" + }, + { + "nodeId": "expand-brackets@2.1.4" + }, + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "fragment-cache@0.2.1" + }, + { + "nodeId": "regex-not@1.0.2" + }, + { + "nodeId": "snapdragon@0.8.2" + }, + { + "nodeId": "to-regex@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "expand-brackets@2.1.4", + "pkgId": "expand-brackets@2.1.4", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "define-property@0.2.5" + }, + { + "nodeId": "extend-shallow@2.0.1" + }, + { + "nodeId": "posix-character-classes@0.1.1" + }, + { + "nodeId": "regex-not@1.0.2" + }, + { + "nodeId": "snapdragon@0.8.2" + }, + { + "nodeId": "to-regex@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "posix-character-classes@0.1.1", + "pkgId": "posix-character-classes@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fragment-cache@0.2.1", + "pkgId": "fragment-cache@0.2.1", + "deps": [ + { + "nodeId": "map-cache@0.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nanomatch@1.2.13", + "pkgId": "nanomatch@1.2.13", + "deps": [ + { + "nodeId": "arr-diff@4.0.0" + }, + { + "nodeId": "array-unique@0.3.2" + }, + { + "nodeId": "define-property@2.0.2" + }, + { + "nodeId": "extend-shallow@3.0.2" + }, + { + "nodeId": "fragment-cache@0.2.1" + }, + { + "nodeId": "is-windows@1.0.2" + }, + { + "nodeId": "kind-of@6.0.3" + }, + { + "nodeId": "object.pick@1.3.0" + }, + { + "nodeId": "regex-not@1.0.2" + }, + { + "nodeId": "snapdragon@0.8.2" + }, + { + "nodeId": "to-regex@3.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object.pick@1.3.0", + "pkgId": "object.pick@1.3.0", + "deps": [ + { + "nodeId": "isobject@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "recast@0.20.5", + "pkgId": "recast@0.20.5", + "deps": [ + { + "nodeId": "ast-types@0.14.2" + }, + { + "nodeId": "esprima@4.0.1" + }, + { + "nodeId": "source-map@0.6.1" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ast-types@0.14.2", + "pkgId": "ast-types@0.14.2", + "deps": [ + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/js@14.0.5", + "pkgId": "@nrwl/js@14.0.5", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/jest@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + }, + { + "nodeId": "@parcel/watcher@2.0.4" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "fast-glob@3.2.7" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "js-tokens@4.0.0" + }, + { + "nodeId": "minimatch@3.0.4" + }, + { + "nodeId": "source-map-support@0.5.19" + }, + { + "nodeId": "tree-kill@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-support@0.5.19", + "pkgId": "source-map-support@0.5.19", + "deps": [ + { + "nodeId": "buffer-from@1.1.2" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tree-kill@1.2.2", + "pkgId": "tree-kill@1.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/nx-plugin@14.8.9", + "pkgId": "@nrwl/nx-plugin@14.8.9", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.8.9" + }, + { + "nodeId": "@nrwl/jest@14.8.9" + }, + { + "nodeId": "@nrwl/js@14.8.9" + }, + { + "nodeId": "@nrwl/linter@14.8.9" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/devkit@14.8.9", + "pkgId": "@nrwl/devkit@14.8.9", + "deps": [ + { + "nodeId": "@phenomnomnominal/tsquery@4.1.1" + }, + { + "nodeId": "ejs@3.1.10" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "nx@14.8.9" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nx@14.8.9", + "pkgId": "nx@14.8.9", + "deps": [ + { + "nodeId": "@nrwl/cli@14.8.9" + }, + { + "nodeId": "@nrwl/tao@14.8.9" + }, + { + "nodeId": "@parcel/watcher@2.0.4" + }, + { + "nodeId": "@yarnpkg/lockfile@1.1.0" + }, + { + "nodeId": "@yarnpkg/parsers@3.0.2" + }, + { + "nodeId": "@zkochan/js-yaml@0.0.6" + }, + { + "nodeId": "axios@1.6.8" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-spinners@2.6.1" + }, + { + "nodeId": "cliui@7.0.4" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "fast-glob@3.2.7" + }, + { + "nodeId": "figures@3.2.0" + }, + { + "nodeId": "flat@5.0.2" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "glob@7.1.4" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "js-yaml@4.1.0" + }, + { + "nodeId": "jsonc-parser@3.2.0" + }, + { + "nodeId": "minimatch@3.0.5" + }, + { + "nodeId": "npm-run-path@4.0.1" + }, + { + "nodeId": "open@8.4.2" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strong-log-transformer@2.1.0" + }, + { + "nodeId": "tar-stream@2.2.0" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "v8-compile-cache@2.3.0" + }, + { + "nodeId": "yargs@17.7.2" + }, + { + "nodeId": "yargs-parser@21.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/cli@14.8.9", + "pkgId": "@nrwl/cli@14.8.9", + "deps": [ + { + "nodeId": "nx@14.8.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/tao@14.8.9", + "pkgId": "@nrwl/tao@14.8.9", + "deps": [ + { + "nodeId": "nx@14.8.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@yarnpkg/lockfile@1.1.0", + "pkgId": "@yarnpkg/lockfile@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@yarnpkg/parsers@3.0.2", + "pkgId": "@yarnpkg/parsers@3.0.2", + "deps": [ + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@zkochan/js-yaml@0.0.6", + "pkgId": "@zkochan/js-yaml@0.0.6", + "deps": [ + { + "nodeId": "argparse@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "argparse@2.0.1", + "pkgId": "argparse@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "axios@1.6.8", + "pkgId": "axios@1.6.8", + "deps": [ + { + "nodeId": "follow-redirects@1.15.6" + }, + { + "nodeId": "form-data@4.0.0" + }, + { + "nodeId": "proxy-from-env@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proxy-from-env@1.1.0", + "pkgId": "proxy-from-env@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-yaml@4.1.0", + "pkgId": "js-yaml@4.1.0", + "deps": [ + { + "nodeId": "argparse@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonc-parser@3.2.0", + "pkgId": "jsonc-parser@3.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimatch@3.0.5", + "pkgId": "minimatch@3.0.5", + "deps": [ + { + "nodeId": "brace-expansion@1.1.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strong-log-transformer@2.1.0", + "pkgId": "strong-log-transformer@2.1.0", + "deps": [ + { + "nodeId": "duplexer@0.1.2" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "through@2.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/jest@14.8.9", + "pkgId": "@nrwl/jest@14.8.9", + "deps": [ + { + "nodeId": "@jest/reporters@28.1.1" + }, + { + "nodeId": "@jest/test-result@28.1.1" + }, + { + "nodeId": "@nrwl/devkit@14.8.9" + }, + { + "nodeId": "@phenomnomnominal/tsquery@4.1.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "identity-obj-proxy@3.0.0" + }, + { + "nodeId": "jest-config@28.1.1" + }, + { + "nodeId": "jest-resolve@28.1.1" + }, + { + "nodeId": "jest-util@28.1.1" + }, + { + "nodeId": "resolve.exports@1.1.0" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/reporters@28.1.1", + "pkgId": "@jest/reporters@28.1.1", + "deps": [ + { + "nodeId": "@bcoe/v8-coverage@0.2.3" + }, + { + "nodeId": "@jest/console@28.1.3" + }, + { + "nodeId": "@jest/test-result@28.1.1" + }, + { + "nodeId": "@jest/transform@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + }, + { + "nodeId": "exit@0.1.2" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "istanbul-lib-coverage@3.2.2" + }, + { + "nodeId": "istanbul-lib-instrument@5.2.1" + }, + { + "nodeId": "istanbul-lib-report@3.0.1" + }, + { + "nodeId": "istanbul-lib-source-maps@4.0.1" + }, + { + "nodeId": "istanbul-reports@3.1.7" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-util@28.1.1" + }, + { + "nodeId": "jest-worker@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "string-length@4.0.2" + }, + { + "nodeId": "strip-ansi@6.0.1" + }, + { + "nodeId": "terminal-link@2.1.1" + }, + { + "nodeId": "v8-to-istanbul@9.2.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/console@28.1.3", + "pkgId": "@jest/console@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/types@28.1.3", + "pkgId": "@jest/types@28.1.3", + "deps": [ + { + "nodeId": "@jest/schemas@28.1.3" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "@types/istanbul-reports@3.0.4" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "@types/yargs@17.0.32" + }, + { + "nodeId": "chalk@4.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/schemas@28.1.3", + "pkgId": "@jest/schemas@28.1.3", + "deps": [ + { + "nodeId": "@sinclair/typebox@0.24.51" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinclair/typebox@0.24.51", + "pkgId": "@sinclair/typebox@0.24.51", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-message-util@28.1.3", + "pkgId": "jest-message-util@28.1.3", + "deps": [ + { + "nodeId": "@babel/code-frame@7.24.2" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/stack-utils@2.0.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "pretty-format@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "stack-utils@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pretty-format@28.1.3", + "pkgId": "pretty-format@28.1.3", + "deps": [ + { + "nodeId": "@jest/schemas@28.1.3" + }, + { + "nodeId": "ansi-regex@5.0.1" + }, + { + "nodeId": "ansi-styles@5.2.0" + }, + { + "nodeId": "react-is@18.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-util@28.1.3", + "pkgId": "jest-util@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "ci-info@3.9.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/test-result@28.1.1", + "pkgId": "@jest/test-result@28.1.1", + "deps": [ + { + "nodeId": "@jest/console@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/transform@28.1.3", + "pkgId": "@jest/transform@28.1.3", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "babel-plugin-istanbul@6.1.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "convert-source-map@1.9.0" + }, + { + "nodeId": "fast-json-stable-stringify@2.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "jest-regex-util@28.0.2" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "pirates@4.0.6" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "write-file-atomic@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-haste-map@28.1.3", + "pkgId": "jest-haste-map@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/graceful-fs@4.1.9" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "anymatch@3.1.3" + }, + { + "nodeId": "fb-watchman@2.0.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-regex-util@28.0.2" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "jest-worker@28.1.3" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "walker@1.0.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-regex-util@28.0.2", + "pkgId": "jest-regex-util@28.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-worker@28.1.3", + "pkgId": "jest-worker@28.1.3", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "merge-stream@2.0.0" + }, + { + "nodeId": "supports-color@8.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "write-file-atomic@4.0.2", + "pkgId": "write-file-atomic@4.0.2", + "deps": [ + { + "nodeId": "imurmurhash@0.1.4" + }, + { + "nodeId": "signal-exit@3.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-util@28.1.1", + "pkgId": "jest-util@28.1.1", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "ci-info@3.9.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "picomatch@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "v8-to-istanbul@9.2.0", + "pkgId": "v8-to-istanbul@9.2.0", + "deps": [ + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "convert-source-map@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-config@28.1.1", + "pkgId": "jest-config@28.1.1", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/test-sequencer@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "babel-jest@28.1.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "ci-info@3.9.0" + }, + { + "nodeId": "deepmerge@4.3.1" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-circus@28.1.3" + }, + { + "nodeId": "jest-environment-node@28.1.3" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "jest-regex-util@28.0.2" + }, + { + "nodeId": "jest-resolve@28.1.1" + }, + { + "nodeId": "jest-runner@28.1.3" + }, + { + "nodeId": "jest-util@28.1.1" + }, + { + "nodeId": "jest-validate@28.1.3" + }, + { + "nodeId": "micromatch@4.0.5" + }, + { + "nodeId": "parse-json@5.2.0" + }, + { + "nodeId": "pretty-format@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "strip-json-comments@3.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/test-sequencer@28.1.3", + "pkgId": "@jest/test-sequencer@28.1.3", + "deps": [ + { + "nodeId": "@jest/test-result@28.1.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/test-result@28.1.3", + "pkgId": "@jest/test-result@28.1.3", + "deps": [ + { + "nodeId": "@jest/console@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/istanbul-lib-coverage@2.0.6" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-jest@28.1.3", + "pkgId": "babel-jest@28.1.3", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@jest/transform@28.1.3" + }, + { + "nodeId": "@types/babel__core@7.20.5" + }, + { + "nodeId": "babel-plugin-istanbul@6.1.1" + }, + { + "nodeId": "babel-preset-jest@28.1.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-preset-jest@28.1.3", + "pkgId": "babel-preset-jest@28.1.3", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "babel-plugin-jest-hoist@28.1.3" + }, + { + "nodeId": "babel-preset-current-node-syntax@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "babel-plugin-jest-hoist@28.1.3", + "pkgId": "babel-plugin-jest-hoist@28.1.3", + "deps": [ + { + "nodeId": "@babel/template@7.24.0" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@types/babel__core@7.20.5" + }, + { + "nodeId": "@types/babel__traverse@7.20.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-circus@28.1.3", + "pkgId": "jest-circus@28.1.3", + "deps": [ + { + "nodeId": "@jest/environment@28.1.3" + }, + { + "nodeId": "@jest/expect@28.1.3" + }, + { + "nodeId": "@jest/test-result@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "co@4.6.0" + }, + { + "nodeId": "dedent@0.7.0" + }, + { + "nodeId": "is-generator-fn@2.1.0" + }, + { + "nodeId": "jest-each@28.1.3" + }, + { + "nodeId": "jest-matcher-utils@28.1.3" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-runtime@28.1.3" + }, + { + "nodeId": "jest-snapshot@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "p-limit@3.1.0" + }, + { + "nodeId": "pretty-format@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "stack-utils@2.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/environment@28.1.3", + "pkgId": "@jest/environment@28.1.3", + "deps": [ + { + "nodeId": "@jest/fake-timers@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/fake-timers@28.1.3", + "pkgId": "@jest/fake-timers@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@sinonjs/fake-timers@9.1.2" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-mock@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@sinonjs/fake-timers@9.1.2", + "pkgId": "@sinonjs/fake-timers@9.1.2", + "deps": [ + { + "nodeId": "@sinonjs/commons@1.8.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-mock@28.1.3", + "pkgId": "jest-mock@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/expect@28.1.3", + "pkgId": "@jest/expect@28.1.3", + "deps": [ + { + "nodeId": "expect@28.1.3" + }, + { + "nodeId": "jest-snapshot@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "expect@28.1.3", + "pkgId": "expect@28.1.3", + "deps": [ + { + "nodeId": "@jest/expect-utils@28.1.3" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "jest-matcher-utils@28.1.3" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/expect-utils@28.1.3", + "pkgId": "@jest/expect-utils@28.1.3", + "deps": [ + { + "nodeId": "jest-get-type@28.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-get-type@28.0.2", + "pkgId": "jest-get-type@28.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-matcher-utils@28.1.3", + "pkgId": "jest-matcher-utils@28.1.3", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-diff@28.1.3" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "pretty-format@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-diff@28.1.3", + "pkgId": "jest-diff@28.1.3", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "diff-sequences@28.1.1" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "pretty-format@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "diff-sequences@28.1.1", + "pkgId": "diff-sequences@28.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-snapshot@28.1.3", + "pkgId": "jest-snapshot@28.1.3", + "deps": [ + { + "nodeId": "@babel/core@7.12.13" + }, + { + "nodeId": "@babel/generator@7.24.5" + }, + { + "nodeId": "@babel/plugin-syntax-typescript@7.24.1" + }, + { + "nodeId": "@babel/traverse@7.24.5" + }, + { + "nodeId": "@babel/types@7.24.5" + }, + { + "nodeId": "@jest/expect-utils@28.1.3" + }, + { + "nodeId": "@jest/transform@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/babel__traverse@7.20.5" + }, + { + "nodeId": "@types/prettier@2.7.3" + }, + { + "nodeId": "babel-preset-current-node-syntax@1.0.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "expect@28.1.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-diff@28.1.3" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "jest-matcher-utils@28.1.3" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "natural-compare@1.4.0" + }, + { + "nodeId": "pretty-format@28.1.3" + }, + { + "nodeId": "semver@7.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-each@28.1.3", + "pkgId": "jest-each@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "pretty-format@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-runtime@28.1.3", + "pkgId": "jest-runtime@28.1.3", + "deps": [ + { + "nodeId": "@jest/environment@28.1.3" + }, + { + "nodeId": "@jest/fake-timers@28.1.3" + }, + { + "nodeId": "@jest/globals@28.1.3" + }, + { + "nodeId": "@jest/source-map@28.1.2" + }, + { + "nodeId": "@jest/test-result@28.1.3" + }, + { + "nodeId": "@jest/transform@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "cjs-module-lexer@1.3.1" + }, + { + "nodeId": "collect-v8-coverage@1.0.2" + }, + { + "nodeId": "execa@5.1.1" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-mock@28.1.3" + }, + { + "nodeId": "jest-regex-util@28.0.2" + }, + { + "nodeId": "jest-resolve@28.1.3" + }, + { + "nodeId": "jest-snapshot@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "slash@3.0.0" + }, + { + "nodeId": "strip-bom@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/globals@28.1.3", + "pkgId": "@jest/globals@28.1.3", + "deps": [ + { + "nodeId": "@jest/environment@28.1.3" + }, + { + "nodeId": "@jest/expect@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@jest/source-map@28.1.2", + "pkgId": "@jest/source-map@28.1.2", + "deps": [ + { + "nodeId": "@jridgewell/trace-mapping@0.3.25" + }, + { + "nodeId": "callsites@3.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-resolve@28.1.3", + "pkgId": "jest-resolve@28.1.3", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "jest-pnp-resolver@1.2.3" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "jest-validate@28.1.3" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "resolve.exports@1.1.0" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-validate@28.1.3", + "pkgId": "jest-validate@28.1.3", + "deps": [ + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "camelcase@6.3.0" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "leven@3.1.0" + }, + { + "nodeId": "pretty-format@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-environment-node@28.1.3", + "pkgId": "jest-environment-node@28.1.3", + "deps": [ + { + "nodeId": "@jest/environment@28.1.3" + }, + { + "nodeId": "@jest/fake-timers@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "jest-mock@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-resolve@28.1.1", + "pkgId": "jest-resolve@28.1.1", + "deps": [ + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "jest-pnp-resolver@1.2.3" + }, + { + "nodeId": "jest-util@28.1.1" + }, + { + "nodeId": "jest-validate@28.1.3" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "resolve.exports@1.1.0" + }, + { + "nodeId": "slash@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-runner@28.1.3", + "pkgId": "jest-runner@28.1.3", + "deps": [ + { + "nodeId": "@jest/console@28.1.3" + }, + { + "nodeId": "@jest/environment@28.1.3" + }, + { + "nodeId": "@jest/test-result@28.1.3" + }, + { + "nodeId": "@jest/transform@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "emittery@0.10.2" + }, + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jest-docblock@28.1.1" + }, + { + "nodeId": "jest-environment-node@28.1.3" + }, + { + "nodeId": "jest-haste-map@28.1.3" + }, + { + "nodeId": "jest-leak-detector@28.1.3" + }, + { + "nodeId": "jest-message-util@28.1.3" + }, + { + "nodeId": "jest-resolve@28.1.3" + }, + { + "nodeId": "jest-runtime@28.1.3" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "jest-watcher@28.1.3" + }, + { + "nodeId": "jest-worker@28.1.3" + }, + { + "nodeId": "p-limit@3.1.0" + }, + { + "nodeId": "source-map-support@0.5.13" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emittery@0.10.2", + "pkgId": "emittery@0.10.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-docblock@28.1.1", + "pkgId": "jest-docblock@28.1.1", + "deps": [ + { + "nodeId": "detect-newline@3.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-leak-detector@28.1.3", + "pkgId": "jest-leak-detector@28.1.3", + "deps": [ + { + "nodeId": "jest-get-type@28.0.2" + }, + { + "nodeId": "pretty-format@28.1.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jest-watcher@28.1.3", + "pkgId": "jest-watcher@28.1.3", + "deps": [ + { + "nodeId": "@jest/test-result@28.1.3" + }, + { + "nodeId": "@jest/types@28.1.3" + }, + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "ansi-escapes@4.3.2" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "emittery@0.10.2" + }, + { + "nodeId": "jest-util@28.1.3" + }, + { + "nodeId": "string-length@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "source-map-support@0.5.13", + "pkgId": "source-map-support@0.5.13", + "deps": [ + { + "nodeId": "buffer-from@1.1.2" + }, + { + "nodeId": "source-map@0.6.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/js@14.8.9", + "pkgId": "@nrwl/js@14.8.9", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.8.9" + }, + { + "nodeId": "@nrwl/jest@14.8.9" + }, + { + "nodeId": "@nrwl/linter@14.8.9" + }, + { + "nodeId": "@nrwl/workspace@14.8.9" + }, + { + "nodeId": "@parcel/watcher@2.0.4" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "fast-glob@3.2.7" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "js-tokens@4.0.0" + }, + { + "nodeId": "minimatch@3.0.5" + }, + { + "nodeId": "source-map-support@0.5.19" + }, + { + "nodeId": "tree-kill@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/linter@14.8.9", + "pkgId": "@nrwl/linter@14.8.9", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.8.9" + }, + { + "nodeId": "@nrwl/jest@14.8.9" + }, + { + "nodeId": "@phenomnomnominal/tsquery@4.1.1" + }, + { + "nodeId": "nx@14.8.9" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/workspace@14.8.9", + "pkgId": "@nrwl/workspace@14.8.9", + "deps": [ + { + "nodeId": "@nrwl/devkit@14.8.9" + }, + { + "nodeId": "@nrwl/jest@14.8.9" + }, + { + "nodeId": "@nrwl/linter@14.8.9" + }, + { + "nodeId": "@parcel/watcher@2.0.4" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "cli-cursor@3.1.0" + }, + { + "nodeId": "cli-spinners@2.6.1" + }, + { + "nodeId": "dotenv@10.0.0" + }, + { + "nodeId": "enquirer@2.3.6" + }, + { + "nodeId": "figures@3.2.0" + }, + { + "nodeId": "flat@5.0.2" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "glob@7.1.4" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "minimatch@3.0.5" + }, + { + "nodeId": "npm-run-path@4.0.1" + }, + { + "nodeId": "nx@14.8.9" + }, + { + "nodeId": "open@8.4.2" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "tmp@0.2.3" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "yargs@17.7.2" + }, + { + "nodeId": "yargs-parser@21.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/react@14.0.5", + "pkgId": "@nrwl/react@14.0.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/preset-react@7.24.1" + }, + { + "nodeId": "@nrwl/cypress@14.0.5" + }, + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/jest@14.0.5" + }, + { + "nodeId": "@nrwl/js@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@nrwl/storybook@14.0.5" + }, + { + "nodeId": "@nrwl/web@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + }, + { + "nodeId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13" + }, + { + "nodeId": "@storybook/node-logger@6.1.20" + }, + { + "nodeId": "@svgr/webpack@6.5.1" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "eslint-plugin-import@2.29.1" + }, + { + "nodeId": "eslint-plugin-jsx-a11y@6.8.0" + }, + { + "nodeId": "eslint-plugin-react@7.28.0" + }, + { + "nodeId": "eslint-plugin-react-hooks@4.6.2" + }, + { + "nodeId": "react-refresh@0.10.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "url-loader@4.1.1" + }, + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-merge@5.10.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/cypress@14.0.5", + "pkgId": "@nrwl/cypress@14.0.5", + "deps": [ + { + "nodeId": "@cypress/webpack-preprocessor@5.17.1" + }, + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.2.10" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "ts-loader@9.5.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.5.2" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "webpack-node-externals@3.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.5.2", + "pkgId": "tsconfig-paths-webpack-plugin@3.5.2", + "deps": [ + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/storybook@14.0.5", + "pkgId": "@nrwl/storybook@14.0.5", + "deps": [ + { + "nodeId": "@nrwl/cypress@14.0.5" + }, + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "ts-loader@9.5.1" + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.5.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@nrwl/web@14.0.5", + "pkgId": "@nrwl/web@14.0.5", + "deps": [ + { + "nodeId": "@babel/core@7.24.5" + }, + { + "nodeId": "@babel/plugin-proposal-class-properties@7.18.6" + }, + { + "nodeId": "@babel/plugin-proposal-decorators@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-regenerator@7.24.1" + }, + { + "nodeId": "@babel/plugin-transform-runtime@7.24.3" + }, + { + "nodeId": "@babel/preset-env@7.24.5" + }, + { + "nodeId": "@babel/preset-typescript@7.24.1" + }, + { + "nodeId": "@babel/runtime@7.24.5" + }, + { + "nodeId": "@nrwl/cypress@14.0.5" + }, + { + "nodeId": "@nrwl/devkit@14.0.5" + }, + { + "nodeId": "@nrwl/jest@14.0.5" + }, + { + "nodeId": "@nrwl/js@14.0.5" + }, + { + "nodeId": "@nrwl/linter@14.0.5" + }, + { + "nodeId": "@nrwl/workspace@14.0.5" + }, + { + "nodeId": "@pmmmwh/react-refresh-webpack-plugin@0.5.13" + }, + { + "nodeId": "@rollup/plugin-babel@5.3.1" + }, + { + "nodeId": "@rollup/plugin-commonjs@20.0.0" + }, + { + "nodeId": "@rollup/plugin-image@2.1.1" + }, + { + "nodeId": "@rollup/plugin-json@4.1.0" + }, + { + "nodeId": "@rollup/plugin-node-resolve@13.3.0" + }, + { + "nodeId": "autoprefixer@10.4.19" + }, + { + "nodeId": "babel-loader@8.3.0" + }, + { + "nodeId": "babel-plugin-const-enum@1.2.0" + }, + { + "nodeId": "babel-plugin-macros@2.8.0" + }, + { + "nodeId": "babel-plugin-transform-async-to-promises@0.8.18" + }, + { + "nodeId": "babel-plugin-transform-typescript-metadata@0.3.2" + }, + { + "nodeId": "browserslist@4.23.0" + }, + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "caniuse-lite@1.0.30001617" + }, + { + "nodeId": "chalk@4.1.0" + }, + { + "nodeId": "chokidar@3.6.0" + }, + { + "nodeId": "copy-webpack-plugin@9.1.0" + }, + { + "nodeId": "core-js@3.37.0" + }, + { + "nodeId": "css-loader@6.11.0" + }, + { + "nodeId": "css-minimizer-webpack-plugin@3.4.1" + }, + { + "nodeId": "enhanced-resolve@5.16.1" + }, + { + "nodeId": "file-loader@6.2.0" + }, + { + "nodeId": "fork-ts-checker-webpack-plugin@6.2.10" + }, + { + "nodeId": "fs-extra@9.1.0" + }, + { + "nodeId": "http-server@14.1.0" + }, + { + "nodeId": "identity-obj-proxy@3.0.0" + }, + { + "nodeId": "ignore@5.3.1" + }, + { + "nodeId": "less@3.12.2" + }, + { + "nodeId": "less-loader@10.2.0" + }, + { + "nodeId": "license-webpack-plugin@4.0.2" + }, + { + "nodeId": "loader-utils@1.2.3" + }, + { + "nodeId": "mini-css-extract-plugin@2.4.7" + }, + { + "nodeId": "parse5@4.0.0" + }, + { + "nodeId": "parse5-html-rewriting-stream@6.0.1" + }, + { + "nodeId": "postcss@8.4.38" + }, + { + "nodeId": "postcss-import@14.0.2" + }, + { + "nodeId": "postcss-loader@6.2.1" + }, + { + "nodeId": "raw-loader@4.0.2" + }, + { + "nodeId": "react-refresh@0.10.0" + }, + { + "nodeId": "rollup@2.79.1" + }, + { + "nodeId": "rollup-plugin-copy@3.5.0" + }, + { + "nodeId": "rollup-plugin-peer-deps-external@2.2.4" + }, + { + "nodeId": "rollup-plugin-postcss@4.0.2" + }, + { + "nodeId": "rollup-plugin-typescript2@0.31.2" + }, + { + "nodeId": "rxjs@6.6.7" + }, + { + "nodeId": "rxjs-for-await@0.0.2" + }, + { + "nodeId": "sass@1.77.0" + }, + { + "nodeId": "sass-loader@12.6.0" + }, + { + "nodeId": "semver@7.3.4" + }, + { + "nodeId": "source-map@0.7.3" + }, + { + "nodeId": "source-map-loader@3.0.2" + }, + { + "nodeId": "style-loader@3.3.4" + }, + { + "nodeId": "stylus@0.55.0" + }, + { + "nodeId": "stylus-loader@6.2.0" + }, + { + "nodeId": "terser-webpack-plugin@5.3.10" + }, + { + "nodeId": "ts-loader@9.5.1" + }, + { + "nodeId": "ts-node@9.1.1" + }, + { + "nodeId": "tsconfig-paths@3.15.0" + }, + { + "nodeId": "tsconfig-paths-webpack-plugin@3.5.2" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "webpack@5.91.0" + }, + { + "nodeId": "webpack-dev-server@4.15.2" + }, + { + "nodeId": "webpack-merge@5.10.0" + }, + { + "nodeId": "webpack-sources@3.2.3" + }, + { + "nodeId": "webpack-subresource-integrity@5.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-server@14.1.0", + "pkgId": "http-server@14.1.0", + "deps": [ + { + "nodeId": "basic-auth@2.0.1" + }, + { + "nodeId": "chalk@4.1.2" + }, + { + "nodeId": "corser@2.0.1" + }, + { + "nodeId": "he@1.2.0" + }, + { + "nodeId": "html-encoding-sniffer@3.0.0" + }, + { + "nodeId": "http-proxy@1.18.1" + }, + { + "nodeId": "mime@1.6.0" + }, + { + "nodeId": "minimist@1.2.8" + }, + { + "nodeId": "opener@1.5.2" + }, + { + "nodeId": "portfinder@1.0.32" + }, + { + "nodeId": "secure-compare@3.0.1" + }, + { + "nodeId": "union@0.5.0" + }, + { + "nodeId": "url-join@4.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "basic-auth@2.0.1", + "pkgId": "basic-auth@2.0.1", + "deps": [ + { + "nodeId": "safe-buffer@5.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "html-encoding-sniffer@3.0.0", + "pkgId": "html-encoding-sniffer@3.0.0", + "deps": [ + { + "nodeId": "whatwg-encoding@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "whatwg-encoding@2.0.0", + "pkgId": "whatwg-encoding@2.0.0", + "deps": [ + { + "nodeId": "iconv-lite@0.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "url-join@4.0.1", + "pkgId": "url-join@4.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "license-webpack-plugin@4.0.2", + "pkgId": "license-webpack-plugin@4.0.2", + "deps": [ + { + "nodeId": "webpack-sources@3.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mini-css-extract-plugin@2.4.7", + "pkgId": "mini-css-extract-plugin@2.4.7", + "deps": [ + { + "nodeId": "schema-utils@4.2.0" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rollup-plugin-typescript2@0.31.2", + "pkgId": "rollup-plugin-typescript2@0.31.2", + "deps": [ + { + "nodeId": "@rollup/pluginutils@4.2.1" + }, + { + "nodeId": "@yarn-tool/resolve-package@1.0.47" + }, + { + "nodeId": "find-cache-dir@3.3.2" + }, + { + "nodeId": "fs-extra@10.1.0" + }, + { + "nodeId": "resolve@1.22.8" + }, + { + "nodeId": "rollup@2.79.1" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "typescript@4.9.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "@yarn-tool/resolve-package@1.0.47", + "pkgId": "@yarn-tool/resolve-package@1.0.47", + "deps": [ + { + "nodeId": "pkg-dir@5.0.0" + }, + { + "nodeId": "tslib@2.6.2" + }, + { + "nodeId": "upath2@3.1.19" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pkg-dir@5.0.0", + "pkgId": "pkg-dir@5.0.0", + "deps": [ + { + "nodeId": "find-up@5.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "upath2@3.1.19", + "pkgId": "upath2@3.1.19", + "deps": [ + { + "nodeId": "@types/node@20.12.11" + }, + { + "nodeId": "path-is-network-drive@1.0.20" + }, + { + "nodeId": "path-strip-sep@1.0.17" + }, + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-is-network-drive@1.0.20", + "pkgId": "path-is-network-drive@1.0.20", + "deps": [ + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-strip-sep@1.0.17", + "pkgId": "path-strip-sep@1.0.17", + "deps": [ + { + "nodeId": "tslib@2.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "webpack-subresource-integrity@5.1.0", + "pkgId": "webpack-subresource-integrity@5.1.0", + "deps": [ + { + "nodeId": "typed-assert@1.0.9" + }, + { + "nodeId": "webpack@5.91.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "typed-assert@1.0.9", + "pkgId": "typed-assert@1.0.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "eslint-plugin-react@7.28.0", + "pkgId": "eslint-plugin-react@7.28.0", + "deps": [ + { + "nodeId": "array-includes@3.1.8" + }, + { + "nodeId": "array.prototype.flatmap@1.3.2" + }, + { + "nodeId": "doctrine@2.1.0" + }, + { + "nodeId": "eslint@7.32.0" + }, + { + "nodeId": "estraverse@5.3.0" + }, + { + "nodeId": "jsx-ast-utils@3.3.5" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "object.entries@1.1.8" + }, + { + "nodeId": "object.fromentries@2.0.8" + }, + { + "nodeId": "object.hasown@1.1.4" + }, + { + "nodeId": "object.values@1.2.0" + }, + { + "nodeId": "prop-types@15.8.1" + }, + { + "nodeId": "resolve@2.0.0-next.5" + }, + { + "nodeId": "semver@6.3.1" + }, + { + "nodeId": "string.prototype.matchall@4.0.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} \ No newline at end of file diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/package.json new file mode 100644 index 00000000..33d10b42 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/package.json @@ -0,0 +1,47 @@ +{ + "name": "deeply-scoped", + "version": "0.0.0", + "dependencies": { + "gatsby": "^4.3.0", + "gatsby-plugin-image": "^2.3.0", + "gatsby-plugin-manifest": "^4.3.0", + "gatsby-plugin-mdx": "^3.3.0", + "gatsby-plugin-offline": "^5.3.0", + "gatsby-plugin-react-helmet": "^5.3.0", + "gatsby-plugin-sharp": "^4.3.0", + "gatsby-plugin-styled-components": "^5.3.0", + "gatsby-plugin-svgr": "^3.0.0-beta.0", + "gatsby-plugin-typescript": "^4.3.0", + "gatsby-plugin-web-font-loader": "^1.0.4", + "gatsby-source-filesystem": "^4.3.0", + "gatsby-transformer-sharp": "^4.3.0", + "react": "^18.0.0", + "react-calendar": "^3.5.0", + "react-dom": "^18.0.0", + "react-helmet": "^6.1.0", + "react-hook-form": "^7.25.3", + "react-is": "^18.0.0", + "react-redux": "^8.0.2", + "react-responsive": "^8.2.0", + "react-router-dom": "^6.3.0", + "react-slick": "^0.28.1", + "react-spring": "^9.3.2", + "redux-persist": "^6.0.0", + "@babel/core": "7.12.13", + "@babel/preset-env": "7.12.13", + "@babel/preset-react": "7.12.13", + "@babel/preset-typescript": "7.12.13", + "@nrwl/cli": "14.0.5", + "@nrwl/devkit": "14.0.5", + "@nrwl/eslint-plugin-nx": "14.0.5", + "@nrwl/gatsby": "13.2.3", + "@nrwl/jest": "14.0.5", + "@nrwl/js": "14.0.5", + "@nrwl/linter": "14.0.5", + "@nrwl/nx-plugin": "^14.0.5", + "@nrwl/react": "14.0.5", + "@nrwl/storybook": "14.0.5", + "@nrwl/web": "14.0.5", + "@nrwl/workspace": "14.0.5" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/pnpm-lock.yaml new file mode 100644 index 00000000..2275b446 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/deeply-scoped/pnpm-lock.yaml @@ -0,0 +1,24998 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@babel/core': + specifier: 7.12.13 + version: 7.12.13 + '@babel/preset-env': + specifier: 7.12.13 + version: 7.12.13(@babel/core@7.12.13) + '@babel/preset-react': + specifier: 7.12.13 + version: 7.12.13(@babel/core@7.12.13) + '@babel/preset-typescript': + specifier: 7.12.13 + version: 7.12.13(@babel/core@7.12.13) + '@nrwl/cli': + specifier: 14.0.5 + version: 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + '@nrwl/devkit': + specifier: 14.0.5 + version: 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/eslint-plugin-nx': + specifier: 14.0.5 + version: 14.0.5(@swc/types@0.1.6)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/gatsby': + specifier: 13.2.3 + version: 13.2.3(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@types/babel__core@7.20.5)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(ts-node@9.1.1(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/jest': + specifier: 14.0.5 + version: 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/js': + specifier: 14.0.5 + version: 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': + specifier: 14.0.5 + version: 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/nx-plugin': + specifier: ^14.0.5 + version: 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/react': + specifier: 14.0.5 + version: 14.0.5(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@swc/types@0.1.6)(@types/babel__core@7.20.5)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + '@nrwl/storybook': + specifier: 14.0.5 + version: 14.0.5(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/web': + specifier: 14.0.5 + version: 14.0.5(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@swc/types@0.1.6)(@types/babel__core@7.20.5)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5) + '@nrwl/workspace': + specifier: 14.0.5 + version: 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + gatsby: + specifier: ^4.3.0 + version: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-plugin-image: + specifier: ^2.3.0 + version: 2.25.0(@babel/core@7.12.13)(gatsby-plugin-sharp@4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0))(gatsby-source-filesystem@4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + gatsby-plugin-manifest: + specifier: ^4.3.0 + version: 4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-plugin-mdx: + specifier: ^3.3.0 + version: 3.20.0(@mdx-js/mdx@1.6.22)(@mdx-js/react@1.6.22(react@18.3.1))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + gatsby-plugin-offline: + specifier: ^5.3.0 + version: 5.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + gatsby-plugin-react-helmet: + specifier: ^5.3.0 + version: 5.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-helmet@6.1.0(react@18.3.1)) + gatsby-plugin-sharp: + specifier: ^4.3.0 + version: 4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-plugin-styled-components: + specifier: ^5.3.0 + version: 5.25.0(babel-plugin-styled-components@2.1.4(@babel/core@7.12.13)(styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + gatsby-plugin-svgr: + specifier: ^3.0.0-beta.0 + version: 3.0.0-beta.0(@svgr/webpack@6.5.1)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + gatsby-plugin-typescript: + specifier: ^4.3.0 + version: 4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + gatsby-plugin-web-font-loader: + specifier: ^1.0.4 + version: 1.0.4 + gatsby-source-filesystem: + specifier: ^4.3.0 + version: 4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + gatsby-transformer-sharp: + specifier: ^4.3.0 + version: 4.25.0(gatsby-plugin-sharp@4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + react: + specifier: ^18.0.0 + version: 18.3.1 + react-calendar: + specifier: ^3.5.0 + version: 3.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-dom: + specifier: ^18.0.0 + version: 18.3.1(react@18.3.1) + react-helmet: + specifier: ^6.1.0 + version: 6.1.0(react@18.3.1) + react-hook-form: + specifier: ^7.25.3 + version: 7.51.4(react@18.3.1) + react-is: + specifier: ^18.0.0 + version: 18.3.1 + react-redux: + specifier: ^8.0.2 + version: 8.1.3(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(redux@4.1.2) + react-responsive: + specifier: ^8.2.0 + version: 8.2.0(react@18.3.1) + react-router-dom: + specifier: ^6.3.0 + version: 6.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-slick: + specifier: ^0.28.1 + version: 0.28.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-spring: + specifier: ^9.3.2 + version: 9.7.3(@react-three/fiber@8.16.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(three@0.164.1))(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react-konva@18.2.10(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react-zdog@1.2.2)(react@18.3.1)(three@0.164.1)(zdog@1.1.3) + redux-persist: + specifier: ^6.0.0 + version: 6.0.0(react@18.3.1)(redux@4.1.2) + +packages: + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@ardatan/relay-compiler@12.0.0': + resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} + hasBin: true + peerDependencies: + graphql: '*' + + '@babel/code-frame@7.12.11': + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + + '@babel/code-frame@7.24.2': + resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.24.4': + resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.12.13': + resolution: {integrity: sha512-BQKE9kXkPlXHPeqissfxo0lySWJcYdEP0hdtJOH/iJfDdhOCcgtNCjftCJg3qqauB4h+lz2N6ixM++b9DN1Tcw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.12.9': + resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.24.5': + resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} + engines: {node: '>=6.9.0'} + + '@babel/eslint-parser@7.24.5': + resolution: {integrity: sha512-gsUcqS/fPlgAw1kOtpss7uhY6E9SFFANQ6EFX5GTvzUwaV0+sGaZWk6xq22MOdeT9wfxyokW3ceCUvOiRtZciQ==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': ^7.11.0 + eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 + + '@babel/generator@7.24.5': + resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.22.5': + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.23.6': + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.24.5': + resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.22.15': + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.2': + resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-environment-visitor@7.22.20': + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-function-name@7.23.0': + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-hoist-variables@7.22.5': + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.24.5': + resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.24.3': + resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.24.5': + resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.22.5': + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.10.4': + resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} + + '@babel/helper-plugin-utils@7.24.5': + resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.22.20': + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@7.24.1': + resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-simple-access@7.24.5': + resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-split-export-declaration@7.24.5': + resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.24.1': + resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.24.5': + resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.23.5': + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.24.5': + resolution: {integrity: sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.24.5': + resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} + engines: {node: '>=6.9.0'} + + '@babel/highlight@7.24.5': + resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.24.5': + resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5': + resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1': + resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1': + resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1': + resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-async-generator-functions@7.20.7': + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-class-properties@7.18.6': + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-decorators@7.24.1': + resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-dynamic-import@7.18.6': + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-export-default-from@7.24.1': + resolution: {integrity: sha512-+0hrgGGV3xyYIjOrD/bUZk/iUwOIGuoANfRfVg1cPhYBxF+TIXSEcc42DqzBICmWsnAQ+SfKedY0bj8QD+LuMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-export-namespace-from@7.18.9': + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-json-strings@7.18.6': + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7': + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-numeric-separator@7.18.6': + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-object-rest-spread@7.12.1': + resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-object-rest-spread@7.20.7': + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-optional-catch-binding@7.18.6': + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-private-methods@7.18.6': + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-proposal-unicode-property-regex@7.18.6': + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-decorators@7.24.1': + resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-default-from@7.24.1': + resolution: {integrity: sha512-cNXSxv9eTkGUtd0PsNMK8Yx5xeScxfpWOUAxE+ZPAXXEcAMOC3fk7LRdXq5fvpra2pLx2p1YtkAhpUbB2SwaRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-flow@7.24.1': + resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.24.1': + resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.24.1': + resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.12.1': + resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.24.1': + resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@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 + + '@babel/plugin-syntax-typescript@7.24.1': + resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-arrow-functions@7.24.1': + resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.24.3': + resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-to-generator@7.24.1': + resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.24.1': + resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoping@7.24.5': + resolution: {integrity: sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.24.1': + resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.24.4': + resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + + '@babel/plugin-transform-classes@7.24.5': + resolution: {integrity: sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-computed-properties@7.24.1': + resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-destructuring@7.24.5': + resolution: {integrity: sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.24.1': + resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-keys@7.24.1': + resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dynamic-import@7.24.1': + resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-exponentiation-operator@7.24.1': + resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-export-namespace-from@7.24.1': + resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-flow-strip-types@7.24.1': + resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.24.1': + resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-function-name@7.24.1': + resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.24.1': + resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.24.1': + resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.24.1': + resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.24.1': + resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.24.1': + resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.24.1': + resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.24.1': + resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.24.1': + resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': + resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.24.1': + resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.24.1': + resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.24.1': + resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.24.5': + resolution: {integrity: sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.24.1': + resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.24.1': + resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.24.5': + resolution: {integrity: sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.24.5': + resolution: {integrity: sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.24.1': + resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.24.5': + resolution: {integrity: sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.24.1': + resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-constant-elements@7.24.1': + resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.24.1': + resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.22.5': + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-self@7.24.5': + resolution: {integrity: sha512-RtCJoUO2oYrYwFPtR1/jkoBEcFuI1ae9a9IMxeyAVa3a1Ap4AnxmyIKG2b2FaJKqkidw/0cxRbWN+HOs6ZWd1w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.24.1': + resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.23.4': + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-pure-annotations@7.24.1': + resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.24.1': + resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-reserved-words@7.24.1': + resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-runtime@7.24.3': + resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.24.1': + resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.24.1': + resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.24.1': + resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.24.1': + resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.24.5': + resolution: {integrity: sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.24.5': + resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.24.1': + resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.24.1': + resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.24.1': + resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.24.1': + resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.12.13': + resolution: {integrity: sha512-JUVlizG8SoFTz4LmVUL8++aVwzwxcvey3N0j1tRbMAXVEy95uQ/cnEkmEKHN00Bwq4voAV3imQGnQvpkLAxsrw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-env@7.24.5': + resolution: {integrity: sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-flow@7.24.1': + resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6': + resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-react@7.12.13': + resolution: {integrity: sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-react@7.24.1': + resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.12.13': + resolution: {integrity: sha512-gYry7CeXwD2wtw5qHzrtzKaShEhOfTmKb4i0ZxeYBcBosN5VuAudsNbjX7Oj5EAfQ3K4s4HsVMQRRcqGsPvs2A==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.24.1': + resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/register@7.23.7': + resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/regjsgen@0.8.0': + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + + '@babel/runtime@7.24.5': + resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.24.0': + resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.24.5': + resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.5': + resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} + engines: {node: '>=6.9.0'} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@builder.io/partytown@0.5.4': + resolution: {integrity: sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==} + hasBin: true + + '@cypress/webpack-preprocessor@5.17.1': + resolution: {integrity: sha512-FE/e8ikPc8z4EVopJCaior3RGy0jd2q9Xcp5NtiwNG4XnLfEnUFTZlAGwXe75sEh4fNMPrBJW1KIz77PX5vGAw==} + peerDependencies: + '@babel/core': ^7.0.1 + '@babel/preset-env': ^7.0.0 + babel-loader: ^8.0.2 || ^9 + webpack: ^4 || ^5 + + '@emotion/is-prop-valid@1.2.2': + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + + '@emotion/memoize@0.8.1': + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + + '@eslint/eslintrc@0.4.3': + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + + '@gatsbyjs/parcel-namer-relative-to-cwd@1.10.0': + resolution: {integrity: sha512-JSiOxG2SD64joKfcCOdujIpqmhs+k5Ic1sO/hQ83EVF6G9DJJTf8n12rGb2rzPb00TFT4ldb/nWxQRV+kQTlPA==} + engines: {node: '>=14.15.0', parcel: 2.x} + + '@gatsbyjs/reach-router@1.3.9': + resolution: {integrity: sha512-/354IaUSM54xb7K/TxpLBJB94iEAJ3P82JD38T8bLnIDWF+uw8+W/82DKnQ7y24FJcKxtVmG43aiDLG88KSuYQ==} + peerDependencies: + react: 15.x || 16.x || 17.x || 18.x + react-dom: 15.x || 16.x || 17.x || 18.x + + '@gatsbyjs/webpack-hot-middleware@2.25.3': + resolution: {integrity: sha512-ul17OZ8Dlw+ATRbnuU+kwxuAlq9lKbYz/2uBS1FLCdgoPTF1H2heP7HbUbgfMZbfRQNcCG2rMscMnr32ritCDw==} + + '@graphql-codegen/add@3.2.3': + resolution: {integrity: sha512-sQOnWpMko4JLeykwyjFTxnhqjd/3NOG2OyMuvK76Wnnwh8DRrNf2VEs2kmSvLl7MndMlOj7Kh5U154dVcvhmKQ==} + 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-codegen/core@2.6.8': + resolution: {integrity: sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==} + 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-codegen/plugin-helpers@2.7.2': + 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 + + '@graphql-codegen/plugin-helpers@3.1.2': + resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} + 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-codegen/schema-ast@2.6.1': + resolution: {integrity: sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==} + 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-codegen/typescript-operations@2.5.13': + resolution: {integrity: sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==} + 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-codegen/typescript@2.8.8': + resolution: {integrity: sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==} + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + + '@graphql-codegen/visitor-plugin-common@2.13.8': + resolution: {integrity: sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==} + 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-tools/code-file-loader@7.3.23': + resolution: {integrity: sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/graphql-tag-pluck@7.5.2': + resolution: {integrity: sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/load@7.8.14': + resolution: {integrity: sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/merge@8.4.2': + resolution: {integrity: sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/optimize@1.4.0': + resolution: {integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/relay-operation-optimizer@6.5.18': + resolution: {integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/schema@9.0.19': + resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/utils@8.13.1': + resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-tools/utils@9.2.1': + resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + + '@graphql-typed-document-node/core@3.2.0': + resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + 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 + + '@hapi/address@2.1.4': + resolution: {integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==} + deprecated: Moved to 'npm install @sideway/address' + + '@hapi/bourne@1.3.2': + resolution: {integrity: sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==} + deprecated: This version has been deprecated and is no longer supported or maintained + + '@hapi/hoek@8.5.1': + resolution: {integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==} + deprecated: This version has been deprecated and is no longer supported or maintained + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/joi@15.1.1': + resolution: {integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==} + deprecated: Switch to 'npm install joi' + + '@hapi/topo@3.1.6': + resolution: {integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==} + deprecated: This version has been deprecated and is no longer supported or maintained + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@humanwhocodes/config-array@0.5.0': + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + + '@humanwhocodes/object-schema@1.2.1': + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + + '@isaacs/ttlcache@1.4.1': + resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} + engines: {node: '>=12'} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@27.5.1': + resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@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} + + '@jest/create-cache-key-function@29.7.0': + resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/environment@27.5.1': + resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/environment@28.1.3': + resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@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} + + '@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} + + '@jest/fake-timers@27.5.1': + resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@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} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@27.5.1': + resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/globals@28.1.3': + resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/reporters@27.2.2': + resolution: {integrity: sha512-ufwZ8XoLChEfPffDeVGroYbhbcYPom3zKDiv4Flhe97rr/o2IfUXoWkDUDoyJ3/V36RFIMjokSu0IJ/pbFtbHg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/reporters@27.5.1': + resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@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: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@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} + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@27.5.1': + resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@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} + + '@jest/test-result@27.2.2': + resolution: {integrity: sha512-yENoDEoWlEFI7l5z7UYyJb/y5Q8RqbPd4neAVhKr6l+vVaQOPKf8V/IseSMJI9+urDUIxgssA7RGNyCRhGjZvw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/test-result@27.5.1': + resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@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} + + '@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} + + '@jest/test-sequencer@27.5.1': + resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@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} + + '@jest/transform@27.5.1': + resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@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} + + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + + '@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} + + '@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} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.4.15': + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@lezer/common@1.2.1': + resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==} + + '@lezer/lr@1.4.0': + resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==} + + '@lmdb/lmdb-darwin-arm64@2.5.2': + resolution: {integrity: sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==} + cpu: [arm64] + os: [darwin] + + '@lmdb/lmdb-darwin-arm64@2.5.3': + resolution: {integrity: sha512-RXwGZ/0eCqtCY8FLTM/koR60w+MXyvBUpToXiIyjOcBnC81tAlTUHrRUavCEWPI9zc9VgvpK3+cbumPyR8BSuA==} + cpu: [arm64] + os: [darwin] + + '@lmdb/lmdb-darwin-x64@2.5.2': + resolution: {integrity: sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==} + cpu: [x64] + os: [darwin] + + '@lmdb/lmdb-darwin-x64@2.5.3': + resolution: {integrity: sha512-337dNzh5yCdNCTk8kPfoU7jR3otibSlPDGW0vKZT97rKnQMb9tNdto3RtWoGPsQ8hKmlRZpojOJtmwjncq1MoA==} + cpu: [x64] + os: [darwin] + + '@lmdb/lmdb-linux-arm64@2.5.2': + resolution: {integrity: sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==} + cpu: [arm64] + os: [linux] + + '@lmdb/lmdb-linux-arm64@2.5.3': + resolution: {integrity: sha512-VJw60Mdgb4n+L0fO1PqfB0C7TyEQolJAC8qpqvG3JoQwvyOv6LH7Ib/WE3wxEW9nuHmVz9jkK7lk5HfWWgoO1Q==} + cpu: [arm64] + os: [linux] + + '@lmdb/lmdb-linux-arm@2.5.2': + resolution: {integrity: sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==} + cpu: [arm] + os: [linux] + + '@lmdb/lmdb-linux-arm@2.5.3': + resolution: {integrity: sha512-mU2HFJDGwECkoD9dHQEfeTG5mp8hNS2BCfwoiOpVPMeapjYpQz9Uw3FkUjRZ4dGHWKbin40oWHuL0bk2bCx+Sg==} + cpu: [arm] + os: [linux] + + '@lmdb/lmdb-linux-x64@2.5.2': + resolution: {integrity: sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==} + cpu: [x64] + os: [linux] + + '@lmdb/lmdb-linux-x64@2.5.3': + resolution: {integrity: sha512-qaReO5aV8griBDsBr8uBF/faO3ieGjY1RY4p8JvTL6Mu1ylLrTVvOONqKFlNaCwrmUjWw5jnf7VafxDAeQHTow==} + cpu: [x64] + os: [linux] + + '@lmdb/lmdb-win32-x64@2.5.2': + resolution: {integrity: sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==} + cpu: [x64] + os: [win32] + + '@lmdb/lmdb-win32-x64@2.5.3': + resolution: {integrity: sha512-cK+Elf3RjEzrm3SerAhrFWL5oQAsZSJ/LmjL1joIpTfEP1etJJ9CTRvdaV6XLYAxaEkfdhk/9hOvHLbR9yIhCA==} + cpu: [x64] + os: [win32] + + '@mdx-js/mdx@1.6.22': + resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} + + '@mdx-js/react@1.6.22': + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 + + '@mdx-js/util@1.6.22': + resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==} + + '@mischnic/json-sourcemap@0.1.1': + resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==} + engines: {node: '>=12.0.0'} + + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2': + resolution: {integrity: sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ==} + cpu: [arm64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2': + resolution: {integrity: sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw==} + cpu: [x64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2': + resolution: {integrity: sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==} + cpu: [arm64] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2': + resolution: {integrity: sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==} + cpu: [arm] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2': + resolution: {integrity: sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA==} + cpu: [x64] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2': + resolution: {integrity: sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ==} + cpu: [x64] + os: [win32] + + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@nrwl/cli@13.2.3': + resolution: {integrity: sha512-4hrOYQ9MqhWOdjQTwuQqHTfPu8lYgdFCE39PVWAcePtoi67mUeba54HkyT6nkTHI1TbO7q8Kf+R73dRhhxDlpA==} + hasBin: true + + '@nrwl/cli@14.0.5': + resolution: {integrity: sha512-WlJ7s5Zvg8q43ydk8OamDNlc78rAN+HR2ocvWDqF/SVUmLebqTA4eWennLNIU7cyaB8tuGU6LW/MEpueQp43bw==} + + '@nrwl/cli@14.8.9': + resolution: {integrity: sha512-NsnVfM4B4Fqjvu9a9ZeJAzDKQclKeyWvSMXLGCebzsKcIBwbeh6G30nmVV8Z8VkdaJDOvle6QsYSVVNrl416fw==} + + '@nrwl/cypress@13.2.3': + resolution: {integrity: sha512-gp6yluBx37CV/ROHDusri2ew6dR+jFMRGZXmL4Jp+TaFc6ewAI+aQDHUI6py6tvNNtZ+8P/x1hPiaPikn8w5vQ==} + peerDependencies: + cypress: '>= 3 < 9' + peerDependenciesMeta: + cypress: + optional: true + + '@nrwl/cypress@14.0.5': + resolution: {integrity: sha512-oaXg2r/TmkPMhFCGUTLL+AkORu/zgnzEvnUxWT8muUuGrwAI0xqp3Tkj1V++JAEwLZZWkLyy2hAdG4XkqV7w3A==} + peerDependencies: + cypress: '>= 3 < 10' + peerDependenciesMeta: + cypress: + optional: true + + '@nrwl/devkit@13.2.3': + resolution: {integrity: sha512-/cp8hFclOXSAjj9pwb6bOU8yw593HfelcCBi8o8Jhb0Luhn1RzLCOpmHNsOf2hWzSUPEr0BuI0R55ubCEB+k6A==} + + '@nrwl/devkit@14.0.5': + resolution: {integrity: sha512-2kGv3tquuf3xko9FVG+Q6gUMt+RsOigdieANZtvsPaNUAxJOD5DabxHA1pwkd8AUg6bewpv64cVLgvhUIBj1MQ==} + peerDependencies: + nx: '>= 13.10 <= 15' + + '@nrwl/devkit@14.8.9': + resolution: {integrity: sha512-C9PxTxTrVundP9xDbub7apkMPP1v1PSIu/d82VdOVnnU3Kvc2fRX2gafSdH+BMBP3SE4bIBblQI6gUuDXbYubw==} + peerDependencies: + nx: '>= 13.10 <= 15' + + '@nrwl/eslint-plugin-nx@14.0.5': + resolution: {integrity: sha512-mtQ3Lw1Cslx1SN0vNsJvOB8U3Xq05AHRF1dSuH7DAqki0EzEqv0seJZ7XS5Nxh0N3IbWEdmCigkxVP9xWCKQXQ==} + peerDependencies: + '@typescript-eslint/parser': ~5.18.0 + eslint-config-prettier: ^8.1.0 + peerDependenciesMeta: + eslint-config-prettier: + optional: true + + '@nrwl/gatsby@13.2.3': + resolution: {integrity: sha512-AfATe8aORi2qZWTcat+LZa1Jq0OjFYt56FKINQrxiuxHBm58wIWRVRakwUvNY0WWbUWGVoIKYzD0FCAkoIKA+g==} + peerDependencies: + gatsby: ^4.1.3 + + '@nrwl/jest@13.2.3': + resolution: {integrity: sha512-M9/x0uZNSVKkcyNHcA2+Muj23KRo9SDiCsTb7HnkHhtSbhIWMd1knKP45bOr8CjeeiKNPeervx7uiN5516z8JA==} + + '@nrwl/jest@14.0.5': + resolution: {integrity: sha512-cks26Hbz1cAfuPmXM56XisY5Z7inKU0Qbx8L7t5Ao2PcRwaxtv3rBuoGJ53WP+AzdGkduH/xEu+m5Q8pBvX/Hw==} + + '@nrwl/jest@14.8.9': + resolution: {integrity: sha512-TTfkwMKiecWAL4r6vkEZCoF+Z+zgeM9fusMEUOjgRZfb+YN1UlJf2B6SrmcsaKoKtEaTC1OEvPSWOZ9w3u/Adw==} + + '@nrwl/js@14.0.5': + resolution: {integrity: sha512-QSEdfyZZhMYQ2u7TVLCNYl9JD5AtDLqjREXc6Kncy/W0ukeXH3Js3nMDvsmEmTgv74MJesmdvGP3F6083pQmUw==} + + '@nrwl/js@14.8.9': + resolution: {integrity: sha512-hS97yfoY7m+WrWF61G0bKmkUiMG8sGALYgVd+uhkvj3pujJBJ6qIy9MmeOCgCTCQZ8owmZgFh1NS9PgBs1D4Kg==} + + '@nrwl/linter@13.2.3': + resolution: {integrity: sha512-kdzPWYzR96XYghJ5yIaYSybDrtcAcSxgcscwP1UWvME19O2W8DHbhIj3AzBgjSG0X6hBEh6k9kpyQ49jNkUMCw==} + + '@nrwl/linter@14.0.5': + resolution: {integrity: sha512-nRHJ8aeiQ/bVqZaqhT9Yi3TiopzQvWxcGID2NG552PrGyVAcJ5a3M5lmx2WRxClAsNHcHQ84ioLZpAtTdrFQFw==} + peerDependencies: + eslint: ^8.0.0 + peerDependenciesMeta: + eslint: + optional: true + + '@nrwl/linter@14.8.9': + resolution: {integrity: sha512-JqDAIxL2Tmb+jlNb706XuldMIDBKD2FyDnYTTGyQ+nKcB/0RISEEG9o+A/JnhG1YN8PxZ/oGnrsY65agfufCdg==} + peerDependencies: + eslint: ^8.0.0 + peerDependenciesMeta: + eslint: + optional: true + + '@nrwl/nx-plugin@14.8.9': + resolution: {integrity: sha512-L3Da8d75KEWLTQYeZPAJCID6wDCNxNoG12Hf824kLjsmKcrLUDSqjuRVv1+qZsg6Y5D1nDGw+9busg6fyz4loQ==} + + '@nrwl/react@13.2.3': + resolution: {integrity: sha512-sGLLJ1opQzBNTRvs+tcC+HZofO6QnVe8aQvRKvjC71Bf2u0KeJDFkARIw0/CQKKqgfuGP0mM8Da/BnO6sAfitw==} + + '@nrwl/react@14.0.5': + resolution: {integrity: sha512-6DWIRgUBccNmGGNb4Al4UHyzs5A7aiwWT1dmRx7vcGQPMMuz2mjPcZJFrqLjMagS24bYCtWLsdnOPy7GpurnUw==} + + '@nrwl/storybook@13.2.3': + resolution: {integrity: sha512-+stufDpXPoiT5vf2jNOLC2YRfPyebbltrPMQ0n8YxqpzN91XHj9ieYmErJ6t2AgEutcDpvfbZkVEYKqPNNn3hw==} + + '@nrwl/storybook@14.0.5': + resolution: {integrity: sha512-ZbhuaO5EPJO+DZEUcGzq62WQBmQ8WfWnMuhN9SLFPDsq1n4PA2tSj9QSOHF0uMF2GwrooBzA/enGdquQt7w0jA==} + + '@nrwl/tao@13.2.3': + resolution: {integrity: sha512-vn+GqvFVinqAXzvbHznPBtCg9OCfirh3hF68sZgY2C6jZ3m47XwST3mLTRSDTtSDy9QfUrSZ6p4uAk2Iht0yBQ==} + hasBin: true + + '@nrwl/tao@14.0.5': + resolution: {integrity: sha512-sxnouiZALWF5ujp9XPf8HGbUS1KLIoUtN9IJ/H3lVV8jCQNJ1FPwriM9HPLYajORZ+nSU9DRi2aqMIuaI9yxhQ==} + hasBin: true + + '@nrwl/tao@14.8.9': + resolution: {integrity: sha512-llaZvTCXUmj4WtpbnjZOOzyTWcZIkj7gmtY5sa1nrTvbls9BaFRabOvfW4/z3s3E3iavni9ENMuuaHOfHyiRkg==} + hasBin: true + + '@nrwl/web@13.2.3': + resolution: {integrity: sha512-L1Li+fjItOzHOG62wDPE9E8l9bsoVUpqCWRKvhumI6HdjrUbhHFSoW1VkTah1Nj7tMp9+fp1m+4CGApdn+bcAg==} + + '@nrwl/web@14.0.5': + resolution: {integrity: sha512-pkKlrNl71vWH9yP7/oJ2tX6/LNgDloBxexFd9apubqsO5AozYUch0SOVn2LCi7avGwvRXkTK3WkWUfIdSU9qbQ==} + + '@nrwl/workspace@13.2.3': + resolution: {integrity: sha512-dFB6XXDLP4Nmh/Sw8Euwdt7f0tg1O6JxJNvXV2BfWG1rK3dmhTz4Q+8fgxl7AxsrToVrXDAh16mPyfAzpqH4pw==} + peerDependencies: + prettier: ^2.3.0 + peerDependenciesMeta: + prettier: + optional: true + + '@nrwl/workspace@14.0.5': + resolution: {integrity: sha512-7UJYLA6S9OjokmR3CoH/0ktAkXTdVMoI/tAwVqPW3KJ0kGRDh8GsM109d+l4N60maU/gweh5KxPDjE0SRYouIg==} + peerDependencies: + prettier: ^2.5.1 + peerDependenciesMeta: + prettier: + optional: true + + '@nrwl/workspace@14.8.9': + resolution: {integrity: sha512-kn5zPhBG0OFwKPCVkgY0t1Jke1KAQyyoYC0d5JhON3KW/TgXrOeUHXOjHr2cL5yCnRLcqdwPxaSqwfK2JFUc2g==} + peerDependencies: + prettier: ^2.6.2 + peerDependenciesMeta: + prettier: + optional: true + + '@parcel/bundler-default@2.6.2': + resolution: {integrity: sha512-XIa3had/MIaTGgRFkHApXwytYs77k4geaNcmlb6nzmAABcYjW1CLYh83Zt0AbzLFsDT9ZcRY3u2UjhNf6efSaw==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/cache@2.6.2': + resolution: {integrity: sha512-hhJ6AsEGybeQZd9c/GYqfcKTgZKQXu3Xih6TlnP3gdR3KZoJOnb40ovHD1yYg4COvfcXThKP1cVJ18J6rcv3IA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@parcel/core': ^2.6.2 + + '@parcel/codeframe@2.6.2': + resolution: {integrity: sha512-oFlHr6HCaYYsB4SHkU+gn9DKtbzvv3/4NdwMX0/6NAKyYVI7inEsXyPGw2Bbd2ZCFatW9QJZUETF0etvh5AEfQ==} + engines: {node: '>= 12.0.0'} + + '@parcel/compressor-raw@2.6.2': + resolution: {integrity: sha512-P3c8jjV5HVs+fNDjhvq7PtHXNm687nit1iwTS5VAt+ScXKhKBhoIJ56q+9opcw0jnXVjAAgZqcRZ50oAJBGdKw==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/core@2.6.2': + resolution: {integrity: sha512-JlKS3Ux0ngmdooSBbzQLShHJdsapF9E7TGMo1hFaHRquZip/DaqzvysYrgMJlDuCoLArciq5ei7ZKzGeK9zexA==} + engines: {node: '>= 12.0.0'} + + '@parcel/diagnostic@2.6.2': + resolution: {integrity: sha512-3ODSBkKVihENU763z1/1DhGAWFhYWRxOCOShC72KXp+GFnSgGiBsxclu8NBa/N948Rzp8lqQI8U1nLcKkh0O/w==} + engines: {node: '>= 12.0.0'} + + '@parcel/events@2.6.2': + resolution: {integrity: sha512-IaCjOeA5ercdFVi1EZOmUHhGfIysmCUgc2Th9hMugSFO0I3GzRsBcAdP6XPfWm+TV6sQ/qZRfdk/drUxoAupnw==} + engines: {node: '>= 12.0.0'} + + '@parcel/fs-search@2.6.2': + resolution: {integrity: sha512-4STid1zqtGnmGjHD/2TG2g/zPDiCTtE3IAS24QYH3eiUAz2uoKGgEqd2tZbZ2yI96jtCuIhC1bzVu8Hbykls7w==} + engines: {node: '>= 12.0.0'} + + '@parcel/fs@2.6.2': + resolution: {integrity: sha512-mIhqdF3tjgeoIGqW7Nc/xfM2ClID7o8livwUe5lpQEP+ZaIBiMigXs6ckv3WToCACK+3uylrSD2A/HmlhrxMqQ==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@parcel/core': ^2.6.2 + + '@parcel/graph@2.6.2': + resolution: {integrity: sha512-DPH4G/RBFJWayIN2fnhDXqhUw75n7k15YsGzdDKiXuwwz4wMOjoL4cyrI6zOf1SIyh3guRmeTYJ4jjPzwrLYww==} + engines: {node: '>= 12.0.0'} + + '@parcel/hash@2.6.2': + resolution: {integrity: sha512-tFB+cJU1Wqag6WyJgsmx3nx+xhmjcNZqtWh/MtK1lHNnZdDRk6bjr7SapnygBwruz+SmSt5bbdVThcpk2dRCcA==} + engines: {node: '>= 12.0.0'} + + '@parcel/logger@2.6.2': + resolution: {integrity: sha512-Sz5YGCj1DbEiX0/G8Uw97LLZ0uEK+qtWcRAkHNpJpeMiSqDiRNevxXltz42EcLo+oCh4d4wyiVzwi9mNwzhS/Q==} + engines: {node: '>= 12.0.0'} + + '@parcel/markdown-ansi@2.6.2': + resolution: {integrity: sha512-N/h9J4eibhc+B+krzvPMzFUWL37GudBIZBa7XSLkcuH6MnYYfh6rrMvhIyyESwk6VkcZNVzAeZrGQqxEs0dHDQ==} + engines: {node: '>= 12.0.0'} + + '@parcel/namer-default@2.6.2': + resolution: {integrity: sha512-mp7bx/BQaIuohmZP0uE+gAmDBzzH0Yu8F4yCtE611lc6i0mou+nWRhzyKLNC/ieuI8DB3BFh2QQKeTxJn4W0qg==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/node-resolver-core@2.6.2': + resolution: {integrity: sha512-4b2L5QRYlTybvv3+TIRtwg4PPJXy+cRShCBa8eu1K0Fj297Afe8MOZrcVV+RIr2KPMIRXcIJoqDmOhyci/DynA==} + engines: {node: '>= 12.0.0'} + + '@parcel/optimizer-terser@2.6.2': + resolution: {integrity: sha512-ZSEVQ3G3zOiVPeHvH+BrHegZybrQj9kWQAaAA92leSqbvf6UaX4xqXbGRg2OttNFtbGYBzIl28Zm4t2SLeUIuA==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/package-manager@2.6.2': + resolution: {integrity: sha512-xGMqTgnwTE3rgzYwUZMKxR8fzmP5iSYz/gj2H8FR3pEmwh/8xCMtNjTSth+hPVGuqgRZ6JxwpfdY/fXdZ61ViQ==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@parcel/core': ^2.6.2 + + '@parcel/packager-js@2.6.2': + resolution: {integrity: sha512-fm5rKWtaExR0W+UEKWivXNPysRFxuBCdskdxDByb1J1JeGMvp7dJElbi8oXDAQM4MnM5EyG7cg47SlMZNTLm4A==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/packager-raw@2.6.2': + resolution: {integrity: sha512-Rl3ZkMtMjb+LEvRowijDD8fibUAS6rWK0/vZQMk9cDNYCP2gCpZayLk0HZIGxneeTbosf/0sbngHq4VeRQOnQA==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/plugin@2.6.2': + resolution: {integrity: sha512-wbbWsM23Pr+8xtLSvf+UopXdVYlpKCCx6PuuZaZcKo+9IcDCWoGXD4M8Kkz14qBmkFn5uM00mULUqmVdSibB2w==} + engines: {node: '>= 12.0.0'} + + '@parcel/reporter-dev-server@2.6.2': + resolution: {integrity: sha512-5QtL3ETMFL161jehlIK6rjBM+Pqk5cMhr60s9yLYqE1GY4M4gMj+Act+FXViyM6gmMA38cPxDvUsxTKBYXpFCw==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/resolver-default@2.6.2': + resolution: {integrity: sha512-Lo5sWb5QkjWvdBr+TdmAF6Mszb/sMldBBatc1osQTkHXCy679VMH+lfyiWxHbwK+F1pmdMeBJpYcMxvrgT8EsA==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/runtime-js@2.6.2': + resolution: {integrity: sha512-0S3JFwgvs6FmEx2dHta9R0Sfu8vCnFAm4i7Y4efGHtAcTrF2CHjyiz4/hG+RQGJ70eoWW463Q+8qt6EKbkaOBQ==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/source-map@2.1.1': + resolution: {integrity: sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==} + engines: {node: ^12.18.3 || >=14} + + '@parcel/transformer-js@2.6.2': + resolution: {integrity: sha512-uhXAMTjE/Q61amflV8qVpb73mj+mIdXIMH0cSks1/gDIAxcgIvWvrE14P4TvY6zJ1q1iRJRIRUN6cFSXqjjLSA==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + peerDependencies: + '@parcel/core': ^2.6.2 + + '@parcel/transformer-json@2.6.2': + resolution: {integrity: sha512-QGcIIvbPF/u10ihYvQhxXqb2QMXWSzcBxJrOSIXIl74TUGrWX05D5LmjDA/rzm/n/kvRnBkFNP60R/smYb8x+Q==} + engines: {node: '>= 12.0.0', parcel: ^2.6.2} + + '@parcel/types@2.6.2': + resolution: {integrity: sha512-MV8BFpCIs2jMUvK2RHqzkoiuOQ//JIbrD1zocA2YRW3zuPL/iABvbAABJoXpoPCKikVWOoCWASgBfWQo26VvJQ==} + + '@parcel/utils@2.6.2': + resolution: {integrity: sha512-Ug7hpRxjgbY5AopW55nY7MmGMVmwmN+ihfCmxJkBUoESTG/3iq8uME7GjyOgW5DkQc2K7q62i8y8N0wCJT1u4Q==} + engines: {node: '>= 12.0.0'} + + '@parcel/watcher-android-arm64@2.4.1': + resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.4.1': + resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.4.1': + resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.4.1': + resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.4.1': + resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.4.1': + resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.4.1': + resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.4.1': + resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.4.1': + resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-win32-arm64@2.4.1': + resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.4.1': + resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.4.1': + resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.0.0-alpha.11': + resolution: {integrity: sha512-zMIAsFLcnB82kkk0kSOZ/zgyihb8sty0zVrsz+3ruoYXkchymWsCDsxiX4v+X2s8Jppk3JE8vlnD4DKs3QTOEQ==} + engines: {node: '>= 10.0.0'} + + '@parcel/watcher@2.0.4': + resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} + engines: {node: '>= 10.0.0'} + + '@parcel/watcher@2.4.1': + resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} + engines: {node: '>= 10.0.0'} + + '@parcel/workers@2.6.2': + resolution: {integrity: sha512-wBgUjJQm+lDd12fPRUmk09+ujTA9DgwPdqylSFK0OtI/yT6A+2kArUqjp8IwWo2tCJXoMzXBne2XQIWKqMiN4Q==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@parcel/core': ^2.6.2 + + '@phenomnomnominal/tsquery@4.1.1': + resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} + peerDependencies: + typescript: ^3 || ^4 + + '@pmmmwh/react-refresh-webpack-plugin@0.5.13': + resolution: {integrity: sha512-odZVYXly+JwzYri9rKqqUAk0cY6zLpv4dxoKinhoJNShV36Gpxf+CyDIILJ4tYsJ1ZxIWs233Y39iVnynvDA/g==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x || 5.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + + '@react-native-community/cli-clean@13.6.6': + resolution: {integrity: sha512-cBwJTwl0NyeA4nyMxbhkWZhxtILYkbU3TW3k8AXLg+iGphe0zikYMGB3T+haTvTc6alTyEFwPbimk9bGIqkjAQ==} + + '@react-native-community/cli-config@13.6.6': + resolution: {integrity: sha512-mbG425zCKr8JZhv/j11382arezwS/70juWMsn8j2lmrGTrP1cUdW0MF15CCIFtJsqyK3Qs+FTmqttRpq81QfSg==} + + '@react-native-community/cli-debugger-ui@13.6.6': + resolution: {integrity: sha512-Vv9u6eS4vKSDAvdhA0OiQHoA7y39fiPIgJ6biT32tN4avHDtxlc6TWZGiqv7g98SBvDWvoVAmdPLcRf3kU+c8g==} + + '@react-native-community/cli-doctor@13.6.6': + resolution: {integrity: sha512-TWZb5g6EmQe2Ua2TEWNmyaEayvlWH4GmdD9ZC+p8EpKFpB1NpDGMK6sXbpb42TDvwZg5s4TDRplK0PBEA/SVDg==} + + '@react-native-community/cli-hermes@13.6.6': + resolution: {integrity: sha512-La5Ie+NGaRl3klei6WxKoOxmCUSGGxpOk6vU5pEGf0/O7ky+Ay0io+zXYUZqlNMi/cGpO7ZUijakBYOB/uyuFg==} + + '@react-native-community/cli-platform-android@13.6.6': + resolution: {integrity: sha512-/tMwkBeNxh84syiSwNlYtmUz/Ppc+HfKtdopL/5RB+fd3SV1/5/NPNjMlyLNgFKnpxvKCInQ7dnl6jGHJjeHjg==} + + '@react-native-community/cli-platform-apple@13.6.6': + resolution: {integrity: sha512-bOmSSwoqNNT3AmCRZXEMYKz1Jf1l2F86Nhs7qBcXdY/sGiJ+Flng564LOqvdAlVLTbkgz47KjNKCS2pP4Jg0Mg==} + + '@react-native-community/cli-platform-ios@13.6.6': + resolution: {integrity: sha512-vjDnRwhlSN5ryqKTas6/DPkxuouuyFBAqAROH4FR1cspTbn6v78JTZKDmtQy9JMMo7N5vZj1kASU5vbFep9IOQ==} + + '@react-native-community/cli-server-api@13.6.6': + resolution: {integrity: sha512-ZtCXxoFlM7oDv3iZ3wsrT3SamhtUJuIkX2WePLPlN5bcbq7zimbPm2lHyicNJtpcGQ5ymsgpUWPCNZsWQhXBqQ==} + + '@react-native-community/cli-tools@13.6.6': + resolution: {integrity: sha512-ptOnn4AJczY5njvbdK91k4hcYazDnGtEPrqIwEI+k/CTBHNdb27Rsm2OZ7ye6f7otLBqF8gj/hK6QzJs8CEMgw==} + + '@react-native-community/cli-types@13.6.6': + resolution: {integrity: sha512-733iaYzlmvNK7XYbnWlMjdE+2k0hlTBJW071af/xb6Bs+hbJqBP9c03FZuYH2hFFwDDntwj05bkri/P7VgSxug==} + + '@react-native-community/cli@13.6.6': + resolution: {integrity: sha512-IqclB7VQ84ye8Fcs89HOpOscY4284VZg2pojHNl8H0Lzd4DadXJWQoxC7zWm8v2f8eyeX2kdhxp2ETD5tceIgA==} + engines: {node: '>=18'} + hasBin: true + + '@react-native/assets-registry@0.74.83': + resolution: {integrity: sha512-2vkLMVnp+YTZYTNSDIBZojSsjz8sl5PscP3j4GcV6idD8V978SZfwFlk8K0ti0BzRs11mzL0Pj17km597S/eTQ==} + engines: {node: '>=18'} + + '@react-native/babel-plugin-codegen@0.74.83': + resolution: {integrity: sha512-+S0st3t4Ro00bi9gjT1jnK8qTFOU+CwmziA7U9odKyWrCoRJrgmrvogq/Dr1YXlpFxexiGIupGut1VHxr+fxJA==} + engines: {node: '>=18'} + + '@react-native/babel-preset@0.74.83': + resolution: {integrity: sha512-KJuu3XyVh3qgyUer+rEqh9a/JoUxsDOzkJNfRpDyXiAyjDRoVch60X/Xa/NcEQ93iCVHAWs0yQ+XGNGIBCYE6g==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/codegen@0.74.83': + resolution: {integrity: sha512-GgvgHS3Aa2J8/mp1uC/zU8HuTh8ZT5jz7a4mVMWPw7+rGyv70Ba8uOVBq6UH2Q08o617IATYc+0HfyzAfm4n0w==} + engines: {node: '>=18'} + peerDependencies: + '@babel/preset-env': ^7.1.6 + + '@react-native/community-cli-plugin@0.74.83': + resolution: {integrity: sha512-7GAFjFOg1mFSj8bnFNQS4u8u7+QtrEeflUIDVZGEfBZQ3wMNI5ycBzbBGycsZYiq00Xvoc6eKFC7kvIaqeJpUQ==} + engines: {node: '>=18'} + + '@react-native/debugger-frontend@0.74.83': + resolution: {integrity: sha512-RGQlVUegBRxAUF9c1ss1ssaHZh6CO+7awgtI9sDeU0PzDZY/40ImoPD5m0o0SI6nXoVzbPtcMGzU+VO590pRfA==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.74.83': + resolution: {integrity: sha512-UH8iriqnf7N4Hpi20D7M2FdvSANwTVStwFCSD7VMU9agJX88Yk0D1T6Meh2RMhUu4kY2bv8sTkNRm7LmxvZqgA==} + engines: {node: '>=18'} + + '@react-native/gradle-plugin@0.74.83': + resolution: {integrity: sha512-Pw2BWVyOHoBuJVKxGVYF6/GSZRf6+v1Ygc+ULGz5t20N8qzRWPa2fRZWqoxsN7TkNLPsECYY8gooOl7okOcPAQ==} + engines: {node: '>=18'} + + '@react-native/js-polyfills@0.74.83': + resolution: {integrity: sha512-/t74n8r6wFhw4JEoOj3bN71N1NDLqaawB75uKAsSjeCwIR9AfCxlzZG0etsXtOexkY9KMeZIQ7YwRPqUdNXuqw==} + engines: {node: '>=18'} + + '@react-native/metro-babel-transformer@0.74.83': + resolution: {integrity: sha512-hGdx5N8diu8y+GW/ED39vTZa9Jx1di2ZZ0aapbhH4egN1agIAusj5jXTccfNBwwWF93aJ5oVbRzfteZgjbutKg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/normalize-colors@0.74.83': + resolution: {integrity: sha512-jhCY95gRDE44qYawWVvhTjTplW1g+JtKTKM3f8xYT1dJtJ8QWv+gqEtKcfmOHfDkSDaMKG0AGBaDTSK8GXLH8Q==} + + '@react-native/virtualized-lists@0.74.83': + resolution: {integrity: sha512-rmaLeE34rj7py4FxTod7iMTC7BAsm+HrGA8WxYmEJeyTV7WSaxAkosKoYBz8038mOiwnG9VwA/7FrB6bEQvn1A==} + engines: {node: '>=18'} + peerDependencies: + '@types/react': ^18.2.6 + react: '*' + react-native: '*' + peerDependenciesMeta: + '@types/react': + optional: true + + '@react-spring/animated@9.7.3': + resolution: {integrity: sha512-5CWeNJt9pNgyvuSzQH+uy2pvTg8Y4/OisoscZIR8/ZNLIOI+CatFBhGZpDGTF/OzdNFsAoGk3wiUYTwoJ0YIvw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/core@9.7.3': + resolution: {integrity: sha512-IqFdPVf3ZOC1Cx7+M0cXf4odNLxDC+n7IN3MDcVCTIOSBfqEcBebSv+vlY5AhM0zw05PDbjKrNmBpzv/AqpjnQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/konva@9.7.3': + resolution: {integrity: sha512-R9sY6SiPGYqz1383P5qppg5z57YfChVknOC1UxxaGxpw+WiZa8fZ4zmZobslrw+os3/+HAXZv8O+EvU/nQpf7g==} + peerDependencies: + konva: '>=2.6' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-konva: ^16.8.0 || ^16.8.7-0 || ^16.9.0-0 || ^16.10.1-0 || ^16.12.0-0 || ^16.13.0-0 || ^17.0.0-0 || ^17.0.1-0 || ^17.0.2-0 || ^18.0.0-0 + + '@react-spring/native@9.7.3': + resolution: {integrity: sha512-4mpxX3FuEBCUT6ae2fjhxcJW6bhr2FBwFf274eXB7n+U30Gdg8Wo2qYwcUnmiAA0S3dvP8vLTazx3+CYWFShnA==} + peerDependencies: + react: ^16.8.0 || >=17.0.0 || >=18.0.0 + react-native: '>=0.58' + + '@react-spring/shared@9.7.3': + resolution: {integrity: sha512-NEopD+9S5xYyQ0pGtioacLhL2luflh6HACSSDUZOwLHoxA5eku1UPuqcJqjwSD6luKjjLfiLOspxo43FUHKKSA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/three@9.7.3': + resolution: {integrity: sha512-Q1p512CqUlmMK8UMBF/Rj79qndhOWq4XUTayxMP9S892jiXzWQuj+xC3Xvm59DP/D4JXusXpxxqfgoH+hmOktA==} + peerDependencies: + '@react-three/fiber': '>=6.0' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + three: '>=0.126' + + '@react-spring/types@9.7.3': + resolution: {integrity: sha512-Kpx/fQ/ZFX31OtlqVEFfgaD1ACzul4NksrvIgYfIFq9JpDHFwQkMVZ10tbo0FU/grje4rcL4EIrjekl3kYwgWw==} + + '@react-spring/web@9.7.3': + resolution: {integrity: sha512-BXt6BpS9aJL/QdVqEIX9YoUy8CE6TJrU0mNCqSoxdXlIeNcEBWOfIyE6B14ENNsyQKS3wOWkiJfco0tCr/9tUg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@react-spring/zdog@9.7.3': + resolution: {integrity: sha512-L+yK/1PvNi9n8cldiJ309k4LdxcPkeWE0W18l1zrP1IBIyd5NB5EPA8DMsGr9gtNnnIujtEzZk+4JIOjT8u/tw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-zdog: '>=1.0' + zdog: '>=1.0' + + '@react-three/fiber@8.16.5': + resolution: {integrity: sha512-ALRkdZj57mxgbvTHcSmepslgeWM0FXBMyII6l3gDodKhCLp3KRPXVOXKMo4jh7VhwTdYtEZeidkldYZtLSgnCw==} + peerDependencies: + expo: '>=43.0' + expo-asset: '>=8.4' + expo-file-system: '>=11.0' + expo-gl: '>=11.0' + react: '>=18.0' + react-dom: '>=18.0' + react-native: '>=0.64' + three: '>=0.133' + peerDependenciesMeta: + expo: + optional: true + expo-asset: + optional: true + expo-file-system: + optional: true + expo-gl: + optional: true + react-dom: + optional: true + react-native: + optional: true + + '@remix-run/router@1.16.0': + resolution: {integrity: sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==} + engines: {node: '>=14.0.0'} + + '@rnx-kit/chromium-edge-launcher@1.0.0': + resolution: {integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==} + engines: {node: '>=14.15'} + + '@rollup/plugin-babel@5.3.1': + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + + '@rollup/plugin-commonjs@20.0.0': + resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.38.3 + + '@rollup/plugin-image@2.1.1': + resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + + '@rollup/plugin-json@4.1.0': + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + + '@rollup/plugin-node-resolve@13.3.0': + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 + + '@rollup/pluginutils@3.1.0': + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.24.51': + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/is@0.14.0': + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sindresorhus/slugify@1.1.2': + resolution: {integrity: sha512-V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA==} + engines: {node: '>=10'} + + '@sindresorhus/transliterate@0.1.2': + resolution: {integrity: sha512-5/kmIOY9FF32nicXH+5yLNTX4NJ4atl7jRgqAJuIn/iyDFXBktOKDxCvyGE/EzmF4ngSUvjXxQUQlQiZ5lfw+w==} + engines: {node: '>=10'} + + '@sinonjs/commons@1.8.6': + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@sinonjs/fake-timers@8.1.0': + resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} + + '@sinonjs/fake-timers@9.1.2': + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + + '@socket.io/component-emitter@3.1.2': + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + + '@storybook/node-logger@6.1.20': + resolution: {integrity: sha512-Z6337htb1mxIccvCx2Ai0v9LPDlBlmXzeWhap3q2Y6hg8g1p4+0W5Y6bG9RmXqJoXLaT1trO8uAXgGO7AN92yg==} + + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1': + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1': + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1': + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1': + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@5.5.0': + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-svg-component@6.5.1': + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@5.5.0': + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} + + '@svgr/babel-preset@6.5.1': + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/core@5.5.0': + resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} + engines: {node: '>=10'} + + '@svgr/core@6.5.1': + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@5.5.0': + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@6.5.1': + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@5.5.0': + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@6.5.1': + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + + '@svgr/plugin-svgo@5.5.0': + resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} + engines: {node: '>=10'} + + '@svgr/plugin-svgo@6.5.1': + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/webpack@5.5.0': + resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} + engines: {node: '>=10'} + + '@svgr/webpack@6.5.1': + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} + + '@swc-node/core@1.13.1': + resolution: {integrity: sha512-emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==} + engines: {node: '>= 10'} + peerDependencies: + '@swc/core': '>= 1.4.13' + '@swc/types': '>= 0.1' + + '@swc-node/register@1.9.1': + resolution: {integrity: sha512-z//TBXJdRWXoISCXlQmVz+NMm8Qm/UvcfKiGC0tSJdfeVYf5EZkGqvk2OiRH4SIJ6OGFfS9T0YrvA2pDKzWtPA==} + peerDependencies: + '@swc/core': '>= 1.4.13' + typescript: '>= 4.3' + + '@swc-node/sourcemap-support@0.5.0': + resolution: {integrity: sha512-fbhjL5G0YvFoWwNhWleuBUfotiX+USiA9oJqu9STFw+Hb0Cgnddn+HVS/K5fI45mn92e8V+cHD2jgFjk4w2T9Q==} + + '@swc/core-darwin-arm64@1.5.5': + resolution: {integrity: sha512-Ol5ZwZYdTOZsv2NwjcT/qVVALKzVFeh+IJ4GNarr3P99+38Dkwi81OqCI1o/WaDXQYKAQC/V+CzMbkEuJJfq9Q==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + + '@swc/core-darwin-x64@1.5.5': + resolution: {integrity: sha512-XHWpKBIPKYLgh5/lV2PYjO84lkzf5JR51kjiloyz2Pa9HIV8tHoAP8bYdJwm4nUp2I7KcEh3pPH0AVu5LpxMKw==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + + '@swc/core-linux-arm-gnueabihf@1.5.5': + resolution: {integrity: sha512-vtoWNCWAe+CNSqtqIwFnIH48qgPPlUZKoQ4EVFeMM+7/kDi6SeNxoh5TierJs5bKAWxD49VkPvRoWFCk6V62mA==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + + '@swc/core-linux-arm64-gnu@1.5.5': + resolution: {integrity: sha512-L4l7M78U6h/rCAxId+y5Vu+1KfDRF6dJZtitFcaT293guiUQFwJv8gLxI4Jh5wFtZ0fYd0QaCuvh2Ip79CzGMg==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-arm64-musl@1.5.5': + resolution: {integrity: sha512-DkzJc13ukXa7oJpyn24BjIgsiOybYrc+IxjsQyfNlDrrs1QXP4elStcpkD02SsIuSyHjZV8Hw2HFBMQB3OHPrA==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + + '@swc/core-linux-x64-gnu@1.5.5': + resolution: {integrity: sha512-kj4ZwWJGeBEUzHrRQP2VudN+kkkYH7OI1dPVDc6kWQx5X4329JeKOas4qY0l7gDVjBbRwN9IbbPI6TIn2KfAug==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-linux-x64-musl@1.5.5': + resolution: {integrity: sha512-6pTorCs4mYhPhYtC4jNOnhGgjNd3DZcRoZ9P0tzXXP69aCbYjvlgNH/NRvAROp9AaVFeZ7a7PmCWb6+Rbe7NKg==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + + '@swc/core-win32-arm64-msvc@1.5.5': + resolution: {integrity: sha512-o0/9pstmEjwZyrY/bA+mymF0zH7E+GT/XCVqdKeWW9Wn3gTTyWa5MZnrFgI2THQ+AXwdglMB/Zo76ARQPaz/+A==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/core-win32-ia32-msvc@1.5.5': + resolution: {integrity: sha512-B+nypUwsmCuaH6RtKWgiPCb+ENjxstJPPJeMJvBqlJqyCaIkZzN4M07Ozi3xVv1VG21SRkd6G3xIqRoalrNc0Q==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + + '@swc/core-win32-x64-msvc@1.5.5': + resolution: {integrity: sha512-ry83ki9ZX0Q+GWGnqc2J618Z+FvKE8Ajn42F8EYi8Wj0q6Jz3mj+pJzgzakk2INm2ldEZ+FaRPipn4ozsZDcBg==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/core@1.5.5': + resolution: {integrity: sha512-M8O22EEgdSONLd+7KRrXj8pn+RdAZZ7ISnPjE9KCQQlI0kkFNEquWR+uFdlFxQfwlyCe/Zb6uGXGDvtcov4IMg==} + engines: {node: '>=10'} + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.4.14': + resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} + + '@swc/helpers@0.4.36': + resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==} + + '@swc/types@0.1.6': + resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==} + + '@szmarczak/http-timer@1.1.2': + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@tokenizer/token@0.3.0': + resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + + '@tootallnate/once@1.1.2': + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@turist/fetch@7.2.0': + resolution: {integrity: sha512-2x7EGw+6OJ29phunsbGvtxlNmSfcuPcyYudkMbi8gARCP9eJ1CtuMvnVUHL//O9Ixi9SJiug8wNt6lj86pN8XQ==} + peerDependencies: + node-fetch: '2' + + '@turist/time@0.0.2': + resolution: {integrity: sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.5': + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/common-tags@1.8.4': + resolution: {integrity: sha512-S+1hLDJPjWNDhcGxsxEbepzaxWqURP/o+3cP4aa2w7yBXgdcmKGQtZzP8JbyfOd0m+33nh+8+kvxYE2UJtBDkg==} + + '@types/configstore@2.1.1': + resolution: {integrity: sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/cookie@0.4.1': + resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + + '@types/cors@2.8.17': + resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} + + '@types/debug@0.0.30': + resolution: {integrity: sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@7.29.0': + resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} + + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + + '@types/estree@0.0.39': + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/express-serve-static-core@4.19.0': + resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==} + + '@types/express@4.17.21': + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + + '@types/get-port@3.2.0': + resolution: {integrity: sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==} + + '@types/glob@5.0.38': + resolution: {integrity: sha512-rTtf75rwyP9G2qO5yRpYtdJ6aU1QqEhWbtW55qEgquEDa6bXW0s2TWZfDm02GuppjEozOWG/F2UnPq5hAQb+gw==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hoist-non-react-statics@3.3.5': + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/http-proxy@1.17.14': + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/lodash@4.17.1': + resolution: {integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + + '@types/mkdirp@0.5.2': + resolution: {integrity: sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==} + + '@types/node-fetch@2.6.11': + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + + '@types/node@18.19.33': + resolution: {integrity: sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==} + + '@types/node@20.12.11': + resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==} + + '@types/node@8.10.66': + resolution: {integrity: sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==} + + '@types/npmlog@4.1.6': + resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/parse5@5.0.3': + resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==} + + '@types/prettier@2.7.3': + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + + '@types/q@1.5.8': + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + + '@types/qs@6.9.15': + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/reach__router@1.3.15': + resolution: {integrity: sha512-5WEHKGglRjq/Ae3F8UQxg+GYUIhTUEiyBT9GKPoOLU/vPTn8iZrRbdzxqvarOaGludIejJykHLMdOCdhgWqaxA==} + + '@types/react-reconciler@0.26.7': + resolution: {integrity: sha512-mBDYl8x+oyPX/VBb3E638N0B7xG+SPk/EAMcVPeexqus/5aTpTphQi0curhhshOqRrc9t6OPoJfEUkbymse/lQ==} + + '@types/react-reconciler@0.28.8': + resolution: {integrity: sha512-SN9c4kxXZonFhbX4hJrZy37yw9e7EIxcpHCxQv5JUS18wDE5ovkQKlqQEkufdJCCMfuI9BnjUJvhYeJ9x5Ra7g==} + + '@types/react@18.3.1': + resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==} + + '@types/resolve@1.17.1': + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + + '@types/rimraf@2.0.5': + resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + + '@types/sharp@0.30.5': + resolution: {integrity: sha512-EhO29617AIBqxoVtpd1qdBanWpspk/kD2B6qTFRJ31Q23Rdf+DNU1xlHSwtqvwq1vgOqBwq1i38SX+HGCymIQg==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@types/source-list-map@0.1.6': + resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/stylis@4.2.5': + resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==} + + '@types/tmp@0.0.33': + resolution: {integrity: sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/unist@3.0.2': + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + + '@types/use-sync-external-store@0.0.3': + resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==} + + '@types/vfile-message@2.0.0': + resolution: {integrity: sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==} + deprecated: This is a stub types definition. vfile-message provides its own type definitions, so you do not need this installed. + + '@types/vfile@3.0.2': + resolution: {integrity: sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==} + + '@types/webpack-sources@0.1.12': + resolution: {integrity: sha512-+vRVqE3LzMLLVPgZHUeI8k1YmvgEky+MOir5fQhKvFxpB8uZ0CFnGqxkRAmf8jvNhUBQzhuGZpIMNWZDeEyDIA==} + + '@types/webxr@0.5.16': + resolution: {integrity: sha512-0E0Cl84FECtzrB4qG19TNTqpunw0F1YF0QZZnFMF6pDw1kNKJtrlTKlVB34stGIsHbZsYQ7H0tNjPfZftkHHoA==} + + '@types/ws@8.5.10': + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@15.0.19': + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + + '@types/yargs@16.0.9': + resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} + + '@types/yargs@17.0.32': + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + + '@types/yoga-layout@1.9.2': + resolution: {integrity: sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==} + + '@typescript-eslint/eslint-plugin@4.33.0': + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/experimental-utils@4.33.0': + resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + + '@typescript-eslint/experimental-utils@5.18.0': + resolution: {integrity: sha512-hypiw5N0aM2aH91/uMmG7RpyUH3PN/iOhilMwkMFZIbm/Bn/G3ZnbaYdSoAN4PG/XHQjdhBYLi0ZoRZsRYT4hA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@typescript-eslint/parser@4.33.0': + resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/scope-manager@4.33.0': + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/scope-manager@5.18.0': + resolution: {integrity: sha512-C0CZML6NyRDj+ZbMqh9FnPscg2PrzSaVQg3IpTmpe0NURMVBXlghGZgMYqBw07YW73i0MCqSDqv2SbywnCS8jQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/types@4.33.0': + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/types@5.18.0': + resolution: {integrity: sha512-bhV1+XjM+9bHMTmXi46p1Led5NP6iqQcsOxgx7fvk6gGiV48c6IynY0apQb7693twJDsXiVzNXTflhplmaiJaw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/typescript-estree@4.33.0': + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@5.18.0': + resolution: {integrity: sha512-wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/utils@5.18.0': + resolution: {integrity: sha512-+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@typescript-eslint/visitor-keys@4.33.0': + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + + '@typescript-eslint/visitor-keys@5.18.0': + resolution: {integrity: sha512-Hf+t+dJsjAKpKSkg3EHvbtEpFFb/1CiOHnvI8bjHgOD4/wAw3gKrA0i94LrbekypiZVanJu3McWJg7rWDMzRTg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@vercel/webpack-asset-relocator-loader@1.7.3': + resolution: {integrity: sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==} + + '@webassemblyjs/ast@1.12.1': + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + + '@webassemblyjs/floating-point-hex-parser@1.11.6': + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + + '@webassemblyjs/helper-api-error@1.11.6': + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + + '@webassemblyjs/helper-buffer@1.12.1': + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + + '@webassemblyjs/helper-numbers@1.11.6': + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + + '@webassemblyjs/helper-wasm-section@1.12.1': + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + + '@webassemblyjs/ieee754@1.11.6': + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + + '@webassemblyjs/leb128@1.11.6': + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + + '@webassemblyjs/utf8@1.11.6': + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + + '@webassemblyjs/wasm-edit@1.12.1': + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + + '@webassemblyjs/wasm-gen@1.12.1': + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + + '@webassemblyjs/wasm-opt@1.12.1': + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + + '@webassemblyjs/wasm-parser@1.12.1': + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + + '@webassemblyjs/wast-printer@1.12.1': + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + + '@wojtekmaj/date-utils@1.5.1': + resolution: {integrity: sha512-+i7+JmNiE/3c9FKxzWFi2IjRJ+KzZl1QPu6QNrsgaa2MuBgXvUy4gA1TVzf/JMdIIloB76xSKikTWuyYAIVLww==} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarn-tool/resolve-package@1.0.47': + resolution: {integrity: sha512-Zaw58gQxjQceJqhqybJi1oUDaORT8i2GTgwICPs8v/X/Pkx35FXQba69ldHVg5pQZ6YLKpROXgyHvBaCJOFXiA==} + + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@yarnpkg/parsers@3.0.2': + resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} + engines: {node: '>=18.12.0'} + + '@zkochan/js-yaml@0.0.6': + resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + hasBin: true + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} + + abortcontroller-polyfill@1.7.5: + resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + acorn-globals@6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + + acorn-import-assertions@1.9.0: + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-loose@8.4.0: + resolution: {integrity: sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==} + engines: {node: '>=0.4.0'} + + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn-walk@8.3.2: + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + engines: {node: '>=0.4.0'} + + acorn@6.4.2: + resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + + address@1.1.2: + resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==} + engines: {node: '>= 0.12.0'} + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.13.0: + resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==} + + anser@1.4.10: + resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} + + anser@2.1.1: + resolution: {integrity: sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==} + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-fragments@0.2.1: + resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} + + 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@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + appdirsjs@1.2.7: + resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} + + append-field@1.0.0: + resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==} + + application-config-path@0.1.1: + resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==} + + aproba@1.2.0: + resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + are-we-there-yet@1.1.7: + resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + arr-diff@4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + + arr-flatten@1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + + arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + + array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + + array-iterate@1.1.4: + resolution: {integrity: sha512-sNRaPGh9nnmdC8Zf+pT3UqP8rnWj5Hf9wiFGsX3wUQ2yVSIhO2ShFwCoceIPpB41QF6i2OEmrHmCo36xronCVA==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array-unique@0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + + array.prototype.reduce@1.0.7: + resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + engines: {node: '>= 0.4'} + + array.prototype.toreversed@1.1.2: + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + + array.prototype.tosorted@1.1.3: + resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} + + arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + + arrify@2.0.1: + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} + + asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + + assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + + ast-types@0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} + engines: {node: '>=4'} + + ast-types@0.15.2: + resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} + engines: {node: '>=4'} + + astral-regex@1.0.0: + resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} + engines: {node: '>=4'} + + astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + + async-cache@1.1.0: + resolution: {integrity: sha512-YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g==} + deprecated: No longer maintained. Use [lru-cache](http://npm.im/lru-cache) version 7.6 or higher, and provide an asynchronous `fetchMethod` option. + + async-limiter@1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + + async@1.5.2: + resolution: {integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==} + + async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + + async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + 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: + resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} + engines: {node: '>=8'} + + autoprefixer@10.4.19: + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axe-core@4.7.0: + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} + engines: {node: '>=4'} + + axios@0.21.4: + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + + axios@1.6.8: + resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==} + + axobject-query@3.2.1: + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + + babel-core@7.0.0-bridge.0: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-eslint@10.1.0: + resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} + engines: {node: '>=6'} + deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. + peerDependencies: + eslint: '>= 4.12.1' + + babel-extract-comments@1.0.0: + resolution: {integrity: sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==} + engines: {node: '>=4'} + + babel-jest@27.5.1: + resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-jest@28.1.3: + resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-jsx-utils@1.1.0: + resolution: {integrity: sha512-Mh1j/rw4xM9T3YICkw22aBQ78FhsHdsmlb9NEk4uVAFBOg+Ez9ZgXXHugoBPCZui3XLomk/7/JBBH4daJqTkQQ==} + + babel-loader@8.3.0: + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + + babel-plugin-add-module-exports@1.0.4: + resolution: {integrity: sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==} + + babel-plugin-apply-mdx-type-prop@1.6.22: + resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==} + peerDependencies: + '@babel/core': ^7.11.6 + + babel-plugin-const-enum@1.2.0: + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-dynamic-import-node@2.3.3: + resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} + + babel-plugin-extract-import-names@1.6.22: + resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@27.5.1: + resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + babel-plugin-lodash@3.3.4: + resolution: {integrity: sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==} + + babel-plugin-macros@2.8.0: + resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-polyfill-corejs2@0.4.11: + resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.10.4: + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.2: + resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-remove-graphql-queries@4.25.0: + resolution: {integrity: sha512-enyqRNRrn7vTG3nwg1V+XhoAJIyUv3ZukQCs5KbHOK+WNDDiGZQzIG+FCiZFACScdZBJWyx7TYRYbOFJZ/KEGg==} + engines: {node: '>=14.15.0'} + peerDependencies: + '@babel/core': ^7.0.0 + gatsby: ^4.0.0-next + + babel-plugin-styled-components@2.1.4: + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} + peerDependencies: + styled-components: '>= 2' + + babel-plugin-syntax-object-rest-spread@6.13.0: + resolution: {integrity: sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==} + + babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: + resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + + babel-plugin-transform-async-to-promises@0.8.18: + resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} + + babel-plugin-transform-flow-enums@0.0.2: + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + + babel-plugin-transform-object-rest-spread@6.26.0: + resolution: {integrity: sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==} + + babel-plugin-transform-react-remove-prop-types@0.4.24: + resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} + + babel-plugin-transform-typescript-metadata@0.3.2: + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true + + babel-preset-current-node-syntax@1.0.1: + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-fbjs@3.4.0: + resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-gatsby@2.25.0: + resolution: {integrity: sha512-KFfSTDAkY87/Myq1KIUk9cVphWZem/08U7ps9Hiotbo6Mge/lL6ggh3xKP9SdR5Le4DLLyIUI7a4ILrAVacYDg==} + engines: {node: '>=14.15.0'} + peerDependencies: + '@babel/core': ^7.11.6 + core-js: ^3.0.0 + + babel-preset-jest@27.5.1: + resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + 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 + + babel-runtime@6.26.0: + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + + babylon@6.18.0: + resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} + hasBin: true + + bail@1.0.5: + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base-x@3.0.9: + resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + base64id@2.0.0: + resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} + engines: {node: ^4.5.0 || >= 5.9} + + base@0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + + basic-auth@1.1.0: + resolution: {integrity: sha512-CtGuTyWf3ig+sgRyC7uP6DM3N+5ur/p8L+FPfsd+BbIfIs74TFfCajZTHnCw6K5dqM0bZEbRIqRy1fAdiUJhTA==} + engines: {node: '>= 0.6'} + + basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + + batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + + better-opn@2.1.1: + resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==} + engines: {node: '>8.0.0'} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + bluebird@3.7.1: + resolution: {integrity: sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + + body-parser@1.20.2: + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + bonjour-service@1.2.1: + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@4.2.0: + resolution: {integrity: sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==} + engines: {node: '>=8'} + + boxen@5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + + braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + + browser-process-hrtime@1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + + browserslist@4.23.0: + resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + bytes@3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + cache-base@1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + + cache-manager@2.11.1: + resolution: {integrity: sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==} + + cacheable-lookup@5.0.4: + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} + + cacheable-request@6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} + + cacheable-request@7.0.4: + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + caller-callsite@2.0.0: + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} + + caller-path@2.0.0: + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} + + callsites@2.0.0: + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@3.0.0: + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + + camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + camelize@1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001617: + resolution: {integrity: sha512-mLyjzNI9I+Pix8zwcrpxEbGlfqOkF9kM3ptzmKNw5tizSyYwMe+nGLTqMK9cO+0E+Bh6TsBxNAaHWEM8xwSsmA==} + + capital-case@1.0.4: + resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + + ccount@1.1.0: + resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + + chalk@4.1.0: + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + change-case-all@1.0.14: + resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} + + change-case-all@1.0.15: + resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==} + + change-case@3.1.0: + resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} + + change-case@4.1.2: + resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + + character-entities-html4@1.1.4: + resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==} + + character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + + character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + + character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + cheerio-select@2.1.0: + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + + cheerio@0.22.0: + resolution: {integrity: sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==} + engines: {node: '>= 0.6'} + + cheerio@1.0.0-rc.12: + resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} + engines: {node: '>= 6'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + + chrome-launcher@0.15.2: + resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} + engines: {node: '>=12.13.0'} + hasBin: true + + chrome-trace-event@1.0.3: + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + engines: {node: '>=6.0'} + + ci-info@2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + cjs-module-lexer@1.3.1: + resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==} + + class-utils@0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + cli-boxes@2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + + clipboardy@2.3.0: + resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==} + engines: {node: '>=8'} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone-response@1.0.3: + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + clone@2.1.2: + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + coa@2.0.2: + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} + + code-point-at@1.1.0: + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} + engines: {node: '>=0.10.0'} + + collapse-white-space@1.0.6: + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + collection-visit@1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + colors@1.4.0: + resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} + engines: {node: '>=0.1.90'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + + command-exists@1.2.9: + resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@7.2.0: + 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} + + common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + component-emitter@1.3.1: + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression@1.7.4: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + configstore@5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} + + confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + + connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + + connect@3.7.0: + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + constant-case@2.0.0: + resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} + + constant-case@3.0.4: + resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + convert-hrtime@3.0.0: + resolution: {integrity: sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==} + engines: {node: '>=8'} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + copy-descriptor@0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + + copy-webpack-plugin@9.1.0: + resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.1.0 + + core-js-compat@3.37.0: + resolution: {integrity: sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==} + + core-js-compat@3.9.0: + resolution: {integrity: sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==} + + core-js-pure@3.37.0: + resolution: {integrity: sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ==} + + core-js@2.6.12: + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + + core-js@3.37.0: + resolution: {integrity: sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cors@2.8.5: + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} + + corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + + cosmiconfig@4.0.0: + resolution: {integrity: sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==} + engines: {node: '>=4'} + + cosmiconfig@5.2.1: + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} + + cosmiconfig@6.0.0: + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + create-gatsby@2.25.0: + resolution: {integrity: sha512-96Kl/6Far2j65/vFv/6Mb9+T+/4oW8hlC3UmdfjgBgUIzTPFmezY1ygPu2dfCKjprWkArB8DpE7EsAaJoRKB1Q==} + hasBin: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-fetch@3.1.8: + resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} + + cross-spawn@6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + crypto-random-string@2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + + css-color-keywords@1.0.0: + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} + engines: {node: '>=4'} + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-loader@5.2.7: + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 + + css-loader@6.11.0: + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + css-mediaquery@0.1.2: + resolution: {integrity: sha512-COtn4EROW5dBGlE/4PiKnh6rZpAPxDeFLaEEwt4i10jpDMFt2EhQGS79QmmrO+iKCHv0PU/HrOWEhijFd1x99Q==} + + css-minimizer-webpack-plugin@2.0.0: + resolution: {integrity: sha512-cG/uc94727tx5pBNtb1Sd7gvUPzwmcQi1lkpfqTpdkuNq75hJCw7bIVsCNijLm4dhDcr1atvuysl2rZqOG8Txw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + clean-css: '*' + csso: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + clean-css: + optional: true + csso: + optional: true + + css-minimizer-webpack-plugin@3.4.1: + resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@parcel/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + '@parcel/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + + css-select-base-adapter@0.1.1: + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + + css-select@1.2.0: + resolution: {integrity: sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==} + + css-select@2.1.0: + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + + css-to-react-native@3.2.0: + resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} + + css-tree@1.0.0-alpha.37: + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-what@2.1.3: + resolution: {integrity: sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==} + + css-what@3.4.2: + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + css@3.0.0: + resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssfilter@0.0.10: + resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.4.4: + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + d@1.0.2: + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + data-urls@2.0.0: + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} + + data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + + dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + + date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} + + dayjs@1.11.11: + resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==} + + debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.1.0: + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + decompress-response@3.3.0: + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + defer-to-connect@1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + + defer-to-connect@2.0.1: + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + define-property@0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + + define-property@1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + + define-property@2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + denodeify@1.2.1: + resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dependency-graph@0.11.0: + resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} + engines: {node: '>= 0.6.0'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detab@2.0.4: + resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + detect-libc@2.0.3: + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + + detect-port-alt@1.1.6: + resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} + engines: {node: '>= 4.2.1'} + hasBin: true + + detect-port@1.6.1: + resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==} + engines: {node: '>= 4.0.0'} + hasBin: true + + devcert@1.2.2: + resolution: {integrity: sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==} + + diff-sequences@27.5.1: + resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-converter@0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + + dom-serializer@0.1.1: + resolution: {integrity: sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@2.0.1: + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} + deprecated: Use your platform's native DOMException instead + + domhandler@2.4.2: + resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + + domutils@1.7.0: + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + + dot-case@2.1.1: + resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} + + dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dotenv-expand@5.1.0: + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + + dotenv@10.0.0: + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} + + dotenv@7.0.0: + resolution: {integrity: sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g==} + engines: {node: '>=6'} + + dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} + + duplexer3@0.1.5: + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + ecstatic@3.3.2: + resolution: {integrity: sha512-fLf9l1hnwrHI2xn9mEDT7KIi22UDqA2jaCwyCbSUJh9a1V+LEUSL/JO/6TIz/QyuBURWUHrFL5Kg2TtO1bkkog==} + deprecated: This package is unmaintained and deprecated. See the GH Issue 259. + hasBin: true + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.4.761: + resolution: {integrity: sha512-PIbxpiJGx6Bb8dQaonNc6CGTRlVntdLg/2nMa1YhnrwYOORY9a3ZgGN0UQYE6lAcj/lkyduJN7BPt/JiY+jAQQ==} + + emittery@0.10.2: + resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} + engines: {node: '>=12'} + + emittery@0.8.1: + resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} + engines: {node: '>=10'} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + emojis-list@2.1.0: + resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} + engines: {node: '>= 0.10'} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + engine.io-client@6.2.3: + resolution: {integrity: sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==} + + engine.io-parser@5.0.7: + resolution: {integrity: sha512-P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ==} + engines: {node: '>=10.0.0'} + + engine.io@6.2.1: + resolution: {integrity: sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==} + engines: {node: '>=10.0.0'} + + enhanced-resolve@5.16.1: + resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==} + engines: {node: '>=10.13.0'} + + enquire.js@2.1.6: + resolution: {integrity: sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==} + + enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@1.1.2: + resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + envinfo@7.13.0: + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} + hasBin: true + + eol@0.9.1: + resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + errorhandler@1.5.1: + resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} + engines: {node: '>= 0.8'} + + es-abstract@1.23.3: + resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} + engines: {node: '>= 0.4'} + + es-array-method-boxes-properly@1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-iterator-helpers@1.0.19: + resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.5.2: + resolution: {integrity: sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + + es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + + es5-ext@0.10.64: + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} + + es6-iterator@2.0.3: + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + + es6-promise@4.2.8: + resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} + + es6-symbol@3.1.4: + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} + + es6-weak-map@2.0.3: + resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} + + escalade@3.1.2: + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} + + escape-goat@2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-config-react-app@6.0.0: + resolution: {integrity: sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^4.0.0 + '@typescript-eslint/parser': ^4.0.0 + babel-eslint: ^10.0.0 + eslint: ^7.5.0 + eslint-plugin-flowtype: ^5.2.0 + eslint-plugin-import: ^2.22.0 + eslint-plugin-jest: ^24.0.0 + eslint-plugin-jsx-a11y: ^6.3.1 + eslint-plugin-react: ^7.20.3 + eslint-plugin-react-hooks: ^4.0.8 + eslint-plugin-testing-library: ^3.9.0 + typescript: '*' + peerDependenciesMeta: + eslint-plugin-jest: + optional: true + eslint-plugin-testing-library: + optional: true + typescript: + optional: true + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-module-utils@2.8.1: + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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 + + eslint-plugin-flowtype@5.10.0: + resolution: {integrity: sha512-vcz32f+7TP+kvTUyMXZmCnNujBQZDNmcqPImw8b9PZ+16w1Qdm6ryRuYZYVaG9xRqqmAPr2Cs9FAX5gN+x/bjw==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^7.1.0 + + eslint-plugin-import@2.29.1: + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jsx-a11y@6.8.0: + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react-hooks@4.6.2: + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + + eslint-plugin-react@7.28.0: + resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react@7.34.1: + resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + + eslint-utils@3.0.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + + eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + + eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-webpack-plugin@2.7.0: + resolution: {integrity: sha512-bNaVVUvU4srexGhVcayn/F4pJAz19CWBkKoMx7aSQ4wtTbZQCnG5O9LHCE42mM+JSKOUp7n6vd5CIwzj7lOVGA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + webpack: ^4.0.0 || ^5.0.0 + + eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + + esniff@2.0.1: + resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} + engines: {node: '>=0.10'} + + espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + + estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + eval@0.1.8: + resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} + engines: {node: '>= 0.8'} + + event-emitter@0.3.5: + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + + event-source-polyfill@1.0.25: + resolution: {integrity: sha512-hQxu6sN1Eq4JjoI7ITdQeGGUN193A2ra83qC0Ltm9I2UJVAten3OFVN6k5RX4YWeCS0BoC8xg/5czOCIHVosQg==} + + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + execa@1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expand-brackets@2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + + expand-template@2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + + expect@27.5.1: + resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + expect@28.1.3: + resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + express-graphql@0.12.0: + resolution: {integrity: sha512-DwYaJQy0amdy3pgNtiTDuGGM2BLdj+YO2SgbKoLliCfuHv3VVTt7vNG/ZqK2hRYjtYHE2t2KB705EU94mE64zg==} + engines: {node: '>= 10.x'} + deprecated: This package is no longer maintained. We recommend using `graphql-http` instead. Please consult the migration document https://github.com/graphql/graphql-http#migrating-express-grpahql. + peerDependencies: + graphql: ^14.7.0 || ^15.3.0 + + express-http-proxy@1.6.3: + resolution: {integrity: sha512-/l77JHcOUrDUX8V67E287VEUQT0lbm71gdGVoodnlWBziarYKgMcpqT7xvh/HM8Jv52phw8Bd8tY+a7QjOr7Yg==} + engines: {node: '>=6.0.0'} + + express@4.19.2: + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} + + ext@1.7.0: + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + extglob@2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.2.7: + resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} + engines: {node: '>=8'} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-xml-parser@4.3.6: + resolution: {integrity: sha512-M2SovcRxD4+vC493Uc2GZVcZaj66CCJhWurC4viynVSTvrpErCShNcDz1lAho6n9REQKvL/ll4A4/fw6Y9z8nw==} + hasBin: true + + fastest-levenshtein@1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + + faye-websocket@0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fbjs-css-vars@1.0.2: + resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} + + fbjs@3.0.5: + resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} + + fd@0.0.3: + resolution: {integrity: sha512-iAHrIslQb3U68OcMSP0kkNWabp7sSN6d2TBSb2JO3gcLJVDd4owr/hKM4SFJovFOUeeXeItjYgouEDTMWiVAnA==} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + + file-loader@6.2.0: + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + file-type@16.5.4: + resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==} + engines: {node: '>=10'} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + filename-reserved-regex@2.0.0: + resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} + engines: {node: '>=4'} + + filenamify@4.3.0: + resolution: {integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==} + engines: {node: '>=8'} + + filesize@8.0.7: + resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} + engines: {node: '>= 0.4.0'} + + fill-range@4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + + fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + + filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + + finalhandler@1.1.2: + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} + + finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + + find-cache-dir@2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + + find-cache-dir@3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + + find-up@3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + + flow-enums-runtime@0.0.6: + resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} + + flow-parser@0.235.1: + resolution: {integrity: sha512-s04193L4JE+ntEcQXbD6jxRRlyj9QXcgEl2W6xSjH4l9x4b0eHoCHfbYHjqf9LdZFUiM5LhgpiqsvLj/AyOyYQ==} + engines: {node: '>=0.4.0'} + + follow-redirects@1.15.6: + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + + fork-ts-checker-webpack-plugin@6.2.10: + resolution: {integrity: sha512-HveFCHWSH2WlYU1tU3PkrupvW8lNFMTfH3Jk0TfC2mtktE9ibHGcifhCsCFvj+kqlDfNIlwmNLiNqR9jnSA7OQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + fork-ts-checker-webpack-plugin@6.5.3: + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + + form-data@3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + + form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fragment-cache@0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-exists-cached@1.0.0: + resolution: {integrity: sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@4.0.3: + resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs-monkey@1.0.6: + resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + + functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gatsby-cli@4.25.0: + resolution: {integrity: sha512-CJ2PCsfFmn9Xqc/jg9MFMU1BG5oQGiej1TFFx8GhChJ+kGhi9ANnNM+qo1K4vOmoMnsT4SSGiPAFD10AWFqpAQ==} + engines: {node: '>=14.15.0'} + hasBin: true + + gatsby-codemods@3.25.0: + resolution: {integrity: sha512-UJUeIcaUVydGqEB6RBtqZjU4RvwOGbScEMa517fCOYUqlX4Yd14wJ5nGETxO2A7I1qMtbKDD/VlEzcFncjdoXw==} + engines: {node: '>=14.15.0'} + hasBin: true + + gatsby-core-utils@3.25.0: + resolution: {integrity: sha512-lmMDwbnKpqAi+8WWd7MvCTCx3E0u7j8sbVgydERNCYVxKVpzD/aLCH4WPb4EE9m1H1rSm76w0Z+MaentyB/c/Q==} + engines: {node: '>=14.15.0'} + + gatsby-graphiql-explorer@2.25.0: + resolution: {integrity: sha512-/NDsaW4x3/KtvzmxYvedhDwUW1kb7gQO6iOhCkillVJSYBd6mPB8aOSulM49fyCT76UXGYFtRaUI8fyOkmpWhg==} + engines: {node: '>=14.15.0'} + + gatsby-legacy-polyfills@2.25.0: + resolution: {integrity: sha512-cMeFwMH1FGENo2gNpyTyMYc/CJ7uBGE26n89OGrVVvBMaQegK+CMNZBOh09sLrXUcOp8hSOX2IwzvOlo6CdWpg==} + + gatsby-link@4.25.0: + resolution: {integrity: sha512-Fpwk45sUMPvFUAZehNE8SLb3vQyVSxt9YxU++ZZECyukK4A/3Wxk3eIzoNvwfpMfWu6pnAkqcBhIO6KAfvbPGQ==} + engines: {node: '>=14.15.0'} + peerDependencies: + '@gatsbyjs/reach-router': ^1.3.5 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + + gatsby-page-utils@2.25.0: + resolution: {integrity: sha512-TlwS149JCeb3xGANeV8HdcQi9Q8J9hYwlO9jdxLGVIXVGbWIMWFrDuwx382jOOsISGQ3jfByToNulUzO6fiqig==} + engines: {node: '>=14.15.0'} + + gatsby-parcel-config@0.16.0: + resolution: {integrity: sha512-2+hOg6cMBGZ8r+4lN3k+dOWGvku453vbZCAhp6V3RuFYxbWuvDFP7Icr0GCOyZ62utkFr9m7H2U1Wjf4KOHyEQ==} + engines: {parcel: 2.x} + peerDependencies: + '@parcel/core': ^2.0.0 + + gatsby-plugin-image@2.25.0: + resolution: {integrity: sha512-Q1TRjvBF7x50alS22i91rksl7A3g42S0jIdPEQcT9bl8MbFaJiboHGna/jp78nxm9vu4qtUJ1IziRSOu0bgHNQ==} + peerDependencies: + '@babel/core': ^7.12.3 + gatsby: ^4.0.0-next + gatsby-plugin-sharp: ^4.0.0-next + gatsby-source-filesystem: ^4.0.0-next + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + + gatsby-plugin-manifest@4.25.0: + resolution: {integrity: sha512-2n7v+TvhWUMoOJEaeiPDFsf9jvOImKLZpnzxE8e6ZeeoGeDngXSZhkkP3x2UYIknHtZXUUjFJh8BaVBXiB1dSQ==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + + gatsby-plugin-mdx@3.20.0: + resolution: {integrity: sha512-v2cFqe1g8lmM745q2DUoqWca0MT/tX++jykBDqpsLDswushpJgUfZeJ8OhSFgBZIfuVk1LoDi5yf4iWfz/UTwQ==} + peerDependencies: + '@mdx-js/mdx': ^1.0.0 + '@mdx-js/react': ^1.0.0 + gatsby: ^4.0.0-next + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 + + gatsby-plugin-offline@5.25.0: + resolution: {integrity: sha512-WqAcnYvMpL1xwXF5Jf9BXTihLNktuqQHFUX0TPsQVJrmfjSNv4LxhgiWfeUuGiCO881EOHClXnBn6TqxIdS4EA==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + + gatsby-plugin-page-creator@4.25.0: + resolution: {integrity: sha512-plHek7xHSV9l1bLPa1JAnxzBqP7j2ihCPRwpBk/wIJAR8cG65wjAT+Nu8DKpW0+2/MYill84ns1r2m8g0L/7bg==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + + gatsby-plugin-react-helmet@5.25.0: + resolution: {integrity: sha512-sU/xae/sGuYFcFDpqUxwXnaOmx8xrU2Q+XSULqAapji0uTBhW6al6CJsaPFigi8IOG2bQX8ano2iWWcGF3/GHw==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + react-helmet: ^5.1.3 || ^6.0.0 + + gatsby-plugin-sharp@4.25.1: + resolution: {integrity: sha512-cGRb8lmwJkzwT1Qze0R+VL+55BIb9weM17m+dUf6gs5Z++lQltqge+L8a1qWWsGL6KfLQN7+bIqjhmTTscIPMQ==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + + gatsby-plugin-styled-components@5.25.0: + resolution: {integrity: sha512-gBCgvLDz+X9Xq8BhroFWZTtURMycgARyly4SlidrPqcPtxWhJtas+gc01/uivHnjIUW6SAac8cpot3ld/PLdZA==} + engines: {node: '>=14.15.0'} + peerDependencies: + babel-plugin-styled-components: '>1.5.0' + gatsby: ^4.0.0-next + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + styled-components: '>=2.0.0' + + gatsby-plugin-svgr@3.0.0-beta.0: + resolution: {integrity: sha512-oALTh6VwO6l3khgC/vGr706aqt38EkXwdr6iXVei/auOKGxpCLEuDCQVal1a4SpYXdjHjRsEyab6bxaHL2lzsA==} + peerDependencies: + '@svgr/webpack': '>=2.0.0' + gatsby: '>=3.0.0' + + gatsby-plugin-typescript@4.25.0: + resolution: {integrity: sha512-8BTtiVWuIqIEGx/PBBMWd6FYPgel16hT3js7SMo5oI9K4EPsSxRItgRf41MTJGxRR20EhL4e99g2S8x0v1+odA==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + + gatsby-plugin-utils@3.19.0: + resolution: {integrity: sha512-EZtvgHSU5NPbEn6a4cfSpEGCQ09SfwbhoybHTJKj1clop86HSwOCV2iH8RbCc+X6jbdgHaSZsfsl7zG1h7DBUw==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + graphql: ^15.0.0 + + gatsby-plugin-web-font-loader@1.0.4: + resolution: {integrity: sha512-3c39bX9CcsYJQFhhmTyjuMJSqpld2rX+HsTOxP9k1PKFR4Rvo3lpzBW4d1tVpmUesR8BNL6u9eHT7/XksS1iog==} + + gatsby-react-router-scroll@5.25.0: + resolution: {integrity: sha512-SFSdezIa5lahCE8ieCLrtLA5tztemGco/rN8si9rI9KHu1h1jPvDhsNqs2g+Z50JrUb1RPfsmxJTmLa5i6MIgQ==} + engines: {node: '>=14.15.0'} + peerDependencies: + '@gatsbyjs/reach-router': ^1.3.5 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + + gatsby-script@1.10.0: + resolution: {integrity: sha512-8jAtQR0mw3G8sCy6i2D1jfGvUF5d9AIboEQuo9ZEChT4Ep5f+PSRxiWZqSjhKvintAOIeS4QXCJP5Rtp3xZKLg==} + engines: {node: '>=14.15.0'} + peerDependencies: + '@gatsbyjs/reach-router': ^1.3.5 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + + gatsby-sharp@0.19.0: + resolution: {integrity: sha512-EbI3RNBu2+aaxuMUP/INmoj8vcNAG6BgpFvi1tLeU7/gVTNVQ+7pC/ZYtlVCzSw+faaw7r1ZBMi6F66mNIIz5A==} + engines: {node: '>=14.15.0'} + + gatsby-source-filesystem@4.25.0: + resolution: {integrity: sha512-gja4++bPkYpnum4/TxFicr3zRHBArnM2HjT77EE4EuDhdl6qlJYr/heD09LIPN2jdR5gmPwMDjIZnuYZ/6j/aQ==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + + gatsby-telemetry@3.25.0: + resolution: {integrity: sha512-FGC1yS2evJxTN/Ku9XonCBiqhH6uO6aPjjps65BbL+Xbpct/qfirIFxYG6DhHPrksR0fKOhstJGnQqay74hWdQ==} + engines: {node: '>=14.15.0'} + + gatsby-transformer-sharp@4.25.0: + resolution: {integrity: sha512-7aqecTvOUFiNB96ij77UnAGJs7Un0TlkpamG//dSl6Nru9EylGz/NW/Eg0vioQyHLCYdMvd5xO8V3BOHJADsnw==} + engines: {node: '>=14.15.0'} + peerDependencies: + gatsby: ^4.0.0-next + gatsby-plugin-sharp: ^4.0.0-next + + gatsby-worker@1.25.0: + resolution: {integrity: sha512-gjp28irgHASihwvMyF5aZMALWGax9mEmcD8VYGo2osRe7p6BZuWi4cSuP9XM9EvytDvIugpnSadmTP01B7LtWg==} + engines: {node: '>=14.15.0'} + + gatsby@4.25.8: + resolution: {integrity: sha512-kqrZ6z22XuxrO3Blt+K2ewqchVGP8bCSJcjnQm6GcV3QJLnedk+jOYc9NP4C+d8uGlTK7l8OWxbL3bHxLddDIw==} + engines: {node: '>=14.15.0'} + hasBin: true + peerDependencies: + react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^0.0.0 + + gauge@2.7.4: + resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + 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: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + get-own-enumerable-property-symbols@3.0.2: + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-port@3.2.0: + resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==} + engines: {node: '>=4'} + + get-stream@4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + + get-user-locale@1.5.1: + resolution: {integrity: sha512-WiNpoFRcHn1qxP9VabQljzGwkAQDrcpqUtaP0rNBEkFxJdh4f3tik6MfZsMYZc+UgQJdGCxWEjL9wnCUlRQXag==} + + get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + + git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + + github-from-package@0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + + github-slugger@1.5.0: + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@7.1.4: + resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + + global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + + global-modules@2.0.0: + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} + + global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + got@11.8.6: + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} + + got@9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphql-compose@9.0.10: + resolution: {integrity: sha512-UsVoxfi2+c8WbHl2pEB+teoRRZoY4mbWBoijeLDGpAZBSPChnqtSRjp+T9UcouLCwGr5ooNyOQLoI3OVzU1bPQ==} + peerDependencies: + graphql: ^14.2.0 || ^15.0.0 || ^16.0.0 + + graphql-playground-html@1.6.30: + resolution: {integrity: sha512-tpCujhsJMva4aqE8ULnF7/l3xw4sNRZcSHu+R00VV+W0mfp+Q20Plvcrp+5UXD+2yS6oyCXncA+zoQJQqhGCEw==} + + graphql-playground-middleware-express@1.7.23: + resolution: {integrity: sha512-M/zbTyC1rkgiQjFSgmzAv6umMHOphYLNWZp6Ye5QrD77WfGOOoSqDsVmGUczc2pDkEPEzzGB/bvBO5rdzaTRgw==} + peerDependencies: + express: ^4.16.2 + + graphql-tag@2.12.6: + resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} + engines: {node: '>=10'} + peerDependencies: + graphql: ^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-type-json@0.3.2: + resolution: {integrity: sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==} + peerDependencies: + graphql: '>=0.8.0' + + graphql@15.8.0: + resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} + engines: {node: '>= 10.x'} + + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + + harmony-reflect@1.6.2: + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + + has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + has-value@0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + + has-value@1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + + has-values@0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + + has-values@1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + + has-yarn@2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + + hasha@5.2.2: + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-to-hyperscript@9.0.1: + resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} + + hast-util-from-parse5@6.0.1: + resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==} + + hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + + hast-util-raw@6.0.1: + resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} + + hast-util-to-parse5@6.0.0: + resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==} + + hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + header-case@1.0.1: + resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} + + header-case@2.0.4: + resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + + hermes-estree@0.19.1: + resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==} + + hermes-estree@0.20.1: + resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} + + hermes-parser@0.19.1: + resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==} + + hermes-parser@0.20.1: + resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} + + hermes-profile-transformer@0.0.6: + resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} + engines: {node: '>=8'} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@3.0.8: + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} + + hpack.js@2.1.6: + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + + html-encoding-sniffer@2.0.1: + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-void-elements@1.0.5: + resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} + + htmlparser2@3.10.1: + resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} + + htmlparser2@6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + + htmlparser2@8.0.2: + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + + http-errors@1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} + + http-errors@1.8.0: + resolution: {integrity: sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==} + engines: {node: '>= 0.6'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + http-parser-js@0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + + http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + + http-proxy-middleware@2.0.6: + resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + http-server@0.12.3: + resolution: {integrity: sha512-be0dKG6pni92bRjq0kvExtj/NrrAd28/8fCXkaI/4piTwQMSDSLMhWyW0NI1V+DBI3aa1HMlQu46/HjVLfmugA==} + engines: {node: '>=6'} + hasBin: true + + http-server@14.1.0: + resolution: {integrity: sha512-5lYsIcZtf6pdR8tCtzAHTWrAveo4liUlJdWc7YafwK/maPgYHs+VNP6KpCClmUnSorJrARVMXqtT055zBv11Yg==} + engines: {node: '>=12'} + hasBin: true + + http2-wrapper@1.0.3: + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + hyphenate-style-name@1.0.4: + resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + idb-keyval@3.2.0: + resolution: {integrity: sha512-slx8Q6oywCCSfKgPgL0sEsXtPVnSbTLWpyiDcu6msHOyKOLari1TD1qocXVCft80umnkk3/Qqh3lwoFt8T/BPQ==} + + identity-obj-proxy@3.0.0: + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + + ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + image-size@1.1.1: + resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} + engines: {node: '>=16.x'} + hasBin: true + + immer@9.0.21: + resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} + + immutable@3.7.6: + resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} + engines: {node: '>=0.8.0'} + + immutable@4.3.5: + resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==} + + import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + + import-fresh@2.0.0: + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} + + import-from@4.0.0: + resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} + engines: {node: '>=12.2'} + + import-lazy@2.1.0: + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + + inquirer@7.3.3: + resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} + engines: {node: '>=8.0.0'} + + internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + ipaddr.js@2.2.0: + resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} + engines: {node: '>= 10'} + + is-absolute-url@3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} + + is-absolute@1.0.0: + resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} + engines: {node: '>=0.10.0'} + + is-accessor-descriptor@1.0.1: + resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} + engines: {node: '>= 0.10'} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphanumeric@1.0.0: + resolution: {integrity: sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==} + engines: {node: '>=0.10.0'} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-ci@2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + + is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + + is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + + is-data-descriptor@1.0.1: + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + + is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-descriptor@0.1.7: + resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} + engines: {node: '>= 0.4'} + + is-descriptor@1.0.3: + resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} + engines: {node: '>= 0.4'} + + is-directory@0.3.1: + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@1.0.0: + resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + + is-fullwidth-code-point@1.0.0: + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@2.0.1: + resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} + engines: {node: '>=0.10.0'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + + is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-invalid-path@0.1.0: + resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==} + engines: {node: '>=0.10.0'} + + is-lower-case@1.1.3: + resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} + + is-lower-case@2.0.2: + resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-npm@5.0.0: + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} + + is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + + is-number@3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@1.0.1: + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-regexp@1.0.0: + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} + + is-relative-url@3.0.0: + resolution: {integrity: sha512-U1iSYRlY2GIMGuZx7gezlB5dp1Kheaym7zKzO1PV06mOihiWTXejLwm4poEJysPyXF+HtK/BEd0DVlcCh30pEA==} + engines: {node: '>=8'} + + is-relative@1.0.0: + resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} + engines: {node: '>=0.10.0'} + + is-root@2.1.0: + resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} + engines: {node: '>=6'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} + + is-ssh@1.4.0: + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + + is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unc-path@1.0.0: + resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} + engines: {node: '>=0.10.0'} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-upper-case@1.1.2: + resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} + + is-upper-case@2.0.2: + resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} + + is-valid-domain@0.1.6: + resolution: {integrity: sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==} + + is-valid-path@0.1.1: + resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==} + engines: {node: '>=0.10.0'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + + is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} + + is-whitespace-character@1.0.4: + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-word-character@1.0.4: + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + + is-wsl@1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + is-yarn-global@0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@4.0.3: + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + + its-fine@1.2.5: + resolution: {integrity: sha512-fXtDA0X0t0eBYAGLVM5YsgJGsJ5jEmqZEPrGbzdf5awjv0xE7nqv3TVnvtUF060Tkes15DbDAKW/I48vsb6SyA==} + peerDependencies: + react: '>=18.0' + + jake@10.9.1: + resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==} + engines: {node: '>=10'} + hasBin: true + + javascript-stringify@2.1.0: + resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} + + jest-circus@27.5.1: + resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-config@27.2.2: + resolution: {integrity: sha512-2nhms3lp52ZpU0636bB6zIFHjDVtYxzFQIOHZjBFUeXcb6b41sEkWojbHaJ4FEIO44UbccTLa7tvNpiFCgPE7w==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: true + + jest-config@27.5.1: + resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + ts-node: '>=9.0.0' + peerDependenciesMeta: + ts-node: + optional: 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 + + jest-diff@27.5.1: + resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-docblock@27.5.1: + resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-each@27.5.1: + resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-each@28.1.3: + resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-environment-jsdom@27.5.1: + resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-environment-node@27.5.1: + resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@27.5.1: + resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@27.5.1: + resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-jasmine2@27.5.1: + resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-leak-detector@27.5.1: + resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-matcher-utils@27.5.1: + resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-message-util@27.5.1: + resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@27.5.1: + resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-mock@28.1.3: + resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@27.5.1: + resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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@27.2.2: + resolution: {integrity: sha512-tfbHcBs/hJTb3fPQ/3hLWR+TsLNTzzK98TU+zIAsrL9nNzWfWROwopUOmiSUqmHMZW5t9au/433kSF2/Af+tTw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-resolve@27.5.1: + resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + 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} + + jest-runner@27.5.1: + resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-runtime@27.5.1: + resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-serializer@27.5.1: + resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-snapshot@27.5.1: + resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-util@27.2.0: + resolution: {integrity: sha512-T5ZJCNeFpqcLBpx+Hl9r9KoxBCUqeWlJ1Htli+vryigZVJ1vuLB9j35grEBASp4R13KFkV7jM52bBGnArpJN6A==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-util@27.5.1: + resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-util@28.1.3: + resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@27.5.1: + resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + 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} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + 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} + + jest-worker@26.6.2: + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + 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} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + joi@17.13.1: + resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsc-android@250231.0.0: + resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} + + jsc-safe-url@0.2.4: + resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} + + jscodeshift@0.12.0: + resolution: {integrity: sha512-LEgr+wklbtEQD6SptyVYox+YZ7v+4NQeWHgqASedxl2LxQ+/kSQs6Nhs/GX+ymVOu84Hsz9/C2hQfDY89dKZ6A==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + + jscodeshift@0.14.0: + resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + + jsdom@16.7.0: + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + + jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + + json-buffer@3.0.0: + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-loader@0.5.7: + resolution: {integrity: sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json2mq@0.2.0: + resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-parser@3.0.0: + resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + + jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + keyv@3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + konva@9.3.6: + resolution: {integrity: sha512-dqR8EbcM0hjuilZCBP6xauQ5V3kH3m9kBcsDkqPypQuRgsXbcXUrxqYxhNbdvKZpYNW8Amq94jAD/C0NY3qfBQ==} + + language-subtag-registry@0.3.22: + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + latest-version@5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} + + launch-editor@2.6.1: + resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==} + + less-loader@10.2.0: + resolution: {integrity: sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + less: ^3.5.0 || ^4.0.0 + webpack: ^5.0.0 + + less@3.12.2: + resolution: {integrity: sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==} + engines: {node: '>=6'} + hasBin: true + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + license-webpack-plugin@2.3.15: + resolution: {integrity: sha512-reA0yvwvkkFMRsyqVikTcLGFXmgWKPVXrFaR3tRvAnFoZozM4zvwlNNQxuB5Il6fgTtS7nGkrIPm9xS2KZtu7g==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + + license-webpack-plugin@4.0.2: + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + + lighthouse-logger@1.4.2: + resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + lmdb@2.5.2: + resolution: {integrity: sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==} + + lmdb@2.5.3: + resolution: {integrity: sha512-iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw==} + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@1.2.3: + resolution: {integrity: sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==} + engines: {node: '>=4.0.0'} + + loader-utils@1.4.2: + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} + + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + + loader-utils@3.2.1: + resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} + engines: {node: '>= 12.13.0'} + + locate-path@3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lock@1.1.0: + resolution: {integrity: sha512-NZQIJJL5Rb9lMJ0Yl1JoVr9GSdo4HTPsUEWsSFzB8dE8DSoiLCVavWZPi7Rnlv/o73u6I24S/XYc/NmG4l8EKA==} + + lodash._reinterpolate@3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + + lodash.assignin@4.2.0: + resolution: {integrity: sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==} + + lodash.bind@4.2.1: + resolution: {integrity: sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.clonedeep@4.5.0: + resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.deburr@4.1.0: + resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==} + + lodash.defaults@4.2.0: + resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} + + lodash.every@4.6.0: + resolution: {integrity: sha512-isF82d+65/sNvQ3aaQAW7LLHnnTxSN/2fm4rhYyuufLzA4VtHz6y6S5vFwe6PQVr2xdqUOyxBbTNKDpnmeu50w==} + + lodash.filter@4.6.0: + resolution: {integrity: sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==} + + lodash.flatten@4.4.0: + resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} + + lodash.flattendeep@4.4.0: + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + + lodash.foreach@4.5.0: + resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==} + + lodash.map@4.6.0: + resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} + + lodash.maxby@4.6.0: + resolution: {integrity: sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.pick@4.4.0: + resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==} + + lodash.reduce@4.6.0: + resolution: {integrity: sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==} + + lodash.reject@4.6.0: + resolution: {integrity: sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ==} + + lodash.some@4.6.0: + resolution: {integrity: sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ==} + + lodash.template@4.5.0: + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + + lodash.templatesettings@4.2.0: + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + + lodash.throttle@4.1.1: + resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + + lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + logkitty@0.7.1: + resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} + hasBin: true + + longest-streak@2.0.4: + resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + lower-case-first@1.0.2: + resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} + + lower-case-first@2.0.2: + resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} + + lower-case@1.1.4: + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + + lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + + lowercase-keys@1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + + lowercase-keys@2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + + lru-cache@4.0.0: + resolution: {integrity: sha512-WKhDkjlLwzE8jAQdQlsxLUQTPXLCKX/4cJk6s5AlRtJkDBk0IKH5O51bVDH61K9N4bhbbyvLM6EiOuE8ovApPA==} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lru-queue@0.1.0: + resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==} + + magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + map-age-cleaner@0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} + + map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + + map-visit@1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + + markdown-escapes@1.0.4: + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + + markdown-table@1.1.3: + resolution: {integrity: sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==} + + marky@1.2.5: + resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} + + matchmediaquery@0.3.1: + resolution: {integrity: sha512-Hlk20WQHRIm9EE9luN1kjRjYXAQToHOIAHPJn9buxBwuhfTHoKUcX+lXBbxc85DVQfXYbEQ4HcwQdd128E3qHQ==} + + md5-file@5.0.0: + resolution: {integrity: sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==} + engines: {node: '>=10.13.0'} + hasBin: true + + mdast-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==} + + mdast-util-compact@1.0.4: + resolution: {integrity: sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==} + + mdast-util-definitions@4.0.0: + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + + mdast-util-to-hast@10.0.1: + resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} + + mdast-util-to-nlcst@3.2.3: + resolution: {integrity: sha512-hPIsgEg7zCvdU6/qvjcR6lCmJeRuIEpZGY5xBV+pqzuMOvQajyyF8b6f24f8k3Rw8u40GwkI3aAxUXr3bB2xag==} + + mdast-util-to-string@1.1.0: + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + + mdast-util-toc@3.1.0: + resolution: {integrity: sha512-Za0hqL1PqWrvxGtA/3NH9D5nhGAUS9grMM4obEAz5+zsk1RIw/vWUchkaoDLNdrwk05A0CSC5eEXng36/1qE5w==} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.4: + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + + mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + + meant@1.0.3: + resolution: {integrity: sha512-88ZRGcNxAq4EH38cQ4D85PM57pikCwS8Z99EWHODxN7KBY+UuPiqzRTtZzS8KTXO/ywSWbdjjJST2Hly/EQxLw==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + mem@8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} + + memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} + + memoize-one@5.2.1: + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + + memoizee@0.4.15: + resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + merge-class-names@1.4.2: + resolution: {integrity: sha512-bOl98VzwCGi25Gcn3xKxnR5p/WrhWFQB59MS/aGENcmUc6iSm96yrFDF0XSNurX9qN4LbJm0R9kfvsQ17i8zCw==} + + merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + metro-babel-transformer@0.80.9: + resolution: {integrity: sha512-d76BSm64KZam1nifRZlNJmtwIgAeZhZG3fi3K+EmPOlrR8rDtBxQHDSN3fSGeNB9CirdTyabTMQCkCup6BXFSQ==} + engines: {node: '>=18'} + + metro-cache-key@0.80.9: + resolution: {integrity: sha512-hRcYGhEiWIdM87hU0fBlcGr+tHDEAT+7LYNCW89p5JhErFt/QaAkVx4fb5bW3YtXGv5BTV7AspWPERoIb99CXg==} + engines: {node: '>=18'} + + metro-cache@0.80.9: + resolution: {integrity: sha512-ujEdSI43QwI+Dj2xuNax8LMo8UgKuXJEdxJkzGPU6iIx42nYa1byQ+aADv/iPh5sh5a//h5FopraW5voXSgm2w==} + engines: {node: '>=18'} + + metro-config@0.80.9: + resolution: {integrity: sha512-28wW7CqS3eJrunRGnsibWldqgwRP9ywBEf7kg+uzUHkSFJNKPM1K3UNSngHmH0EZjomizqQA2Zi6/y6VdZMolg==} + engines: {node: '>=18'} + + metro-core@0.80.9: + resolution: {integrity: sha512-tbltWQn+XTdULkGdzHIxlxk4SdnKxttvQQV3wpqqFbHDteR4gwCyTR2RyYJvxgU7HELfHtrVbqgqAdlPByUSbg==} + engines: {node: '>=18'} + + metro-file-map@0.80.9: + resolution: {integrity: sha512-sBUjVtQMHagItJH/wGU9sn3k2u0nrCl0CdR4SFMO1tksXLKbkigyQx4cbpcyPVOAmGTVuy3jyvBlELaGCAhplQ==} + engines: {node: '>=18'} + + metro-minify-terser@0.80.9: + resolution: {integrity: sha512-FEeCeFbkvvPuhjixZ1FYrXtO0araTpV6UbcnGgDUpH7s7eR5FG/PiJz3TsuuPP/HwCK19cZtQydcA2QrCw446A==} + engines: {node: '>=18'} + + metro-resolver@0.80.9: + resolution: {integrity: sha512-wAPIjkN59BQN6gocVsAvvpZ1+LQkkqUaswlT++cJafE/e54GoVkMNCmrR4BsgQHr9DknZ5Um/nKueeN7kaEz9w==} + engines: {node: '>=18'} + + metro-runtime@0.80.9: + resolution: {integrity: sha512-8PTVIgrVcyU+X/rVCy/9yxNlvXsBCk5JwwkbAm/Dm+Abo6NBGtNjWF0M1Xo/NWCb4phamNWcD7cHdR91HhbJvg==} + engines: {node: '>=18'} + + metro-source-map@0.80.9: + resolution: {integrity: sha512-RMn+XS4VTJIwMPOUSj61xlxgBvPeY4G6s5uIn6kt6HB6A/k9ekhr65UkkDD7WzHYs3a9o869qU8tvOZvqeQzgw==} + engines: {node: '>=18'} + + metro-symbolicate@0.80.9: + resolution: {integrity: sha512-Ykae12rdqSs98hg41RKEToojuIW85wNdmSe/eHUgMkzbvCFNVgcC0w3dKZEhSsqQOXapXRlLtHkaHLil0UD/EA==} + engines: {node: '>=18'} + hasBin: true + + metro-transform-plugins@0.80.9: + resolution: {integrity: sha512-UlDk/uc8UdfLNJhPbF3tvwajyuuygBcyp+yBuS/q0z3QSuN/EbLllY3rK8OTD9n4h00qZ/qgxGv/lMFJkwP4vg==} + engines: {node: '>=18'} + + metro-transform-worker@0.80.9: + resolution: {integrity: sha512-c/IrzMUVnI0hSVVit4TXzt3A1GiUltGVlzCmLJWxNrBGHGrJhvgePj38+GXl1Xf4Fd4vx6qLUkKMQ3ux73bFLQ==} + engines: {node: '>=18'} + + metro@0.80.9: + resolution: {integrity: sha512-Bc57Xf3GO2Xe4UWQsBj/oW6YfLPABEu8jfDVDiNmJvoQW4CO34oDPuYKe4KlXzXhcuNsqOtSxpbjCRRVjhhREg==} + engines: {node: '>=18'} + hasBin: true + + micromatch@3.1.10: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + + micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + + mimic-response@1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + mini-css-extract-plugin@1.6.2: + resolution: {integrity: sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.4.0 || ^5.0.0 + + mini-css-extract-plugin@2.4.7: + resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + mini-css-extract-plugin@2.9.0: + resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimatch@3.0.4: + resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} + + minimatch@3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + mitt@1.2.0: + resolution: {integrity: sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==} + + mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + + mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + moment@2.30.1: + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + msgpackr-extract@3.0.2: + resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==} + hasBin: true + + msgpackr@1.10.1: + resolution: {integrity: sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==} + + multer@1.4.5-lts.1: + resolution: {integrity: sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==} + engines: {node: '>= 6.0.0'} + + multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true + + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanomatch@1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + + napi-build-utils@1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + + native-request@1.1.0: + resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + needle@2.9.1: + resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==} + engines: {node: '>= 4.4.x'} + hasBin: true + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + next-tick@1.1.0: + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + nlcst-to-string@2.0.4: + resolution: {integrity: sha512-3x3jwTd6UPG7vi5k4GEzvxJ5rDA7hVUIRNHPblKuMVP9Z3xmlsd9cgLcpAMkc5uPOBna82EeshROFhsPkbnTZg==} + + no-case@2.3.2: + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + + no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + + nocache@3.0.4: + resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} + engines: {node: '>=12.0.0'} + + node-abi@3.62.0: + resolution: {integrity: sha512-CPMcGa+y33xuL1E0TcNIu4YyaZCxnnvkVaEXrsosR3FxN+fV8xvb7Mzpb7IgKler10qeMkE6+Dp8qJhpzdq35g==} + engines: {node: '>=10'} + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-addon-api@3.2.1: + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + + node-addon-api@4.3.0: + resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} + + node-addon-api@5.1.0: + resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} + + node-addon-api@7.1.0: + resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==} + engines: {node: ^16 || ^18 || >= 20} + + node-dir@0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-forge@1.3.1: + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} + + node-gyp-build-optional-packages@5.0.3: + resolution: {integrity: sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==} + hasBin: true + + node-gyp-build-optional-packages@5.0.7: + resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==} + hasBin: true + + node-gyp-build@4.8.1: + resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==} + hasBin: true + + node-html-parser@5.4.2: + resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==} + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-object-hash@2.3.10: + resolution: {integrity: sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==} + engines: {node: '>=0.10.0'} + + node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + + node-stream-zip@1.15.0: + resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} + engines: {node: '>=0.12.0'} + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-path@2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + + npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npmlog@4.1.2: + resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} + + nth-check@1.0.2: + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + null-loader@4.0.1: + resolution: {integrity: sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + nullthrows@1.1.1: + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + + number-is-nan@1.0.1: + resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} + engines: {node: '>=0.10.0'} + + nwsapi@2.2.9: + resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==} + + nx@13.2.3: + resolution: {integrity: sha512-aNRbPjArROZazOKAiUhG5uZAZmL1uXdsGoA3p5mDt5fCLSj/CX1V/myuRx+Js0qsAV78W6dSf2z6TiQeIgieXg==} + hasBin: true + + nx@14.0.5: + resolution: {integrity: sha512-YNBdVkd3YrE1eBQKRbF+3TZCCHNkn/6EBwzsitky5SNKczgvyhcm2/of+Cc4S3Sl29U1OPQ5za9SknCsqdiz/g==} + hasBin: true + + nx@14.8.9: + resolution: {integrity: sha512-X29mxovtXkrqcYNndTNMUOrtO3tkSZF0GkdsQ16kCxo4YIqUVVOpM7IzZYx+JxO6fVDFMlK7eGU2C2lTHz/MSQ==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + + ob1@0.80.9: + resolution: {integrity: sha512-v9yOxowkZbxWhKOaaTyLjIm1aLy4ebMNcSn4NYJKOAI/Qv+SkfEfszpLr2GIxsccmb2Y2HA9qtsqiIJ80ucpVA==} + engines: {node: '>=18'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-copy@0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object-visit@1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + + object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + + object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.getownpropertydescriptors@2.1.8: + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.hasown@1.1.4: + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} + + object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + + object.values@1.2.0: + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} + + objectFitPolyfill@2.3.5: + resolution: {integrity: sha512-8Quz071ZmGi0QWEG4xB3Bv5Lpw6K0Uca87FLoLMKMWjB6qIq9IyBegP3b/VLNxv2WYvIMGoeUQ+c6ibUkNa8TA==} + + obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + open@6.4.0: + resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} + engines: {node: '>=8'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + + opentracing@0.14.7: + resolution: {integrity: sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q==} + engines: {node: '>=0.10'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + ordered-binary@1.5.1: + resolution: {integrity: sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + p-cancelable@1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + + p-cancelable@2.1.1: + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} + + p-defer@1.0.0: + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} + + p-defer@3.0.0: + resolution: {integrity: sha512-ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-retry@4.6.2: + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json@6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} + + param-case@2.1.1: + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + + param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-english@4.2.0: + resolution: {integrity: sha512-jw5N6wZUZViIw3VLG/FUSeL3vDhfw5Q2g4E3nYC69Mm5ANbh9ZWd+eligQbeUoyObZM8neynTn3l14e09pjEWg==} + + parse-entities@1.2.2: + resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} + + parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + + parse-filepath@1.0.2: + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} + engines: {node: '>=0.8'} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-latin@4.3.0: + resolution: {integrity: sha512-TYKL+K98dcAWoCw/Ac1yrPviU8Trk+/gmjQVaoWEFDZmVD4KRg6c/80xKqNNFQObo2mTONgF8trzAf2UTwKafw==} + + parse-path@7.0.0: + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + + parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + + parse5-html-rewriting-stream@6.0.1: + resolution: {integrity: sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==} + + parse5-htmlparser2-tree-adapter@7.0.0: + resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} + + parse5-sax-parser@6.0.1: + resolution: {integrity: sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==} + + parse5@4.0.0: + resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + + parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + pascal-case@2.0.1: + resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} + + pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + + pascalcase@0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + + password-prompt@1.1.3: + resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==} + + path-case@2.1.1: + resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} + + path-case@3.0.4: + resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} + + path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-is-network-drive@1.0.20: + resolution: {integrity: sha512-p5wCWlRB4+ggzxWshqHH9aF3kAuVu295NaENXmVhThbZPJQBeJdxZTP6CIoUR+kWHDUW56S9YcaO1gXnc/BOxw==} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-root-regex@0.1.2: + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} + + path-root@0.1.1: + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} + + path-strip-sep@1.0.17: + resolution: {integrity: sha512-+2zIC2fNgdilgV7pTrktY6oOxxZUo9x5zJYfTzxsGze5kSGDDwhA5/0WlBn+sUyv/WuuyYn3OfM+Ue5nhdQUgA==} + + path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + peek-readable@4.1.0: + resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==} + engines: {node: '>=8'} + + physical-cpu-count@2.0.0: + resolution: {integrity: sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==} + + picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + pkg-dir@3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + pkg-dir@5.0.0: + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} + + pkg-up@3.1.0: + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} + + platform@1.3.6: + resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} + + portfinder@1.0.32: + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} + + posix-character-classes@0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-flexbugs-fixes@5.0.2: + resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} + peerDependencies: + postcss: ^8.1.4 + + postcss-import@14.0.2: + resolution: {integrity: sha512-BJ2pVK4KhUyMcqjuKs9RijV5tatNzNa73e/32aBVE/ejYPe37iH+6vAu9WvqUkB5OAYgLHzbSvzHnorybJCm9g==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-loader@5.3.0: + resolution: {integrity: sha512-/+Z1RAmssdiSLgIZwnJHwBMnlABPgF7giYzTN2NOfr9D21IJZ4mQC1R2miwp80zno9M4zMD/umGI8cR+2EL5zw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + + postcss-loader@6.2.1: + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@4.0.5: + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.0: + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-selector-parser@6.0.16: + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.3.0: + resolution: {integrity: sha512-+ogXpdAjWGa+fdYY5BQ96V/6tAo+TdSSIMP5huJBIygdWwKtVoB5JWZ7yUd4xZ8r+8Kvvx4nyg/PQ071H4UtcQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.4.38: + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} + engines: {node: ^10 || ^12 || >=14} + + prebuild-install@7.1.2: + resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} + engines: {node: '>=10'} + hasBin: true + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prepend-http@2.0.0: + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} + + pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + + pretty-error@2.1.2: + resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} + + pretty-format@26.6.2: + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} + + 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} + + 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} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + pretty-hrtime@1.0.3: + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} + + probe-image-size@7.2.3: + resolution: {integrity: sha512-HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w==} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + + promise@7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + + promise@8.3.0: + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + proper-lockfile@4.1.2: + resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} + + property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + + protocols@2.0.1: + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + + pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pupa@2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} + + q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + qs@6.12.1: + resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} + engines: {node: '>=0.6'} + + query-string@6.14.1: + resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==} + engines: {node: '>=6'} + + querystring@0.2.1: + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + queue@6.0.2: + resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + raw-loader@4.0.2: + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + react-calendar@3.9.0: + resolution: {integrity: sha512-g6RJCEaPovHTiV2bMhBUfm0a1YoMj4bOUpL8hQSLmR1Glhc7lgRLtZBd4mcC4jkoGsb+hv9uA/QH4pZcm5l9lQ==} + peerDependencies: + react: ^16.3.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.3.0 || ^17.0.0 || ^18.0.0 + + react-dev-utils@12.0.1: + resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=2.7' + webpack: '>=4' + peerDependenciesMeta: + typescript: + optional: true + + react-devtools-core@5.2.0: + resolution: {integrity: sha512-vZK+/gvxxsieAoAyYaiRIVFxlajb7KXhgBDV7OsoMzaAE+IqGpoxusBjIgq5ibqA2IloKu0p9n7tE68z1xs18A==} + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-error-overlay@6.0.11: + resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} + + react-fast-compare@3.2.2: + resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + + react-helmet@6.1.0: + resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==} + peerDependencies: + react: '>=16.3.0' + + react-hook-form@7.51.4: + resolution: {integrity: sha512-V14i8SEkh+V1gs6YtD0hdHYnoL4tp/HX/A45wWQN15CYr9bFRmmRdYStSO5L65lCCZRF+kYiSKhm9alqbcdiVA==} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-konva@18.2.10: + resolution: {integrity: sha512-ohcX1BJINL43m4ynjZ24MxFI1syjBdrXhqVxYVDw2rKgr3yuS0x/6m1Y2Z4sl4T/gKhfreBx8KHisd0XC6OT1g==} + peerDependencies: + konva: ^8.0.1 || ^7.2.5 || ^9.0.0 + react: '>=18.0.0' + react-dom: '>=18.0.0' + + react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + + react-native@0.74.1: + resolution: {integrity: sha512-0H2XpmghwOtfPpM2LKqHIN7gxy+7G/r1hwJHKLV6uoyXGC/gCojRtoo5NqyKrWpFC8cqyT6wTYCLuG7CxEKilg==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@types/react': ^18.2.6 + react: 18.2.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-reconciler@0.27.0: + resolution: {integrity: sha512-HmMDKciQjYmBRGuuhIaKA1ba/7a+UsM5FzOZsMO2JYHt9Jh8reCb7j1eDC95NOyUlKM9KRyvdx0flBuDvYSBoA==} + engines: {node: '>=0.10.0'} + peerDependencies: + react: ^18.0.0 + + react-reconciler@0.29.2: + resolution: {integrity: sha512-zZQqIiYgDCTP/f1N/mAR10nJGrPD2ZR+jDSEsKWJHYC7Cm2wodlwbR3upZRdC3cjIjSlTLNVyO7Iu0Yy7t2AYg==} + engines: {node: '>=0.10.0'} + peerDependencies: + react: ^18.3.1 + + react-redux@8.1.3: + resolution: {integrity: sha512-n0ZrutD7DaX/j9VscF+uTALI3oUPa/pO4Z3soOBIjuRn/FzVu6aehhysxZCLi6y7duMf52WNZGMl7CtuK5EnRw==} + peerDependencies: + '@types/react': ^16.8 || ^17.0 || ^18.0 + '@types/react-dom': ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + react-native: '>=0.59' + redux: ^4 || ^5.0.0-beta.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + react-dom: + optional: true + react-native: + optional: true + redux: + optional: true + + react-refresh@0.10.0: + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} + + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + + react-responsive@8.2.0: + resolution: {integrity: sha512-iagCqVrw4QSjhxKp3I/YK6+ODkWY6G+YPElvdYKiUUbywwh9Ds0M7r26Fj2/7dWFFbOpcGnJE6uE7aMck8j5Qg==} + engines: {node: '>= 0.10'} + peerDependencies: + react: '>=16.8.0' + + react-router-dom@6.23.0: + resolution: {integrity: sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + + react-router@6.23.0: + resolution: {integrity: sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==} + engines: {node: '>=14.0.0'} + peerDependencies: + react: '>=16.8' + + react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825: + resolution: {integrity: sha512-JyCjbp6ZvkH/T0EuVPdceYlC8u5WqWDSJr2KxDvc81H2eJ+7zYUN++IcEycnR2F+HmER8QVgxfotnIx352zi+w==} + engines: {node: '>=0.10.0'} + peerDependencies: + react: 0.0.0-experimental-c8b778b7f-20220825 + webpack: ^5.59.0 + + react-shallow-renderer@16.15.0: + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 || ^18.0.0 + + react-side-effect@2.1.2: + resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==} + peerDependencies: + react: ^16.3.0 || ^17.0.0 || ^18.0.0 + + react-slick@0.28.1: + resolution: {integrity: sha512-JwRQXoWGJRbUTE7eZI1rGIHaXX/4YuwX6gn7ulfvUZ4vFDVQAA25HcsHSYaUiRCduTr6rskyIuyPMpuG6bbluw==} + peerDependencies: + react: ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 + react-dom: ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 + + react-spring@9.7.3: + resolution: {integrity: sha512-oTxDpFV5gzq7jQX6+bU0SVq+vX8VnuuT5c8Zwn6CpDErOPvCmV+DRkPiEBtaL3Ozgzwiy5yFx83N0h303j/r3A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-use-measure@2.1.1: + resolution: {integrity: sha512-nocZhN26cproIiIduswYpV5y5lQpSQS1y/4KuvUCjSKmw7ZWIS/+g3aFnX3WdBkyuGUtTLif3UTqnLLhbDoQig==} + peerDependencies: + react: '>=16.13' + react-dom: '>=16.13' + + react-zdog@1.2.2: + resolution: {integrity: sha512-Ix7ALha91aOEwiHuxumCeYbARS5XNpc/w0v145oGkM6poF/CvhKJwzLhM5sEZbtrghMA+psAhOJkCTzJoseicA==} + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readable-web-to-node-stream@3.0.2: + resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} + engines: {node: '>=8'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readline@1.3.0: + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + + recast@0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} + engines: {node: '>= 4'} + + recast@0.21.5: + resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} + engines: {node: '>= 4'} + + recursive-readdir@2.2.3: + resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} + engines: {node: '>=6.0.0'} + + redux-persist@6.0.0: + resolution: {integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==} + peerDependencies: + react: '>=16' + redux: '>4.0.0' + peerDependenciesMeta: + react: + optional: true + + redux-thunk@2.4.2: + resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + peerDependencies: + redux: ^4 + + redux@4.1.2: + resolution: {integrity: sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==} + + reflect.getprototypeof@1.0.6: + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + engines: {node: '>= 0.4'} + + regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regenerator-runtime@0.11.1: + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + + regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + + regex-not@1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + + regexp.prototype.flags@1.5.2: + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} + + regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + + regexpu-core@5.3.2: + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} + + registry-auth-token@4.2.2: + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} + + registry-url@5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} + + regjsparser@0.9.1: + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + hasBin: true + + relay-runtime@12.0.0: + resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} + + remark-footnotes@2.0.0: + resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==} + + remark-mdx@1.6.22: + resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==} + + remark-parse@6.0.3: + resolution: {integrity: sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg==} + + remark-parse@8.0.3: + resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==} + + remark-retext@3.1.3: + resolution: {integrity: sha512-UujXAm28u4lnUvtOZQFYfRIhxX+auKI9PuA2QpQVTT7gYk1OgX6o0OUrSo1KOa6GNrFX+OODOtS5PWIHPxM7qw==} + + remark-squeeze-paragraphs@4.0.0: + resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==} + + remark-stringify@6.0.4: + resolution: {integrity: sha512-eRWGdEPMVudijE/psbIDNcnJLRVx3xhfuEsTDGgH4GsFF91dVhw5nhmnBppafJ7+NWINW6C7ZwWbi30ImJzqWg==} + + remark@10.0.1: + resolution: {integrity: sha512-E6lMuoLIy2TyiokHprMjcWNJ5UxfGQjaMSMhV+f4idM625UjjK4j798+gPs5mfjzDE6vL0oFKVeZM6gZVSVrzQ==} + + remove-trailing-separator@1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + + renderkid@2.0.7: + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} + + repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + replace-ext@1.0.0: + resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} + engines: {node: '>= 0.10'} + + 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: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-like@0.1.2: + resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + require-package-name@2.0.1: + resolution: {integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-url@0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + + resolve.exports@1.1.0: + resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} + engines: {node: '>=10'} + + resolve@1.20.0: + resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + responselike@1.0.2: + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + + responselike@2.0.1: + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + ret@0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + + retext-english@3.0.4: + resolution: {integrity: sha512-yr1PgaBDde+25aJXrnt3p1jvT8FVLVat2Bx8XeAWX13KXo8OT+3nWGU3HWxM4YFJvmfqvJYJZG2d7xxaO774gw==} + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + retry@0.13.1: + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + hasBin: true + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + + rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} + + rollup-plugin-peer-deps-external@2.2.4: + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + + rollup-plugin-postcss@4.0.2: + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + + rollup-plugin-typescript2@0.30.0: + resolution: {integrity: sha512-NUFszIQyhgDdhRS9ya/VEmsnpTe+GERDMmFo0Y+kf8ds51Xy57nPNGglJY+W6x1vcouA7Au7nsTgsLFj2I0PxQ==} + peerDependencies: + rollup: '>=1.26.3' + typescript: '>=2.4.0' + + rollup-plugin-typescript2@0.31.2: + resolution: {integrity: sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q==} + peerDependencies: + rollup: '>=1.26.3' + typescript: '>=2.4.0' + + rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + + rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true + + run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs-for-await@0.0.2: + resolution: {integrity: sha512-IJ8R/ZCFMHOcDIqoABs82jal00VrZx8Xkgfe7TOKoaRPAW5nH/VFlG23bXpeGdrmtqI9UobFPgUKgCuFc7Lncw==} + peerDependencies: + rxjs: ^6.0.0 + + rxjs@6.6.7: + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} + + safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + + safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + + safe-regex@1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sass-loader@12.6.0: + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + + sass@1.77.0: + resolution: {integrity: sha512-eGj4HNfXqBWtSnvItNkn7B6icqH14i3CiCGbzMKs3BAPTq62pp9NBYsBgyN4cA+qssqo9r26lW4JSvlaUUWbgw==} + engines: {node: '>=14.0.0'} + hasBin: true + + sax@1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + + sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} + + saxes@5.0.1: + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} + + scheduler@0.21.0: + resolution: {integrity: sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + scheduler@0.24.0-canary-efb381bbf-20230505: + resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + + schema-utils@2.7.0: + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} + + schema-utils@2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} + + schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} + + schema-utils@4.2.0: + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} + + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + + secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + + select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + + selfsigned@2.4.1: + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} + + semver-diff@3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.0.0: + resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} + hasBin: true + + semver@7.3.4: + resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} + engines: {node: '>=10'} + hasBin: true + + semver@7.6.1: + resolution: {integrity: sha512-f/vbBsu+fOiYt+lmwZV0rVwJScl46HppnOA1ZvIuBWKOTlllpyJ3bfVax76/OrhCH38dyxoDIA8K7uB963IYgA==} + engines: {node: '>=10'} + hasBin: true + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + sentence-case@2.1.1: + resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} + + sentence-case@3.0.4: + resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + + serialize-error@2.1.0: + resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} + engines: {node: '>=0.10.0'} + + serialize-javascript@5.0.1: + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + serve-index@1.9.1: + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} + + serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + + setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + + setprototypeof@1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shallow-compare@1.2.2: + resolution: {integrity: sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==} + + shallow-equal@1.2.1: + resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==} + + shallowequal@1.1.0: + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} + + sharp@0.30.7: + resolution: {integrity: sha512-G+MY2YW33jgflKPTXXptVO28HvNOo9G3j0MybYAHeEmby+QuD2U98dT6ueht9cv/XDqZspSpIhoSW+BAKJ7Hig==} + engines: {node: '>=12.13.0'} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signedsource@1.0.0: + resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} + + simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + + simple-get@4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slice-ansi@2.1.0: + resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} + engines: {node: '>=6'} + + slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + + slugify@1.6.6: + resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} + engines: {node: '>=8.0.0'} + + snake-case@2.1.0: + resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} + + snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + + snapdragon-node@2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + + snapdragon-util@3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + + snapdragon@0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + + socket.io-adapter@2.4.0: + resolution: {integrity: sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==} + + socket.io-client@4.5.4: + resolution: {integrity: sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==} + engines: {node: '>=10.0.0'} + + socket.io-parser@4.2.4: + resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} + engines: {node: '>=10.0.0'} + + socket.io@4.5.4: + resolution: {integrity: sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==} + engines: {node: '>=10.0.0'} + + sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + + source-list-map@1.1.2: + resolution: {integrity: sha512-FqR2O+cX+toUD3ULVIgTtiqYIqPnA62ehJD47mf4LG1PZCB+xmIa3gcTEhegGbP22aRPh88dJSdgDIolrvSxBQ==} + + source-list-map@2.0.1: + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + + source-map-js@0.6.2: + resolution: {integrity: sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==} + engines: {node: '>=0.10.0'} + + source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + + source-map-loader@3.0.2: + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + source-map-resolve@0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + 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 + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map-url@0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.3: + resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} + engines: {node: '>= 8'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.17: + resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} + + spdy-transport@3.0.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + + spdy@4.0.2: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + + split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + + split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + + sponge-case@1.0.1: + resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + st@2.0.0: + resolution: {integrity: sha512-drN+aGYnrZPNYIymmNwIY7LXYJ8MqsqXj4fMRue3FOgGMdGjSX10fhJ3qx0sVQPhcWxhEaN4U/eWM4O4dbYNAw==} + hasBin: true + + 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-trace@0.0.10: + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + stacktrace-parser@0.1.10: + resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} + engines: {node: '>=6'} + + state-toggle@1.0.3: + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + + static-extend@0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + + static-site-generator-webpack-plugin@3.4.2: + resolution: {integrity: sha512-39Kn+fZDVjolLYuX5y1rDvksJIW0QEUaEC/AVO/UewNXxGzoSQI1UYnRsL+ocAcN5Yti6d6rJgEL0qZ5tNXfdw==} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stream-parser@0.3.1: + resolution: {integrity: sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + + string-convert@0.2.1: + resolution: {integrity: sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-natural-compare@3.0.1: + resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} + + string-similarity@1.2.2: + resolution: {integrity: sha512-IoHUjcw3Srl8nsPlW04U3qwWPk3oG2ffLM0tN853d/E/JlIvcmZmDY2Kz5HzKp4lEi2T7QD7Zuvjq/1rDw+XcQ==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + string-width@1.0.2: + resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} + engines: {node: '>=0.10.0'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string.prototype.matchall@4.0.11: + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} + + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@1.3.2: + resolution: {integrity: sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==} + + stringify-object@3.3.0: + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} + + strip-ansi@6.0.0: + resolution: {integrity: sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==} + engines: {node: '>=8'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-comments@1.0.2: + resolution: {integrity: sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==} + engines: {node: '>=4'} + + strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-outer@1.0.1: + resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} + engines: {node: '>=0.10.0'} + + strnum@1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + + strong-log-transformer@2.1.0: + resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} + engines: {node: '>=4'} + hasBin: true + + strtok3@6.3.0: + resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==} + engines: {node: '>=10'} + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + style-loader@2.0.0: + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + style-loader@3.3.4: + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + style-to-object@0.3.0: + resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} + + styled-components@6.1.10: + resolution: {integrity: sha512-4K8IKcn7iOt76riGLjvBhRyNPTkUKTvmnwoRFBOtJLswVvzy2VsoE2KOrfl9FJLQUYbITLJY2wfIZ3tjbkA/Zw==} + engines: {node: '>= 16'} + peerDependencies: + react: '>= 16.8.0' + react-dom: '>= 16.8.0' + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + stylis@4.3.2: + resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==} + + stylus-loader@6.2.0: + resolution: {integrity: sha512-5dsDc7qVQGRoc6pvCL20eYgRUxepZ9FpeK28XhdXaIPP6kXr6nI1zAAKFQgP5OBkOfKaURp4WUpJzspg1f01Gg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + stylus: '>=0.52.4' + webpack: ^5.0.0 + + stylus@0.55.0: + resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} + hasBin: true + + sudo-prompt@8.2.5: + resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==} + + sudo-prompt@9.2.1: + resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-hyperlinks@2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + suspend-react@0.1.3: + resolution: {integrity: sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ==} + peerDependencies: + react: '>=17.0' + + svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + + svgo@1.3.2: + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} + deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + hasBin: true + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + swap-case@1.1.2: + resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} + + swap-case@2.0.2: + resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + table@6.8.2: + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} + + tapable@1.1.3: + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + temp-dir@2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + + temp@0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + terminal-link@2.1.1: + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} + + terser-webpack-plugin@5.3.10: + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@4.3.8: + resolution: {integrity: sha512-otmIRlRVmLChAWsnSFNO0Bfk6YySuBp6G9qrHiJwlLDd4mxe2ta4sjI7TzIR+W1nBMjilzrMcPOz9pSusgx3hQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + terser@5.31.0: + resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + three@0.164.1: + resolution: {integrity: sha512-iC/hUBbl1vzFny7f5GtqzVXYjMJKaTPxiCxXfrvVdBi1Sf+jhd1CAkitiFwC7mIBFCo3MrDLJG97yisoaWig0w==} + + throat@5.0.0: + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + + throat@6.0.2: + resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + + timers-ext@0.1.7: + resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==} + + title-case@2.1.1: + resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} + + title-case@3.0.3: + resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmp@0.2.3: + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + + to-readable-stream@1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + + to-regex-range@2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + to-regex@3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + + toidentifier@1.0.0: + resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} + engines: {node: '>=0.6'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + token-types@4.2.1: + resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==} + engines: {node: '>=10'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@2.1.0: + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + trim-repeated@1.0.0: + resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} + engines: {node: '>=0.10.0'} + + trim-trailing-lines@1.1.4: + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + + trim@0.0.1: + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead + + trough@1.0.5: + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + + true-case-path@2.2.1: + resolution: {integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==} + + ts-loader@9.5.1: + resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} + engines: {node: '>=12.0.0'} + peerDependencies: + typescript: '*' + webpack: ^5.0.0 + + ts-node@9.1.1: + resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} + engines: {node: '>=10.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' + + tsconfig-paths-webpack-plugin@3.4.1: + resolution: {integrity: sha512-HN1aWCPOXLF3dDke1w4z3RfCgmm9yTppg51FMCqZ02p6leKD4JZvvnPZtqhvnQVmoWWaQjbpO93h2WFjRJjQcA==} + + tsconfig-paths-webpack-plugin@3.5.2: + resolution: {integrity: sha512-EhnfjHbzm5IYI9YPNVIxx1moxMI4bpHD2e0zTXeDNQcwjjRaGepP7IhTHJkyDBG0CAOoxRfe7jCG630Ou+C6Pw==} + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.1.0: + resolution: {integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==} + + tslib@2.4.1: + resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + + tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + + tsutils@3.21.0: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@0.7.1: + resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + type-of@2.0.1: + resolution: {integrity: sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ==} + + type@2.7.2: + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + + typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.6: + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} + + typed-assert@1.0.9: + resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} + + typedarray-to-buffer@3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + + ua-parser-js@1.0.37: + resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} + + unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + + unc-path-regex@0.1.2: + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} + + underscore.string@3.3.6: + resolution: {integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + unherit@1.1.3: + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + + 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: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + 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: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unified@7.1.0: + resolution: {integrity: sha512-lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw==} + + unified@8.4.2: + resolution: {integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==} + + unified@9.2.0: + resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} + + union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + + union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} + + unique-string@2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + + unist-builder@2.0.3: + resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==} + + unist-util-generated@1.1.6: + resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==} + + unist-util-is@2.1.3: + resolution: {integrity: sha512-4WbQX2iwfr/+PfM4U3zd2VNXY+dWtZsN1fLnWEi2QQXA4qyDYAZcDMfXUX0Cu6XZUHHAO9q4nyxxLT4Awk1qUA==} + + unist-util-is@3.0.0: + resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} + + unist-util-is@4.1.0: + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + + unist-util-map@1.0.5: + resolution: {integrity: sha512-dFil/AN6vqhnQWNCZk0GF/G3+Q5YwsB+PqjnzvpO2wzdRtUJ1E8PN+XRE/PRr/G3FzKjRTJU0haqE0Ekl+O3Ag==} + + unist-util-modify-children@2.0.0: + resolution: {integrity: sha512-HGrj7JQo9DwZt8XFsX8UD4gGqOsIlCih9opG6Y+N11XqkBGKzHo8cvDi+MfQQgiZ7zXRUiQREYHhjOBHERTMdg==} + + unist-util-position@3.1.0: + resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==} + + unist-util-remove-position@1.1.4: + resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} + + unist-util-remove-position@2.0.1: + resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==} + + unist-util-remove@1.0.3: + resolution: {integrity: sha512-mB6nCHCQK0pQffUAcCVmKgIWzG/AXs/V8qpS8K72tMPtOSCMSjDeMc5yN+Ye8rB0FhcE+JvW++o1xRNc0R+++g==} + + unist-util-remove@2.1.0: + resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==} + + unist-util-stringify-position@1.1.2: + resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} + + unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-children@1.1.4: + resolution: {integrity: sha512-sA/nXwYRCQVRwZU2/tQWUqJ9JSFM1X3x7JIOsIgSzrFHcfVt6NkzDtKzyxg2cZWkCwGF9CO8x4QNZRJRMK8FeQ==} + + unist-util-visit-parents@2.1.2: + resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} + + unist-util-visit-parents@3.1.1: + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + + unist-util-visit@1.4.1: + resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} + + unist-util-visit@2.0.3: + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unixify@1.0.0: + resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} + engines: {node: '>=0.10.0'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + unquote@1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + + unset-value@1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + + upath2@3.1.19: + resolution: {integrity: sha512-d23dQLi8nDWSRTIQwXtaYqMrHuca0As53fNiTLLFDmsGBbepsZepISaB2H1x45bDFN/n3Qw9bydvyZEacTrEWQ==} + + update-browserslist-db@1.0.15: + resolution: {integrity: sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-notifier@5.1.0: + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} + + upper-case-first@1.1.2: + resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} + + upper-case-first@2.0.2: + resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + + upper-case@1.1.3: + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + + upper-case@2.0.2: + resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + urix@0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + + url-join@2.0.5: + resolution: {integrity: sha512-c2H1fIgpUdwFRIru9HFno5DT73Ok8hg5oOb5AT3ayIgvCRfxgs2jyt5Slw8kEB7j3QUr6yJmMPDT/odjk7jXow==} + + url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + + url-loader@4.1.1: + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + file-loader: + optional: true + + url-parse-lax@3.0.0: + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + + use-sync-external-store@1.2.2: + resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use@3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util.promisify@1.0.1: + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + + utila@0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + + utility-types@3.11.0: + resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} + engines: {node: '>= 4'} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + + v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + + v8-to-istanbul@8.1.1: + resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} + engines: {node: '>=10.12.0'} + + v8-to-istanbul@9.2.0: + resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + engines: {node: '>=10.12.0'} + + valid-url@1.0.9: + resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + value-or-promise@1.0.12: + resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} + engines: {node: '>=12'} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + vfile-location@2.0.6: + resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} + + vfile-location@3.2.0: + resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==} + + vfile-message@1.1.1: + resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} + + vfile-message@2.0.4: + resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@3.0.1: + resolution: {integrity: sha512-y7Y3gH9BsUSdD4KzHsuMaCzRjglXN0W2EcMf0gpvu6+SbsGhMje7xDc8AEoeXy6mIwCKMI6BkjMsRjzQbhMEjQ==} + + vfile@4.2.1: + resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + + vlq@1.0.1: + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + + w3c-hr-time@1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + deprecated: Use your platform's native performance.now() and performance.timeOrigin. + + w3c-xmlserializer@2.0.0: + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + watchpack@2.4.1: + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} + + wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + weak-lru-cache@1.2.2: + resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==} + + web-namespaces@1.1.4: + resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} + + webfontloader@1.6.28: + resolution: {integrity: sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@5.0.0: + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} + + webidl-conversions@6.1.0: + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} + + webpack-dev-middleware@4.3.0: + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + webpack-dev-middleware@5.3.4: + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + + webpack-dev-server@4.15.2: + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} + hasBin: true + peerDependencies: + webpack: ^4.37.0 || ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + + webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} + + webpack-node-externals@3.0.0: + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} + + webpack-sources@0.2.3: + resolution: {integrity: sha512-iqanNZjOHLdPn/R0e/nKVn90dm4IsUMxKam0MZD1btWhFub/Cdo1nWdMio6yEqBc0F8mEieOjc+jfBSXwna94Q==} + + webpack-sources@1.4.3: + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + + webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + + webpack-stats-plugin@1.1.3: + resolution: {integrity: sha512-yUKYyy+e0iF/w31QdfioRKY+h3jDBRpthexBOWGKda99iu2l/wxYsI/XqdlP5IU58/0KB9CsJZgWNAl+/MPkRw==} + + webpack-subresource-integrity@1.5.2: + resolution: {integrity: sha512-GBWYBoyalbo5YClwWop9qe6Zclp8CIXYGIz12OPclJhIrSplDxs1Ls1JDMH8xBPPrg1T6ISaTW9Y6zOrwEiAzw==} + engines: {node: '>=4'} + peerDependencies: + html-webpack-plugin: '>= 2.21.0 < 5' + webpack: '>= 1.12.11 < 6' + peerDependenciesMeta: + html-webpack-plugin: + optional: true + + webpack-subresource-integrity@5.1.0: + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: ^5.12.0 + peerDependenciesMeta: + html-webpack-plugin: + optional: true + + webpack-virtual-modules@0.3.2: + resolution: {integrity: sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==} + + webpack@5.91.0: + resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + websocket-driver@0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} + + websocket-extensions@0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} + + whatwg-encoding@1.0.5: + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-fetch@3.6.20: + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + + whatwg-mimetype@2.3.0: + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + whatwg-url@8.7.0: + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} + + which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + + which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + widest-line@3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + + wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + workbox-background-sync@4.3.1: + resolution: {integrity: sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==} + + workbox-broadcast-update@4.3.1: + resolution: {integrity: sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==} + + workbox-build@4.3.1: + resolution: {integrity: sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==} + engines: {node: '>=4.0.0'} + + workbox-cacheable-response@4.3.1: + resolution: {integrity: sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==} + + workbox-core@4.3.1: + resolution: {integrity: sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==} + + workbox-expiration@4.3.1: + resolution: {integrity: sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==} + + workbox-google-analytics@4.3.1: + resolution: {integrity: sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==} + deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained + + workbox-navigation-preload@4.3.1: + resolution: {integrity: sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==} + + workbox-precaching@4.3.1: + resolution: {integrity: sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==} + + workbox-range-requests@4.3.1: + resolution: {integrity: sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==} + + workbox-routing@4.3.1: + resolution: {integrity: sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==} + + workbox-strategies@4.3.1: + resolution: {integrity: sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==} + + workbox-streams@4.3.1: + resolution: {integrity: sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==} + + workbox-sw@4.3.1: + resolution: {integrity: sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==} + + workbox-window@4.3.1: + resolution: {integrity: sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==} + + worker-plugin@3.2.0: + resolution: {integrity: sha512-W5nRkw7+HlbsEt3qRP6MczwDDISjiRj2GYt9+bpe8A2La00TmJdwzG5bpdMXhRt1qcWmwAvl1TiKaHRa+XDS9Q==} + peerDependencies: + webpack: '>= 4' + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + + write-file-atomic@3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + + 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} + + ws@6.2.2: + resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@7.5.9: + resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.17.0: + resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.2.3: + resolution: {integrity: sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + x-is-string@0.1.0: + resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} + + xdg-basedir@4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + + xml-name-validator@3.0.0: + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xmlhttprequest-ssl@2.0.0: + resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} + engines: {node: '>=0.4.0'} + + xss@1.0.15: + resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==} + engines: {node: '>= 0.10.0'} + hasBin: true + + xstate@4.32.1: + resolution: {integrity: sha512-QYUd+3GkXZ8i6qdixnOn28bL3EvA++LONYL/EMWwKlFSh/hiLndJ8YTnz77FDs+JUXcwU7NZJg7qoezoRHc4GQ==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + xxhash-wasm@0.4.2: + resolution: {integrity: sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml-loader@0.8.1: + resolution: {integrity: sha512-BCEndnUoi3BaZmePkwGGe93txRxLgMhBa/gE725v1/GHnura8QvNs7c4+4C1yyhhKoj3Dg63M7IqhA++15j6ww==} + engines: {node: '>= 14'} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.4.2: + resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==} + engines: {node: '>= 14'} + hasBin: true + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@20.0.0: + resolution: {integrity: sha512-8eblPHTL7ZWRkyjIZJjnGf+TijiKJSwA24svzLRVvtgoi/RZiKa9fFQTrlx0OKLnyHSdt/enrdadji6WFfESVA==} + engines: {node: '>=10'} + + yargs-parser@21.0.1: + resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} + engines: {node: '>=12'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yoga-layout-prebuilt@1.10.0: + resolution: {integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==} + engines: {node: '>=8'} + + yurnalist@2.1.0: + resolution: {integrity: sha512-PgrBqosQLM3gN2xBFIMDLACRTV9c365VqityKKpSTWpwR+U4LAFR3rSVyEoscWlu3EzX9+Y0I86GXUKxpHFl6w==} + engines: {node: '>=4.0.0'} + + zdog@1.1.3: + resolution: {integrity: sha512-raRj6r0gPzopFm5XWBJZr/NuV4EEnT4iE+U3dp5FV5pCb588Gmm3zLIp/j9yqqcMiHH8VNQlerLTgOqL7krh6w==} + + zustand@3.7.2: + resolution: {integrity: sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA==} + engines: {node: '>=12.7.0'} + peerDependencies: + react: '>=16.8' + peerDependenciesMeta: + react: + optional: true + + zwitch@1.0.5: + resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + +snapshots: + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@ardatan/relay-compiler@12.0.0(graphql@15.8.0)': + dependencies: + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/runtime': 7.24.5 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + babel-preset-fbjs: 3.4.0(@babel/core@7.24.5) + chalk: 4.1.2 + fb-watchman: 2.0.2 + fbjs: 3.0.5 + glob: 7.2.3 + graphql: 15.8.0 + immutable: 3.7.6 + invariant: 2.2.4 + nullthrows: 1.1.1 + relay-runtime: 12.0.0 + signedsource: 1.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - encoding + - supports-color + + '@babel/code-frame@7.12.11': + dependencies: + '@babel/highlight': 7.24.5 + + '@babel/code-frame@7.24.2': + dependencies: + '@babel/highlight': 7.24.5 + picocolors: 1.0.0 + + '@babel/compat-data@7.24.4': {} + + '@babel/core@7.12.13': + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.13) + '@babel/helpers': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.12.9': + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.9) + '@babel/helpers': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.24.5': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helpers': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + convert-source-map: 2.0.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/eslint-parser@7.24.5(@babel/core@7.24.5)(eslint@7.32.0)': + dependencies: + '@babel/core': 7.24.5 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 + eslint: 7.32.0 + eslint-visitor-keys: 2.1.0 + semver: 6.3.1 + + '@babel/generator@7.24.5': + dependencies: + '@babel/types': 7.24.5 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + '@babel/helper-annotate-as-pure@7.22.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-compilation-targets@7.23.6': + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.23.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.24.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.12.13) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.24.5 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.24.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.24.5 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-environment-visitor@7.22.20': {} + + '@babel/helper-function-name@7.23.0': + dependencies: + '@babel/template': 7.24.0 + '@babel/types': 7.24.5 + + '@babel/helper-hoist-variables@7.22.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-member-expression-to-functions@7.24.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-module-imports@7.24.3': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-module-transforms@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + + '@babel/helper-module-transforms@7.24.5(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + + '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + + '@babel/helper-optimise-call-expression@7.22.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-plugin-utils@7.10.4': {} + + '@babel/helper-plugin-utils@7.24.5': {} + + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.24.5 + + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.24.5 + + '@babel/helper-replace-supers@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.24.5 + '@babel/helper-optimise-call-expression': 7.22.5 + + '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.24.5 + '@babel/helper-optimise-call-expression': 7.22.5 + + '@babel/helper-simple-access@7.24.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-split-export-declaration@7.24.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/helper-string-parser@7.24.1': {} + + '@babel/helper-validator-identifier@7.24.5': {} + + '@babel/helper-validator-option@7.23.5': {} + + '@babel/helper-wrap-function@7.24.5': + dependencies: + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.24.0 + '@babel/types': 7.24.5 + + '@babel/helpers@7.24.5': + dependencies: + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + transitivePeerDependencies: + - supports-color + + '@babel/highlight@7.24.5': + dependencies: + '@babel/helper-validator-identifier': 7.24.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 + + '@babel/parser@7.24.5': + dependencies: + '@babel/types': 7.24.5 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5) + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.12.13) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.13) + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5) + + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.13) + + '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.12.13) + + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.13) + + '@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.13) + + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.13) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.13) + + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.13) + + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) + + '@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.12.9) + + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.12.13)': + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/core': 7.12.13 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.12.13) + + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.5)': + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/core': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5) + + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.13) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.13) + + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) + + '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.12.13) + + '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5) + + '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) + + '@babel/plugin-transform-classes@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.12.13) + '@babel/helper-split-export-declaration': 7.24.5 + globals: 11.12.0 + + '@babel/plugin-transform-classes@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5) + '@babel/helper-split-export-declaration': 7.24.5 + globals: 11.12.0 + + '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/template': 7.24.0 + + '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/template': 7.24.0 + + '@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.12.13) + + '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5) + + '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-transform-literals@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) + + '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-simple-access': 7.24.5 + + '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-simple-access': 7.24.5 + + '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + + '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + + '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) + + '@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5) + + '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.12.13) + + '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5) + + '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) + + '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.12.9)': + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.13) + + '@babel/plugin-transform-private-property-in-object@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) + + '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.12.13) + + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5) + + '@babel/plugin-transform-react-jsx-self@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.12.13) + '@babel/types': 7.24.5 + + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/types': 7.24.5 + + '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + regenerator-transform: 0.15.2 + + '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + regenerator-transform: 0.15.2 + + '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.12.13) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.12.13) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.12.13) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-spread@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-typescript@7.24.5(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.12.13) + + '@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) + + '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.12.13) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5) + '@babel/helper-plugin-utils': 7.24.5 + + '@babel/preset-env@7.12.13(@babel/core@7.12.13)': + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/core': 7.12.13 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.12.13) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.12.13) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.12.13) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.12.13) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.12.13) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.13) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.13) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.13) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.13) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.12.13) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.12.13) + '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-typeof-symbol': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.12.13) + '@babel/preset-modules': 0.1.6(@babel/core@7.12.13) + '@babel/types': 7.24.5 + core-js-compat: 3.37.0 + semver: 5.7.2 + + '@babel/preset-env@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/core': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.5) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.5) + '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.5) + '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-object-rest-spread': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-typeof-symbol': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.5) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.5) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5) + core-js-compat: 3.37.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-flow@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.5) + + '@babel/preset-modules@0.1.6(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.12.13) + '@babel/types': 7.24.5 + esutils: 2.0.3 + + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/types': 7.24.5 + esutils: 2.0.3 + + '@babel/preset-react@7.12.13(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.12.13) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.12.13) + '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.12.13) + + '@babel/preset-react@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.5) + '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.5) + + '@babel/preset-typescript@7.12.13(@babel/core@7.12.13)': + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.12.13) + + '@babel/preset-typescript@7.24.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5) + + '@babel/register@7.23.7(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.6 + source-map-support: 0.5.21 + + '@babel/regjsgen@0.8.0': {} + + '@babel/runtime@7.24.5': + dependencies: + regenerator-runtime: 0.14.1 + + '@babel/template@7.24.0': + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + + '@babel/traverse@7.24.5': + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.24.5': + dependencies: + '@babel/helper-string-parser': 7.24.1 + '@babel/helper-validator-identifier': 7.24.5 + to-fast-properties: 2.0.0 + + '@bcoe/v8-coverage@0.2.3': {} + + '@builder.io/partytown@0.5.4': {} + + '@cypress/webpack-preprocessor@5.17.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@babel/core': 7.12.13 + '@babel/preset-env': 7.12.13(@babel/core@7.12.13) + babel-loader: 8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)) + bluebird: 3.7.1 + debug: 4.3.4 + lodash: 4.17.21 + webpack: 5.91.0(@swc/core@1.5.5) + transitivePeerDependencies: + - supports-color + + '@cypress/webpack-preprocessor@5.17.1(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@babel/core': 7.24.5 + '@babel/preset-env': 7.12.13(@babel/core@7.12.13) + babel-loader: 8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)) + bluebird: 3.7.1 + debug: 4.3.4 + lodash: 4.17.21 + webpack: 5.91.0(@swc/core@1.5.5) + transitivePeerDependencies: + - supports-color + + '@cypress/webpack-preprocessor@5.17.1(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@babel/core': 7.24.5 + '@babel/preset-env': 7.24.5(@babel/core@7.24.5) + babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)) + bluebird: 3.7.1 + debug: 4.3.4 + lodash: 4.17.21 + webpack: 5.91.0(@swc/core@1.5.5) + transitivePeerDependencies: + - supports-color + + '@emotion/is-prop-valid@1.2.2': + dependencies: + '@emotion/memoize': 0.8.1 + + '@emotion/memoize@0.8.1': {} + + '@emotion/unitless@0.8.1': {} + + '@eslint/eslintrc@0.4.3': + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 7.3.1 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.14.1 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@gatsbyjs/parcel-namer-relative-to-cwd@1.10.0(@parcel/core@2.6.2)': + dependencies: + '@babel/runtime': 7.24.5 + '@parcel/namer-default': 2.6.2(@parcel/core@2.6.2) + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + gatsby-core-utils: 3.25.0 + transitivePeerDependencies: + - '@parcel/core' + + '@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + invariant: 2.2.4 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-lifecycles-compat: 3.0.4 + + '@gatsbyjs/webpack-hot-middleware@2.25.3': + dependencies: + ansi-html-community: 0.0.8 + html-entities: 2.5.2 + strip-ansi: 6.0.1 + + '@graphql-codegen/add@3.2.3(graphql@15.8.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-codegen/core@2.6.8(graphql@15.8.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@15.8.0) + '@graphql-tools/schema': 9.0.19(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-codegen/plugin-helpers@2.7.2(graphql@15.8.0)': + dependencies: + '@graphql-tools/utils': 8.13.1(graphql@15.8.0) + change-case-all: 1.0.14 + common-tags: 1.8.2 + graphql: 15.8.0 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.4.1 + + '@graphql-codegen/plugin-helpers@3.1.2(graphql@15.8.0)': + dependencies: + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + change-case-all: 1.0.15 + common-tags: 1.8.2 + graphql: 15.8.0 + import-from: 4.0.0 + lodash: 4.17.21 + tslib: 2.4.1 + + '@graphql-codegen/schema-ast@2.6.1(graphql@15.8.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-codegen/typescript-operations@2.5.13(graphql@15.8.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@15.8.0) + '@graphql-codegen/typescript': 2.8.8(graphql@15.8.0) + '@graphql-codegen/visitor-plugin-common': 2.13.8(graphql@15.8.0) + auto-bind: 4.0.0 + graphql: 15.8.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + + '@graphql-codegen/typescript@2.8.8(graphql@15.8.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@15.8.0) + '@graphql-codegen/schema-ast': 2.6.1(graphql@15.8.0) + '@graphql-codegen/visitor-plugin-common': 2.13.8(graphql@15.8.0) + auto-bind: 4.0.0 + graphql: 15.8.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + + '@graphql-codegen/visitor-plugin-common@2.13.8(graphql@15.8.0)': + dependencies: + '@graphql-codegen/plugin-helpers': 3.1.2(graphql@15.8.0) + '@graphql-tools/optimize': 1.4.0(graphql@15.8.0) + '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + auto-bind: 4.0.0 + change-case-all: 1.0.15 + dependency-graph: 0.11.0 + graphql: 15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) + parse-filepath: 1.0.2 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + + '@graphql-tools/code-file-loader@7.3.23(@babel/core@7.24.5)(graphql@15.8.0)': + dependencies: + '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.5)(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + globby: 11.1.0 + graphql: 15.8.0 + tslib: 2.6.2 + unixify: 1.0.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + + '@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.24.5)(graphql@15.8.0)': + dependencies: + '@babel/parser': 7.24.5 + '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.5) + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@babel/core' + - supports-color + + '@graphql-tools/load@7.8.14(graphql@15.8.0)': + dependencies: + '@graphql-tools/schema': 9.0.19(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + p-limit: 3.1.0 + tslib: 2.6.2 + + '@graphql-tools/merge@8.4.2(graphql@15.8.0)': + dependencies: + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-tools/optimize@1.4.0(graphql@15.8.0)': + dependencies: + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-tools/relay-operation-optimizer@6.5.18(graphql@15.8.0)': + dependencies: + '@ardatan/relay-compiler': 12.0.0(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + transitivePeerDependencies: + - encoding + - supports-color + + '@graphql-tools/schema@9.0.19(graphql@15.8.0)': + dependencies: + '@graphql-tools/merge': 8.4.2(graphql@15.8.0) + '@graphql-tools/utils': 9.2.1(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + value-or-promise: 1.0.12 + + '@graphql-tools/utils@8.13.1(graphql@15.8.0)': + dependencies: + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-tools/utils@9.2.1(graphql@15.8.0)': + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@15.8.0) + graphql: 15.8.0 + tslib: 2.4.1 + + '@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)': + dependencies: + graphql: 15.8.0 + + '@hapi/address@2.1.4': {} + + '@hapi/bourne@1.3.2': {} + + '@hapi/hoek@8.5.1': {} + + '@hapi/hoek@9.3.0': {} + + '@hapi/joi@15.1.1': + dependencies: + '@hapi/address': 2.1.4 + '@hapi/bourne': 1.3.2 + '@hapi/hoek': 8.5.1 + '@hapi/topo': 3.1.6 + + '@hapi/topo@3.1.6': + dependencies: + '@hapi/hoek': 8.5.1 + + '@hapi/topo@5.1.0': + dependencies: + '@hapi/hoek': 9.3.0 + + '@humanwhocodes/config-array@0.5.0': + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@humanwhocodes/object-schema@1.2.1': {} + + '@isaacs/ttlcache@1.4.1': {} + + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jest/console@27.5.1': + dependencies: + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + jest-message-util: 27.5.1 + jest-util: 27.5.1 + slash: 3.0.0 + + '@jest/console@28.1.3': + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + chalk: 4.1.0 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + + '@jest/create-cache-key-function@29.7.0': + dependencies: + '@jest/types': 29.6.3 + + '@jest/environment@27.5.1': + dependencies: + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + jest-mock: 27.5.1 + + '@jest/environment@28.1.3': + dependencies: + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + jest-mock: 28.1.3 + + '@jest/environment@29.7.0': + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.11 + jest-mock: 29.7.0 + + '@jest/expect-utils@28.1.3': + dependencies: + jest-get-type: 28.0.2 + + '@jest/expect@28.1.3': + dependencies: + expect: 28.1.3 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + + '@jest/fake-timers@27.5.1': + dependencies: + '@jest/types': 27.5.1 + '@sinonjs/fake-timers': 8.1.0 + '@types/node': 20.12.11 + jest-message-util: 27.5.1 + jest-mock: 27.5.1 + jest-util: 27.5.1 + + '@jest/fake-timers@28.1.3': + dependencies: + '@jest/types': 28.1.3 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 20.12.11 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-util: 28.1.3 + + '@jest/fake-timers@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.12.11 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + '@jest/globals@27.5.1': + dependencies: + '@jest/environment': 27.5.1 + '@jest/types': 27.5.1 + expect: 27.5.1 + + '@jest/globals@28.1.3': + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/types': 28.1.3 + transitivePeerDependencies: + - supports-color + + '@jest/reporters@27.2.2': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 27.5.1 + '@jest/test-result': 27.2.2 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + chalk: 4.1.0 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 4.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-haste-map: 27.5.1 + jest-resolve: 27.2.2 + jest-util: 27.2.0 + jest-worker: 27.5.1 + slash: 3.0.0 + source-map: 0.6.1 + string-length: 4.0.2 + terminal-link: 2.1.1 + v8-to-istanbul: 8.1.1 + transitivePeerDependencies: + - supports-color + + '@jest/reporters@27.5.1': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 5.2.1 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-haste-map: 27.5.1 + jest-resolve: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 + slash: 3.0.0 + source-map: 0.6.1 + string-length: 4.0.2 + terminal-link: 2.1.1 + v8-to-istanbul: 8.1.1 + transitivePeerDependencies: + - supports-color + + '@jest/reporters@28.1.1': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 28.1.3 + '@jest/test-result': 28.1.1 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 20.12.11 + chalk: 4.1.0 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 5.2.1 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-message-util: 28.1.3 + jest-util: 28.1.1 + jest-worker: 28.1.3 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + terminal-link: 2.1.1 + v8-to-istanbul: 9.2.0 + transitivePeerDependencies: + - supports-color + + '@jest/schemas@28.1.3': + dependencies: + '@sinclair/typebox': 0.24.51 + + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 + + '@jest/source-map@27.5.1': + dependencies: + callsites: 3.1.0 + graceful-fs: 4.2.11 + source-map: 0.6.1 + + '@jest/source-map@28.1.2': + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + callsites: 3.1.0 + graceful-fs: 4.2.11 + + '@jest/test-result@27.2.2': + dependencies: + '@jest/console': 27.5.1 + '@jest/types': 27.5.1 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-result@27.5.1': + dependencies: + '@jest/console': 27.5.1 + '@jest/types': 27.5.1 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-result@28.1.1': + dependencies: + '@jest/console': 28.1.3 + '@jest/types': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-result@28.1.3': + dependencies: + '@jest/console': 28.1.3 + '@jest/types': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-sequencer@27.5.1': + dependencies: + '@jest/test-result': 27.5.1 + graceful-fs: 4.2.11 + jest-haste-map: 27.5.1 + jest-runtime: 27.5.1 + transitivePeerDependencies: + - supports-color + + '@jest/test-sequencer@28.1.3': + dependencies: + '@jest/test-result': 28.1.3 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + slash: 3.0.0 + + '@jest/transform@27.5.1': + dependencies: + '@babel/core': 7.12.13 + '@jest/types': 27.5.1 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.0 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 27.5.1 + jest-regex-util: 27.5.1 + jest-util: 27.5.1 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + source-map: 0.6.1 + write-file-atomic: 3.0.3 + transitivePeerDependencies: + - supports-color + + '@jest/transform@28.1.3': + dependencies: + '@babel/core': 7.12.13 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.25 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.0 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + '@jest/types@26.6.2': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.11 + '@types/yargs': 15.0.19 + chalk: 4.1.2 + + '@jest/types@27.5.1': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.11 + '@types/yargs': 16.0.9 + chalk: 4.1.0 + + '@jest/types@28.1.3': + dependencies: + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.11 + '@types/yargs': 17.0.32 + chalk: 4.1.0 + + '@jest/types@29.6.3': + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.11 + '@types/yargs': 17.0.32 + chalk: 4.1.2 + + '@jridgewell/gen-mapping@0.3.5': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/sourcemap-codec@1.4.15': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + + '@leichtgewicht/ip-codec@2.0.5': {} + + '@lezer/common@1.2.1': {} + + '@lezer/lr@1.4.0': + dependencies: + '@lezer/common': 1.2.1 + + '@lmdb/lmdb-darwin-arm64@2.5.2': + optional: true + + '@lmdb/lmdb-darwin-arm64@2.5.3': + optional: true + + '@lmdb/lmdb-darwin-x64@2.5.2': + optional: true + + '@lmdb/lmdb-darwin-x64@2.5.3': + optional: true + + '@lmdb/lmdb-linux-arm64@2.5.2': + optional: true + + '@lmdb/lmdb-linux-arm64@2.5.3': + optional: true + + '@lmdb/lmdb-linux-arm@2.5.2': + optional: true + + '@lmdb/lmdb-linux-arm@2.5.3': + optional: true + + '@lmdb/lmdb-linux-x64@2.5.2': + optional: true + + '@lmdb/lmdb-linux-x64@2.5.3': + optional: true + + '@lmdb/lmdb-win32-x64@2.5.2': + optional: true + + '@lmdb/lmdb-win32-x64@2.5.3': + optional: true + + '@mdx-js/mdx@1.6.22': + dependencies: + '@babel/core': 7.12.9 + '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@mdx-js/util': 1.6.22 + babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9) + babel-plugin-extract-import-names: 1.6.22 + camelcase-css: 2.0.1 + detab: 2.0.4 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 10.0.1 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 + transitivePeerDependencies: + - supports-color + + '@mdx-js/react@1.6.22(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@mdx-js/util@1.6.22': {} + + '@mischnic/json-sourcemap@0.1.1': + dependencies: + '@lezer/common': 1.2.1 + '@lezer/lr': 1.4.0 + json5: 2.2.3 + + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2': + optional: true + + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2': + optional: true + + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2': + optional: true + + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': + dependencies: + eslint-scope: 5.1.1 + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.17.1 + + '@nrwl/cli@13.2.3': + dependencies: + '@nrwl/tao': 13.2.3 + chalk: 4.1.0 + enquirer: 2.3.6 + v8-compile-cache: 2.3.0 + yargs: 15.4.1 + yargs-parser: 20.0.0 + + '@nrwl/cli@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)': + dependencies: + nx: 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + transitivePeerDependencies: + - '@swc/helpers' + - '@swc/types' + - supports-color + - typescript + + '@nrwl/cli@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)': + dependencies: + nx: 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + + '@nrwl/cypress@13.2.3(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + rxjs: 6.6.7 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.4.1 + tslib: 2.6.2 + webpack-node-externals: 3.0.0 + yargs-parser: 20.0.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - babel-loader + - bufferutil + - canvas + - eslint + - node-notifier + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/cypress@13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + rxjs: 6.6.7 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.4.1 + tslib: 2.6.2 + webpack-node-externals: 3.0.0 + yargs-parser: 20.0.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - babel-loader + - bufferutil + - canvas + - eslint + - node-notifier + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/cypress@13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + rxjs: 6.6.7 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.4.1 + tslib: 2.6.2 + webpack-node-externals: 3.0.0 + yargs-parser: 20.0.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - babel-loader + - bufferutil + - canvas + - eslint + - node-notifier + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/cypress@14.0.5(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + rxjs: 6.6.7 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.5.2 + tslib: 2.6.2 + webpack-node-externals: 3.0.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@swc/helpers' + - '@swc/types' + - babel-loader + - bufferutil + - canvas + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/cypress@14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + rxjs: 6.6.7 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.5.2 + tslib: 2.6.2 + webpack-node-externals: 3.0.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@swc/helpers' + - '@swc/types' + - babel-loader + - bufferutil + - canvas + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/cypress@14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@cypress/webpack-preprocessor': 5.17.1(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + rxjs: 6.6.7 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.5.2 + tslib: 2.6.2 + webpack-node-externals: 3.0.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@swc/helpers' + - '@swc/types' + - babel-loader + - bufferutil + - canvas + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/devkit@13.2.3': + dependencies: + '@nrwl/tao': 13.2.3 + ejs: 3.1.10 + ignore: 5.3.1 + rxjs: 6.6.7 + semver: 7.3.4 + tslib: 2.6.2 + + '@nrwl/devkit@14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))': + dependencies: + ejs: 3.1.10 + ignore: 5.3.1 + nx: 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + rxjs: 6.6.7 + semver: 7.3.4 + tslib: 2.6.2 + + '@nrwl/devkit@14.8.9(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + ejs: 3.1.10 + ignore: 5.3.1 + nx: 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + tslib: 2.6.2 + transitivePeerDependencies: + - typescript + + '@nrwl/devkit@14.8.9(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(typescript@4.9.5)': + dependencies: + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + ejs: 3.1.10 + ignore: 5.3.1 + nx: 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + tslib: 2.6.2 + transitivePeerDependencies: + - typescript + + '@nrwl/eslint-plugin-nx@14.0.5(@swc/types@0.1.6)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@typescript-eslint/experimental-utils': 5.18.0(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + chalk: 4.1.0 + confusing-browser-globals: 1.0.11 + transitivePeerDependencies: + - '@swc/helpers' + - '@swc/types' + - bufferutil + - canvas + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + + '@nrwl/gatsby@13.2.3(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@types/babel__core@7.20.5)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(ts-node@9.1.1(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@nrwl/cypress': 13.2.3(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/jest': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/react': 13.2.3(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@types/babel__core@7.20.5)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(ts-node@9.1.1(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-cli: 4.25.0 + gatsby-codemods: 3.25.0(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@babel/traverse' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@types/babel__core' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-loader + - bufferutil + - canvas + - clean-css + - csso + - cypress + - debug + - encoding + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - file-loader + - html-webpack-plugin + - node-notifier + - node-sass + - prettier + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@nrwl/jest@13.2.3(ts-node@9.1.1(typescript@4.9.5))': + dependencies: + '@jest/reporters': 27.2.2 + '@jest/test-result': 27.2.2 + '@nrwl/devkit': 13.2.3 + chalk: 4.1.0 + identity-obj-proxy: 3.0.0 + jest-config: 27.2.2(ts-node@9.1.1(typescript@4.9.5)) + jest-resolve: 27.2.2 + jest-util: 27.2.0 + resolve.exports: 1.1.0 + rxjs: 6.6.7 + tslib: 2.6.2 + transitivePeerDependencies: + - bufferutil + - canvas + - node-notifier + - supports-color + - ts-node + - utf-8-validate + + '@nrwl/jest@14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))': + dependencies: + '@jest/reporters': 27.5.1 + '@jest/test-result': 27.5.1 + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + chalk: 4.1.0 + identity-obj-proxy: 3.0.0 + jest-config: 27.5.1(ts-node@9.1.1(typescript@4.9.5)) + jest-resolve: 27.5.1 + jest-util: 27.5.1 + resolve.exports: 1.1.0 + rxjs: 6.6.7 + tslib: 2.6.2 + transitivePeerDependencies: + - bufferutil + - canvas + - node-notifier + - nx + - supports-color + - ts-node + - utf-8-validate + + '@nrwl/jest@14.8.9(@types/node@20.12.11)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@jest/reporters': 28.1.1 + '@jest/test-result': 28.1.1 + '@nrwl/devkit': 14.8.9(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + chalk: 4.1.0 + dotenv: 10.0.0 + identity-obj-proxy: 3.0.0 + jest-config: 28.1.1(@types/node@20.12.11)(ts-node@9.1.1(typescript@4.9.5)) + jest-resolve: 28.1.1 + jest-util: 28.1.1 + resolve.exports: 1.1.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@types/node' + - node-notifier + - nx + - supports-color + - ts-node + - typescript + + '@nrwl/jest@14.8.9(@types/node@20.12.11)(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@jest/reporters': 28.1.1 + '@jest/test-result': 28.1.1 + '@nrwl/devkit': 14.8.9(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + chalk: 4.1.0 + dotenv: 10.0.0 + identity-obj-proxy: 3.0.0 + jest-config: 28.1.1(@types/node@20.12.11)(ts-node@9.1.1(typescript@4.9.5)) + jest-resolve: 28.1.1 + jest-util: 28.1.1 + resolve.exports: 1.1.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@types/node' + - node-notifier + - nx + - supports-color + - ts-node + - typescript + + '@nrwl/js@14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/jest': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + chalk: 4.1.0 + fast-glob: 3.2.7 + fs-extra: 9.1.0 + ignore: 5.3.1 + js-tokens: 4.0.0 + minimatch: 3.0.4 + source-map-support: 0.5.19 + tree-kill: 1.2.2 + transitivePeerDependencies: + - '@swc/helpers' + - '@swc/types' + - bufferutil + - canvas + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + + '@nrwl/js@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.9(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/jest': 14.8.9(@types/node@20.12.11)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + chalk: 4.1.0 + fast-glob: 3.2.7 + fs-extra: 10.1.0 + ignore: 5.3.1 + js-tokens: 4.0.0 + minimatch: 3.0.5 + source-map-support: 0.5.19 + tree-kill: 1.2.2 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + + '@nrwl/linter@13.2.3(ts-node@9.1.1(typescript@4.9.5))': + dependencies: + '@nrwl/devkit': 13.2.3 + '@nrwl/jest': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + eslint: 7.32.0 + glob: 7.1.4 + minimatch: 3.0.4 + tmp: 0.2.3 + tslib: 2.6.2 + transitivePeerDependencies: + - bufferutil + - canvas + - node-notifier + - supports-color + - ts-node + - utf-8-validate + + '@nrwl/linter@14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/jest': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5)) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + tmp: 0.2.3 + tslib: 2.6.2 + optionalDependencies: + eslint: 7.32.0 + transitivePeerDependencies: + - bufferutil + - canvas + - node-notifier + - nx + - supports-color + - ts-node + - typescript + - utf-8-validate + + '@nrwl/linter@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.9(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(typescript@4.9.5) + '@nrwl/jest': 14.8.9(@types/node@20.12.11)(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + nx: 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + tmp: 0.2.3 + tslib: 2.6.2 + optionalDependencies: + eslint: 7.32.0 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - node-notifier + - supports-color + - ts-node + - typescript + + '@nrwl/nx-plugin@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.9(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/jest': 14.8.9(@types/node@20.12.11)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/js': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + dotenv: 10.0.0 + fs-extra: 10.1.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + + '@nrwl/react@13.2.3(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@types/babel__core@7.20.5)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(ts-node@9.1.1(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))': + dependencies: + '@babel/core': 7.24.5 + '@babel/preset-react': 7.24.1(@babel/core@7.24.5) + '@nrwl/cypress': 13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/jest': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/storybook': 13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/web': 13.2.3(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@types/babel__core@7.20.5)(eslint@7.32.0)(type-fest@0.21.3)(typescript@4.9.5) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.10.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@storybook/node-logger': 6.1.20 + '@svgr/webpack': 5.5.0 + chalk: 4.1.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) + eslint-plugin-react: 7.34.1(eslint@7.32.0) + eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0) + react-refresh: 0.10.0 + semver: 7.3.4 + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + webpack: 5.91.0(@swc/core@1.5.5) + webpack-merge: 5.10.0 + transitivePeerDependencies: + - '@babel/preset-env' + - '@babel/traverse' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@types/babel__core' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-loader + - bufferutil + - canvas + - clean-css + - csso + - cypress + - debug + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - file-loader + - html-webpack-plugin + - node-notifier + - node-sass + - prettier + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@nrwl/react@14.0.5(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@swc/types@0.1.6)(@types/babel__core@7.20.5)(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))': + dependencies: + '@babel/core': 7.24.5 + '@babel/preset-react': 7.24.1(@babel/core@7.24.5) + '@nrwl/cypress': 14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/jest': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/js': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/storybook': 14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/web': 14.0.5(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@swc/types@0.1.6)(@types/babel__core@7.20.5)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.10.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@storybook/node-logger': 6.1.20 + '@svgr/webpack': 6.5.1 + chalk: 4.1.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) + eslint-plugin-react: 7.28.0(eslint@7.32.0) + eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0) + react-refresh: 0.10.0 + semver: 7.3.4 + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + webpack: 5.91.0(@swc/core@1.5.5) + webpack-merge: 5.10.0 + transitivePeerDependencies: + - '@babel/preset-env' + - '@babel/traverse' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/helpers' + - '@swc/types' + - '@types/babel__core' + - '@types/webpack' + - '@typescript-eslint/parser' + - babel-loader + - bufferutil + - canvas + - clean-css + - csso + - cypress + - debug + - esbuild + - eslint + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - fibers + - file-loader + - html-webpack-plugin + - node-notifier + - node-sass + - nx + - prettier + - sass-embedded + - sockjs-client + - supports-color + - ts-node + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + '@nrwl/storybook@13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@nrwl/cypress': 13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + core-js: 3.37.0 + semver: 7.3.4 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths-webpack-plugin: 3.4.1 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - babel-loader + - bufferutil + - canvas + - cypress + - eslint + - node-notifier + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/storybook@14.0.5(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@nrwl/cypress': 14.0.5(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + core-js: 3.37.0 + semver: 7.3.4 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths-webpack-plugin: 3.5.2 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@swc/helpers' + - '@swc/types' + - babel-loader + - bufferutil + - canvas + - cypress + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/storybook@14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + '@nrwl/cypress': 14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + core-js: 3.37.0 + semver: 7.3.4 + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + tsconfig-paths-webpack-plugin: 3.5.2 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - '@swc/helpers' + - '@swc/types' + - babel-loader + - bufferutil + - canvas + - cypress + - eslint + - node-notifier + - nx + - prettier + - supports-color + - ts-node + - typescript + - utf-8-validate + - vue-template-compiler + - webpack + + '@nrwl/tao@13.2.3': + dependencies: + chalk: 4.1.0 + enquirer: 2.3.6 + fs-extra: 9.1.0 + jsonc-parser: 3.0.0 + nx: 13.2.3 + rxjs: 6.6.7 + rxjs-for-await: 0.0.2(rxjs@6.6.7) + semver: 7.3.4 + tmp: 0.2.3 + tslib: 2.6.2 + yargs-parser: 20.0.0 + + '@nrwl/tao@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)': + dependencies: + nx: 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + transitivePeerDependencies: + - '@swc/helpers' + - '@swc/types' + - supports-color + - typescript + + '@nrwl/tao@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)': + dependencies: + nx: 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - debug + + '@nrwl/web@13.2.3(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@types/babel__core@7.20.5)(eslint@7.32.0)(type-fest@0.21.3)(typescript@4.9.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5) + '@babel/preset-env': 7.24.5(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + '@nrwl/cypress': 13.2.3(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 13.2.3 + '@nrwl/jest': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/workspace': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.10.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.1) + '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) + '@rollup/plugin-image': 2.1.1(rollup@2.79.1) + '@rollup/plugin-json': 4.1.0(rollup@2.79.1) + '@rollup/plugin-node-resolve': 13.3.0(rollup@2.79.1) + autoprefixer: 10.4.19(postcss@8.3.0) + babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)) + babel-plugin-const-enum: 1.2.0(@babel/core@7.24.5) + babel-plugin-macros: 2.8.0 + babel-plugin-transform-async-to-promises: 0.8.18 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.5)(@babel/traverse@7.24.5) + browserslist: 4.23.0 + bytes: 3.1.2 + caniuse-lite: 1.0.30001617 + chalk: 4.1.0 + chokidar: 3.6.0 + copy-webpack-plugin: 9.1.0(webpack@5.91.0(@swc/core@1.5.5)) + core-js: 3.37.0 + css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.5.5)) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.91.0(@swc/core@1.5.5)) + enhanced-resolve: 5.16.1 + file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.5)) + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + fs-extra: 9.1.0 + http-server: 0.12.3 + identity-obj-proxy: 3.0.0 + ignore: 5.3.1 + less: 3.12.2 + less-loader: 10.2.0(less@3.12.2)(webpack@5.91.0(@swc/core@1.5.5)) + license-webpack-plugin: 2.3.15(webpack@5.91.0(@swc/core@1.5.5)) + loader-utils: 1.2.3 + mini-css-extract-plugin: 2.9.0(webpack@5.91.0(@swc/core@1.5.5)) + open: 7.4.2 + parse5: 4.0.0 + parse5-html-rewriting-stream: 6.0.1 + postcss: 8.3.0 + postcss-import: 14.0.2(postcss@8.3.0) + postcss-loader: 6.2.1(postcss@8.3.0)(webpack@5.91.0(@swc/core@1.5.5)) + raw-loader: 4.0.2(webpack@5.91.0(@swc/core@1.5.5)) + react-refresh: 0.10.0 + rimraf: 3.0.2 + rollup: 2.79.1 + rollup-plugin-copy: 3.5.0 + rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) + rollup-plugin-postcss: 4.0.2(postcss@8.3.0)(ts-node@9.1.1(typescript@4.9.5)) + rollup-plugin-typescript2: 0.30.0(rollup@2.79.1)(typescript@4.9.5) + rxjs: 6.6.7 + rxjs-for-await: 0.0.2(rxjs@6.6.7) + sass: 1.77.0 + sass-loader: 12.6.0(sass@1.77.0)(webpack@5.91.0(@swc/core@1.5.5)) + semver: 7.3.4 + source-map: 0.7.3 + source-map-loader: 3.0.2(webpack@5.91.0(@swc/core@1.5.5)) + style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.5.5)) + stylus: 0.55.0 + stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.91.0(@swc/core@1.5.5)) + terser: 4.3.8 + terser-webpack-plugin: 5.3.10(@swc/core@1.5.5)(webpack@5.91.0(@swc/core@1.5.5)) + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + ts-node: 9.1.1(typescript@4.9.5) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.4.1 + tslib: 2.6.2 + webpack: 5.91.0(@swc/core@1.5.5) + webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.5)) + webpack-merge: 5.10.0 + webpack-sources: 3.2.3 + webpack-subresource-integrity: 1.5.2(webpack@5.91.0(@swc/core@1.5.5)) + worker-plugin: 3.2.0(webpack@5.91.0(@swc/core@1.5.5)) + transitivePeerDependencies: + - '@babel/traverse' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@types/babel__core' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - cypress + - debug + - esbuild + - eslint + - fibers + - html-webpack-plugin + - node-notifier + - node-sass + - prettier + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve + + '@nrwl/web@14.0.5(@babel/traverse@7.24.5)(@swc/core@1.5.5)(@swc/types@0.1.6)(@types/babel__core@7.20.5)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(type-fest@0.21.3)(typescript@4.9.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5) + '@babel/preset-env': 7.24.5(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + '@nrwl/cypress': 14.0.5(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(@swc/types@0.1.6)(babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)))(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/jest': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/js': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/workspace': 14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.10.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.1) + '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) + '@rollup/plugin-image': 2.1.1(rollup@2.79.1) + '@rollup/plugin-json': 4.1.0(rollup@2.79.1) + '@rollup/plugin-node-resolve': 13.3.0(rollup@2.79.1) + autoprefixer: 10.4.19(postcss@8.4.38) + babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)) + babel-plugin-const-enum: 1.2.0(@babel/core@7.24.5) + babel-plugin-macros: 2.8.0 + babel-plugin-transform-async-to-promises: 0.8.18 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.5)(@babel/traverse@7.24.5) + browserslist: 4.23.0 + bytes: 3.1.2 + caniuse-lite: 1.0.30001617 + chalk: 4.1.0 + chokidar: 3.6.0 + copy-webpack-plugin: 9.1.0(webpack@5.91.0(@swc/core@1.5.5)) + core-js: 3.37.0 + css-loader: 6.11.0(webpack@5.91.0(@swc/core@1.5.5)) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.91.0(@swc/core@1.5.5)) + enhanced-resolve: 5.16.1 + file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.5)) + fork-ts-checker-webpack-plugin: 6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + fs-extra: 9.1.0 + http-server: 14.1.0 + identity-obj-proxy: 3.0.0 + ignore: 5.3.1 + less: 3.12.2 + less-loader: 10.2.0(less@3.12.2)(webpack@5.91.0(@swc/core@1.5.5)) + license-webpack-plugin: 4.0.2(webpack@5.91.0(@swc/core@1.5.5)) + loader-utils: 1.2.3 + mini-css-extract-plugin: 2.4.7(webpack@5.91.0(@swc/core@1.5.5)) + parse5: 4.0.0 + parse5-html-rewriting-stream: 6.0.1 + postcss: 8.4.38 + postcss-import: 14.0.2(postcss@8.4.38) + postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.91.0(@swc/core@1.5.5)) + raw-loader: 4.0.2(webpack@5.91.0(@swc/core@1.5.5)) + react-refresh: 0.10.0 + rollup: 2.79.1 + rollup-plugin-copy: 3.5.0 + rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) + rollup-plugin-postcss: 4.0.2(postcss@8.4.38)(ts-node@9.1.1(typescript@4.9.5)) + rollup-plugin-typescript2: 0.31.2(rollup@2.79.1)(typescript@4.9.5) + rxjs: 6.6.7 + rxjs-for-await: 0.0.2(rxjs@6.6.7) + sass: 1.77.0 + sass-loader: 12.6.0(sass@1.77.0)(webpack@5.91.0(@swc/core@1.5.5)) + semver: 7.3.4 + source-map: 0.7.3 + source-map-loader: 3.0.2(webpack@5.91.0(@swc/core@1.5.5)) + style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.5.5)) + stylus: 0.55.0 + stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.91.0(@swc/core@1.5.5)) + terser-webpack-plugin: 5.3.10(@swc/core@1.5.5)(webpack@5.91.0(@swc/core@1.5.5)) + ts-loader: 9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + ts-node: 9.1.1(typescript@4.9.5) + tsconfig-paths: 3.15.0 + tsconfig-paths-webpack-plugin: 3.5.2 + tslib: 2.6.2 + webpack: 5.91.0(@swc/core@1.5.5) + webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.5)) + webpack-merge: 5.10.0 + webpack-sources: 3.2.3 + webpack-subresource-integrity: 5.1.0(webpack@5.91.0(@swc/core@1.5.5)) + transitivePeerDependencies: + - '@babel/traverse' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/helpers' + - '@swc/types' + - '@types/babel__core' + - '@types/webpack' + - bufferutil + - canvas + - clean-css + - csso + - cypress + - debug + - esbuild + - eslint + - fibers + - html-webpack-plugin + - node-notifier + - node-sass + - nx + - prettier + - sass-embedded + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-hot-middleware + - webpack-plugin-serve + + '@nrwl/workspace@13.2.3(ts-node@9.1.1(typescript@4.9.5))': + dependencies: + '@nrwl/cli': 13.2.3 + '@nrwl/devkit': 13.2.3 + '@nrwl/jest': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/linter': 13.2.3(ts-node@9.1.1(typescript@4.9.5)) + '@parcel/watcher': 2.0.0-alpha.11 + chalk: 4.1.0 + chokidar: 3.6.0 + cosmiconfig: 4.0.0 + dotenv: 10.0.0 + enquirer: 2.3.6 + flat: 5.0.2 + fs-extra: 9.1.0 + glob: 7.1.4 + ignore: 5.3.1 + minimatch: 3.0.4 + npm-run-all: 4.1.5 + npm-run-path: 4.0.1 + open: 7.4.2 + rxjs: 6.6.7 + semver: 7.3.4 + strip-ansi: 6.0.0 + tmp: 0.2.3 + tslib: 2.6.2 + yargs: 15.4.1 + yargs-parser: 20.0.0 + transitivePeerDependencies: + - bufferutil + - canvas + - node-notifier + - supports-color + - ts-node + - utf-8-validate + + '@nrwl/workspace@14.0.5(@swc/types@0.1.6)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5)) + '@nrwl/jest': 14.0.5(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5)) + '@nrwl/linter': 14.0.5(eslint@7.32.0)(nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + chalk: 4.1.0 + chokidar: 3.6.0 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + dotenv: 10.0.0 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 9.1.0 + glob: 7.1.4 + ignore: 5.3.1 + minimatch: 3.0.4 + npm-run-path: 4.0.1 + nx: 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + open: 8.4.2 + rxjs: 6.6.7 + semver: 7.3.4 + tmp: 0.2.3 + tslib: 2.6.2 + yargs: 17.7.2 + yargs-parser: 21.0.1 + transitivePeerDependencies: + - '@swc/helpers' + - '@swc/types' + - bufferutil + - canvas + - eslint + - node-notifier + - supports-color + - ts-node + - typescript + - utf-8-validate + + '@nrwl/workspace@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5)': + dependencies: + '@nrwl/devkit': 14.8.9(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(typescript@4.9.5) + '@nrwl/jest': 14.8.9(@types/node@20.12.11)(nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5))(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@nrwl/linter': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5)(@types/node@20.12.11)(eslint@7.32.0)(ts-node@9.1.1(typescript@4.9.5))(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + chalk: 4.1.0 + chokidar: 3.6.0 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + dotenv: 10.0.0 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 10.1.0 + glob: 7.1.4 + ignore: 5.3.1 + minimatch: 3.0.5 + npm-run-path: 4.0.1 + nx: 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + open: 8.4.2 + rxjs: 6.6.7 + semver: 7.3.4 + tmp: 0.2.3 + tslib: 2.6.2 + yargs: 17.7.2 + yargs-parser: 21.0.1 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' + - '@types/node' + - debug + - eslint + - node-notifier + - supports-color + - ts-node + - typescript + + '@parcel/bundler-default@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/diagnostic': 2.6.2 + '@parcel/hash': 2.6.2 + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/cache@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/core': 2.6.2 + '@parcel/fs': 2.6.2(@parcel/core@2.6.2) + '@parcel/logger': 2.6.2 + '@parcel/utils': 2.6.2 + lmdb: 2.5.2 + + '@parcel/codeframe@2.6.2': + dependencies: + chalk: 4.1.2 + + '@parcel/compressor-raw@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/core@2.6.2': + dependencies: + '@mischnic/json-sourcemap': 0.1.1 + '@parcel/cache': 2.6.2(@parcel/core@2.6.2) + '@parcel/diagnostic': 2.6.2 + '@parcel/events': 2.6.2 + '@parcel/fs': 2.6.2(@parcel/core@2.6.2) + '@parcel/graph': 2.6.2 + '@parcel/hash': 2.6.2 + '@parcel/logger': 2.6.2 + '@parcel/package-manager': 2.6.2(@parcel/core@2.6.2) + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/source-map': 2.1.1 + '@parcel/types': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + '@parcel/workers': 2.6.2(@parcel/core@2.6.2) + abortcontroller-polyfill: 1.7.5 + base-x: 3.0.9 + browserslist: 4.23.0 + clone: 2.1.2 + dotenv: 7.0.0 + dotenv-expand: 5.1.0 + json5: 2.2.3 + msgpackr: 1.10.1 + nullthrows: 1.1.1 + semver: 5.7.2 + + '@parcel/diagnostic@2.6.2': + dependencies: + '@mischnic/json-sourcemap': 0.1.1 + nullthrows: 1.1.1 + + '@parcel/events@2.6.2': {} + + '@parcel/fs-search@2.6.2': + dependencies: + detect-libc: 1.0.3 + + '@parcel/fs@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/core': 2.6.2 + '@parcel/fs-search': 2.6.2 + '@parcel/types': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + '@parcel/watcher': 2.4.1 + '@parcel/workers': 2.6.2(@parcel/core@2.6.2) + + '@parcel/graph@2.6.2': + dependencies: + '@parcel/utils': 2.6.2 + nullthrows: 1.1.1 + + '@parcel/hash@2.6.2': + dependencies: + detect-libc: 1.0.3 + xxhash-wasm: 0.4.2 + + '@parcel/logger@2.6.2': + dependencies: + '@parcel/diagnostic': 2.6.2 + '@parcel/events': 2.6.2 + + '@parcel/markdown-ansi@2.6.2': + dependencies: + chalk: 4.1.2 + + '@parcel/namer-default@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/diagnostic': 2.6.2 + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/node-resolver-core@2.6.2': + dependencies: + '@parcel/diagnostic': 2.6.2 + '@parcel/utils': 2.6.2 + nullthrows: 1.1.1 + semver: 5.7.2 + + '@parcel/optimizer-terser@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/diagnostic': 2.6.2 + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/source-map': 2.1.1 + '@parcel/utils': 2.6.2 + nullthrows: 1.1.1 + terser: 5.31.0 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/package-manager@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/core': 2.6.2 + '@parcel/diagnostic': 2.6.2 + '@parcel/fs': 2.6.2(@parcel/core@2.6.2) + '@parcel/logger': 2.6.2 + '@parcel/types': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + '@parcel/workers': 2.6.2(@parcel/core@2.6.2) + semver: 5.7.2 + + '@parcel/packager-js@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/diagnostic': 2.6.2 + '@parcel/hash': 2.6.2 + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/source-map': 2.1.1 + '@parcel/utils': 2.6.2 + globals: 13.24.0 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/packager-raw@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/plugin@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/types': 2.6.2(@parcel/core@2.6.2) + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/reporter-dev-server@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/resolver-default@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/node-resolver-core': 2.6.2 + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/runtime-js@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/source-map@2.1.1': + dependencies: + detect-libc: 1.0.3 + + '@parcel/transformer-js@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/core': 2.6.2 + '@parcel/diagnostic': 2.6.2 + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + '@parcel/source-map': 2.1.1 + '@parcel/utils': 2.6.2 + '@parcel/workers': 2.6.2(@parcel/core@2.6.2) + '@swc/helpers': 0.4.36 + browserslist: 4.23.0 + detect-libc: 1.0.3 + nullthrows: 1.1.1 + regenerator-runtime: 0.13.11 + semver: 5.7.2 + + '@parcel/transformer-json@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/plugin': 2.6.2(@parcel/core@2.6.2) + json5: 2.2.3 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/types@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/cache': 2.6.2(@parcel/core@2.6.2) + '@parcel/diagnostic': 2.6.2 + '@parcel/fs': 2.6.2(@parcel/core@2.6.2) + '@parcel/package-manager': 2.6.2(@parcel/core@2.6.2) + '@parcel/source-map': 2.1.1 + '@parcel/workers': 2.6.2(@parcel/core@2.6.2) + utility-types: 3.11.0 + transitivePeerDependencies: + - '@parcel/core' + + '@parcel/utils@2.6.2': + dependencies: + '@parcel/codeframe': 2.6.2 + '@parcel/diagnostic': 2.6.2 + '@parcel/hash': 2.6.2 + '@parcel/logger': 2.6.2 + '@parcel/markdown-ansi': 2.6.2 + '@parcel/source-map': 2.1.1 + chalk: 4.1.2 + + '@parcel/watcher-android-arm64@2.4.1': + optional: true + + '@parcel/watcher-darwin-arm64@2.4.1': + optional: true + + '@parcel/watcher-darwin-x64@2.4.1': + optional: true + + '@parcel/watcher-freebsd-x64@2.4.1': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.4.1': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.4.1': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.4.1': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.4.1': + optional: true + + '@parcel/watcher-linux-x64-musl@2.4.1': + optional: true + + '@parcel/watcher-win32-arm64@2.4.1': + optional: true + + '@parcel/watcher-win32-ia32@2.4.1': + optional: true + + '@parcel/watcher-win32-x64@2.4.1': + optional: true + + '@parcel/watcher@2.0.0-alpha.11': + dependencies: + node-addon-api: 3.2.1 + node-gyp-build: 4.8.1 + + '@parcel/watcher@2.0.4': + dependencies: + node-addon-api: 3.2.1 + node-gyp-build: 4.8.1 + + '@parcel/watcher@2.4.1': + dependencies: + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.5 + node-addon-api: 7.1.0 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.4.1 + '@parcel/watcher-darwin-arm64': 2.4.1 + '@parcel/watcher-darwin-x64': 2.4.1 + '@parcel/watcher-freebsd-x64': 2.4.1 + '@parcel/watcher-linux-arm-glibc': 2.4.1 + '@parcel/watcher-linux-arm64-glibc': 2.4.1 + '@parcel/watcher-linux-arm64-musl': 2.4.1 + '@parcel/watcher-linux-x64-glibc': 2.4.1 + '@parcel/watcher-linux-x64-musl': 2.4.1 + '@parcel/watcher-win32-arm64': 2.4.1 + '@parcel/watcher-win32-ia32': 2.4.1 + '@parcel/watcher-win32-x64': 2.4.1 + + '@parcel/workers@2.6.2(@parcel/core@2.6.2)': + dependencies: + '@parcel/core': 2.6.2 + '@parcel/diagnostic': 2.6.2 + '@parcel/logger': 2.6.2 + '@parcel/types': 2.6.2(@parcel/core@2.6.2) + '@parcel/utils': 2.6.2 + chrome-trace-event: 1.0.3 + nullthrows: 1.1.1 + + '@phenomnomnominal/tsquery@4.1.1(typescript@4.9.5)': + dependencies: + esquery: 1.5.0 + typescript: 4.9.5 + + '@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.10.0)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + ansi-html-community: 0.0.8 + core-js-pure: 3.37.0 + error-stack-parser: 2.1.4 + html-entities: 2.5.2 + loader-utils: 2.0.4 + react-refresh: 0.10.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + type-fest: 0.21.3 + webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.5)) + + '@pmmmwh/react-refresh-webpack-plugin@0.5.13(react-refresh@0.14.2)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5))': + dependencies: + ansi-html-community: 0.0.8 + core-js-pure: 3.37.0 + error-stack-parser: 2.1.4 + html-entities: 2.5.2 + loader-utils: 2.0.4 + react-refresh: 0.14.2 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + type-fest: 0.21.3 + webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.5.5)) + + '@react-native-community/cli-clean@13.6.6': + dependencies: + '@react-native-community/cli-tools': 13.6.6 + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-config@13.6.6': + dependencies: + '@react-native-community/cli-tools': 13.6.6 + chalk: 4.1.2 + cosmiconfig: 5.2.1 + deepmerge: 4.3.1 + fast-glob: 3.3.2 + joi: 17.13.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-debugger-ui@13.6.6': + dependencies: + serve-static: 1.15.0 + transitivePeerDependencies: + - supports-color + + '@react-native-community/cli-doctor@13.6.6': + dependencies: + '@react-native-community/cli-config': 13.6.6 + '@react-native-community/cli-platform-android': 13.6.6 + '@react-native-community/cli-platform-apple': 13.6.6 + '@react-native-community/cli-platform-ios': 13.6.6 + '@react-native-community/cli-tools': 13.6.6 + chalk: 4.1.2 + command-exists: 1.2.9 + deepmerge: 4.3.1 + envinfo: 7.13.0 + execa: 5.1.1 + hermes-profile-transformer: 0.0.6 + node-stream-zip: 1.15.0 + ora: 5.4.1 + semver: 7.6.1 + strip-ansi: 5.2.0 + wcwidth: 1.0.1 + yaml: 2.4.2 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-hermes@13.6.6': + dependencies: + '@react-native-community/cli-platform-android': 13.6.6 + '@react-native-community/cli-tools': 13.6.6 + chalk: 4.1.2 + hermes-profile-transformer: 0.0.6 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-platform-android@13.6.6': + dependencies: + '@react-native-community/cli-tools': 13.6.6 + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + fast-xml-parser: 4.3.6 + logkitty: 0.7.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-platform-apple@13.6.6': + dependencies: + '@react-native-community/cli-tools': 13.6.6 + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + fast-xml-parser: 4.3.6 + ora: 5.4.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-platform-ios@13.6.6': + dependencies: + '@react-native-community/cli-platform-apple': 13.6.6 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-server-api@13.6.6': + dependencies: + '@react-native-community/cli-debugger-ui': 13.6.6 + '@react-native-community/cli-tools': 13.6.6 + compression: 1.7.4 + connect: 3.7.0 + errorhandler: 1.5.1 + nocache: 3.0.4 + pretty-format: 26.6.2 + serve-static: 1.15.0 + ws: 6.2.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native-community/cli-tools@13.6.6': + dependencies: + appdirsjs: 1.2.7 + chalk: 4.1.2 + execa: 5.1.1 + find-up: 5.0.0 + mime: 2.6.0 + node-fetch: 2.7.0 + open: 6.4.0 + ora: 5.4.1 + semver: 7.6.1 + shell-quote: 1.8.1 + sudo-prompt: 9.2.1 + transitivePeerDependencies: + - encoding + + '@react-native-community/cli-types@13.6.6': + dependencies: + joi: 17.13.1 + + '@react-native-community/cli@13.6.6': + dependencies: + '@react-native-community/cli-clean': 13.6.6 + '@react-native-community/cli-config': 13.6.6 + '@react-native-community/cli-debugger-ui': 13.6.6 + '@react-native-community/cli-doctor': 13.6.6 + '@react-native-community/cli-hermes': 13.6.6 + '@react-native-community/cli-server-api': 13.6.6 + '@react-native-community/cli-tools': 13.6.6 + '@react-native-community/cli-types': 13.6.6 + chalk: 4.1.2 + commander: 9.5.0 + deepmerge: 4.3.1 + execa: 5.1.1 + find-up: 4.1.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.11 + prompts: 2.4.2 + semver: 7.6.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/assets-registry@0.74.83': {} + + '@react-native/babel-plugin-codegen@0.74.83(@babel/preset-env@7.12.13(@babel/core@7.12.13))': + dependencies: + '@react-native/codegen': 0.74.83(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/babel-preset@0.74.83(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))': + dependencies: + '@babel/core': 7.12.13 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.12.13) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.12.13) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.12.13) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.12.13) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.12.13) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.12.13) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-private-property-in-object': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.12.13) + '@babel/plugin-transform-react-jsx-self': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.12.13) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.12.13) + '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.12.13) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.12.13) + '@babel/template': 7.24.0 + '@react-native/babel-plugin-codegen': 0.74.83(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.12.13) + react-refresh: 0.14.2 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/codegen@0.74.83(@babel/preset-env@7.12.13(@babel/core@7.12.13))': + dependencies: + '@babel/parser': 7.24.5 + '@babel/preset-env': 7.12.13(@babel/core@7.12.13) + glob: 7.2.3 + hermes-parser: 0.19.1 + invariant: 2.2.4 + jscodeshift: 0.14.0(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + mkdirp: 0.5.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@react-native/community-cli-plugin@0.74.83(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))': + dependencies: + '@react-native-community/cli-server-api': 13.6.6 + '@react-native-community/cli-tools': 13.6.6 + '@react-native/dev-middleware': 0.74.83 + '@react-native/metro-babel-transformer': 0.74.83(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + chalk: 4.1.2 + execa: 5.1.1 + metro: 0.80.9 + metro-config: 0.80.9 + metro-core: 0.80.9 + node-fetch: 2.7.0 + querystring: 0.2.1 + readline: 1.3.0 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/debugger-frontend@0.74.83': {} + + '@react-native/dev-middleware@0.74.83': + dependencies: + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.74.83 + '@rnx-kit/chromium-edge-launcher': 1.0.0 + chrome-launcher: 0.15.2 + connect: 3.7.0 + debug: 2.6.9 + node-fetch: 2.7.0 + nullthrows: 1.1.1 + open: 7.4.2 + selfsigned: 2.4.1 + serve-static: 1.15.0 + temp-dir: 2.0.0 + ws: 6.2.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@react-native/gradle-plugin@0.74.83': {} + + '@react-native/js-polyfills@0.74.83': {} + + '@react-native/metro-babel-transformer@0.74.83(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))': + dependencies: + '@babel/core': 7.12.13 + '@react-native/babel-preset': 0.74.83(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + hermes-parser: 0.19.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + '@react-native/normalize-colors@0.74.83': {} + + '@react-native/virtualized-lists@0.74.83(@types/react@18.3.1)(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)': + dependencies: + invariant: 2.2.4 + nullthrows: 1.1.1 + react: 18.3.1 + react-native: 0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + + '@react-spring/animated@9.7.3(react@18.3.1)': + dependencies: + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + react: 18.3.1 + + '@react-spring/core@9.7.3(react@18.3.1)': + dependencies: + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + react: 18.3.1 + + '@react-spring/konva@9.7.3(konva@9.3.6)(react-konva@18.2.10(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': + dependencies: + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + konva: 9.3.6 + react: 18.3.1 + react-konva: 18.2.10(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + + '@react-spring/native@9.7.3(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)': + dependencies: + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + react: 18.3.1 + react-native: 0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1) + + '@react-spring/shared@9.7.3(react@18.3.1)': + dependencies: + '@react-spring/types': 9.7.3 + react: 18.3.1 + + '@react-spring/three@9.7.3(@react-three/fiber@8.16.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(three@0.164.1))(react@18.3.1)(three@0.164.1)': + dependencies: + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + '@react-three/fiber': 8.16.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(three@0.164.1) + react: 18.3.1 + three: 0.164.1 + + '@react-spring/types@9.7.3': {} + + '@react-spring/web@9.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@react-spring/zdog@9.7.3(react-dom@18.3.1(react@18.3.1))(react-zdog@1.2.2)(react@18.3.1)(zdog@1.1.3)': + dependencies: + '@react-spring/animated': 9.7.3(react@18.3.1) + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/shared': 9.7.3(react@18.3.1) + '@react-spring/types': 9.7.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-zdog: 1.2.2 + zdog: 1.1.3 + + '@react-three/fiber@8.16.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(three@0.164.1)': + dependencies: + '@babel/runtime': 7.24.5 + '@types/react-reconciler': 0.26.7 + '@types/webxr': 0.5.16 + base64-js: 1.5.1 + buffer: 6.0.3 + its-fine: 1.2.5(react@18.3.1) + react: 18.3.1 + react-reconciler: 0.27.0(react@18.3.1) + react-use-measure: 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + scheduler: 0.21.0 + suspend-react: 0.1.3(react@18.3.1) + three: 0.164.1 + zustand: 3.7.2(react@18.3.1) + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1) + + '@remix-run/router@1.16.0': {} + + '@rnx-kit/chromium-edge-launcher@1.0.0': + dependencies: + '@types/node': 18.19.33 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2 + mkdirp: 1.0.4 + rimraf: 3.0.2 + transitivePeerDependencies: + - supports-color + + '@rollup/plugin-babel@5.3.1(@babel/core@7.24.5)(@types/babel__core@7.20.5)(rollup@2.79.1)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-module-imports': 7.24.3 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + rollup: 2.79.1 + optionalDependencies: + '@types/babel__core': 7.20.5 + + '@rollup/plugin-commonjs@20.0.0(rollup@2.79.1)': + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 7.2.3 + is-reference: 1.2.1 + magic-string: 0.25.9 + resolve: 1.22.8 + rollup: 2.79.1 + + '@rollup/plugin-image@2.1.1(rollup@2.79.1)': + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + mini-svg-data-uri: 1.4.4 + rollup: 2.79.1 + + '@rollup/plugin-json@4.1.0(rollup@2.79.1)': + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + rollup: 2.79.1 + + '@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1)': + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + '@types/resolve': 1.17.1 + deepmerge: 4.3.1 + is-builtin-module: 3.2.1 + is-module: 1.0.0 + resolve: 1.22.8 + rollup: 2.79.1 + + '@rollup/pluginutils@3.1.0(rollup@2.79.1)': + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.79.1 + + '@rollup/pluginutils@4.2.1': + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + + '@sideway/address@4.1.5': + dependencies: + '@hapi/hoek': 9.3.0 + + '@sideway/formula@3.0.1': {} + + '@sideway/pinpoint@2.0.0': {} + + '@sinclair/typebox@0.24.51': {} + + '@sinclair/typebox@0.27.8': {} + + '@sindresorhus/is@0.14.0': {} + + '@sindresorhus/is@4.6.0': {} + + '@sindresorhus/slugify@1.1.2': + dependencies: + '@sindresorhus/transliterate': 0.1.2 + escape-string-regexp: 4.0.0 + + '@sindresorhus/transliterate@0.1.2': + dependencies: + escape-string-regexp: 2.0.0 + lodash.deburr: 4.1.0 + + '@sinonjs/commons@1.8.6': + dependencies: + type-detect: 4.0.8 + + '@sinonjs/commons@3.0.1': + dependencies: + type-detect: 4.0.8 + + '@sinonjs/fake-timers@10.3.0': + dependencies: + '@sinonjs/commons': 3.0.1 + + '@sinonjs/fake-timers@8.1.0': + dependencies: + '@sinonjs/commons': 1.8.6 + + '@sinonjs/fake-timers@9.1.2': + dependencies: + '@sinonjs/commons': 1.8.6 + + '@socket.io/component-emitter@3.1.2': {} + + '@storybook/node-logger@6.1.20': + dependencies: + '@types/npmlog': 4.1.6 + chalk: 4.1.0 + core-js: 3.37.0 + npmlog: 4.1.2 + pretty-hrtime: 1.0.3 + + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-plugin-transform-svg-component@5.5.0': {} + + '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + + '@svgr/babel-preset@5.5.0': + dependencies: + '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 + '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 + '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1 + '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 + '@svgr/babel-plugin-svg-dynamic-title': 5.4.0 + '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 + '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 + '@svgr/babel-plugin-transform-svg-component': 5.5.0 + + '@svgr/babel-preset@6.5.1(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.5) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.5) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.5) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.5) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.5) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.5) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.5) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.5) + + '@svgr/core@5.5.0': + dependencies: + '@svgr/plugin-jsx': 5.5.0 + camelcase: 6.3.0 + cosmiconfig: 7.1.0 + transitivePeerDependencies: + - supports-color + + '@svgr/core@6.5.1': + dependencies: + '@babel/core': 7.24.5 + '@svgr/babel-preset': 6.5.1(@babel/core@7.24.5) + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + camelcase: 6.3.0 + cosmiconfig: 7.1.0 + transitivePeerDependencies: + - supports-color + + '@svgr/hast-util-to-babel-ast@5.5.0': + dependencies: + '@babel/types': 7.24.5 + + '@svgr/hast-util-to-babel-ast@6.5.1': + dependencies: + '@babel/types': 7.24.5 + entities: 4.5.0 + + '@svgr/plugin-jsx@5.5.0': + dependencies: + '@babel/core': 7.12.13 + '@svgr/babel-preset': 5.5.0 + '@svgr/hast-util-to-babel-ast': 5.5.0 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + + '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': + dependencies: + '@babel/core': 7.24.5 + '@svgr/babel-preset': 6.5.1(@babel/core@7.24.5) + '@svgr/core': 6.5.1 + '@svgr/hast-util-to-babel-ast': 6.5.1 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + + '@svgr/plugin-svgo@5.5.0': + dependencies: + cosmiconfig: 7.1.0 + deepmerge: 4.3.1 + svgo: 1.3.2 + + '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': + dependencies: + '@svgr/core': 6.5.1 + cosmiconfig: 7.1.0 + deepmerge: 4.3.1 + svgo: 2.8.0 + + '@svgr/webpack@5.5.0': + dependencies: + '@babel/core': 7.12.13 + '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.12.13) + '@babel/preset-env': 7.12.13(@babel/core@7.12.13) + '@babel/preset-react': 7.12.13(@babel/core@7.12.13) + '@svgr/core': 5.5.0 + '@svgr/plugin-jsx': 5.5.0 + '@svgr/plugin-svgo': 5.5.0 + loader-utils: 2.0.4 + transitivePeerDependencies: + - supports-color + + '@svgr/webpack@6.5.1': + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.5) + '@babel/preset-env': 7.24.5(@babel/core@7.24.5) + '@babel/preset-react': 7.24.1(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@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 + + '@swc-node/core@1.13.1(@swc/core@1.5.5)(@swc/types@0.1.6)': + dependencies: + '@swc/core': 1.5.5 + '@swc/types': 0.1.6 + + '@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5)': + dependencies: + '@swc-node/core': 1.13.1(@swc/core@1.5.5)(@swc/types@0.1.6) + '@swc-node/sourcemap-support': 0.5.0 + '@swc/core': 1.5.5 + colorette: 2.0.20 + debug: 4.3.4 + pirates: 4.0.6 + tslib: 2.6.2 + typescript: 4.9.5 + transitivePeerDependencies: + - '@swc/types' + - supports-color + + '@swc-node/sourcemap-support@0.5.0': + dependencies: + source-map-support: 0.5.21 + tslib: 2.6.2 + + '@swc/core-darwin-arm64@1.5.5': + optional: true + + '@swc/core-darwin-x64@1.5.5': + optional: true + + '@swc/core-linux-arm-gnueabihf@1.5.5': + optional: true + + '@swc/core-linux-arm64-gnu@1.5.5': + optional: true + + '@swc/core-linux-arm64-musl@1.5.5': + optional: true + + '@swc/core-linux-x64-gnu@1.5.5': + optional: true + + '@swc/core-linux-x64-musl@1.5.5': + optional: true + + '@swc/core-win32-arm64-msvc@1.5.5': + optional: true + + '@swc/core-win32-ia32-msvc@1.5.5': + optional: true + + '@swc/core-win32-x64-msvc@1.5.5': + optional: true + + '@swc/core@1.5.5': + dependencies: + '@swc/counter': 0.1.3 + '@swc/types': 0.1.6 + optionalDependencies: + '@swc/core-darwin-arm64': 1.5.5 + '@swc/core-darwin-x64': 1.5.5 + '@swc/core-linux-arm-gnueabihf': 1.5.5 + '@swc/core-linux-arm64-gnu': 1.5.5 + '@swc/core-linux-arm64-musl': 1.5.5 + '@swc/core-linux-x64-gnu': 1.5.5 + '@swc/core-linux-x64-musl': 1.5.5 + '@swc/core-win32-arm64-msvc': 1.5.5 + '@swc/core-win32-ia32-msvc': 1.5.5 + '@swc/core-win32-x64-msvc': 1.5.5 + + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.4.14': + dependencies: + tslib: 2.6.2 + + '@swc/helpers@0.4.36': + dependencies: + legacy-swc-helpers: '@swc/helpers@0.4.14' + tslib: 2.6.2 + + '@swc/types@0.1.6': + dependencies: + '@swc/counter': 0.1.3 + + '@szmarczak/http-timer@1.1.2': + dependencies: + defer-to-connect: 1.1.3 + + '@szmarczak/http-timer@4.0.6': + dependencies: + defer-to-connect: 2.0.1 + + '@tokenizer/token@0.3.0': {} + + '@tootallnate/once@1.1.2': {} + + '@trysound/sax@0.2.0': {} + + '@turist/fetch@7.2.0(node-fetch@2.7.0)': + dependencies: + '@types/node-fetch': 2.6.11 + node-fetch: 2.7.0 + + '@turist/time@0.0.2': {} + + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.5 + + '@types/babel__generator@7.6.8': + dependencies: + '@babel/types': 7.24.5 + + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + + '@types/babel__traverse@7.20.5': + dependencies: + '@babel/types': 7.24.5 + + '@types/body-parser@1.19.5': + dependencies: + '@types/connect': 3.4.38 + '@types/node': 20.12.11 + + '@types/bonjour@3.5.13': + dependencies: + '@types/node': 20.12.11 + + '@types/cacheable-request@6.0.3': + dependencies: + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 20.12.11 + '@types/responselike': 1.0.3 + + '@types/common-tags@1.8.4': {} + + '@types/configstore@2.1.1': {} + + '@types/connect-history-api-fallback@1.5.4': + dependencies: + '@types/express-serve-static-core': 4.19.0 + '@types/node': 20.12.11 + + '@types/connect@3.4.38': + dependencies: + '@types/node': 20.12.11 + + '@types/cookie@0.4.1': {} + + '@types/cors@2.8.17': + dependencies: + '@types/node': 20.12.11 + + '@types/debug@0.0.30': {} + + '@types/eslint-scope@3.7.7': + dependencies: + '@types/eslint': 8.56.10 + '@types/estree': 1.0.5 + + '@types/eslint@7.29.0': + dependencies: + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 + + '@types/eslint@8.56.10': + dependencies: + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 + + '@types/estree@0.0.39': {} + + '@types/estree@1.0.5': {} + + '@types/express-serve-static-core@4.19.0': + dependencies: + '@types/node': 20.12.11 + '@types/qs': 6.9.15 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.4 + + '@types/express@4.17.21': + dependencies: + '@types/body-parser': 1.19.5 + '@types/express-serve-static-core': 4.19.0 + '@types/qs': 6.9.15 + '@types/serve-static': 1.15.7 + + '@types/fs-extra@8.1.5': + dependencies: + '@types/node': 20.12.11 + + '@types/get-port@3.2.0': {} + + '@types/glob@5.0.38': + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 8.10.66 + + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 20.12.11 + + '@types/graceful-fs@4.1.9': + dependencies: + '@types/node': 20.12.11 + + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.10 + + '@types/hoist-non-react-statics@3.3.5': + dependencies: + '@types/react': 18.3.1 + hoist-non-react-statics: 3.3.2 + + '@types/http-cache-semantics@4.0.4': {} + + '@types/http-errors@2.0.4': {} + + '@types/http-proxy@1.17.14': + dependencies: + '@types/node': 20.12.11 + + '@types/istanbul-lib-coverage@2.0.6': {} + + '@types/istanbul-lib-report@3.0.3': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + + '@types/istanbul-reports@3.0.4': + dependencies: + '@types/istanbul-lib-report': 3.0.3 + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/keyv@3.1.4': + dependencies: + '@types/node': 20.12.11 + + '@types/lodash@4.17.1': {} + + '@types/mdast@3.0.15': + dependencies: + '@types/unist': 2.0.10 + + '@types/mime@1.3.5': {} + + '@types/minimatch@5.1.2': {} + + '@types/mkdirp@0.5.2': + dependencies: + '@types/node': 8.10.66 + + '@types/node-fetch@2.6.11': + dependencies: + '@types/node': 20.12.11 + form-data: 4.0.0 + + '@types/node-forge@1.3.11': + dependencies: + '@types/node': 20.12.11 + + '@types/node@18.19.33': + dependencies: + undici-types: 5.26.5 + + '@types/node@20.12.11': + dependencies: + undici-types: 5.26.5 + + '@types/node@8.10.66': {} + + '@types/npmlog@4.1.6': + dependencies: + '@types/node': 20.12.11 + + '@types/parse-json@4.0.2': {} + + '@types/parse5@5.0.3': {} + + '@types/prettier@2.7.3': {} + + '@types/prop-types@15.7.12': {} + + '@types/q@1.5.8': {} + + '@types/qs@6.9.15': {} + + '@types/range-parser@1.2.7': {} + + '@types/reach__router@1.3.15': + dependencies: + '@types/react': 18.3.1 + + '@types/react-reconciler@0.26.7': + dependencies: + '@types/react': 18.3.1 + + '@types/react-reconciler@0.28.8': + dependencies: + '@types/react': 18.3.1 + + '@types/react@18.3.1': + dependencies: + '@types/prop-types': 15.7.12 + csstype: 3.1.3 + + '@types/resolve@1.17.1': + dependencies: + '@types/node': 20.12.11 + + '@types/responselike@1.0.3': + dependencies: + '@types/node': 20.12.11 + + '@types/retry@0.12.0': {} + + '@types/rimraf@2.0.5': + dependencies: + '@types/glob': 5.0.38 + '@types/node': 8.10.66 + + '@types/send@0.17.4': + dependencies: + '@types/mime': 1.3.5 + '@types/node': 20.12.11 + + '@types/serve-index@1.9.4': + dependencies: + '@types/express': 4.17.21 + + '@types/serve-static@1.15.7': + dependencies: + '@types/http-errors': 2.0.4 + '@types/node': 20.12.11 + '@types/send': 0.17.4 + + '@types/sharp@0.30.5': + dependencies: + '@types/node': 20.12.11 + + '@types/sockjs@0.3.36': + dependencies: + '@types/node': 20.12.11 + + '@types/source-list-map@0.1.6': {} + + '@types/stack-utils@2.0.3': {} + + '@types/stylis@4.2.5': {} + + '@types/tmp@0.0.33': {} + + '@types/unist@2.0.10': {} + + '@types/unist@3.0.2': {} + + '@types/use-sync-external-store@0.0.3': {} + + '@types/vfile-message@2.0.0': + dependencies: + vfile-message: 4.0.2 + + '@types/vfile@3.0.2': + dependencies: + '@types/node': 20.12.11 + '@types/unist': 2.0.10 + '@types/vfile-message': 2.0.0 + + '@types/webpack-sources@0.1.12': + dependencies: + '@types/node': 20.12.11 + '@types/source-list-map': 0.1.6 + source-map: 0.6.1 + + '@types/webxr@0.5.16': {} + + '@types/ws@8.5.10': + dependencies: + '@types/node': 20.12.11 + + '@types/yargs-parser@21.0.3': {} + + '@types/yargs@15.0.19': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@types/yargs@16.0.9': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@types/yargs@17.0.32': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@types/yoga-layout@1.9.2': {} + + '@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)': + dependencies: + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 4.33.0 + debug: 4.3.4 + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + ignore: 5.3.1 + regexpp: 3.2.0 + semver: 7.6.1 + tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5)': + dependencies: + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/experimental-utils@5.18.0(eslint@7.32.0)(typescript@4.9.5)': + dependencies: + '@typescript-eslint/utils': 5.18.0(eslint@7.32.0)(typescript@4.9.5) + eslint: 7.32.0 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5)': + dependencies: + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) + debug: 4.3.4 + eslint: 7.32.0 + optionalDependencies: + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@4.33.0': + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + + '@typescript-eslint/scope-manager@5.18.0': + dependencies: + '@typescript-eslint/types': 5.18.0 + '@typescript-eslint/visitor-keys': 5.18.0 + + '@typescript-eslint/types@4.33.0': {} + + '@typescript-eslint/types@5.18.0': {} + + '@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5)': + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.6.1 + tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@5.18.0(typescript@4.9.5)': + dependencies: + '@typescript-eslint/types': 5.18.0 + '@typescript-eslint/visitor-keys': 5.18.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.6.1 + tsutils: 3.21.0(typescript@4.9.5) + optionalDependencies: + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@5.18.0(eslint@7.32.0)(typescript@4.9.5)': + dependencies: + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 5.18.0 + '@typescript-eslint/types': 5.18.0 + '@typescript-eslint/typescript-estree': 5.18.0(typescript@4.9.5) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/visitor-keys@4.33.0': + dependencies: + '@typescript-eslint/types': 4.33.0 + eslint-visitor-keys: 2.1.0 + + '@typescript-eslint/visitor-keys@5.18.0': + dependencies: + '@typescript-eslint/types': 5.18.0 + eslint-visitor-keys: 3.4.3 + + '@vercel/webpack-asset-relocator-loader@1.7.3': + dependencies: + resolve: 1.22.8 + + '@webassemblyjs/ast@1.12.1': + dependencies: + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + + '@webassemblyjs/floating-point-hex-parser@1.11.6': {} + + '@webassemblyjs/helper-api-error@1.11.6': {} + + '@webassemblyjs/helper-buffer@1.12.1': {} + + '@webassemblyjs/helper-numbers@1.11.6': + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} + + '@webassemblyjs/helper-wasm-section@1.12.1': + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.12.1 + + '@webassemblyjs/ieee754@1.11.6': + dependencies: + '@xtuc/ieee754': 1.2.0 + + '@webassemblyjs/leb128@1.11.6': + dependencies: + '@xtuc/long': 4.2.2 + + '@webassemblyjs/utf8@1.11.6': {} + + '@webassemblyjs/wasm-edit@1.12.1': + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-opt': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + '@webassemblyjs/wast-printer': 1.12.1 + + '@webassemblyjs/wasm-gen@1.12.1': + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 + + '@webassemblyjs/wasm-opt@1.12.1': + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + + '@webassemblyjs/wasm-parser@1.12.1': + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 + + '@webassemblyjs/wast-printer@1.12.1': + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@xtuc/long': 4.2.2 + + '@wojtekmaj/date-utils@1.5.1': {} + + '@xtuc/ieee754@1.2.0': {} + + '@xtuc/long@4.2.2': {} + + '@yarn-tool/resolve-package@1.0.47': + dependencies: + pkg-dir: 5.0.0 + tslib: 2.6.2 + upath2: 3.1.19 + + '@yarnpkg/lockfile@1.1.0': {} + + '@yarnpkg/parsers@3.0.2': + dependencies: + js-yaml: 3.14.1 + tslib: 2.6.2 + + '@zkochan/js-yaml@0.0.6': + dependencies: + argparse: 2.0.1 + + abab@2.0.6: {} + + abort-controller@3.0.0: + dependencies: + event-target-shim: 5.0.1 + + abortcontroller-polyfill@1.7.5: {} + + accepts@1.3.8: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + + acorn-globals@6.0.0: + dependencies: + acorn: 7.4.1 + acorn-walk: 7.2.0 + + acorn-import-assertions@1.9.0(acorn@8.11.3): + dependencies: + acorn: 8.11.3 + + acorn-jsx@5.3.2(acorn@7.4.1): + dependencies: + acorn: 7.4.1 + + acorn-loose@8.4.0: + dependencies: + acorn: 8.11.3 + + acorn-walk@7.2.0: {} + + acorn-walk@8.3.2: {} + + acorn@6.4.2: {} + + acorn@7.4.1: {} + + acorn@8.11.3: {} + + address@1.1.2: {} + + agent-base@6.0.2: + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + ajv-formats@2.1.1(ajv@8.13.0): + optionalDependencies: + ajv: 8.13.0 + + ajv-keywords@3.5.2(ajv@6.12.6): + dependencies: + ajv: 6.12.6 + + ajv-keywords@5.1.0(ajv@8.13.0): + dependencies: + ajv: 8.13.0 + fast-deep-equal: 3.1.3 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.13.0: + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + + anser@1.4.10: {} + + anser@2.1.1: {} + + ansi-align@3.0.1: + dependencies: + string-width: 4.2.3 + + ansi-colors@4.1.3: {} + + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + + ansi-fragments@0.2.1: + dependencies: + colorette: 1.4.0 + slice-ansi: 2.1.0 + strip-ansi: 5.2.0 + + ansi-html-community@0.0.8: {} + + ansi-regex@2.1.1: {} + + ansi-regex@4.1.1: {} + + ansi-regex@5.0.1: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@5.2.0: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + appdirsjs@1.2.7: {} + + append-field@1.0.0: {} + + application-config-path@0.1.1: {} + + aproba@1.2.0: {} + + arch@2.2.0: {} + + are-we-there-yet@1.1.7: + dependencies: + delegates: 1.0.0 + readable-stream: 2.3.8 + + arg@4.1.3: {} + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + argparse@2.0.1: {} + + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + + arr-diff@4.0.0: {} + + arr-flatten@1.1.0: {} + + arr-union@3.1.0: {} + + array-buffer-byte-length@1.0.1: + dependencies: + call-bind: 1.0.7 + is-array-buffer: 3.0.4 + + array-flatten@1.1.1: {} + + array-includes@3.1.8: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + get-intrinsic: 1.2.4 + is-string: 1.0.7 + + array-iterate@1.1.4: {} + + array-union@2.1.0: {} + + array-unique@0.3.2: {} + + array.prototype.findlast@1.2.5: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-shim-unscopables: 1.0.2 + + array.prototype.findlastindex@1.2.5: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-shim-unscopables: 1.0.2 + + array.prototype.flat@1.3.2: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-shim-unscopables: 1.0.2 + + array.prototype.flatmap@1.3.2: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-shim-unscopables: 1.0.2 + + array.prototype.reduce@1.0.7: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-array-method-boxes-properly: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + is-string: 1.0.7 + + array.prototype.toreversed@1.1.2: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-shim-unscopables: 1.0.2 + + array.prototype.tosorted@1.1.3: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-shim-unscopables: 1.0.2 + + arraybuffer.prototype.slice@1.0.3: + dependencies: + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 + + arrify@2.0.1: {} + + asap@2.0.6: {} + + assign-symbols@1.0.0: {} + + ast-types-flow@0.0.8: {} + + ast-types@0.14.2: + dependencies: + tslib: 2.6.2 + + ast-types@0.15.2: + dependencies: + tslib: 2.6.2 + + astral-regex@1.0.0: {} + + astral-regex@2.0.0: {} + + async-cache@1.1.0: + dependencies: + lru-cache: 4.1.5 + + async-limiter@1.0.1: {} + + async@1.5.2: {} + + async@2.6.4: + dependencies: + lodash: 4.17.21 + + async@3.2.5: {} + + asynckit@0.4.0: {} + + at-least-node@1.0.0: {} + + atob@2.1.2: {} + + auto-bind@4.0.0: {} + + autoprefixer@10.4.19(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + caniuse-lite: 1.0.30001617 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + autoprefixer@10.4.19(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + caniuse-lite: 1.0.30001617 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.0.0 + + axe-core@4.7.0: {} + + axios@0.21.4(debug@3.2.7): + dependencies: + follow-redirects: 1.15.6(debug@3.2.7) + transitivePeerDependencies: + - debug + + axios@1.6.8: + dependencies: + follow-redirects: 1.15.6(debug@3.2.7) + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + axobject-query@3.2.1: + dependencies: + dequal: 2.0.3 + + babel-core@7.0.0-bridge.0(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 + + babel-eslint@10.1.0(eslint@7.32.0): + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/parser': 7.24.5 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + eslint: 7.32.0 + eslint-visitor-keys: 1.3.0 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + babel-extract-comments@1.0.0: + dependencies: + babylon: 6.18.0 + + babel-jest@27.5.1(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 27.5.1(@babel/core@7.12.13) + chalk: 4.1.0 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + babel-jest@28.1.3(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + '@jest/transform': 28.1.3 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 28.1.3(@babel/core@7.12.13) + chalk: 4.1.0 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + babel-jsx-utils@1.1.0: {} + + babel-loader@8.3.0(@babel/core@7.12.13)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@babel/core': 7.12.13 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.91.0(@swc/core@1.5.5) + + babel-loader@8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@babel/core': 7.24.5 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.91.0(@swc/core@1.5.5) + + babel-plugin-add-module-exports@1.0.4: {} + + babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@mdx-js/util': 1.6.22 + + babel-plugin-const-enum@1.2.0(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/traverse': 7.24.5 + transitivePeerDependencies: + - supports-color + + babel-plugin-dynamic-import-node@2.3.3: + dependencies: + object.assign: 4.1.5 + + babel-plugin-extract-import-names@1.6.22: + dependencies: + '@babel/helper-plugin-utils': 7.10.4 + + babel-plugin-istanbul@6.1.1: + dependencies: + '@babel/helper-plugin-utils': 7.24.5 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-jest-hoist@27.5.1: + dependencies: + '@babel/template': 7.24.0 + '@babel/types': 7.24.5 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 + + babel-plugin-jest-hoist@28.1.3: + dependencies: + '@babel/template': 7.24.0 + '@babel/types': 7.24.5 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 + + babel-plugin-lodash@3.3.4: + dependencies: + '@babel/helper-module-imports': 7.24.3 + '@babel/types': 7.24.5 + glob: 7.2.3 + lodash: 4.17.21 + require-package-name: 2.0.1 + + babel-plugin-macros@2.8.0: + dependencies: + '@babel/runtime': 7.24.5 + cosmiconfig: 6.0.0 + resolve: 1.22.8 + + babel-plugin-macros@3.1.0: + dependencies: + '@babel/runtime': 7.24.5 + cosmiconfig: 7.1.0 + resolve: 1.22.8 + + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.12.13): + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/core': 7.12.13 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.12.13) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5): + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/core': 7.24.5 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.12.13) + core-js-compat: 3.37.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5) + core-js-compat: 3.37.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.12.13) + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5) + transitivePeerDependencies: + - supports-color + + babel-plugin-remove-graphql-queries@4.25.0(@babel/core@7.12.13)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))): + dependencies: + '@babel/core': 7.12.13 + '@babel/runtime': 7.24.5 + '@babel/types': 7.24.5 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + + babel-plugin-remove-graphql-queries@4.25.0(@babel/core@7.24.5)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))): + dependencies: + '@babel/core': 7.24.5 + '@babel/runtime': 7.24.5 + '@babel/types': 7.24.5 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + + babel-plugin-styled-components@2.1.4(@babel/core@7.12.13)(styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): + dependencies: + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.12.13) + lodash: 4.17.21 + picomatch: 2.3.1 + styled-components: 6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@babel/core' + + babel-plugin-syntax-object-rest-spread@6.13.0: {} + + babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} + + babel-plugin-transform-async-to-promises@0.8.18: {} + + babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.12.13): + dependencies: + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.12.13) + transitivePeerDependencies: + - '@babel/core' + + babel-plugin-transform-object-rest-spread@6.26.0: + dependencies: + babel-plugin-syntax-object-rest-spread: 6.13.0 + babel-runtime: 6.26.0 + + babel-plugin-transform-react-remove-prop-types@0.4.24: {} + + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.5)(@babel/traverse@7.24.5): + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + optionalDependencies: + '@babel/traverse': 7.24.5 + + babel-preset-current-node-syntax@1.0.1(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.12.13) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.12.13) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.12.13) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.13) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.13) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.13) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.12.13) + + babel-preset-fbjs@3.4.0(@babel/core@7.24.5): + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-block-scoping': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-destructuring': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.5) + babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + + babel-preset-gatsby@2.25.0(@babel/core@7.24.5)(core-js@3.37.0): + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-transform-classes': 7.24.5(@babel/core@7.24.5) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.5) + '@babel/preset-env': 7.24.5(@babel/core@7.24.5) + '@babel/preset-react': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + babel-plugin-dynamic-import-node: 2.3.3 + babel-plugin-macros: 3.1.0 + babel-plugin-transform-react-remove-prop-types: 0.4.24 + core-js: 3.37.0 + gatsby-core-utils: 3.25.0 + gatsby-legacy-polyfills: 2.25.0 + transitivePeerDependencies: + - supports-color + + babel-preset-jest@27.5.1(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + babel-plugin-jest-hoist: 27.5.1 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.13) + + babel-preset-jest@28.1.3(@babel/core@7.12.13): + dependencies: + '@babel/core': 7.12.13 + babel-plugin-jest-hoist: 28.1.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.13) + + babel-runtime@6.26.0: + dependencies: + core-js: 2.6.12 + regenerator-runtime: 0.11.1 + + babylon@6.18.0: {} + + bail@1.0.5: {} + + balanced-match@1.0.2: {} + + base-x@3.0.9: + dependencies: + safe-buffer: 5.2.1 + + base64-js@1.5.1: {} + + base64id@2.0.0: {} + + base@0.11.2: + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.1 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + + basic-auth@1.1.0: {} + + basic-auth@2.0.1: + dependencies: + safe-buffer: 5.1.2 + + batch@0.6.1: {} + + better-opn@2.1.1: + dependencies: + open: 7.4.2 + + big.js@5.2.2: {} + + binary-extensions@2.3.0: {} + + bl@4.1.0: + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + + bluebird@3.7.1: {} + + bluebird@3.7.2: {} + + body-parser@1.20.2: + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.2 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + bonjour-service@1.2.1: + dependencies: + fast-deep-equal: 3.1.3 + multicast-dns: 7.2.5 + + boolbase@1.0.0: {} + + boxen@4.2.0: + dependencies: + ansi-align: 3.0.1 + camelcase: 5.3.1 + chalk: 3.0.0 + cli-boxes: 2.2.1 + string-width: 4.2.3 + term-size: 2.2.1 + type-fest: 0.8.1 + widest-line: 3.1.0 + + boxen@5.1.2: + dependencies: + ansi-align: 3.0.1 + camelcase: 6.3.0 + chalk: 4.1.2 + cli-boxes: 2.2.1 + string-width: 4.2.3 + type-fest: 0.20.2 + widest-line: 3.1.0 + wrap-ansi: 7.0.0 + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@2.3.2: + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + braces@3.0.2: + dependencies: + fill-range: 7.0.1 + + browser-process-hrtime@1.0.0: {} + + browserslist@4.23.0: + dependencies: + caniuse-lite: 1.0.30001617 + electron-to-chromium: 1.4.761 + node-releases: 2.0.14 + update-browserslist-db: 1.0.15(browserslist@4.23.0) + + bser@2.1.1: + dependencies: + node-int64: 0.4.0 + + buffer-from@1.1.2: {} + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + builtin-modules@3.3.0: {} + + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + + bytes@3.0.0: {} + + bytes@3.1.2: {} + + cache-base@1.0.1: + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.1 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + + cache-manager@2.11.1: + dependencies: + async: 1.5.2 + lodash.clonedeep: 4.5.0 + lru-cache: 4.0.0 + + cacheable-lookup@5.0.4: {} + + cacheable-request@6.1.0: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 3.1.0 + lowercase-keys: 2.0.0 + normalize-url: 4.5.1 + responselike: 1.0.2 + + cacheable-request@7.0.4: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + + call-bind@1.0.7: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 + + caller-callsite@2.0.0: + dependencies: + callsites: 2.0.0 + + caller-path@2.0.0: + dependencies: + caller-callsite: 2.0.0 + + callsites@2.0.0: {} + + callsites@3.1.0: {} + + camel-case@3.0.0: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + camel-case@4.1.2: + dependencies: + pascal-case: 3.1.2 + tslib: 2.4.1 + + camelcase-css@2.0.1: {} + + camelcase@5.3.1: {} + + camelcase@6.3.0: {} + + camelize@1.0.1: {} + + caniuse-api@3.0.0: + dependencies: + browserslist: 4.23.0 + caniuse-lite: 1.0.30001617 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 + + caniuse-lite@1.0.30001617: {} + + capital-case@1.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.4.1 + upper-case-first: 2.0.2 + + ccount@1.1.0: {} + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@3.0.0: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@4.1.0: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + change-case-all@1.0.14: + dependencies: + change-case: 4.1.2 + is-lower-case: 2.0.2 + is-upper-case: 2.0.2 + lower-case: 2.0.2 + lower-case-first: 2.0.2 + sponge-case: 1.0.1 + swap-case: 2.0.2 + title-case: 3.0.3 + upper-case: 2.0.2 + upper-case-first: 2.0.2 + + change-case-all@1.0.15: + dependencies: + change-case: 4.1.2 + is-lower-case: 2.0.2 + is-upper-case: 2.0.2 + lower-case: 2.0.2 + lower-case-first: 2.0.2 + sponge-case: 1.0.1 + swap-case: 2.0.2 + title-case: 3.0.3 + upper-case: 2.0.2 + upper-case-first: 2.0.2 + + change-case@3.1.0: + dependencies: + camel-case: 3.0.0 + constant-case: 2.0.0 + dot-case: 2.1.1 + header-case: 1.0.1 + is-lower-case: 1.1.3 + is-upper-case: 1.1.2 + lower-case: 1.1.4 + lower-case-first: 1.0.2 + no-case: 2.3.2 + param-case: 2.1.1 + pascal-case: 2.0.1 + path-case: 2.1.1 + sentence-case: 2.1.1 + snake-case: 2.1.0 + swap-case: 1.1.2 + title-case: 2.1.1 + upper-case: 1.1.3 + upper-case-first: 1.1.2 + + change-case@4.1.2: + dependencies: + camel-case: 4.1.2 + capital-case: 1.0.4 + constant-case: 3.0.4 + dot-case: 3.0.4 + header-case: 2.0.4 + no-case: 3.0.4 + param-case: 3.0.4 + pascal-case: 3.1.2 + path-case: 3.0.4 + sentence-case: 3.0.4 + snake-case: 3.0.4 + tslib: 2.4.1 + + char-regex@1.0.2: {} + + character-entities-html4@1.1.4: {} + + character-entities-legacy@1.1.4: {} + + character-entities@1.2.4: {} + + character-reference-invalid@1.1.4: {} + + chardet@0.7.0: {} + + cheerio-select@2.1.0: + dependencies: + boolbase: 1.0.0 + css-select: 5.1.0 + css-what: 6.1.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + + cheerio@0.22.0: + dependencies: + css-select: 1.2.0 + dom-serializer: 0.1.1 + entities: 1.1.2 + htmlparser2: 3.10.1 + lodash.assignin: 4.2.0 + lodash.bind: 4.2.1 + lodash.defaults: 4.2.0 + lodash.filter: 4.6.0 + lodash.flatten: 4.4.0 + lodash.foreach: 4.5.0 + lodash.map: 4.6.0 + lodash.merge: 4.6.2 + lodash.pick: 4.4.0 + lodash.reduce: 4.6.0 + lodash.reject: 4.6.0 + lodash.some: 4.6.0 + + cheerio@1.0.0-rc.12: + dependencies: + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.1.0 + htmlparser2: 8.0.2 + parse5: 7.1.2 + parse5-htmlparser2-tree-adapter: 7.0.0 + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + chownr@1.1.4: {} + + chrome-launcher@0.15.2: + dependencies: + '@types/node': 20.12.11 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2 + transitivePeerDependencies: + - supports-color + + chrome-trace-event@1.0.3: {} + + ci-info@2.0.0: {} + + ci-info@3.9.0: {} + + cjs-module-lexer@1.3.1: {} + + class-utils@0.3.6: + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + + classnames@2.5.1: {} + + cli-boxes@2.2.1: {} + + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-spinners@2.6.1: {} + + cli-spinners@2.9.2: {} + + cli-width@3.0.0: {} + + clipboardy@2.3.0: + dependencies: + arch: 2.2.0 + execa: 1.0.0 + is-wsl: 2.2.0 + + cliui@6.0.0: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + + cliui@7.0.4: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + clone-deep@4.0.1: + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + + clone-response@1.0.3: + dependencies: + mimic-response: 1.0.1 + + clone@1.0.4: {} + + clone@2.1.2: {} + + co@4.6.0: {} + + coa@2.0.2: + dependencies: + '@types/q': 1.5.8 + chalk: 2.4.2 + q: 1.5.1 + + code-point-at@1.1.0: {} + + collapse-white-space@1.0.6: {} + + collect-v8-coverage@1.0.2: {} + + collection-visit@1.0.0: + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + + colord@2.9.3: {} + + colorette@1.4.0: {} + + colorette@2.0.20: {} + + colors@1.4.0: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + comma-separated-tokens@1.0.8: {} + + command-exists@1.2.9: {} + + commander@2.20.3: {} + + commander@7.2.0: {} + + commander@9.5.0: {} + + common-tags@1.8.2: {} + + commondir@1.0.1: {} + + component-emitter@1.3.1: {} + + compressible@2.0.18: + dependencies: + mime-db: 1.52.0 + + compression@1.7.4: + dependencies: + accepts: 1.3.8 + bytes: 3.0.0 + compressible: 2.0.18 + debug: 2.6.9 + on-headers: 1.0.2 + safe-buffer: 5.1.2 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + + concat-map@0.0.1: {} + + concat-stream@1.6.2: + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 2.3.8 + typedarray: 0.0.6 + + concat-with-sourcemaps@1.1.0: + dependencies: + source-map: 0.6.1 + + configstore@5.0.1: + dependencies: + dot-prop: 5.3.0 + graceful-fs: 4.2.11 + make-dir: 3.1.0 + unique-string: 2.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 4.0.0 + + confusing-browser-globals@1.0.11: {} + + connect-history-api-fallback@2.0.0: {} + + connect@3.7.0: + dependencies: + debug: 2.6.9 + finalhandler: 1.1.2 + parseurl: 1.3.3 + utils-merge: 1.0.1 + transitivePeerDependencies: + - supports-color + + console-control-strings@1.1.0: {} + + constant-case@2.0.0: + dependencies: + snake-case: 2.1.0 + upper-case: 1.1.3 + + constant-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.4.1 + upper-case: 2.0.2 + + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 + + content-type@1.0.5: {} + + convert-hrtime@3.0.0: {} + + convert-source-map@1.9.0: {} + + convert-source-map@2.0.0: {} + + cookie-signature@1.0.6: {} + + cookie@0.4.2: {} + + cookie@0.6.0: {} + + copy-descriptor@0.1.1: {} + + copy-webpack-plugin@9.1.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + fast-glob: 3.3.2 + glob-parent: 6.0.2 + globby: 11.1.0 + normalize-path: 3.0.0 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + webpack: 5.91.0(@swc/core@1.5.5) + + core-js-compat@3.37.0: + dependencies: + browserslist: 4.23.0 + + core-js-compat@3.9.0: + dependencies: + browserslist: 4.23.0 + semver: 7.0.0 + + core-js-pure@3.37.0: {} + + core-js@2.6.12: {} + + core-js@3.37.0: {} + + core-util-is@1.0.3: {} + + cors@2.8.5: + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + + corser@2.0.1: {} + + cosmiconfig@4.0.0: + dependencies: + is-directory: 0.3.1 + js-yaml: 3.14.1 + parse-json: 4.0.0 + require-from-string: 2.0.2 + + cosmiconfig@5.2.1: + dependencies: + import-fresh: 2.0.0 + is-directory: 0.3.1 + js-yaml: 3.14.1 + parse-json: 4.0.0 + + cosmiconfig@6.0.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + + cosmiconfig@7.1.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + + create-gatsby@2.25.0: + dependencies: + '@babel/runtime': 7.24.5 + + create-require@1.1.1: {} + + cross-fetch@3.1.8: + dependencies: + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + cross-spawn@6.0.5: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.3: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + crypto-random-string@2.0.0: {} + + css-color-keywords@1.0.0: {} + + css-declaration-sorter@6.4.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + css-declaration-sorter@6.4.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + css-loader@5.2.7(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + loader-utils: 2.0.4 + postcss: 8.4.38 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) + postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) + postcss-value-parser: 4.2.0 + schema-utils: 3.3.0 + semver: 7.6.1 + webpack: 5.91.0(@swc/core@1.5.5) + + css-loader@6.11.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) + postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) + postcss-value-parser: 4.2.0 + semver: 7.6.1 + optionalDependencies: + webpack: 5.91.0(@swc/core@1.5.5) + + css-mediaquery@0.1.2: {} + + css-minimizer-webpack-plugin@2.0.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + cssnano: 5.1.15(postcss@8.4.38) + jest-worker: 26.6.2 + p-limit: 3.1.0 + postcss: 8.4.38 + schema-utils: 3.3.0 + serialize-javascript: 5.0.1 + source-map: 0.6.1 + webpack: 5.91.0(@swc/core@1.5.5) + + css-minimizer-webpack-plugin@3.4.1(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + cssnano: 5.1.15(postcss@8.4.38) + jest-worker: 27.5.1 + postcss: 8.4.38 + schema-utils: 4.2.0 + serialize-javascript: 6.0.2 + source-map: 0.6.1 + webpack: 5.91.0(@swc/core@1.5.5) + + css-select-base-adapter@0.1.1: {} + + css-select@1.2.0: + dependencies: + boolbase: 1.0.0 + css-what: 2.1.3 + domutils: 1.5.1 + nth-check: 1.0.2 + + css-select@2.1.0: + dependencies: + boolbase: 1.0.0 + css-what: 3.4.2 + domutils: 1.7.0 + nth-check: 1.0.2 + + css-select@4.3.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + css-select@5.1.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.1.0 + nth-check: 2.1.1 + + css-to-react-native@3.2.0: + dependencies: + camelize: 1.0.1 + css-color-keywords: 1.0.0 + postcss-value-parser: 4.2.0 + + css-tree@1.0.0-alpha.37: + dependencies: + mdn-data: 2.0.4 + source-map: 0.6.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-what@2.1.3: {} + + css-what@3.4.2: {} + + css-what@6.1.0: {} + + css.escape@1.5.1: {} + + css@3.0.0: + dependencies: + inherits: 2.0.4 + source-map: 0.6.1 + source-map-resolve: 0.6.0 + + cssesc@3.0.0: {} + + cssfilter@0.0.10: {} + + cssnano-preset-default@5.2.14(postcss@8.3.0): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.3.0) + cssnano-utils: 3.1.0(postcss@8.3.0) + postcss: 8.3.0 + postcss-calc: 8.2.4(postcss@8.3.0) + postcss-colormin: 5.3.1(postcss@8.3.0) + postcss-convert-values: 5.1.3(postcss@8.3.0) + postcss-discard-comments: 5.1.2(postcss@8.3.0) + postcss-discard-duplicates: 5.1.0(postcss@8.3.0) + postcss-discard-empty: 5.1.1(postcss@8.3.0) + postcss-discard-overridden: 5.1.0(postcss@8.3.0) + postcss-merge-longhand: 5.1.7(postcss@8.3.0) + postcss-merge-rules: 5.1.4(postcss@8.3.0) + postcss-minify-font-values: 5.1.0(postcss@8.3.0) + postcss-minify-gradients: 5.1.1(postcss@8.3.0) + postcss-minify-params: 5.1.4(postcss@8.3.0) + postcss-minify-selectors: 5.2.1(postcss@8.3.0) + postcss-normalize-charset: 5.1.0(postcss@8.3.0) + postcss-normalize-display-values: 5.1.0(postcss@8.3.0) + postcss-normalize-positions: 5.1.1(postcss@8.3.0) + postcss-normalize-repeat-style: 5.1.1(postcss@8.3.0) + postcss-normalize-string: 5.1.0(postcss@8.3.0) + postcss-normalize-timing-functions: 5.1.0(postcss@8.3.0) + postcss-normalize-unicode: 5.1.1(postcss@8.3.0) + postcss-normalize-url: 5.1.0(postcss@8.3.0) + postcss-normalize-whitespace: 5.1.1(postcss@8.3.0) + postcss-ordered-values: 5.1.3(postcss@8.3.0) + postcss-reduce-initial: 5.1.2(postcss@8.3.0) + postcss-reduce-transforms: 5.1.0(postcss@8.3.0) + postcss-svgo: 5.1.0(postcss@8.3.0) + postcss-unique-selectors: 5.1.1(postcss@8.3.0) + + cssnano-preset-default@5.2.14(postcss@8.4.38): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.4.38) + cssnano-utils: 3.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-calc: 8.2.4(postcss@8.4.38) + postcss-colormin: 5.3.1(postcss@8.4.38) + postcss-convert-values: 5.1.3(postcss@8.4.38) + postcss-discard-comments: 5.1.2(postcss@8.4.38) + postcss-discard-duplicates: 5.1.0(postcss@8.4.38) + postcss-discard-empty: 5.1.1(postcss@8.4.38) + postcss-discard-overridden: 5.1.0(postcss@8.4.38) + postcss-merge-longhand: 5.1.7(postcss@8.4.38) + postcss-merge-rules: 5.1.4(postcss@8.4.38) + postcss-minify-font-values: 5.1.0(postcss@8.4.38) + postcss-minify-gradients: 5.1.1(postcss@8.4.38) + postcss-minify-params: 5.1.4(postcss@8.4.38) + postcss-minify-selectors: 5.2.1(postcss@8.4.38) + postcss-normalize-charset: 5.1.0(postcss@8.4.38) + postcss-normalize-display-values: 5.1.0(postcss@8.4.38) + postcss-normalize-positions: 5.1.1(postcss@8.4.38) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38) + postcss-normalize-string: 5.1.0(postcss@8.4.38) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38) + postcss-normalize-unicode: 5.1.1(postcss@8.4.38) + postcss-normalize-url: 5.1.0(postcss@8.4.38) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.38) + postcss-ordered-values: 5.1.3(postcss@8.4.38) + postcss-reduce-initial: 5.1.2(postcss@8.4.38) + postcss-reduce-transforms: 5.1.0(postcss@8.4.38) + postcss-svgo: 5.1.0(postcss@8.4.38) + postcss-unique-selectors: 5.1.1(postcss@8.4.38) + + cssnano-utils@3.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + cssnano-utils@3.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + cssnano@5.1.15(postcss@8.3.0): + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.3.0) + lilconfig: 2.1.0 + postcss: 8.3.0 + yaml: 1.10.2 + + cssnano@5.1.15(postcss@8.4.38): + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.4.38) + lilconfig: 2.1.0 + postcss: 8.4.38 + yaml: 1.10.2 + + csso@4.2.0: + dependencies: + css-tree: 1.1.3 + + cssom@0.3.8: {} + + cssom@0.4.4: {} + + cssstyle@2.3.0: + dependencies: + cssom: 0.3.8 + + csstype@3.1.3: {} + + d@1.0.2: + dependencies: + es5-ext: 0.10.64 + type: 2.7.2 + + damerau-levenshtein@1.0.8: {} + + data-urls@2.0.0: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + + data-view-buffer@1.0.1: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + data-view-byte-length@1.0.1: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + data-view-byte-offset@1.0.0: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + dataloader@1.4.0: {} + + date-fns@2.30.0: + dependencies: + '@babel/runtime': 7.24.5 + + dayjs@1.11.11: {} + + debounce@1.2.1: {} + + debug@2.6.9: + dependencies: + ms: 2.0.0 + + debug@3.1.0: + dependencies: + ms: 2.0.0 + + debug@3.2.7: + dependencies: + ms: 2.1.3 + + debug@4.3.4: + dependencies: + ms: 2.1.2 + + decamelize@1.2.0: {} + + decimal.js@10.4.3: {} + + decode-uri-component@0.2.2: {} + + decompress-response@3.3.0: + dependencies: + mimic-response: 1.0.1 + + decompress-response@6.0.0: + dependencies: + mimic-response: 3.1.0 + + dedent@0.7.0: {} + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + deepmerge@4.3.1: {} + + default-gateway@6.0.3: + dependencies: + execa: 5.1.1 + + defaults@1.0.4: + dependencies: + clone: 1.0.4 + + defer-to-connect@1.1.3: {} + + defer-to-connect@2.0.1: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.0.1 + + define-lazy-prop@2.0.0: {} + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + define-property@0.2.5: + dependencies: + is-descriptor: 0.1.7 + + define-property@1.0.0: + dependencies: + is-descriptor: 1.0.3 + + define-property@2.0.2: + dependencies: + is-descriptor: 1.0.3 + isobject: 3.0.1 + + delayed-stream@1.0.0: {} + + delegates@1.0.0: {} + + denodeify@1.2.1: {} + + depd@1.1.2: {} + + depd@2.0.0: {} + + dependency-graph@0.11.0: {} + + dequal@2.0.3: {} + + destroy@1.2.0: {} + + detab@2.0.4: + dependencies: + repeat-string: 1.6.1 + + detect-libc@1.0.3: {} + + detect-libc@2.0.3: {} + + detect-newline@3.1.0: {} + + detect-node@2.1.0: {} + + detect-port-alt@1.1.6: + dependencies: + address: 1.1.2 + debug: 2.6.9 + transitivePeerDependencies: + - supports-color + + detect-port@1.6.1: + dependencies: + address: 1.1.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + devcert@1.2.2: + dependencies: + '@types/configstore': 2.1.1 + '@types/debug': 0.0.30 + '@types/get-port': 3.2.0 + '@types/glob': 5.0.38 + '@types/lodash': 4.17.1 + '@types/mkdirp': 0.5.2 + '@types/node': 8.10.66 + '@types/rimraf': 2.0.5 + '@types/tmp': 0.0.33 + application-config-path: 0.1.1 + command-exists: 1.2.9 + debug: 3.2.7 + eol: 0.9.1 + get-port: 3.2.0 + glob: 7.2.3 + is-valid-domain: 0.1.6 + lodash: 4.17.21 + mkdirp: 0.5.6 + password-prompt: 1.1.3 + rimraf: 2.7.1 + sudo-prompt: 8.2.5 + tmp: 0.0.33 + tslib: 1.14.1 + transitivePeerDependencies: + - supports-color + + diff-sequences@27.5.1: {} + + diff-sequences@28.1.1: {} + + diff@4.0.2: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dns-packet@5.6.1: + dependencies: + '@leichtgewicht/ip-codec': 2.0.5 + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + doctrine@3.0.0: + dependencies: + esutils: 2.0.3 + + dom-converter@0.2.0: + dependencies: + utila: 0.4.0 + + dom-serializer@0.1.1: + dependencies: + domelementtype: 1.3.1 + entities: 1.1.2 + + dom-serializer@1.4.1: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + + domelementtype@1.3.1: {} + + domelementtype@2.3.0: {} + + domexception@2.0.1: + dependencies: + webidl-conversions: 5.0.0 + + domhandler@2.4.2: + dependencies: + domelementtype: 1.3.1 + + domhandler@4.3.1: + dependencies: + domelementtype: 2.3.0 + + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + domutils@1.5.1: + dependencies: + dom-serializer: 0.1.1 + domelementtype: 1.3.1 + + domutils@1.7.0: + dependencies: + dom-serializer: 0.1.1 + domelementtype: 1.3.1 + + domutils@2.8.0: + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + domutils@3.1.0: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + + dot-case@2.1.1: + dependencies: + no-case: 2.3.2 + + dot-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.4.1 + + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + + dotenv-expand@5.1.0: {} + + dotenv@10.0.0: {} + + dotenv@7.0.0: {} + + dotenv@8.6.0: {} + + duplexer3@0.1.5: {} + + duplexer@0.1.2: {} + + ecstatic@3.3.2: + dependencies: + he: 1.2.0 + mime: 1.6.0 + minimist: 1.2.8 + url-join: 2.0.5 + + ee-first@1.1.1: {} + + ejs@3.1.10: + dependencies: + jake: 10.9.1 + + electron-to-chromium@1.4.761: {} + + emittery@0.10.2: {} + + emittery@0.8.1: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + emojis-list@2.1.0: {} + + emojis-list@3.0.0: {} + + encodeurl@1.0.2: {} + + end-of-stream@1.4.4: + dependencies: + once: 1.4.0 + + engine.io-client@6.2.3: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4 + engine.io-parser: 5.0.7 + ws: 8.2.3 + xmlhttprequest-ssl: 2.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io-parser@5.0.7: {} + + engine.io@6.2.1: + dependencies: + '@types/cookie': 0.4.1 + '@types/cors': 2.8.17 + '@types/node': 20.12.11 + accepts: 1.3.8 + base64id: 2.0.0 + cookie: 0.4.2 + cors: 2.8.5 + debug: 4.3.4 + engine.io-parser: 5.0.7 + ws: 8.2.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + enhanced-resolve@5.16.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + enquire.js@2.1.6: {} + + enquirer@2.3.6: + dependencies: + ansi-colors: 4.1.3 + + enquirer@2.4.1: + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + + entities@1.1.2: {} + + entities@2.2.0: {} + + entities@4.5.0: {} + + envinfo@7.13.0: {} + + eol@0.9.1: {} + + errno@0.1.8: + dependencies: + prr: 1.0.1 + optional: true + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + error-stack-parser@2.1.4: + dependencies: + stackframe: 1.3.4 + + errorhandler@1.5.1: + dependencies: + accepts: 1.3.8 + escape-html: 1.0.3 + + es-abstract@1.23.3: + dependencies: + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 + es-define-property: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 + is-callable: 1.2.7 + is-data-view: 1.0.1 + is-negative-zero: 2.0.3 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.3 + is-string: 1.0.7 + is-typed-array: 1.1.13 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.2 + safe-array-concat: 1.1.2 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.2 + typed-array-length: 1.0.6 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.15 + + es-array-method-boxes-properly@1.0.0: {} + + es-define-property@1.0.0: + dependencies: + get-intrinsic: 1.2.4 + + es-errors@1.3.0: {} + + es-iterator-helpers@1.0.19: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-set-tostringtag: 2.0.3 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + globalthis: 1.0.4 + has-property-descriptors: 1.0.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + iterator.prototype: 1.1.2 + safe-array-concat: 1.1.2 + + es-module-lexer@1.5.2: {} + + es-object-atoms@1.0.0: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.0.3: + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-shim-unscopables@1.0.2: + dependencies: + hasown: 2.0.2 + + es-to-primitive@1.2.1: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + + es5-ext@0.10.64: + dependencies: + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 + esniff: 2.0.1 + next-tick: 1.1.0 + + es6-iterator@2.0.3: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-symbol: 3.1.4 + + es6-promise@4.2.8: {} + + es6-symbol@3.1.4: + dependencies: + d: 1.0.2 + ext: 1.7.0 + + es6-weak-map@2.0.3: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 + + escalade@3.1.2: {} + + escape-goat@2.1.1: {} + + escape-html@1.0.3: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@2.0.0: {} + + escape-string-regexp@4.0.0: {} + + escodegen@2.1.0: + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + + eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5): + dependencies: + '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + babel-eslint: 10.1.0(eslint@7.32.0) + confusing-browser-globals: 1.0.11 + eslint: 7.32.0 + eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) + eslint-plugin-react: 7.34.1(eslint@7.32.0) + eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0) + optionalDependencies: + typescript: 4.9.5 + + eslint-import-resolver-node@0.3.9: + dependencies: + debug: 3.2.7 + is-core-module: 2.13.1 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-plugin-flowtype@5.10.0(eslint@7.32.0): + dependencies: + eslint: 7.32.0 + lodash: 4.17.21 + string-natural-compare: 3.0.1 + + eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0): + dependencies: + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.5 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + hasown: 2.0.2 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.0 + semver: 6.3.1 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0): + dependencies: + '@babel/runtime': 7.24.5 + aria-query: 5.3.0 + array-includes: 3.1.8 + array.prototype.flatmap: 1.3.2 + ast-types-flow: 0.0.8 + axe-core: 4.7.0 + axobject-query: 3.2.1 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + es-iterator-helpers: 1.0.19 + eslint: 7.32.0 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.8 + + eslint-plugin-react-hooks@4.6.2(eslint@7.32.0): + dependencies: + eslint: 7.32.0 + + eslint-plugin-react@7.28.0(eslint@7.32.0): + dependencies: + array-includes: 3.1.8 + array.prototype.flatmap: 1.3.2 + doctrine: 2.1.0 + eslint: 7.32.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.8 + object.hasown: 1.1.4 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.11 + + eslint-plugin-react@7.34.1(eslint@7.32.0): + dependencies: + array-includes: 3.1.8 + array.prototype.findlast: 1.2.5 + array.prototype.flatmap: 1.3.2 + array.prototype.toreversed: 1.1.2 + array.prototype.tosorted: 1.1.3 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.19 + eslint: 7.32.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.8 + object.hasown: 1.1.4 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.11 + + eslint-scope@5.1.1: + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + + eslint-utils@2.1.0: + dependencies: + eslint-visitor-keys: 1.3.0 + + eslint-utils@3.0.0(eslint@7.32.0): + dependencies: + eslint: 7.32.0 + eslint-visitor-keys: 2.1.0 + + eslint-visitor-keys@1.3.0: {} + + eslint-visitor-keys@2.1.0: {} + + eslint-visitor-keys@3.4.3: {} + + eslint-webpack-plugin@2.7.0(eslint@7.32.0)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@types/eslint': 7.29.0 + arrify: 2.0.1 + eslint: 7.32.0 + jest-worker: 27.5.1 + micromatch: 4.0.5 + normalize-path: 3.0.0 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + + eslint@7.32.0: + dependencies: + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + enquirer: 2.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.6.1 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 6.8.2 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color + + esniff@2.0.1: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + event-emitter: 0.3.5 + type: 2.7.2 + + espree@7.3.1: + dependencies: + acorn: 7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) + eslint-visitor-keys: 1.3.0 + + esprima@4.0.1: {} + + esquery@1.5.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@4.3.0: {} + + estraverse@5.3.0: {} + + estree-walker@0.6.1: {} + + estree-walker@1.0.1: {} + + estree-walker@2.0.2: {} + + esutils@2.0.3: {} + + etag@1.8.1: {} + + eval@0.1.8: + dependencies: + '@types/node': 20.12.11 + require-like: 0.1.2 + + event-emitter@0.3.5: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + + event-source-polyfill@1.0.25: {} + + event-target-shim@5.0.1: {} + + eventemitter3@4.0.7: {} + + events@3.3.0: {} + + execa@1.0.0: + dependencies: + cross-spawn: 6.0.5 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + exit@0.1.2: {} + + expand-brackets@2.1.4: + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + expand-template@2.0.3: {} + + expect@27.5.1: + dependencies: + '@jest/types': 27.5.1 + jest-get-type: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + + expect@28.1.3: + dependencies: + '@jest/expect-utils': 28.1.3 + jest-get-type: 28.0.2 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + + express-graphql@0.12.0(graphql@15.8.0): + dependencies: + accepts: 1.3.8 + content-type: 1.0.5 + graphql: 15.8.0 + http-errors: 1.8.0 + raw-body: 2.5.2 + + express-http-proxy@1.6.3: + dependencies: + debug: 3.2.7 + es6-promise: 4.2.8 + raw-body: 2.5.2 + transitivePeerDependencies: + - supports-color + + express@4.19.2: + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.2 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.6.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.11.0 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + + ext@1.7.0: + dependencies: + type: 2.7.2 + + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend-shallow@3.0.2: + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + + extend@3.0.2: {} + + external-editor@3.1.0: + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + + extglob@2.0.4: + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + fast-deep-equal@3.1.3: {} + + fast-glob@3.2.7: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-xml-parser@4.3.6: + dependencies: + strnum: 1.0.5 + + fastest-levenshtein@1.0.16: {} + + fastq@1.17.1: + dependencies: + reusify: 1.0.4 + + faye-websocket@0.11.4: + dependencies: + websocket-driver: 0.7.4 + + fb-watchman@2.0.2: + dependencies: + bser: 2.1.1 + + fbjs-css-vars@1.0.2: {} + + fbjs@3.0.5: + dependencies: + cross-fetch: 3.1.8 + fbjs-css-vars: 1.0.2 + loose-envify: 1.4.0 + object-assign: 4.1.1 + promise: 7.3.1 + setimmediate: 1.0.5 + ua-parser-js: 1.0.37 + transitivePeerDependencies: + - encoding + + fd@0.0.3: {} + + figures@3.2.0: + dependencies: + escape-string-regexp: 1.0.5 + + file-entry-cache@6.0.1: + dependencies: + flat-cache: 3.2.0 + + file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + + file-type@16.5.4: + dependencies: + readable-web-to-node-stream: 3.0.2 + strtok3: 6.3.0 + token-types: 4.2.1 + + filelist@1.0.4: + dependencies: + minimatch: 5.1.6 + + filename-reserved-regex@2.0.0: {} + + filenamify@4.3.0: + dependencies: + filename-reserved-regex: 2.0.0 + strip-outer: 1.0.1 + trim-repeated: 1.0.0 + + filesize@8.0.7: {} + + fill-range@4.0.0: + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + + fill-range@7.0.1: + dependencies: + to-regex-range: 5.0.1 + + filter-obj@1.1.0: {} + + finalhandler@1.1.2: + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.3.0 + parseurl: 1.3.3 + statuses: 1.5.0 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + finalhandler@1.2.0: + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + find-cache-dir@2.1.0: + dependencies: + commondir: 1.0.1 + make-dir: 2.1.0 + pkg-dir: 3.0.0 + + find-cache-dir@3.3.2: + dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 + pkg-dir: 4.2.0 + + find-up@3.0.0: + dependencies: + locate-path: 3.0.0 + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@3.2.0: + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + rimraf: 3.0.2 + + flat@5.0.2: {} + + flatted@3.3.1: {} + + flow-enums-runtime@0.0.6: {} + + flow-parser@0.235.1: {} + + follow-redirects@1.15.6(debug@3.2.7): + optionalDependencies: + debug: 3.2.7 + + for-each@0.3.3: + dependencies: + is-callable: 1.2.7 + + for-in@1.0.2: {} + + fork-ts-checker-webpack-plugin@6.2.10(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@babel/code-frame': 7.24.2 + '@types/json-schema': 7.0.15 + chalk: 4.1.0 + chokidar: 3.6.0 + cosmiconfig: 6.0.0 + deepmerge: 4.3.1 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.5.3 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.4 + tapable: 1.1.3 + typescript: 4.9.5 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + eslint: 7.32.0 + + fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@babel/code-frame': 7.24.2 + '@types/json-schema': 7.0.15 + chalk: 4.1.2 + chokidar: 3.6.0 + cosmiconfig: 6.0.0 + deepmerge: 4.3.1 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.5.3 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.6.1 + tapable: 1.1.3 + typescript: 4.9.5 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + eslint: 7.32.0 + + form-data@3.0.1: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + form-data@4.0.0: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + forwarded@0.2.0: {} + + fraction.js@4.3.7: {} + + fragment-cache@0.2.1: + dependencies: + map-cache: 0.2.2 + + fresh@0.5.2: {} + + fs-constants@1.0.0: {} + + fs-exists-cached@1.0.0: {} + + fs-extra@10.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + fs-extra@4.0.3: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-extra@8.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-extra@9.1.0: + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + fs-monkey@1.0.6: {} + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.6: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + functions-have-names: 1.2.3 + + functional-red-black-tree@1.0.1: {} + + functions-have-names@1.2.3: {} + + gatsby-cli@4.25.0: + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + '@babel/template': 7.24.0 + '@babel/types': 7.24.5 + '@jridgewell/trace-mapping': 0.3.25 + '@types/common-tags': 1.8.4 + better-opn: 2.1.1 + boxen: 5.1.2 + chalk: 4.1.2 + clipboardy: 2.3.0 + common-tags: 1.8.2 + convert-hrtime: 3.0.0 + create-gatsby: 2.25.0 + envinfo: 7.13.0 + execa: 5.1.1 + fs-exists-cached: 1.0.0 + fs-extra: 10.1.0 + gatsby-core-utils: 3.25.0 + gatsby-telemetry: 3.25.0 + hosted-git-info: 3.0.8 + is-valid-path: 0.1.1 + joi: 17.13.1 + lodash: 4.17.21 + node-fetch: 2.7.0 + opentracing: 0.14.7 + pretty-error: 2.1.2 + progress: 2.0.3 + prompts: 2.4.2 + redux: 4.1.2 + resolve-cwd: 3.0.0 + semver: 7.6.1 + signal-exit: 3.0.7 + stack-trace: 0.0.10 + strip-ansi: 6.0.1 + update-notifier: 5.1.0 + yargs: 15.4.1 + yoga-layout-prebuilt: 1.10.0 + yurnalist: 2.1.0 + transitivePeerDependencies: + - encoding + - supports-color + + gatsby-codemods@3.25.0(@babel/preset-env@7.12.13(@babel/core@7.12.13)): + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + execa: 5.1.1 + graphql: 15.8.0 + jscodeshift: 0.12.0(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + recast: 0.20.5 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + + gatsby-core-utils@3.25.0: + dependencies: + '@babel/runtime': 7.24.5 + ci-info: 2.0.0 + configstore: 5.0.1 + fastq: 1.17.1 + file-type: 16.5.4 + fs-extra: 10.1.0 + got: 11.8.6 + import-from: 4.0.0 + lmdb: 2.5.3 + lock: 1.1.0 + node-object-hash: 2.3.10 + proper-lockfile: 4.1.2 + resolve-from: 5.0.0 + tmp: 0.2.3 + xdg-basedir: 4.0.0 + + gatsby-graphiql-explorer@2.25.0: + dependencies: + '@babel/runtime': 7.24.5 + + gatsby-legacy-polyfills@2.25.0: + dependencies: + '@babel/runtime': 7.24.5 + core-js-compat: 3.9.0 + + gatsby-link@4.25.0(@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@gatsbyjs/reach-router': 1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@types/reach__router': 1.3.15 + gatsby-page-utils: 2.25.0 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + gatsby-page-utils@2.25.0: + dependencies: + '@babel/runtime': 7.24.5 + bluebird: 3.7.2 + chokidar: 3.6.0 + fs-exists-cached: 1.0.0 + gatsby-core-utils: 3.25.0 + glob: 7.2.3 + lodash: 4.17.21 + micromatch: 4.0.5 + + gatsby-parcel-config@0.16.0(@parcel/core@2.6.2): + dependencies: + '@gatsbyjs/parcel-namer-relative-to-cwd': 1.10.0(@parcel/core@2.6.2) + '@parcel/bundler-default': 2.6.2(@parcel/core@2.6.2) + '@parcel/compressor-raw': 2.6.2(@parcel/core@2.6.2) + '@parcel/core': 2.6.2 + '@parcel/namer-default': 2.6.2(@parcel/core@2.6.2) + '@parcel/optimizer-terser': 2.6.2(@parcel/core@2.6.2) + '@parcel/packager-js': 2.6.2(@parcel/core@2.6.2) + '@parcel/packager-raw': 2.6.2(@parcel/core@2.6.2) + '@parcel/reporter-dev-server': 2.6.2(@parcel/core@2.6.2) + '@parcel/resolver-default': 2.6.2(@parcel/core@2.6.2) + '@parcel/runtime-js': 2.6.2(@parcel/core@2.6.2) + '@parcel/transformer-js': 2.6.2(@parcel/core@2.6.2) + '@parcel/transformer-json': 2.6.2(@parcel/core@2.6.2) + + gatsby-plugin-image@2.25.0(@babel/core@7.12.13)(gatsby-plugin-sharp@4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0))(gatsby-source-filesystem@4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/core': 7.12.13 + '@babel/parser': 7.24.5 + '@babel/runtime': 7.24.5 + '@babel/traverse': 7.24.5 + babel-jsx-utils: 1.1.0 + babel-plugin-remove-graphql-queries: 4.25.0(@babel/core@7.12.13)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + camelcase: 5.3.1 + chokidar: 3.6.0 + common-tags: 1.8.2 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + gatsby-plugin-sharp: 4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-plugin-utils: 3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-source-filesystem: 4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + objectFitPolyfill: 2.3.5 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - graphql + - supports-color + + gatsby-plugin-manifest@4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0): + dependencies: + '@babel/runtime': 7.24.5 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + gatsby-plugin-utils: 3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + semver: 7.6.1 + sharp: 0.30.7 + transitivePeerDependencies: + - graphql + + gatsby-plugin-mdx@3.20.0(@mdx-js/mdx@1.6.22)(@mdx-js/react@1.6.22(react@18.3.1))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.5) + '@babel/preset-env': 7.24.5(@babel/core@7.24.5) + '@babel/preset-react': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + '@babel/types': 7.24.5 + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@18.3.1) + camelcase-css: 2.0.1 + change-case: 3.1.0 + core-js: 3.37.0 + dataloader: 1.4.0 + debug: 4.3.4 + escape-string-regexp: 1.0.5 + eval: 0.1.8 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + gray-matter: 4.0.3 + json5: 2.2.3 + loader-utils: 1.4.2 + lodash: 4.17.21 + mdast-util-to-string: 1.1.0 + mdast-util-toc: 3.1.0 + mime: 2.6.0 + mkdirp: 1.0.4 + p-queue: 6.6.2 + pretty-bytes: 5.6.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + remark: 10.0.1 + remark-retext: 3.1.3 + retext-english: 3.0.4 + slugify: 1.6.6 + static-site-generator-webpack-plugin: 3.4.2 + style-to-object: 0.3.0 + underscore.string: 3.3.6 + unified: 8.4.2 + unist-util-map: 1.0.5 + unist-util-remove: 1.0.3 + unist-util-visit: 1.4.1 + transitivePeerDependencies: + - supports-color + + gatsby-plugin-offline@5.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.24.5 + cheerio: 1.0.0-rc.12 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + glob: 7.2.3 + idb-keyval: 3.2.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + workbox-build: 4.3.1 + + gatsby-plugin-page-creator@4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0): + dependencies: + '@babel/runtime': 7.24.5 + '@babel/traverse': 7.24.5 + '@sindresorhus/slugify': 1.1.2 + chokidar: 3.6.0 + fs-exists-cached: 1.0.0 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + gatsby-page-utils: 2.25.0 + gatsby-plugin-utils: 3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-telemetry: 3.25.0 + globby: 11.1.0 + lodash: 4.17.21 + transitivePeerDependencies: + - encoding + - graphql + - supports-color + + gatsby-plugin-react-helmet@5.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-helmet@6.1.0(react@18.3.1)): + dependencies: + '@babel/runtime': 7.24.5 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + react-helmet: 6.1.0(react@18.3.1) + + gatsby-plugin-sharp@4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0): + dependencies: + '@babel/runtime': 7.24.5 + async: 3.2.5 + bluebird: 3.7.2 + debug: 4.3.4 + filenamify: 4.3.0 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + gatsby-plugin-utils: 3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + lodash: 4.17.21 + probe-image-size: 7.2.3 + semver: 7.6.1 + sharp: 0.30.7 + transitivePeerDependencies: + - graphql + - supports-color + + gatsby-plugin-styled-components@5.25.0(babel-plugin-styled-components@2.1.4(@babel/core@7.12.13)(styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): + dependencies: + '@babel/runtime': 7.24.5 + babel-plugin-styled-components: 2.1.4(@babel/core@7.12.13)(styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-components: 6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + + gatsby-plugin-svgr@3.0.0-beta.0(@svgr/webpack@6.5.1)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))): + dependencies: + '@svgr/webpack': 6.5.1 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + + gatsby-plugin-typescript@4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))): + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/runtime': 7.24.5 + babel-plugin-remove-graphql-queries: 4.25.0(@babel/core@7.24.5)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + transitivePeerDependencies: + - supports-color + + gatsby-plugin-utils@3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0): + dependencies: + '@babel/runtime': 7.24.5 + fastq: 1.17.1 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + gatsby-sharp: 0.19.0 + graphql: 15.8.0 + graphql-compose: 9.0.10(graphql@15.8.0) + import-from: 4.0.0 + joi: 17.13.1 + mime: 3.0.0 + + gatsby-plugin-web-font-loader@1.0.4: + dependencies: + babel-runtime: 6.26.0 + webfontloader: 1.6.28 + + gatsby-react-router-scroll@5.25.0(@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.24.5 + '@gatsbyjs/reach-router': 1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + gatsby-script@1.10.0(@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@gatsbyjs/reach-router': 1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + gatsby-sharp@0.19.0: + dependencies: + '@types/sharp': 0.30.5 + sharp: 0.30.7 + + gatsby-source-filesystem@4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))): + dependencies: + '@babel/runtime': 7.24.5 + chokidar: 3.6.0 + file-type: 16.5.4 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-core-utils: 3.25.0 + md5-file: 5.0.0 + mime: 2.6.0 + pretty-bytes: 5.6.0 + valid-url: 1.0.9 + xstate: 4.32.1 + + gatsby-telemetry@3.25.0: + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/runtime': 7.24.5 + '@turist/fetch': 7.2.0(node-fetch@2.7.0) + '@turist/time': 0.0.2 + boxen: 4.2.0 + configstore: 5.0.1 + fs-extra: 10.1.0 + gatsby-core-utils: 3.25.0 + git-up: 7.0.0 + is-docker: 2.2.1 + lodash: 4.17.21 + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + gatsby-transformer-sharp@4.25.0(gatsby-plugin-sharp@4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0))(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0): + dependencies: + '@babel/runtime': 7.24.5 + bluebird: 3.7.2 + common-tags: 1.8.2 + fs-extra: 10.1.0 + gatsby: 4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))) + gatsby-plugin-sharp: 4.25.1(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-plugin-utils: 3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + probe-image-size: 7.2.3 + semver: 7.6.1 + sharp: 0.30.7 + transitivePeerDependencies: + - graphql + - supports-color + + gatsby-worker@1.25.0: + dependencies: + '@babel/core': 7.24.5 + '@babel/runtime': 7.24.5 + transitivePeerDependencies: + - supports-color + + gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))): + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/core': 7.24.5 + '@babel/eslint-parser': 7.24.5(@babel/core@7.24.5)(eslint@7.32.0) + '@babel/helper-plugin-utils': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/runtime': 7.24.5 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + '@builder.io/partytown': 0.5.4 + '@gatsbyjs/reach-router': 1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@gatsbyjs/webpack-hot-middleware': 2.25.3 + '@graphql-codegen/add': 3.2.3(graphql@15.8.0) + '@graphql-codegen/core': 2.6.8(graphql@15.8.0) + '@graphql-codegen/plugin-helpers': 2.7.2(graphql@15.8.0) + '@graphql-codegen/typescript': 2.8.8(graphql@15.8.0) + '@graphql-codegen/typescript-operations': 2.5.13(graphql@15.8.0) + '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.5)(graphql@15.8.0) + '@graphql-tools/load': 7.8.14(graphql@15.8.0) + '@jridgewell/trace-mapping': 0.3.25 + '@nodelib/fs.walk': 1.2.8 + '@parcel/cache': 2.6.2(@parcel/core@2.6.2) + '@parcel/core': 2.6.2 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(type-fest@0.21.3)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + '@types/http-proxy': 1.17.14 + '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + '@vercel/webpack-asset-relocator-loader': 1.7.3 + acorn-loose: 8.4.0 + acorn-walk: 8.3.2 + address: 1.1.2 + anser: 2.1.1 + autoprefixer: 10.4.19(postcss@8.4.38) + axios: 0.21.4(debug@3.2.7) + babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0(@swc/core@1.5.5)) + babel-plugin-add-module-exports: 1.0.4 + babel-plugin-dynamic-import-node: 2.3.3 + babel-plugin-lodash: 3.3.4 + babel-plugin-remove-graphql-queries: 4.25.0(@babel/core@7.24.5)(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + babel-preset-gatsby: 2.25.0(@babel/core@7.24.5)(core-js@3.37.0) + better-opn: 2.1.1 + bluebird: 3.7.2 + browserslist: 4.23.0 + cache-manager: 2.11.1 + chalk: 4.1.2 + chokidar: 3.6.0 + common-tags: 1.8.2 + compression: 1.7.4 + cookie: 0.4.2 + core-js: 3.37.0 + cors: 2.8.5 + css-loader: 5.2.7(webpack@5.91.0(@swc/core@1.5.5)) + css-minimizer-webpack-plugin: 2.0.0(webpack@5.91.0(@swc/core@1.5.5)) + css.escape: 1.5.1 + date-fns: 2.30.0 + debug: 3.2.7 + deepmerge: 4.3.1 + detect-port: 1.6.1 + devcert: 1.2.2 + dotenv: 8.6.0 + enhanced-resolve: 5.16.1 + error-stack-parser: 2.1.4 + eslint: 7.32.0 + eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5))(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@4.9.5) + eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) + eslint-plugin-react: 7.34.1(eslint@7.32.0) + eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0) + eslint-webpack-plugin: 2.7.0(eslint@7.32.0)(webpack@5.91.0(@swc/core@1.5.5)) + event-source-polyfill: 1.0.25 + execa: 5.1.1 + express: 4.19.2 + express-graphql: 0.12.0(graphql@15.8.0) + express-http-proxy: 1.6.3 + fastest-levenshtein: 1.0.16 + fastq: 1.17.1 + file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.5)) + find-cache-dir: 3.3.2 + fs-exists-cached: 1.0.0 + fs-extra: 10.1.0 + gatsby-cli: 4.25.0 + gatsby-core-utils: 3.25.0 + gatsby-graphiql-explorer: 2.25.0 + gatsby-legacy-polyfills: 2.25.0 + gatsby-link: 4.25.0(@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + gatsby-page-utils: 2.25.0 + gatsby-parcel-config: 0.16.0(@parcel/core@2.6.2) + gatsby-plugin-page-creator: 4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-plugin-typescript: 4.25.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)))) + gatsby-plugin-utils: 3.19.0(gatsby@4.25.8(@swc/core@1.5.5)(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@0.21.3)(typescript@4.9.5)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5))))(graphql@15.8.0) + gatsby-react-router-scroll: 5.25.0(@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + gatsby-script: 1.10.0(@gatsbyjs/reach-router@1.3.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + gatsby-telemetry: 3.25.0 + gatsby-worker: 1.25.0 + glob: 7.2.3 + globby: 11.1.0 + got: 11.8.6 + graphql: 15.8.0 + graphql-compose: 9.0.10(graphql@15.8.0) + graphql-playground-middleware-express: 1.7.23(express@4.19.2) + graphql-tag: 2.12.6(graphql@15.8.0) + hasha: 5.2.2 + invariant: 2.2.4 + is-relative: 1.0.0 + is-relative-url: 3.0.0 + joi: 17.13.1 + json-loader: 0.5.7 + latest-version: 5.1.0 + lmdb: 2.5.3 + lodash: 4.17.21 + md5-file: 5.0.0 + meant: 1.0.3 + memoizee: 0.4.15 + micromatch: 4.0.5 + mime: 2.6.0 + mini-css-extract-plugin: 1.6.2(webpack@5.91.0(@swc/core@1.5.5)) + mitt: 1.2.0 + moment: 2.30.1 + multer: 1.4.5-lts.1 + node-fetch: 2.7.0 + node-html-parser: 5.4.2 + normalize-path: 3.0.0 + null-loader: 4.0.1(webpack@5.91.0(@swc/core@1.5.5)) + opentracing: 0.14.7 + p-defer: 3.0.0 + parseurl: 1.3.3 + physical-cpu-count: 2.0.0 + platform: 1.3.6 + postcss: 8.4.38 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.38) + postcss-loader: 5.3.0(postcss@8.4.38)(webpack@5.91.0(@swc/core@1.5.5)) + prompts: 2.4.2 + prop-types: 15.8.1 + query-string: 6.14.1 + raw-loader: 4.0.2(webpack@5.91.0(@swc/core@1.5.5)) + react: 18.3.1 + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + react-dom: 18.3.1(react@18.3.1) + react-refresh: 0.14.2 + react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(react@18.3.1)(webpack@5.91.0(@swc/core@1.5.5)) + redux: 4.1.2 + redux-thunk: 2.4.2(redux@4.1.2) + resolve-from: 5.0.0 + semver: 7.6.1 + shallow-compare: 1.2.2 + signal-exit: 3.0.7 + slugify: 1.6.6 + socket.io: 4.5.4 + socket.io-client: 4.5.4 + st: 2.0.0 + stack-trace: 0.0.10 + string-similarity: 1.2.2 + strip-ansi: 6.0.1 + style-loader: 2.0.0(webpack@5.91.0(@swc/core@1.5.5)) + terser-webpack-plugin: 5.3.10(@swc/core@1.5.5)(webpack@5.91.0(@swc/core@1.5.5)) + tmp: 0.2.3 + true-case-path: 2.2.1 + type-of: 2.0.1 + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)) + uuid: 8.3.2 + webpack: 5.91.0(@swc/core@1.5.5) + webpack-dev-middleware: 4.3.0(webpack@5.91.0(@swc/core@1.5.5)) + webpack-merge: 5.10.0 + webpack-stats-plugin: 1.1.3 + webpack-virtual-modules: 0.3.2 + xstate: 4.32.1 + yaml-loader: 0.8.1 + optionalDependencies: + gatsby-sharp: 0.19.0 + transitivePeerDependencies: + - '@swc/core' + - '@types/webpack' + - babel-eslint + - bufferutil + - clean-css + - csso + - encoding + - esbuild + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - eslint-plugin-jest + - eslint-plugin-testing-library + - sockjs-client + - supports-color + - type-fest + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + + gauge@2.7.4: + dependencies: + aproba: 1.2.0 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 1.0.2 + strip-ansi: 3.0.1 + wide-align: 1.1.5 + + generic-names@4.0.0: + dependencies: + loader-utils: 3.2.1 + + gensync@1.0.0-beta.2: {} + + get-caller-file@2.0.5: {} + + get-intrinsic@1.2.4: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + + get-own-enumerable-property-symbols@3.0.2: {} + + get-package-type@0.1.0: {} + + get-port@3.2.0: {} + + get-stream@4.1.0: + dependencies: + pump: 3.0.0 + + get-stream@5.2.0: + dependencies: + pump: 3.0.0 + + get-stream@6.0.1: {} + + get-symbol-description@1.0.2: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + + get-user-locale@1.5.1: + dependencies: + lodash.memoize: 4.1.2 + + get-value@2.0.6: {} + + git-up@7.0.0: + dependencies: + is-ssh: 1.4.0 + parse-url: 8.1.0 + + github-from-package@0.0.0: {} + + github-slugger@1.5.0: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob-to-regexp@0.4.1: {} + + glob@7.1.4: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.0.4 + once: 1.4.0 + path-is-absolute: 1.0.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + global-dirs@3.0.1: + dependencies: + ini: 2.0.0 + + global-modules@2.0.0: + dependencies: + global-prefix: 3.0.0 + + global-prefix@3.0.0: + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + + globals@11.12.0: {} + + globals@13.24.0: + dependencies: + type-fest: 0.20.2 + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.0.1 + + globby@10.0.1: + dependencies: + '@types/glob': 7.2.0 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + glob: 7.2.3 + ignore: 5.3.1 + merge2: 1.4.1 + slash: 3.0.0 + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.1 + merge2: 1.4.1 + slash: 3.0.0 + + gopd@1.0.1: + dependencies: + get-intrinsic: 1.2.4 + + got@11.8.6: + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + + got@9.6.0: + dependencies: + '@sindresorhus/is': 0.14.0 + '@szmarczak/http-timer': 1.1.2 + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.3 + cacheable-request: 6.1.0 + decompress-response: 3.3.0 + duplexer3: 0.1.5 + get-stream: 4.1.0 + lowercase-keys: 1.0.1 + mimic-response: 1.0.1 + p-cancelable: 1.1.0 + to-readable-stream: 1.0.0 + url-parse-lax: 3.0.0 + + graceful-fs@4.2.11: {} + + graphql-compose@9.0.10(graphql@15.8.0): + dependencies: + graphql: 15.8.0 + graphql-type-json: 0.3.2(graphql@15.8.0) + + graphql-playground-html@1.6.30: + dependencies: + xss: 1.0.15 + + graphql-playground-middleware-express@1.7.23(express@4.19.2): + dependencies: + express: 4.19.2 + graphql-playground-html: 1.6.30 + + graphql-tag@2.12.6(graphql@15.8.0): + dependencies: + graphql: 15.8.0 + tslib: 2.6.2 + + graphql-type-json@0.3.2(graphql@15.8.0): + dependencies: + graphql: 15.8.0 + + graphql@15.8.0: {} + + gray-matter@4.0.3: + dependencies: + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + + gzip-size@6.0.0: + dependencies: + duplexer: 0.1.2 + + handle-thing@2.0.1: {} + + harmony-reflect@1.6.2: {} + + has-bigints@1.0.2: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.0 + + has-proto@1.0.3: {} + + has-symbols@1.0.3: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.0.3 + + has-unicode@2.0.1: {} + + has-value@0.3.1: + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + + has-value@1.0.0: + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + + has-values@0.1.4: {} + + has-values@1.0.0: + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + + has-yarn@2.1.0: {} + + hasha@5.2.2: + dependencies: + is-stream: 2.0.1 + type-fest: 0.8.1 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hast-to-hyperscript@9.0.1: + dependencies: + '@types/unist': 2.0.10 + comma-separated-tokens: 1.0.8 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + style-to-object: 0.3.0 + unist-util-is: 4.1.0 + web-namespaces: 1.1.4 + + hast-util-from-parse5@6.0.1: + dependencies: + '@types/parse5': 5.0.3 + hastscript: 6.0.0 + property-information: 5.6.0 + vfile: 4.2.1 + vfile-location: 3.2.0 + web-namespaces: 1.1.4 + + hast-util-parse-selector@2.2.5: {} + + hast-util-raw@6.0.1: + dependencies: + '@types/hast': 2.3.10 + hast-util-from-parse5: 6.0.1 + hast-util-to-parse5: 6.0.0 + html-void-elements: 1.0.5 + parse5: 6.0.1 + unist-util-position: 3.1.0 + vfile: 4.2.1 + web-namespaces: 1.1.4 + xtend: 4.0.2 + zwitch: 1.0.5 + + hast-util-to-parse5@6.0.0: + dependencies: + hast-to-hyperscript: 9.0.1 + property-information: 5.6.0 + web-namespaces: 1.1.4 + xtend: 4.0.2 + zwitch: 1.0.5 + + hastscript@6.0.0: + dependencies: + '@types/hast': 2.3.10 + comma-separated-tokens: 1.0.8 + hast-util-parse-selector: 2.2.5 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + + he@1.2.0: {} + + header-case@1.0.1: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + header-case@2.0.4: + dependencies: + capital-case: 1.0.4 + tslib: 2.4.1 + + hermes-estree@0.19.1: {} + + hermes-estree@0.20.1: {} + + hermes-parser@0.19.1: + dependencies: + hermes-estree: 0.19.1 + + hermes-parser@0.20.1: + dependencies: + hermes-estree: 0.20.1 + + hermes-profile-transformer@0.0.6: + dependencies: + source-map: 0.7.4 + + hoist-non-react-statics@3.3.2: + dependencies: + react-is: 16.13.1 + + hosted-git-info@2.8.9: {} + + hosted-git-info@3.0.8: + dependencies: + lru-cache: 6.0.0 + + hpack.js@2.1.6: + dependencies: + inherits: 2.0.4 + obuf: 1.1.2 + readable-stream: 2.3.8 + wbuf: 1.7.3 + + html-encoding-sniffer@2.0.1: + dependencies: + whatwg-encoding: 1.0.5 + + html-encoding-sniffer@3.0.0: + dependencies: + whatwg-encoding: 2.0.0 + + html-entities@2.5.2: {} + + html-escaper@2.0.2: {} + + html-void-elements@1.0.5: {} + + htmlparser2@3.10.1: + dependencies: + domelementtype: 1.3.1 + domhandler: 2.4.2 + domutils: 1.7.0 + entities: 1.1.2 + inherits: 2.0.4 + readable-stream: 3.6.2 + + htmlparser2@6.1.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + entities: 2.2.0 + + htmlparser2@8.0.2: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + entities: 4.5.0 + + http-cache-semantics@4.1.1: {} + + http-deceiver@1.2.7: {} + + http-errors@1.6.3: + dependencies: + depd: 1.1.2 + inherits: 2.0.3 + setprototypeof: 1.1.0 + statuses: 1.5.0 + + http-errors@1.8.0: + dependencies: + depd: 1.1.2 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 1.5.0 + toidentifier: 1.0.0 + + http-errors@2.0.0: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + + http-parser-js@0.5.8: {} + + http-proxy-agent@4.0.1: + dependencies: + '@tootallnate/once': 1.1.2 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + http-proxy-middleware@2.0.6(@types/express@4.17.21): + dependencies: + '@types/http-proxy': 1.17.14 + http-proxy: 1.18.1 + is-glob: 4.0.3 + is-plain-obj: 3.0.0 + micromatch: 4.0.5 + optionalDependencies: + '@types/express': 4.17.21 + transitivePeerDependencies: + - debug + + http-proxy@1.18.1: + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.6(debug@3.2.7) + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + + http-server@0.12.3: + dependencies: + basic-auth: 1.1.0 + colors: 1.4.0 + corser: 2.0.1 + ecstatic: 3.3.2 + http-proxy: 1.18.1 + minimist: 1.2.8 + opener: 1.5.2 + portfinder: 1.0.32 + secure-compare: 3.0.1 + union: 0.5.0 + transitivePeerDependencies: + - debug + - supports-color + + http-server@14.1.0: + dependencies: + basic-auth: 2.0.1 + chalk: 4.1.2 + corser: 2.0.1 + he: 1.2.0 + html-encoding-sniffer: 3.0.0 + http-proxy: 1.18.1 + mime: 1.6.0 + minimist: 1.2.8 + opener: 1.5.2 + portfinder: 1.0.32 + secure-compare: 3.0.1 + union: 0.5.0 + url-join: 4.0.1 + transitivePeerDependencies: + - debug + - supports-color + + http2-wrapper@1.0.3: + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + human-signals@2.1.0: {} + + hyphenate-style-name@1.0.4: {} + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + icss-replace-symbols@1.1.0: {} + + icss-utils@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + icss-utils@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + idb-keyval@3.2.0: {} + + identity-obj-proxy@3.0.0: + dependencies: + harmony-reflect: 1.6.2 + + ieee754@1.2.1: {} + + ignore@4.0.6: {} + + ignore@5.3.1: {} + + image-size@0.5.5: + optional: true + + image-size@1.1.1: + dependencies: + queue: 6.0.2 + + immer@9.0.21: {} + + immutable@3.7.6: {} + + immutable@4.3.5: {} + + import-cwd@3.0.0: + dependencies: + import-from: 3.0.0 + + import-fresh@2.0.0: + dependencies: + caller-path: 2.0.0 + resolve-from: 3.0.0 + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + import-from@3.0.0: + dependencies: + resolve-from: 5.0.0 + + import-from@4.0.0: {} + + import-lazy@2.1.0: {} + + imurmurhash@0.1.4: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.3: {} + + inherits@2.0.4: {} + + ini@1.3.8: {} + + ini@2.0.0: {} + + inline-style-parser@0.1.1: {} + + inquirer@7.3.3: + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + run-async: 2.4.1 + rxjs: 6.6.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + + internal-slot@1.0.7: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 + + invariant@2.2.4: + dependencies: + loose-envify: 1.4.0 + + ipaddr.js@1.9.1: {} + + ipaddr.js@2.2.0: {} + + is-absolute-url@3.0.3: {} + + is-absolute@1.0.0: + dependencies: + is-relative: 1.0.0 + is-windows: 1.0.2 + + is-accessor-descriptor@1.0.1: + dependencies: + hasown: 2.0.2 + + is-alphabetical@1.0.4: {} + + is-alphanumeric@1.0.0: {} + + is-alphanumerical@1.0.4: + dependencies: + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + + is-array-buffer@3.0.4: + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + + is-arrayish@0.2.1: {} + + is-arrayish@0.3.2: {} + + is-async-function@2.0.0: + dependencies: + has-tostringtag: 1.0.2 + + is-bigint@1.0.4: + dependencies: + has-bigints: 1.0.2 + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-boolean-object@1.1.2: + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + + is-buffer@1.1.6: {} + + is-buffer@2.0.5: {} + + is-builtin-module@3.2.1: + dependencies: + builtin-modules: 3.3.0 + + is-callable@1.2.7: {} + + is-ci@2.0.0: + dependencies: + ci-info: 2.0.0 + + is-ci@3.0.1: + dependencies: + ci-info: 3.9.0 + + is-core-module@2.13.1: + dependencies: + hasown: 2.0.2 + + is-data-descriptor@1.0.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.1: + dependencies: + is-typed-array: 1.1.13 + + is-date-object@1.0.5: + dependencies: + has-tostringtag: 1.0.2 + + is-decimal@1.0.4: {} + + is-descriptor@0.1.7: + dependencies: + is-accessor-descriptor: 1.0.1 + is-data-descriptor: 1.0.1 + + is-descriptor@1.0.3: + dependencies: + is-accessor-descriptor: 1.0.1 + is-data-descriptor: 1.0.1 + + is-directory@0.3.1: {} + + is-docker@2.2.1: {} + + is-extendable@0.1.1: {} + + is-extendable@1.0.1: + dependencies: + is-plain-object: 2.0.4 + + is-extglob@1.0.0: {} + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.0.2: + dependencies: + call-bind: 1.0.7 + + is-fullwidth-code-point@1.0.0: + dependencies: + number-is-nan: 1.0.1 + + is-fullwidth-code-point@2.0.0: {} + + is-fullwidth-code-point@3.0.0: {} + + is-generator-fn@2.1.0: {} + + is-generator-function@1.0.10: + dependencies: + has-tostringtag: 1.0.2 + + is-glob@2.0.1: + dependencies: + is-extglob: 1.0.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-hexadecimal@1.0.4: {} + + is-installed-globally@0.4.0: + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + + is-interactive@1.0.0: {} + + is-invalid-path@0.1.0: + dependencies: + is-glob: 2.0.1 + + is-lower-case@1.1.3: + dependencies: + lower-case: 1.1.4 + + is-lower-case@2.0.2: + dependencies: + tslib: 2.4.1 + + is-map@2.0.3: {} + + is-module@1.0.0: {} + + is-negative-zero@2.0.3: {} + + is-npm@5.0.0: {} + + is-number-object@1.0.7: + dependencies: + has-tostringtag: 1.0.2 + + is-number@3.0.0: + dependencies: + kind-of: 3.2.2 + + is-number@7.0.0: {} + + is-obj@1.0.1: {} + + is-obj@2.0.0: {} + + is-path-inside@3.0.3: {} + + is-plain-obj@1.1.0: {} + + is-plain-obj@2.1.0: {} + + is-plain-obj@3.0.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-plain-object@3.0.1: {} + + is-potential-custom-element-name@1.0.1: {} + + is-promise@2.2.2: {} + + is-reference@1.2.1: + dependencies: + '@types/estree': 1.0.5 + + is-regex@1.1.4: + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + + is-regexp@1.0.0: {} + + is-relative-url@3.0.0: + dependencies: + is-absolute-url: 3.0.3 + + is-relative@1.0.0: + dependencies: + is-unc-path: 1.0.0 + + is-root@2.1.0: {} + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.3: + dependencies: + call-bind: 1.0.7 + + is-ssh@1.4.0: + dependencies: + protocols: 2.0.1 + + is-stream@1.1.0: {} + + is-stream@2.0.1: {} + + is-string@1.0.7: + dependencies: + has-tostringtag: 1.0.2 + + is-symbol@1.0.4: + dependencies: + has-symbols: 1.0.3 + + is-typed-array@1.1.13: + dependencies: + which-typed-array: 1.1.15 + + is-typedarray@1.0.0: {} + + is-unc-path@1.0.0: + dependencies: + unc-path-regex: 0.1.2 + + is-unicode-supported@0.1.0: {} + + is-upper-case@1.1.2: + dependencies: + upper-case: 1.1.3 + + is-upper-case@2.0.2: + dependencies: + tslib: 2.4.1 + + is-valid-domain@0.1.6: + dependencies: + punycode: 2.3.1 + + is-valid-path@0.1.1: + dependencies: + is-invalid-path: 0.1.0 + + is-weakmap@2.0.2: {} + + is-weakref@1.0.2: + dependencies: + call-bind: 1.0.7 + + is-weakset@2.0.3: + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + + is-whitespace-character@1.0.4: {} + + is-windows@1.0.2: {} + + is-word-character@1.0.4: {} + + is-wsl@1.1.0: {} + + is-wsl@2.2.0: + dependencies: + is-docker: 2.2.1 + + is-yarn-global@0.3.0: {} + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + isobject@2.1.0: + dependencies: + isarray: 1.0.0 + + isobject@3.0.1: {} + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-instrument@4.0.3: + dependencies: + '@babel/core': 7.12.13 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + istanbul-lib-instrument@5.2.1: + dependencies: + '@babel/core': 7.12.13 + '@babel/parser': 7.24.5 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-lib-source-maps@4.0.1: + dependencies: + debug: 4.3.4 + istanbul-lib-coverage: 3.2.2 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + iterator.prototype@1.1.2: + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.6 + set-function-name: 2.0.2 + + its-fine@1.2.5(react@18.3.1): + dependencies: + '@types/react-reconciler': 0.28.8 + react: 18.3.1 + + jake@10.9.1: + dependencies: + async: 3.2.5 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 + + javascript-stringify@2.1.0: {} + + jest-circus@27.5.1: + dependencies: + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + co: 4.6.0 + dedent: 0.7.0 + expect: 27.5.1 + is-generator-fn: 2.1.0 + jest-each: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-runtime: 27.5.1 + jest-snapshot: 27.5.1 + jest-util: 27.5.1 + pretty-format: 27.5.1 + slash: 3.0.0 + stack-utils: 2.0.6 + throat: 6.0.2 + transitivePeerDependencies: + - supports-color + + jest-circus@28.1.3: + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + chalk: 4.1.0 + co: 4.6.0 + dedent: 0.7.0 + is-generator-fn: 2.1.0 + jest-each: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + p-limit: 3.1.0 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - supports-color + + jest-config@27.2.2(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + '@babel/core': 7.12.13 + '@jest/test-sequencer': 27.5.1 + '@jest/types': 27.5.1 + babel-jest: 27.5.1(@babel/core@7.12.13) + chalk: 4.1.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + is-ci: 3.0.1 + jest-circus: 27.5.1 + jest-environment-jsdom: 27.5.1 + jest-environment-node: 27.5.1 + jest-get-type: 27.5.1 + jest-jasmine2: 27.5.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.2.2 + jest-runner: 27.5.1 + jest-util: 27.2.0 + jest-validate: 27.5.1 + micromatch: 4.0.5 + pretty-format: 27.5.1 + optionalDependencies: + ts-node: 9.1.1(typescript@4.9.5) + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + jest-config@27.5.1(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + '@babel/core': 7.12.13 + '@jest/test-sequencer': 27.5.1 + '@jest/types': 27.5.1 + babel-jest: 27.5.1(@babel/core@7.12.13) + chalk: 4.1.0 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 27.5.1 + jest-environment-jsdom: 27.5.1 + jest-environment-node: 27.5.1 + jest-get-type: 27.5.1 + jest-jasmine2: 27.5.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-runner: 27.5.1 + jest-util: 27.5.1 + jest-validate: 27.5.1 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 27.5.1 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + ts-node: 9.1.1(typescript@4.9.5) + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + jest-config@28.1.1(@types/node@20.12.11)(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + '@babel/core': 7.12.13 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + babel-jest: 28.1.3(@babel/core@7.12.13) + chalk: 4.1.0 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + 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.1 + jest-runner: 28.1.3 + jest-util: 28.1.1 + 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 + optionalDependencies: + '@types/node': 20.12.11 + ts-node: 9.1.1(typescript@4.9.5) + transitivePeerDependencies: + - supports-color + + jest-diff@27.5.1: + dependencies: + chalk: 4.1.0 + diff-sequences: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + + jest-diff@28.1.3: + dependencies: + chalk: 4.1.0 + diff-sequences: 28.1.1 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + + jest-docblock@27.5.1: + dependencies: + detect-newline: 3.1.0 + + jest-docblock@28.1.1: + dependencies: + detect-newline: 3.1.0 + + jest-each@27.5.1: + dependencies: + '@jest/types': 27.5.1 + chalk: 4.1.0 + jest-get-type: 27.5.1 + jest-util: 27.5.1 + pretty-format: 27.5.1 + + jest-each@28.1.3: + dependencies: + '@jest/types': 28.1.3 + chalk: 4.1.0 + jest-get-type: 28.0.2 + jest-util: 28.1.3 + pretty-format: 28.1.3 + + jest-environment-jsdom@27.5.1: + dependencies: + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + jest-mock: 27.5.1 + jest-util: 27.5.1 + jsdom: 16.7.0 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + jest-environment-node@27.5.1: + dependencies: + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + jest-mock: 27.5.1 + jest-util: 27.5.1 + + jest-environment-node@28.1.3: + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + jest-mock: 28.1.3 + jest-util: 28.1.3 + + jest-environment-node@29.7.0: + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.11 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + jest-get-type@27.5.1: {} + + jest-get-type@28.0.2: {} + + jest-get-type@29.6.3: {} + + jest-haste-map@27.5.1: + dependencies: + '@jest/types': 27.5.1 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.11 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 27.5.1 + jest-serializer: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + + jest-haste-map@28.1.3: + dependencies: + '@jest/types': 28.1.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.11 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + jest-worker: 28.1.3 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + + jest-jasmine2@27.5.1: + dependencies: + '@jest/environment': 27.5.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + co: 4.6.0 + expect: 27.5.1 + is-generator-fn: 2.1.0 + jest-each: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-runtime: 27.5.1 + jest-snapshot: 27.5.1 + jest-util: 27.5.1 + pretty-format: 27.5.1 + throat: 6.0.2 + transitivePeerDependencies: + - supports-color + + jest-leak-detector@27.5.1: + dependencies: + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + + jest-leak-detector@28.1.3: + dependencies: + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + + jest-matcher-utils@27.5.1: + dependencies: + chalk: 4.1.0 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + + jest-matcher-utils@28.1.3: + dependencies: + chalk: 4.1.0 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + + jest-message-util@27.5.1: + dependencies: + '@babel/code-frame': 7.24.2 + '@jest/types': 27.5.1 + '@types/stack-utils': 2.0.3 + chalk: 4.1.0 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + pretty-format: 27.5.1 + slash: 3.0.0 + stack-utils: 2.0.6 + + jest-message-util@28.1.3: + dependencies: + '@babel/code-frame': 7.24.2 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.0 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.6 + + jest-message-util@29.7.0: + dependencies: + '@babel/code-frame': 7.24.2 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 + + jest-mock@27.5.1: + dependencies: + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + + jest-mock@28.1.3: + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + + jest-mock@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.12.11 + jest-util: 29.7.0 + + jest-pnp-resolver@1.2.3(jest-resolve@27.2.2): + optionalDependencies: + jest-resolve: 27.2.2 + + jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): + optionalDependencies: + jest-resolve: 27.5.1 + + jest-pnp-resolver@1.2.3(jest-resolve@28.1.1): + optionalDependencies: + jest-resolve: 28.1.1 + + jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): + optionalDependencies: + jest-resolve: 28.1.3 + + jest-regex-util@27.5.1: {} + + jest-regex-util@28.0.2: {} + + jest-resolve@27.2.2: + dependencies: + '@jest/types': 27.5.1 + chalk: 4.1.0 + escalade: 3.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 27.5.1 + jest-pnp-resolver: 1.2.3(jest-resolve@27.2.2) + jest-util: 27.2.0 + jest-validate: 27.5.1 + resolve: 1.22.8 + slash: 3.0.0 + + jest-resolve@27.5.1: + dependencies: + '@jest/types': 27.5.1 + chalk: 4.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 27.5.1 + jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1) + jest-util: 27.5.1 + jest-validate: 27.5.1 + resolve: 1.22.8 + resolve.exports: 1.1.0 + slash: 3.0.0 + + jest-resolve@28.1.1: + dependencies: + chalk: 4.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + jest-pnp-resolver: 1.2.3(jest-resolve@28.1.1) + jest-util: 28.1.1 + jest-validate: 28.1.3 + resolve: 1.22.8 + resolve.exports: 1.1.0 + slash: 3.0.0 + + jest-resolve@28.1.3: + dependencies: + chalk: 4.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 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.8 + resolve.exports: 1.1.0 + slash: 3.0.0 + + jest-runner@27.5.1: + dependencies: + '@jest/console': 27.5.1 + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + emittery: 0.8.1 + graceful-fs: 4.2.11 + jest-docblock: 27.5.1 + jest-environment-jsdom: 27.5.1 + jest-environment-node: 27.5.1 + jest-haste-map: 27.5.1 + jest-leak-detector: 27.5.1 + jest-message-util: 27.5.1 + jest-resolve: 27.5.1 + jest-runtime: 27.5.1 + jest-util: 27.5.1 + jest-worker: 27.5.1 + source-map-support: 0.5.21 + throat: 6.0.2 + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + jest-runner@28.1.3: + dependencies: + '@jest/console': 28.1.3 + '@jest/environment': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + chalk: 4.1.0 + emittery: 0.10.2 + graceful-fs: 4.2.11 + jest-docblock: 28.1.1 + jest-environment-node: 28.1.3 + jest-haste-map: 28.1.3 + jest-leak-detector: 28.1.3 + jest-message-util: 28.1.3 + jest-resolve: 28.1.3 + jest-runtime: 28.1.3 + jest-util: 28.1.3 + jest-watcher: 28.1.3 + jest-worker: 28.1.3 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + + jest-runtime@27.5.1: + dependencies: + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/globals': 27.5.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + chalk: 4.1.0 + cjs-module-lexer: 1.3.1 + collect-v8-coverage: 1.0.2 + execa: 5.1.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-haste-map: 27.5.1 + jest-message-util: 27.5.1 + jest-mock: 27.5.1 + jest-regex-util: 27.5.1 + jest-resolve: 27.5.1 + jest-snapshot: 27.5.1 + jest-util: 27.5.1 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + + jest-runtime@28.1.3: + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/globals': 28.1.3 + '@jest/source-map': 28.1.2 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.0 + cjs-module-lexer: 1.3.1 + collect-v8-coverage: 1.0.2 + execa: 5.1.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + + jest-serializer@27.5.1: + dependencies: + '@types/node': 20.12.11 + graceful-fs: 4.2.11 + + jest-snapshot@27.5.1: + dependencies: + '@babel/core': 7.12.13 + '@babel/generator': 7.24.5 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.12.13) + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__traverse': 7.20.5 + '@types/prettier': 2.7.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.13) + chalk: 4.1.0 + expect: 27.5.1 + graceful-fs: 4.2.11 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + jest-haste-map: 27.5.1 + jest-matcher-utils: 27.5.1 + jest-message-util: 27.5.1 + jest-util: 27.5.1 + natural-compare: 1.4.0 + pretty-format: 27.5.1 + semver: 7.6.1 + transitivePeerDependencies: + - supports-color + + jest-snapshot@28.1.3: + dependencies: + '@babel/core': 7.12.13 + '@babel/generator': 7.24.5 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.12.13) + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + '@jest/expect-utils': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/babel__traverse': 7.20.5 + '@types/prettier': 2.7.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.13) + chalk: 4.1.0 + expect: 28.1.3 + graceful-fs: 4.2.11 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + jest-haste-map: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + natural-compare: 1.4.0 + pretty-format: 28.1.3 + semver: 7.6.1 + transitivePeerDependencies: + - supports-color + + jest-util@27.2.0: + dependencies: + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + graceful-fs: 4.2.11 + is-ci: 3.0.1 + picomatch: 2.3.1 + + jest-util@27.5.1: + dependencies: + '@jest/types': 27.5.1 + '@types/node': 20.12.11 + chalk: 4.1.0 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + + jest-util@28.1.1: + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + chalk: 4.1.0 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + + jest-util@28.1.3: + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + chalk: 4.1.0 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + + jest-util@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.12.11 + chalk: 4.1.2 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + + jest-validate@27.5.1: + dependencies: + '@jest/types': 27.5.1 + camelcase: 6.3.0 + chalk: 4.1.0 + jest-get-type: 27.5.1 + leven: 3.1.0 + pretty-format: 27.5.1 + + jest-validate@28.1.3: + dependencies: + '@jest/types': 28.1.3 + camelcase: 6.3.0 + chalk: 4.1.0 + jest-get-type: 28.0.2 + leven: 3.1.0 + pretty-format: 28.1.3 + + jest-validate@29.7.0: + dependencies: + '@jest/types': 29.6.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 + + jest-watcher@28.1.3: + dependencies: + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.11 + ansi-escapes: 4.3.2 + chalk: 4.1.0 + emittery: 0.10.2 + jest-util: 28.1.3 + string-length: 4.0.2 + + jest-worker@26.6.2: + dependencies: + '@types/node': 20.12.11 + merge-stream: 2.0.0 + supports-color: 7.2.0 + + jest-worker@27.5.1: + dependencies: + '@types/node': 20.12.11 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jest-worker@28.1.3: + dependencies: + '@types/node': 20.12.11 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jest-worker@29.7.0: + dependencies: + '@types/node': 20.12.11 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + joi@17.13.1: + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 + + js-tokens@4.0.0: {} + + js-yaml@3.14.1: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsc-android@250231.0.0: {} + + jsc-safe-url@0.2.4: {} + + jscodeshift@0.12.0(@babel/preset-env@7.12.13(@babel/core@7.12.13)): + dependencies: + '@babel/core': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) + '@babel/preset-env': 7.12.13(@babel/core@7.12.13) + '@babel/preset-flow': 7.24.1(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/register': 7.23.7(@babel/core@7.24.5) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.5) + colors: 1.4.0 + flow-parser: 0.235.1 + graceful-fs: 4.2.11 + micromatch: 3.1.10 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jscodeshift@0.14.0(@babel/preset-env@7.12.13(@babel/core@7.12.13)): + dependencies: + '@babel/core': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5) + '@babel/preset-env': 7.12.13(@babel/core@7.12.13) + '@babel/preset-flow': 7.24.1(@babel/core@7.24.5) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/register': 7.23.7(@babel/core@7.24.5) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.5) + chalk: 4.1.2 + flow-parser: 0.235.1 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jsdom@16.7.0: + dependencies: + abab: 2.0.6 + acorn: 8.11.3 + acorn-globals: 6.0.0 + cssom: 0.4.4 + cssstyle: 2.3.0 + data-urls: 2.0.0 + decimal.js: 10.4.3 + domexception: 2.0.1 + escodegen: 2.1.0 + form-data: 3.0.1 + html-encoding-sniffer: 2.0.1 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.9 + parse5: 6.0.1 + saxes: 5.0.1 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-hr-time: 1.0.2 + w3c-xmlserializer: 2.0.0 + webidl-conversions: 6.1.0 + whatwg-encoding: 1.0.5 + whatwg-mimetype: 2.3.0 + whatwg-url: 8.7.0 + ws: 7.5.9 + xml-name-validator: 3.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsesc@0.5.0: {} + + jsesc@2.5.2: {} + + json-buffer@3.0.0: {} + + json-buffer@3.0.1: {} + + json-loader@0.5.7: {} + + json-parse-better-errors@1.0.2: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json2mq@0.2.0: + dependencies: + string-convert: 0.2.1 + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + json5@2.2.3: {} + + jsonc-parser@3.0.0: {} + + jsonc-parser@3.2.0: {} + + jsonfile@4.0.0: + optionalDependencies: + graceful-fs: 4.2.11 + + jsonfile@6.1.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsx-ast-utils@3.3.5: + dependencies: + array-includes: 3.1.8 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.2.0 + + keyv@3.1.0: + dependencies: + json-buffer: 3.0.0 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@3.2.2: + dependencies: + is-buffer: 1.1.6 + + kind-of@4.0.0: + dependencies: + is-buffer: 1.1.6 + + kind-of@6.0.3: {} + + kleur@3.0.3: {} + + klona@2.0.6: {} + + konva@9.3.6: {} + + language-subtag-registry@0.3.22: {} + + language-tags@1.0.9: + dependencies: + language-subtag-registry: 0.3.22 + + latest-version@5.1.0: + dependencies: + package-json: 6.5.0 + + launch-editor@2.6.1: + dependencies: + picocolors: 1.0.0 + shell-quote: 1.8.1 + + less-loader@10.2.0(less@3.12.2)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + klona: 2.0.6 + less: 3.12.2 + webpack: 5.91.0(@swc/core@1.5.5) + + less@3.12.2: + dependencies: + tslib: 1.14.1 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.11 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + native-request: 1.1.0 + source-map: 0.6.1 + + leven@3.1.0: {} + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + license-webpack-plugin@2.3.15(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@types/webpack-sources': 0.1.12 + webpack-sources: 1.4.3 + optionalDependencies: + webpack: 5.91.0(@swc/core@1.5.5) + + license-webpack-plugin@4.0.2(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + webpack-sources: 3.2.3 + optionalDependencies: + webpack: 5.91.0(@swc/core@1.5.5) + + lighthouse-logger@1.4.2: + dependencies: + debug: 2.6.9 + marky: 1.2.5 + transitivePeerDependencies: + - supports-color + + lilconfig@2.1.0: {} + + lines-and-columns@1.2.4: {} + + lmdb@2.5.2: + dependencies: + msgpackr: 1.10.1 + node-addon-api: 4.3.0 + node-gyp-build-optional-packages: 5.0.3 + ordered-binary: 1.5.1 + weak-lru-cache: 1.2.2 + optionalDependencies: + '@lmdb/lmdb-darwin-arm64': 2.5.2 + '@lmdb/lmdb-darwin-x64': 2.5.2 + '@lmdb/lmdb-linux-arm': 2.5.2 + '@lmdb/lmdb-linux-arm64': 2.5.2 + '@lmdb/lmdb-linux-x64': 2.5.2 + '@lmdb/lmdb-win32-x64': 2.5.2 + + lmdb@2.5.3: + dependencies: + msgpackr: 1.10.1 + node-addon-api: 4.3.0 + node-gyp-build-optional-packages: 5.0.3 + ordered-binary: 1.5.1 + weak-lru-cache: 1.2.2 + optionalDependencies: + '@lmdb/lmdb-darwin-arm64': 2.5.3 + '@lmdb/lmdb-darwin-x64': 2.5.3 + '@lmdb/lmdb-linux-arm': 2.5.3 + '@lmdb/lmdb-linux-arm64': 2.5.3 + '@lmdb/lmdb-linux-x64': 2.5.3 + '@lmdb/lmdb-win32-x64': 2.5.3 + + load-json-file@4.0.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + + loader-runner@4.3.0: {} + + loader-utils@1.2.3: + dependencies: + big.js: 5.2.2 + emojis-list: 2.1.0 + json5: 1.0.2 + + loader-utils@1.4.2: + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 1.0.2 + + loader-utils@2.0.4: + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.3 + + loader-utils@3.2.1: {} + + locate-path@3.0.0: + dependencies: + p-locate: 3.0.0 + path-exists: 3.0.0 + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lock@1.1.0: {} + + lodash._reinterpolate@3.0.0: {} + + lodash.assignin@4.2.0: {} + + lodash.bind@4.2.1: {} + + lodash.camelcase@4.3.0: {} + + lodash.clonedeep@4.5.0: {} + + lodash.debounce@4.0.8: {} + + lodash.deburr@4.1.0: {} + + lodash.defaults@4.2.0: {} + + lodash.every@4.6.0: {} + + lodash.filter@4.6.0: {} + + lodash.flatten@4.4.0: {} + + lodash.flattendeep@4.4.0: {} + + lodash.foreach@4.5.0: {} + + lodash.map@4.6.0: {} + + lodash.maxby@4.6.0: {} + + lodash.memoize@4.1.2: {} + + lodash.merge@4.6.2: {} + + lodash.pick@4.4.0: {} + + lodash.reduce@4.6.0: {} + + lodash.reject@4.6.0: {} + + lodash.some@4.6.0: {} + + lodash.template@4.5.0: + dependencies: + lodash._reinterpolate: 3.0.0 + lodash.templatesettings: 4.2.0 + + lodash.templatesettings@4.2.0: + dependencies: + lodash._reinterpolate: 3.0.0 + + lodash.throttle@4.1.1: {} + + lodash.truncate@4.4.2: {} + + lodash.uniq@4.5.0: {} + + lodash@4.17.21: {} + + log-symbols@4.1.0: + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + + logkitty@0.7.1: + dependencies: + ansi-fragments: 0.2.1 + dayjs: 1.11.11 + yargs: 15.4.1 + + longest-streak@2.0.4: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + lower-case-first@1.0.2: + dependencies: + lower-case: 1.1.4 + + lower-case-first@2.0.2: + dependencies: + tslib: 2.4.1 + + lower-case@1.1.4: {} + + lower-case@2.0.2: + dependencies: + tslib: 2.4.1 + + lowercase-keys@1.0.1: {} + + lowercase-keys@2.0.0: {} + + lru-cache@4.0.0: + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + + lru-cache@4.1.5: + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + + lru-queue@0.1.0: + dependencies: + es5-ext: 0.10.64 + + magic-string@0.25.9: + dependencies: + sourcemap-codec: 1.4.8 + + make-dir@2.1.0: + dependencies: + pify: 4.0.1 + semver: 5.7.2 + + make-dir@3.1.0: + dependencies: + semver: 6.3.1 + + make-dir@4.0.0: + dependencies: + semver: 7.6.1 + + make-error@1.3.6: {} + + makeerror@1.0.12: + dependencies: + tmpl: 1.0.5 + + map-age-cleaner@0.1.3: + dependencies: + p-defer: 1.0.0 + + map-cache@0.2.2: {} + + map-visit@1.0.0: + dependencies: + object-visit: 1.0.1 + + markdown-escapes@1.0.4: {} + + markdown-table@1.1.3: {} + + marky@1.2.5: {} + + matchmediaquery@0.3.1: + dependencies: + css-mediaquery: 0.1.2 + + md5-file@5.0.0: {} + + mdast-squeeze-paragraphs@4.0.0: + dependencies: + unist-util-remove: 2.1.0 + + mdast-util-compact@1.0.4: + dependencies: + unist-util-visit: 1.4.1 + + mdast-util-definitions@4.0.0: + dependencies: + unist-util-visit: 2.0.3 + + mdast-util-to-hast@10.0.1: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 + mdast-util-definitions: 4.0.0 + mdurl: 1.0.1 + unist-builder: 2.0.3 + unist-util-generated: 1.1.6 + unist-util-position: 3.1.0 + unist-util-visit: 2.0.3 + + mdast-util-to-nlcst@3.2.3: + dependencies: + nlcst-to-string: 2.0.4 + repeat-string: 1.6.1 + unist-util-position: 3.1.0 + vfile-location: 2.0.6 + + mdast-util-to-string@1.1.0: {} + + mdast-util-toc@3.1.0: + dependencies: + github-slugger: 1.5.0 + mdast-util-to-string: 1.1.0 + unist-util-is: 2.1.3 + unist-util-visit: 1.4.1 + + mdn-data@2.0.14: {} + + mdn-data@2.0.4: {} + + mdurl@1.0.1: {} + + meant@1.0.3: {} + + media-typer@0.3.0: {} + + mem@8.1.1: + dependencies: + map-age-cleaner: 0.1.3 + mimic-fn: 3.1.0 + + memfs@3.5.3: + dependencies: + fs-monkey: 1.0.6 + + memoize-one@5.2.1: {} + + memoizee@0.4.15: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-weak-map: 2.0.3 + event-emitter: 0.3.5 + is-promise: 2.2.2 + lru-queue: 0.1.0 + next-tick: 1.1.0 + timers-ext: 0.1.7 + + memorystream@0.3.1: {} + + merge-class-names@1.4.2: {} + + merge-descriptors@1.0.1: {} + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + methods@1.1.2: {} + + metro-babel-transformer@0.80.9: + dependencies: + '@babel/core': 7.24.5 + hermes-parser: 0.20.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + metro-cache-key@0.80.9: {} + + metro-cache@0.80.9: + dependencies: + metro-core: 0.80.9 + rimraf: 3.0.2 + + metro-config@0.80.9: + dependencies: + connect: 3.7.0 + cosmiconfig: 5.2.1 + jest-validate: 29.7.0 + metro: 0.80.9 + metro-cache: 0.80.9 + metro-core: 0.80.9 + metro-runtime: 0.80.9 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + metro-core@0.80.9: + dependencies: + lodash.throttle: 4.1.1 + metro-resolver: 0.80.9 + + metro-file-map@0.80.9: + dependencies: + anymatch: 3.1.3 + debug: 2.6.9 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + invariant: 2.2.4 + jest-worker: 29.7.0 + micromatch: 4.0.5 + node-abort-controller: 3.1.1 + nullthrows: 1.1.1 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + transitivePeerDependencies: + - supports-color + + metro-minify-terser@0.80.9: + dependencies: + terser: 5.31.0 + + metro-resolver@0.80.9: {} + + metro-runtime@0.80.9: + dependencies: + '@babel/runtime': 7.24.5 + + metro-source-map@0.80.9: + dependencies: + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + invariant: 2.2.4 + metro-symbolicate: 0.80.9 + nullthrows: 1.1.1 + ob1: 0.80.9 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + + metro-symbolicate@0.80.9: + dependencies: + invariant: 2.2.4 + metro-source-map: 0.80.9 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + + metro-transform-plugins@0.80.9: + dependencies: + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + metro-transform-worker@0.80.9: + dependencies: + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + metro: 0.80.9 + metro-babel-transformer: 0.80.9 + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-minify-terser: 0.80.9 + metro-source-map: 0.80.9 + metro-transform-plugins: 0.80.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + metro@0.80.9: + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + accepts: 1.3.8 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0 + debug: 2.6.9 + denodeify: 1.2.1 + error-stack-parser: 2.1.4 + graceful-fs: 4.2.11 + hermes-parser: 0.20.1 + image-size: 1.1.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.80.9 + metro-cache: 0.80.9 + metro-cache-key: 0.80.9 + metro-config: 0.80.9 + metro-core: 0.80.9 + metro-file-map: 0.80.9 + metro-resolver: 0.80.9 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + metro-symbolicate: 0.80.9 + metro-transform-plugins: 0.80.9 + metro-transform-worker: 0.80.9 + mime-types: 2.1.35 + node-fetch: 2.7.0 + nullthrows: 1.1.1 + rimraf: 3.0.2 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + throat: 5.0.0 + ws: 7.5.9 + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + micromatch@3.1.10: + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.5: + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@1.6.0: {} + + mime@2.6.0: {} + + mime@3.0.0: {} + + mimic-fn@2.1.0: {} + + mimic-fn@3.1.0: {} + + mimic-response@1.0.1: {} + + mimic-response@3.1.0: {} + + mini-css-extract-plugin@1.6.2(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + webpack-sources: 1.4.3 + + mini-css-extract-plugin@2.4.7(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + schema-utils: 4.2.0 + webpack: 5.91.0(@swc/core@1.5.5) + + mini-css-extract-plugin@2.9.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + schema-utils: 4.2.0 + tapable: 2.2.1 + webpack: 5.91.0(@swc/core@1.5.5) + + mini-svg-data-uri@1.4.4: {} + + minimalistic-assert@1.0.1: {} + + minimatch@3.0.4: + dependencies: + brace-expansion: 1.1.11 + + minimatch@3.0.5: + dependencies: + brace-expansion: 1.1.11 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@5.1.6: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + mitt@1.2.0: {} + + mixin-deep@1.3.2: + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + + mkdirp-classic@0.5.3: {} + + mkdirp@0.5.6: + dependencies: + minimist: 1.2.8 + + mkdirp@1.0.4: {} + + moment@2.30.1: {} + + ms@2.0.0: {} + + ms@2.1.2: {} + + ms@2.1.3: {} + + msgpackr-extract@3.0.2: + dependencies: + node-gyp-build-optional-packages: 5.0.7 + optionalDependencies: + '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.2 + '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.2 + '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.2 + '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.2 + '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.2 + '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.2 + optional: true + + msgpackr@1.10.1: + optionalDependencies: + msgpackr-extract: 3.0.2 + + multer@1.4.5-lts.1: + dependencies: + append-field: 1.0.0 + busboy: 1.6.0 + concat-stream: 1.6.2 + mkdirp: 0.5.6 + object-assign: 4.1.1 + type-is: 1.6.18 + xtend: 4.0.2 + + multicast-dns@7.2.5: + dependencies: + dns-packet: 5.6.1 + thunky: 1.1.0 + + mute-stream@0.0.8: {} + + nanoid@3.3.7: {} + + nanomatch@1.2.13: + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + napi-build-utils@1.0.2: {} + + native-request@1.1.0: + optional: true + + natural-compare@1.4.0: {} + + needle@2.9.1: + dependencies: + debug: 3.2.7 + iconv-lite: 0.4.24 + sax: 1.3.0 + transitivePeerDependencies: + - supports-color + + negotiator@0.6.3: {} + + neo-async@2.6.2: {} + + next-tick@1.1.0: {} + + nice-try@1.0.5: {} + + nlcst-to-string@2.0.4: {} + + no-case@2.3.2: + dependencies: + lower-case: 1.1.4 + + no-case@3.0.4: + dependencies: + lower-case: 2.0.2 + tslib: 2.4.1 + + nocache@3.0.4: {} + + node-abi@3.62.0: + dependencies: + semver: 7.6.1 + + node-abort-controller@3.1.1: {} + + node-addon-api@3.2.1: {} + + node-addon-api@4.3.0: {} + + node-addon-api@5.1.0: {} + + node-addon-api@7.1.0: {} + + node-dir@0.1.17: + dependencies: + minimatch: 3.1.2 + + node-fetch@2.7.0: + dependencies: + whatwg-url: 5.0.0 + + node-forge@1.3.1: {} + + node-gyp-build-optional-packages@5.0.3: {} + + node-gyp-build-optional-packages@5.0.7: + optional: true + + node-gyp-build@4.8.1: {} + + node-html-parser@5.4.2: + dependencies: + css-select: 4.3.0 + he: 1.2.0 + + node-int64@0.4.0: {} + + node-object-hash@2.3.10: {} + + node-releases@2.0.14: {} + + node-stream-zip@1.15.0: {} + + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.8 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-path@2.1.1: + dependencies: + remove-trailing-separator: 1.1.0 + + normalize-path@3.0.0: {} + + normalize-range@0.1.2: {} + + normalize-url@4.5.1: {} + + normalize-url@6.1.0: {} + + npm-run-all@4.1.5: + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.5 + memorystream: 0.3.1 + minimatch: 3.0.4 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.1 + string.prototype.padend: 3.1.6 + + npm-run-path@2.0.2: + dependencies: + path-key: 2.0.1 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + npmlog@4.1.2: + dependencies: + are-we-there-yet: 1.1.7 + console-control-strings: 1.1.0 + gauge: 2.7.4 + set-blocking: 2.0.0 + + nth-check@1.0.2: + dependencies: + boolbase: 1.0.0 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + null-loader@4.0.1(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + + nullthrows@1.1.1: {} + + number-is-nan@1.0.1: {} + + nwsapi@2.2.9: {} + + nx@13.2.3: + dependencies: + '@nrwl/cli': 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + + nx@14.0.5(@swc/types@0.1.6)(typescript@4.9.5): + dependencies: + '@nrwl/cli': 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + '@nrwl/tao': 14.0.5(@swc/types@0.1.6)(typescript@4.9.5) + '@parcel/watcher': 2.0.4 + '@swc-node/register': 1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5) + '@swc/core': 1.5.5 + chalk: 4.1.0 + chokidar: 3.6.0 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 7.0.4 + dotenv: 10.0.0 + enquirer: 2.3.6 + fast-glob: 3.2.7 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 9.1.0 + glob: 7.1.4 + ignore: 5.3.1 + jsonc-parser: 3.0.0 + minimatch: 3.0.4 + npm-run-path: 4.0.1 + open: 8.4.2 + rxjs: 6.6.7 + rxjs-for-await: 0.0.2(rxjs@6.6.7) + semver: 7.3.4 + string-width: 4.2.3 + tar-stream: 2.2.0 + tmp: 0.2.3 + tsconfig-paths: 3.15.0 + tslib: 2.6.2 + v8-compile-cache: 2.3.0 + yargs: 17.7.2 + yargs-parser: 21.0.1 + transitivePeerDependencies: + - '@swc/helpers' + - '@swc/types' + - supports-color + - typescript + + nx@14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5): + dependencies: + '@nrwl/cli': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + '@nrwl/tao': 14.8.9(@swc-node/register@1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5))(@swc/core@1.5.5) + '@parcel/watcher': 2.0.4 + '@yarnpkg/lockfile': 1.1.0 + '@yarnpkg/parsers': 3.0.2 + '@zkochan/js-yaml': 0.0.6 + axios: 1.6.8 + chalk: 4.1.0 + chokidar: 3.6.0 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 7.0.4 + dotenv: 10.0.0 + enquirer: 2.3.6 + fast-glob: 3.2.7 + figures: 3.2.0 + flat: 5.0.2 + fs-extra: 10.1.0 + glob: 7.1.4 + ignore: 5.3.1 + js-yaml: 4.1.0 + jsonc-parser: 3.2.0 + minimatch: 3.0.5 + npm-run-path: 4.0.1 + open: 8.4.2 + semver: 7.3.4 + string-width: 4.2.3 + strong-log-transformer: 2.1.0 + tar-stream: 2.2.0 + tmp: 0.2.3 + tsconfig-paths: 3.15.0 + tslib: 2.6.2 + v8-compile-cache: 2.3.0 + yargs: 17.7.2 + yargs-parser: 21.0.1 + optionalDependencies: + '@swc-node/register': 1.9.1(@swc/core@1.5.5)(@swc/types@0.1.6)(typescript@4.9.5) + '@swc/core': 1.5.5 + transitivePeerDependencies: + - debug + + ob1@0.80.9: {} + + object-assign@4.1.1: {} + + object-copy@0.1.0: + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + + object-inspect@1.13.1: {} + + object-keys@1.1.1: {} + + object-visit@1.0.1: + dependencies: + isobject: 3.0.1 + + object.assign@4.1.5: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + + object.entries@1.1.8: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + object.fromentries@2.0.8: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + + object.getownpropertydescriptors@2.1.8: + dependencies: + array.prototype.reduce: 1.0.7 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + gopd: 1.0.1 + safe-array-concat: 1.1.2 + + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + + object.hasown@1.1.4: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + + object.pick@1.3.0: + dependencies: + isobject: 3.0.1 + + object.values@1.2.0: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + objectFitPolyfill@2.3.5: {} + + obuf@1.1.2: {} + + on-finished@2.3.0: + dependencies: + ee-first: 1.1.1 + + on-finished@2.4.1: + dependencies: + ee-first: 1.1.1 + + on-headers@1.0.2: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + open@6.4.0: + dependencies: + is-wsl: 1.1.0 + + open@7.4.2: + dependencies: + is-docker: 2.2.1 + is-wsl: 2.2.0 + + open@8.4.2: + dependencies: + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 + + opener@1.5.2: {} + + opentracing@0.14.7: {} + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + ora@5.4.1: + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + + ordered-binary@1.5.1: {} + + os-tmpdir@1.0.2: {} + + p-cancelable@1.1.0: {} + + p-cancelable@2.1.1: {} + + p-defer@1.0.0: {} + + p-defer@3.0.0: {} + + p-finally@1.0.0: {} + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@3.0.0: + dependencies: + p-limit: 2.3.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-queue@6.6.2: + dependencies: + eventemitter3: 4.0.7 + p-timeout: 3.2.0 + + p-retry@4.6.2: + dependencies: + '@types/retry': 0.12.0 + retry: 0.13.1 + + p-timeout@3.2.0: + dependencies: + p-finally: 1.0.0 + + p-try@2.2.0: {} + + package-json@6.5.0: + dependencies: + got: 9.6.0 + registry-auth-token: 4.2.2 + registry-url: 5.1.0 + semver: 6.3.1 + + param-case@2.1.1: + dependencies: + no-case: 2.3.2 + + param-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.4.1 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-english@4.2.0: + dependencies: + nlcst-to-string: 2.0.4 + parse-latin: 4.3.0 + unist-util-modify-children: 2.0.0 + unist-util-visit-children: 1.1.4 + + parse-entities@1.2.2: + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + + parse-entities@2.0.0: + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + + parse-filepath@1.0.2: + dependencies: + is-absolute: 1.0.0 + map-cache: 0.2.2 + path-root: 0.1.1 + + parse-json@4.0.0: + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.24.2 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + parse-latin@4.3.0: + dependencies: + nlcst-to-string: 2.0.4 + unist-util-modify-children: 2.0.0 + unist-util-visit-children: 1.1.4 + + parse-path@7.0.0: + dependencies: + protocols: 2.0.1 + + parse-url@8.1.0: + dependencies: + parse-path: 7.0.0 + + parse5-html-rewriting-stream@6.0.1: + dependencies: + parse5: 6.0.1 + parse5-sax-parser: 6.0.1 + + parse5-htmlparser2-tree-adapter@7.0.0: + dependencies: + domhandler: 5.0.3 + parse5: 7.1.2 + + parse5-sax-parser@6.0.1: + dependencies: + parse5: 6.0.1 + + parse5@4.0.0: {} + + parse5@6.0.1: {} + + parse5@7.1.2: + dependencies: + entities: 4.5.0 + + parseurl@1.3.3: {} + + pascal-case@2.0.1: + dependencies: + camel-case: 3.0.0 + upper-case-first: 1.1.2 + + pascal-case@3.1.2: + dependencies: + no-case: 3.0.4 + tslib: 2.4.1 + + pascalcase@0.1.1: {} + + password-prompt@1.1.3: + dependencies: + ansi-escapes: 4.3.2 + cross-spawn: 7.0.3 + + path-case@2.1.1: + dependencies: + no-case: 2.3.2 + + path-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.4.1 + + path-exists@3.0.0: {} + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-is-network-drive@1.0.20: + dependencies: + tslib: 2.6.2 + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-root-regex@0.1.2: {} + + path-root@0.1.1: + dependencies: + path-root-regex: 0.1.2 + + path-strip-sep@1.0.17: + dependencies: + tslib: 2.6.2 + + path-to-regexp@0.1.7: {} + + path-type@3.0.0: + dependencies: + pify: 3.0.0 + + path-type@4.0.0: {} + + peek-readable@4.1.0: {} + + physical-cpu-count@2.0.0: {} + + picocolors@1.0.0: {} + + picomatch@2.3.1: {} + + pidtree@0.3.1: {} + + pify@2.3.0: {} + + pify@3.0.0: {} + + pify@4.0.1: {} + + pify@5.0.0: {} + + pirates@4.0.6: {} + + pkg-dir@3.0.0: + dependencies: + find-up: 3.0.0 + + pkg-dir@4.2.0: + dependencies: + find-up: 4.1.0 + + pkg-dir@5.0.0: + dependencies: + find-up: 5.0.0 + + pkg-up@3.1.0: + dependencies: + find-up: 3.0.0 + + platform@1.3.6: {} + + portfinder@1.0.32: + dependencies: + async: 2.6.4 + debug: 3.2.7 + mkdirp: 0.5.6 + transitivePeerDependencies: + - supports-color + + posix-character-classes@0.1.1: {} + + possible-typed-array-names@1.0.0: {} + + postcss-calc@8.2.4(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + + postcss-calc@8.2.4(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + + postcss-colormin@5.3.1(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-colormin@5.3.1(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-convert-values@5.1.3(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-convert-values@5.1.3(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-discard-comments@5.1.2(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + postcss-discard-comments@5.1.2(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-discard-duplicates@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + postcss-discard-duplicates@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-discard-empty@5.1.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + postcss-discard-empty@5.1.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-discard-overridden@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + postcss-discard-overridden@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-flexbugs-fixes@5.0.2(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-import@14.0.2(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-import@14.0.2(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + + postcss-load-config@3.1.4(postcss@8.3.0)(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.3.0 + ts-node: 9.1.1(typescript@4.9.5) + + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.4.38 + ts-node: 9.1.1(typescript@4.9.5) + + postcss-loader@5.3.0(postcss@8.4.38)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + postcss: 8.4.38 + semver: 7.6.1 + webpack: 5.91.0(@swc/core@1.5.5) + + postcss-loader@6.2.1(postcss@8.3.0)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + postcss: 8.3.0 + semver: 7.6.1 + webpack: 5.91.0(@swc/core@1.5.5) + + postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + postcss: 8.4.38 + semver: 7.6.1 + webpack: 5.91.0(@swc/core@1.5.5) + + postcss-merge-longhand@5.1.7(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.1(postcss@8.3.0) + + postcss-merge-longhand@5.1.7(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.1(postcss@8.4.38) + + postcss-merge-rules@5.1.4(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0(postcss@8.3.0) + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + + postcss-merge-rules@5.1.4(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + + postcss-minify-font-values@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-minify-font-values@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-minify-gradients@5.1.1(postcss@8.3.0): + dependencies: + colord: 2.9.3 + cssnano-utils: 3.1.0(postcss@8.3.0) + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-minify-gradients@5.1.1(postcss@8.4.38): + dependencies: + colord: 2.9.3 + cssnano-utils: 3.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-minify-params@5.1.4(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + cssnano-utils: 3.1.0(postcss@8.3.0) + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-minify-params@5.1.4(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + cssnano-utils: 3.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-minify-selectors@5.2.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + + postcss-minify-selectors@5.2.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + + postcss-modules-extract-imports@3.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + postcss-modules-extract-imports@3.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-modules-local-by-default@4.0.5(postcss@8.3.0): + dependencies: + icss-utils: 5.1.0(postcss@8.3.0) + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + + postcss-modules-local-by-default@4.0.5(postcss@8.4.38): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + + postcss-modules-scope@3.2.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + + postcss-modules-scope@3.2.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + + postcss-modules-values@4.0.0(postcss@8.3.0): + dependencies: + icss-utils: 5.1.0(postcss@8.3.0) + postcss: 8.3.0 + + postcss-modules-values@4.0.0(postcss@8.4.38): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + + postcss-modules@4.3.1(postcss@8.3.0): + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.3.0 + postcss-modules-extract-imports: 3.1.0(postcss@8.3.0) + postcss-modules-local-by-default: 4.0.5(postcss@8.3.0) + postcss-modules-scope: 3.2.0(postcss@8.3.0) + postcss-modules-values: 4.0.0(postcss@8.3.0) + string-hash: 1.1.3 + + postcss-modules@4.3.1(postcss@8.4.38): + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.4.38 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) + postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) + string-hash: 1.1.3 + + postcss-normalize-charset@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + + postcss-normalize-charset@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + + postcss-normalize-display-values@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-display-values@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-positions@5.1.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-positions@5.1.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-repeat-style@5.1.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-repeat-style@5.1.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-string@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-string@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-timing-functions@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-timing-functions@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-unicode@5.1.1(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-unicode@5.1.1(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-url@5.1.0(postcss@8.3.0): + dependencies: + normalize-url: 6.1.0 + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-url@5.1.0(postcss@8.4.38): + dependencies: + normalize-url: 6.1.0 + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-normalize-whitespace@5.1.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-normalize-whitespace@5.1.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-ordered-values@5.1.3(postcss@8.3.0): + dependencies: + cssnano-utils: 3.1.0(postcss@8.3.0) + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-ordered-values@5.1.3(postcss@8.4.38): + dependencies: + cssnano-utils: 3.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-reduce-initial@5.1.2(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + postcss: 8.3.0 + + postcss-reduce-initial@5.1.2(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + postcss: 8.4.38 + + postcss-reduce-transforms@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + + postcss-reduce-transforms@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + + postcss-selector-parser@6.0.16: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-svgo@5.1.0(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + + postcss-svgo@5.1.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + + postcss-unique-selectors@5.1.1(postcss@8.3.0): + dependencies: + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + + postcss-unique-selectors@5.1.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + + postcss-value-parser@4.2.0: {} + + postcss@8.3.0: + dependencies: + colorette: 1.4.0 + nanoid: 3.3.7 + source-map-js: 0.6.2 + + postcss@8.4.38: + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.2.0 + + prebuild-install@7.1.2: + dependencies: + detect-libc: 2.0.3 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.8 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 3.62.0 + pump: 3.0.0 + rc: 1.2.8 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + + prelude-ls@1.2.1: {} + + prepend-http@2.0.0: {} + + pretty-bytes@5.6.0: {} + + pretty-error@2.1.2: + dependencies: + lodash: 4.17.21 + renderkid: 2.0.7 + + pretty-format@26.6.2: + dependencies: + '@jest/types': 26.6.2 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + react-is: 17.0.2 + + pretty-format@27.5.1: + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + + pretty-format@28.1.3: + dependencies: + '@jest/schemas': 28.1.3 + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 18.3.1 + + pretty-format@29.7.0: + dependencies: + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.3.1 + + pretty-hrtime@1.0.3: {} + + probe-image-size@7.2.3: + dependencies: + lodash.merge: 4.6.2 + needle: 2.9.1 + stream-parser: 0.3.1 + transitivePeerDependencies: + - supports-color + + process-nextick-args@2.0.1: {} + + progress@2.0.3: {} + + promise.series@0.2.0: {} + + promise@7.3.1: + dependencies: + asap: 2.0.6 + + promise@8.3.0: + dependencies: + asap: 2.0.6 + + prompts@2.4.2: + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + + prop-types@15.8.1: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + proper-lockfile@4.1.2: + dependencies: + graceful-fs: 4.2.11 + retry: 0.12.0 + signal-exit: 3.0.7 + + property-information@5.6.0: + dependencies: + xtend: 4.0.2 + + protocols@2.0.1: {} + + proxy-addr@2.0.7: + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + + proxy-from-env@1.1.0: {} + + prr@1.0.1: + optional: true + + pseudomap@1.0.2: {} + + psl@1.9.0: {} + + pump@3.0.0: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + + punycode@1.4.1: {} + + punycode@2.3.1: {} + + pupa@2.1.1: + dependencies: + escape-goat: 2.1.1 + + q@1.5.1: {} + + qs@6.11.0: + dependencies: + side-channel: 1.0.6 + + qs@6.12.1: + dependencies: + side-channel: 1.0.6 + + query-string@6.14.1: + dependencies: + decode-uri-component: 0.2.2 + filter-obj: 1.1.0 + split-on-first: 1.1.0 + strict-uri-encode: 2.0.0 + + querystring@0.2.1: {} + + querystringify@2.2.0: {} + + queue-microtask@1.2.3: {} + + queue@6.0.2: + dependencies: + inherits: 2.0.4 + + quick-lru@5.1.1: {} + + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + range-parser@1.2.1: {} + + raw-body@2.5.2: + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + + raw-loader@4.0.2(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + + rc@1.2.8: + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + + react-calendar@3.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@wojtekmaj/date-utils': 1.5.1 + get-user-locale: 1.5.1 + merge-class-names: 1.4.2 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-dev-utils@12.0.1(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@babel/code-frame': 7.24.2 + address: 1.1.2 + browserslist: 4.23.0 + chalk: 4.1.2 + cross-spawn: 7.0.3 + detect-port-alt: 1.1.6 + escape-string-regexp: 4.0.0 + filesize: 8.0.7 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)) + global-modules: 2.0.0 + globby: 11.1.0 + gzip-size: 6.0.0 + immer: 9.0.21 + is-root: 2.1.0 + loader-utils: 3.2.1 + open: 8.4.2 + pkg-up: 3.1.0 + prompts: 2.4.2 + react-error-overlay: 6.0.11 + recursive-readdir: 2.2.3 + shell-quote: 1.8.1 + strip-ansi: 6.0.1 + text-table: 0.2.0 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + typescript: 4.9.5 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + + react-devtools-core@5.2.0: + dependencies: + shell-quote: 1.8.1 + ws: 7.5.9 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + + react-error-overlay@6.0.11: {} + + react-fast-compare@3.2.2: {} + + react-helmet@6.1.0(react@18.3.1): + dependencies: + object-assign: 4.1.1 + prop-types: 15.8.1 + react: 18.3.1 + react-fast-compare: 3.2.2 + react-side-effect: 2.1.2(react@18.3.1) + + react-hook-form@7.51.4(react@18.3.1): + dependencies: + react: 18.3.1 + + react-is@16.13.1: {} + + react-is@17.0.2: {} + + react-is@18.3.1: {} + + react-konva@18.2.10(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@types/react-reconciler': 0.28.8 + its-fine: 1.2.5(react@18.3.1) + konva: 9.3.6 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-reconciler: 0.29.2(react@18.3.1) + scheduler: 0.23.2 + + react-lifecycles-compat@3.0.4: {} + + react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1): + dependencies: + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.6 + '@react-native-community/cli-platform-android': 13.6.6 + '@react-native-community/cli-platform-ios': 13.6.6 + '@react-native/assets-registry': 0.74.83 + '@react-native/codegen': 0.74.83(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + '@react-native/community-cli-plugin': 0.74.83(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13)) + '@react-native/gradle-plugin': 0.74.83 + '@react-native/js-polyfills': 0.74.83 + '@react-native/normalize-colors': 0.74.83 + '@react-native/virtualized-lists': 0.74.83(@types/react@18.3.1)(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1) + abort-controller: 3.0.0 + anser: 1.4.10 + ansi-regex: 5.0.1 + base64-js: 1.5.1 + chalk: 4.1.2 + event-target-shim: 5.0.1 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + jest-environment-node: 29.7.0 + jsc-android: 250231.0.0 + memoize-one: 5.2.1 + metro-runtime: 0.80.9 + metro-source-map: 0.80.9 + mkdirp: 0.5.6 + nullthrows: 1.1.1 + pretty-format: 26.6.2 + promise: 8.3.0 + react: 18.3.1 + react-devtools-core: 5.2.0 + react-refresh: 0.14.2 + react-shallow-renderer: 16.15.0(react@18.3.1) + regenerator-runtime: 0.13.11 + scheduler: 0.24.0-canary-efb381bbf-20230505 + stacktrace-parser: 0.1.10 + whatwg-fetch: 3.6.20 + ws: 6.2.2 + yargs: 17.7.2 + optionalDependencies: + '@types/react': 18.3.1 + transitivePeerDependencies: + - '@babel/core' + - '@babel/preset-env' + - bufferutil + - encoding + - supports-color + - utf-8-validate + + react-reconciler@0.27.0(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.21.0 + + react-reconciler@0.29.2(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + + react-redux@8.1.3(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(redux@4.1.2): + dependencies: + '@babel/runtime': 7.24.5 + '@types/hoist-non-react-statics': 3.3.5 + '@types/use-sync-external-store': 0.0.3 + hoist-non-react-statics: 3.3.2 + react: 18.3.1 + react-is: 18.3.1 + use-sync-external-store: 1.2.2(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-native: 0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1) + redux: 4.1.2 + + react-refresh@0.10.0: {} + + react-refresh@0.14.2: {} + + react-responsive@8.2.0(react@18.3.1): + dependencies: + hyphenate-style-name: 1.0.4 + matchmediaquery: 0.3.1 + prop-types: 15.8.1 + react: 18.3.1 + shallow-equal: 1.2.1 + + react-router-dom@6.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@remix-run/router': 1.16.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.23.0(react@18.3.1) + + react-router@6.23.0(react@18.3.1): + dependencies: + '@remix-run/router': 1.16.0 + react: 18.3.1 + + react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825(react@18.3.1)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + acorn: 6.4.2 + loose-envify: 1.4.0 + neo-async: 2.6.2 + react: 18.3.1 + webpack: 5.91.0(@swc/core@1.5.5) + + react-shallow-renderer@16.15.0(react@18.3.1): + dependencies: + object-assign: 4.1.1 + react: 18.3.1 + react-is: 18.3.1 + + react-side-effect@2.1.2(react@18.3.1): + dependencies: + react: 18.3.1 + + react-slick@0.28.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + classnames: 2.5.1 + enquire.js: 2.1.6 + json2mq: 0.2.0 + lodash.debounce: 4.0.8 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + resize-observer-polyfill: 1.5.1 + + react-spring@9.7.3(@react-three/fiber@8.16.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(three@0.164.1))(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react-konva@18.2.10(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react-zdog@1.2.2)(react@18.3.1)(three@0.164.1)(zdog@1.1.3): + dependencies: + '@react-spring/core': 9.7.3(react@18.3.1) + '@react-spring/konva': 9.7.3(konva@9.3.6)(react-konva@18.2.10(konva@9.3.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@react-spring/native': 9.7.3(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1) + '@react-spring/three': 9.7.3(@react-three/fiber@8.16.5(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.12.13)(@babel/preset-env@7.12.13(@babel/core@7.12.13))(@types/react@18.3.1)(react@18.3.1))(react@18.3.1)(three@0.164.1))(react@18.3.1)(three@0.164.1) + '@react-spring/web': 9.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-spring/zdog': 9.7.3(react-dom@18.3.1(react@18.3.1))(react-zdog@1.2.2)(react@18.3.1)(zdog@1.1.3) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@react-three/fiber' + - konva + - react-konva + - react-native + - react-zdog + - three + - zdog + + react-use-measure@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + debounce: 1.2.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-zdog@1.2.2: + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + resize-observer-polyfill: 1.5.1 + + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + + read-cache@1.0.0: + dependencies: + pify: 2.3.0 + + read-pkg@3.0.0: + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + + read@1.0.7: + dependencies: + mute-stream: 0.0.8 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readable-web-to-node-stream@3.0.2: + dependencies: + readable-stream: 3.6.2 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + readline@1.3.0: {} + + recast@0.20.5: + dependencies: + ast-types: 0.14.2 + esprima: 4.0.1 + source-map: 0.6.1 + tslib: 2.6.2 + + recast@0.21.5: + dependencies: + ast-types: 0.15.2 + esprima: 4.0.1 + source-map: 0.6.1 + tslib: 2.6.2 + + recursive-readdir@2.2.3: + dependencies: + minimatch: 3.1.2 + + redux-persist@6.0.0(react@18.3.1)(redux@4.1.2): + dependencies: + redux: 4.1.2 + optionalDependencies: + react: 18.3.1 + + redux-thunk@2.4.2(redux@4.1.2): + dependencies: + redux: 4.1.2 + + redux@4.1.2: + dependencies: + '@babel/runtime': 7.24.5 + + reflect.getprototypeof@1.0.6: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + globalthis: 1.0.4 + which-builtin-type: 1.1.3 + + regenerate-unicode-properties@10.1.1: + dependencies: + regenerate: 1.4.2 + + regenerate@1.4.2: {} + + regenerator-runtime@0.11.1: {} + + regenerator-runtime@0.13.11: {} + + regenerator-runtime@0.14.1: {} + + regenerator-transform@0.15.2: + dependencies: + '@babel/runtime': 7.24.5 + + regex-not@1.0.2: + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 + + regexp.prototype.flags@1.5.2: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + + regexpp@3.2.0: {} + + regexpu-core@5.3.2: + dependencies: + '@babel/regjsgen': 0.8.0 + regenerate: 1.4.2 + regenerate-unicode-properties: 10.1.1 + regjsparser: 0.9.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + + registry-auth-token@4.2.2: + dependencies: + rc: 1.2.8 + + registry-url@5.1.0: + dependencies: + rc: 1.2.8 + + regjsparser@0.9.1: + dependencies: + jsesc: 0.5.0 + + relay-runtime@12.0.0: + dependencies: + '@babel/runtime': 7.24.5 + fbjs: 3.0.5 + invariant: 2.2.4 + transitivePeerDependencies: + - encoding + + remark-footnotes@2.0.0: {} + + remark-mdx@1.6.22: + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9) + '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) + '@mdx-js/util': 1.6.22 + is-alphabetical: 1.0.4 + remark-parse: 8.0.3 + unified: 9.2.0 + transitivePeerDependencies: + - supports-color + + remark-parse@6.0.3: + dependencies: + collapse-white-space: 1.0.6 + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + is-word-character: 1.0.4 + markdown-escapes: 1.0.4 + parse-entities: 1.2.2 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + trim: 0.0.1 + trim-trailing-lines: 1.1.4 + unherit: 1.1.3 + unist-util-remove-position: 1.1.4 + vfile-location: 2.0.6 + xtend: 4.0.2 + + remark-parse@8.0.3: + dependencies: + ccount: 1.1.0 + collapse-white-space: 1.0.6 + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + is-word-character: 1.0.4 + markdown-escapes: 1.0.4 + parse-entities: 2.0.0 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + trim: 0.0.1 + trim-trailing-lines: 1.1.4 + unherit: 1.1.3 + unist-util-remove-position: 2.0.1 + vfile-location: 3.2.0 + xtend: 4.0.2 + + remark-retext@3.1.3: + dependencies: + mdast-util-to-nlcst: 3.2.3 + + remark-squeeze-paragraphs@4.0.0: + dependencies: + mdast-squeeze-paragraphs: 4.0.0 + + remark-stringify@6.0.4: + dependencies: + ccount: 1.1.0 + is-alphanumeric: 1.0.0 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + longest-streak: 2.0.4 + markdown-escapes: 1.0.4 + markdown-table: 1.1.3 + mdast-util-compact: 1.0.4 + parse-entities: 1.2.2 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + stringify-entities: 1.3.2 + unherit: 1.1.3 + xtend: 4.0.2 + + remark@10.0.1: + dependencies: + remark-parse: 6.0.3 + remark-stringify: 6.0.4 + unified: 7.1.0 + + remove-trailing-separator@1.1.0: {} + + renderkid@2.0.7: + dependencies: + css-select: 4.3.0 + dom-converter: 0.2.0 + htmlparser2: 6.1.0 + lodash: 4.17.21 + strip-ansi: 3.0.1 + + repeat-element@1.1.4: {} + + repeat-string@1.6.1: {} + + replace-ext@1.0.0: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + require-like@0.1.2: {} + + require-main-filename@2.0.0: {} + + require-package-name@2.0.1: {} + + requires-port@1.0.0: {} + + resize-observer-polyfill@1.5.1: {} + + resolve-alpn@1.2.1: {} + + resolve-cwd@3.0.0: + dependencies: + resolve-from: 5.0.0 + + resolve-from@3.0.0: {} + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-url@0.2.1: {} + + resolve.exports@1.1.0: {} + + resolve@1.20.0: + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + + resolve@1.22.8: + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resolve@2.0.0-next.5: + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + responselike@1.0.2: + dependencies: + lowercase-keys: 1.0.1 + + responselike@2.0.1: + dependencies: + lowercase-keys: 2.0.0 + + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + ret@0.1.15: {} + + retext-english@3.0.4: + dependencies: + parse-english: 4.2.0 + unherit: 1.1.3 + + retry@0.12.0: {} + + retry@0.13.1: {} + + reusify@1.0.4: {} + + rimraf@2.6.3: + dependencies: + glob: 7.2.3 + + rimraf@2.7.1: + dependencies: + glob: 7.2.3 + + rimraf@3.0.2: + dependencies: + glob: 7.2.3 + + rollup-plugin-copy@3.5.0: + dependencies: + '@types/fs-extra': 8.1.5 + colorette: 1.4.0 + fs-extra: 8.1.0 + globby: 10.0.1 + is-plain-object: 3.0.1 + + rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): + dependencies: + rollup: 2.79.1 + + rollup-plugin-postcss@4.0.2(postcss@8.3.0)(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + chalk: 4.1.0 + concat-with-sourcemaps: 1.1.0 + cssnano: 5.1.15(postcss@8.3.0) + import-cwd: 3.0.0 + p-queue: 6.6.2 + pify: 5.0.0 + postcss: 8.3.0 + postcss-load-config: 3.1.4(postcss@8.3.0)(ts-node@9.1.1(typescript@4.9.5)) + postcss-modules: 4.3.1(postcss@8.3.0) + promise.series: 0.2.0 + resolve: 1.22.8 + rollup-pluginutils: 2.8.2 + safe-identifier: 0.4.2 + style-inject: 0.3.0 + transitivePeerDependencies: + - ts-node + + rollup-plugin-postcss@4.0.2(postcss@8.4.38)(ts-node@9.1.1(typescript@4.9.5)): + dependencies: + chalk: 4.1.0 + concat-with-sourcemaps: 1.1.0 + cssnano: 5.1.15(postcss@8.4.38) + import-cwd: 3.0.0 + p-queue: 6.6.2 + pify: 5.0.0 + postcss: 8.4.38 + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@9.1.1(typescript@4.9.5)) + postcss-modules: 4.3.1(postcss@8.4.38) + promise.series: 0.2.0 + resolve: 1.22.8 + rollup-pluginutils: 2.8.2 + safe-identifier: 0.4.2 + style-inject: 0.3.0 + transitivePeerDependencies: + - ts-node + + rollup-plugin-typescript2@0.30.0(rollup@2.79.1)(typescript@4.9.5): + dependencies: + '@rollup/pluginutils': 4.2.1 + find-cache-dir: 3.3.2 + fs-extra: 8.1.0 + resolve: 1.20.0 + rollup: 2.79.1 + tslib: 2.1.0 + typescript: 4.9.5 + + rollup-plugin-typescript2@0.31.2(rollup@2.79.1)(typescript@4.9.5): + dependencies: + '@rollup/pluginutils': 4.2.1 + '@yarn-tool/resolve-package': 1.0.47 + find-cache-dir: 3.3.2 + fs-extra: 10.1.0 + resolve: 1.22.8 + rollup: 2.79.1 + tslib: 2.6.2 + typescript: 4.9.5 + + rollup-pluginutils@2.8.2: + dependencies: + estree-walker: 0.6.1 + + rollup@2.79.1: + optionalDependencies: + fsevents: 2.3.3 + + run-async@2.4.1: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rxjs-for-await@0.0.2(rxjs@6.6.7): + dependencies: + rxjs: 6.6.7 + + rxjs@6.6.7: + dependencies: + tslib: 1.14.1 + + safe-array-concat@1.1.2: + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-identifier@0.4.2: {} + + safe-regex-test@1.0.3: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-regex: 1.1.4 + + safe-regex@1.1.0: + dependencies: + ret: 0.1.15 + + safer-buffer@2.1.2: {} + + sass-loader@12.6.0(sass@1.77.0)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + klona: 2.0.6 + neo-async: 2.6.2 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + sass: 1.77.0 + + sass@1.77.0: + dependencies: + chokidar: 3.6.0 + immutable: 4.3.5 + source-map-js: 1.2.0 + + sax@1.2.4: {} + + sax@1.3.0: {} + + saxes@5.0.1: + dependencies: + xmlchars: 2.2.0 + + scheduler@0.21.0: + dependencies: + loose-envify: 1.4.0 + + scheduler@0.23.2: + dependencies: + loose-envify: 1.4.0 + + scheduler@0.24.0-canary-efb381bbf-20230505: + dependencies: + loose-envify: 1.4.0 + + schema-utils@2.7.0: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + + schema-utils@2.7.1: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + + schema-utils@3.3.0: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + + schema-utils@4.2.0: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 8.13.0 + ajv-formats: 2.1.1(ajv@8.13.0) + ajv-keywords: 5.1.0(ajv@8.13.0) + + section-matter@1.0.0: + dependencies: + extend-shallow: 2.0.1 + kind-of: 6.0.3 + + secure-compare@3.0.1: {} + + select-hose@2.0.0: {} + + selfsigned@2.4.1: + dependencies: + '@types/node-forge': 1.3.11 + node-forge: 1.3.1 + + semver-diff@3.1.1: + dependencies: + semver: 6.3.1 + + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.0.0: {} + + semver@7.3.4: + dependencies: + lru-cache: 6.0.0 + + semver@7.6.1: {} + + send@0.18.0: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + + sentence-case@2.1.1: + dependencies: + no-case: 2.3.2 + upper-case-first: 1.1.2 + + sentence-case@3.0.4: + dependencies: + no-case: 3.0.4 + tslib: 2.4.1 + upper-case-first: 2.0.2 + + serialize-error@2.1.0: {} + + serialize-javascript@5.0.1: + dependencies: + randombytes: 2.1.0 + + serialize-javascript@6.0.2: + dependencies: + randombytes: 2.1.0 + + serve-index@1.9.1: + dependencies: + accepts: 1.3.8 + batch: 0.6.1 + debug: 2.6.9 + escape-html: 1.0.3 + http-errors: 1.6.3 + mime-types: 2.1.35 + parseurl: 1.3.3 + transitivePeerDependencies: + - supports-color + + serve-static@1.15.0: + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0 + transitivePeerDependencies: + - supports-color + + set-blocking@2.0.0: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-value@2.0.1: + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + + setimmediate@1.0.5: {} + + setprototypeof@1.1.0: {} + + setprototypeof@1.2.0: {} + + shallow-clone@3.0.1: + dependencies: + kind-of: 6.0.3 + + shallow-compare@1.2.2: {} + + shallow-equal@1.2.1: {} + + shallowequal@1.1.0: {} + + sharp@0.30.7: + dependencies: + color: 4.2.3 + detect-libc: 2.0.3 + node-addon-api: 5.1.0 + prebuild-install: 7.1.2 + semver: 7.6.1 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + shell-quote@1.8.1: {} + + side-channel@1.0.6: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.1 + + signal-exit@3.0.7: {} + + signedsource@1.0.0: {} + + simple-concat@1.0.1: {} + + simple-get@4.0.1: + dependencies: + decompress-response: 6.0.0 + once: 1.4.0 + simple-concat: 1.0.1 + + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + + sisteransi@1.0.5: {} + + slash@3.0.0: {} + + slice-ansi@2.1.0: + dependencies: + ansi-styles: 3.2.1 + astral-regex: 1.0.0 + is-fullwidth-code-point: 2.0.0 + + slice-ansi@4.0.0: + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + + slugify@1.6.6: {} + + snake-case@2.1.0: + dependencies: + no-case: 2.3.2 + + snake-case@3.0.4: + dependencies: + dot-case: 3.0.4 + tslib: 2.4.1 + + snapdragon-node@2.1.1: + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + + snapdragon-util@3.0.1: + dependencies: + kind-of: 3.2.2 + + snapdragon@0.8.2: + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + + socket.io-adapter@2.4.0: {} + + socket.io-client@4.5.4: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4 + engine.io-client: 6.2.3 + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-parser@4.2.4: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + socket.io@4.5.4: + dependencies: + accepts: 1.3.8 + base64id: 2.0.0 + debug: 4.3.4 + engine.io: 6.2.1 + socket.io-adapter: 2.4.0 + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + sockjs@0.3.24: + dependencies: + faye-websocket: 0.11.4 + uuid: 8.3.2 + websocket-driver: 0.7.4 + + source-list-map@1.1.2: {} + + source-list-map@2.0.1: {} + + source-map-js@0.6.2: {} + + source-map-js@1.2.0: {} + + source-map-loader@3.0.2(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + abab: 2.0.6 + iconv-lite: 0.6.3 + source-map-js: 1.2.0 + webpack: 5.91.0(@swc/core@1.5.5) + + source-map-resolve@0.5.3: + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + + source-map-resolve@0.6.0: + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 + + source-map-support@0.5.13: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map-support@0.5.19: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map-url@0.4.1: {} + + source-map@0.5.7: {} + + source-map@0.6.1: {} + + source-map@0.7.3: {} + + source-map@0.7.4: {} + + sourcemap-codec@1.4.8: {} + + space-separated-tokens@1.1.5: {} + + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.17 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.17 + + spdx-license-ids@3.0.17: {} + + spdy-transport@3.0.0: + dependencies: + debug: 4.3.4 + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.2 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color + + spdy@4.0.2: + dependencies: + debug: 4.3.4 + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0 + transitivePeerDependencies: + - supports-color + + split-on-first@1.1.0: {} + + split-string@3.1.0: + dependencies: + extend-shallow: 3.0.2 + + sponge-case@1.0.1: + dependencies: + tslib: 2.4.1 + + sprintf-js@1.0.3: {} + + sprintf-js@1.1.3: {} + + st@2.0.0: + dependencies: + async-cache: 1.1.0 + bl: 4.1.0 + fd: 0.0.3 + mime: 2.6.0 + negotiator: 0.6.3 + optionalDependencies: + graceful-fs: 4.2.11 + + stable@0.1.8: {} + + stack-trace@0.0.10: {} + + stack-utils@2.0.6: + dependencies: + escape-string-regexp: 2.0.0 + + stackframe@1.3.4: {} + + stacktrace-parser@0.1.10: + dependencies: + type-fest: 0.7.1 + + state-toggle@1.0.3: {} + + static-extend@0.1.2: + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + + static-site-generator-webpack-plugin@3.4.2: + dependencies: + bluebird: 3.7.2 + cheerio: 0.22.0 + eval: 0.1.8 + url: 0.11.3 + webpack-sources: 0.2.3 + + statuses@1.5.0: {} + + statuses@2.0.1: {} + + stream-parser@0.3.1: + dependencies: + debug: 2.6.9 + transitivePeerDependencies: + - supports-color + + streamsearch@1.1.0: {} + + strict-uri-encode@2.0.0: {} + + string-convert@0.2.1: {} + + string-hash@1.1.3: {} + + string-length@4.0.2: + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + + string-natural-compare@3.0.1: {} + + string-similarity@1.2.2: + dependencies: + lodash.every: 4.6.0 + lodash.flattendeep: 4.4.0 + lodash.foreach: 4.5.0 + lodash.map: 4.6.0 + lodash.maxby: 4.6.0 + + string-width@1.0.2: + dependencies: + code-point-at: 1.1.0 + is-fullwidth-code-point: 1.0.0 + strip-ansi: 3.0.1 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string.prototype.matchall@4.0.11: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + regexp.prototype.flags: 1.5.2 + set-function-name: 2.0.2 + side-channel: 1.0.6 + + string.prototype.padend@3.1.6: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + + string.prototype.trim@1.2.9: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + + string.prototype.trimend@1.0.8: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + stringify-entities@1.3.2: + dependencies: + character-entities-html4: 1.1.4 + character-entities-legacy: 1.1.4 + is-alphanumerical: 1.0.4 + is-hexadecimal: 1.0.4 + + stringify-object@3.3.0: + dependencies: + get-own-enumerable-property-symbols: 3.0.2 + is-obj: 1.0.1 + is-regexp: 1.0.0 + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + strip-ansi@5.2.0: + dependencies: + ansi-regex: 4.1.1 + + strip-ansi@6.0.0: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-bom-string@1.0.0: {} + + strip-bom@3.0.0: {} + + strip-bom@4.0.0: {} + + strip-comments@1.0.2: + dependencies: + babel-extract-comments: 1.0.0 + babel-plugin-transform-object-rest-spread: 6.26.0 + + strip-eof@1.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-json-comments@2.0.1: {} + + strip-json-comments@3.1.1: {} + + strip-outer@1.0.1: + dependencies: + escape-string-regexp: 1.0.5 + + strnum@1.0.5: {} + + strong-log-transformer@2.1.0: + dependencies: + duplexer: 0.1.2 + minimist: 1.2.8 + through: 2.3.8 + + strtok3@6.3.0: + dependencies: + '@tokenizer/token': 0.3.0 + peek-readable: 4.1.0 + + style-inject@0.3.0: {} + + style-loader@2.0.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + + style-loader@3.3.4(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + webpack: 5.91.0(@swc/core@1.5.5) + + style-to-object@0.3.0: + dependencies: + inline-style-parser: 0.1.1 + + styled-components@6.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@emotion/is-prop-valid': 1.2.2 + '@emotion/unitless': 0.8.1 + '@types/stylis': 4.2.5 + css-to-react-native: 3.2.0 + csstype: 3.1.3 + postcss: 8.4.38 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + shallowequal: 1.1.0 + stylis: 4.3.2 + tslib: 2.6.2 + + stylehacks@5.1.1(postcss@8.3.0): + dependencies: + browserslist: 4.23.0 + postcss: 8.3.0 + postcss-selector-parser: 6.0.16 + + stylehacks@5.1.1(postcss@8.4.38): + dependencies: + browserslist: 4.23.0 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + + stylis@4.3.2: {} + + stylus-loader@6.2.0(stylus@0.55.0)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + fast-glob: 3.3.2 + klona: 2.0.6 + normalize-path: 3.0.0 + stylus: 0.55.0 + webpack: 5.91.0(@swc/core@1.5.5) + + stylus@0.55.0: + dependencies: + css: 3.0.0 + debug: 3.1.0 + glob: 7.2.3 + mkdirp: 1.0.4 + safer-buffer: 2.1.2 + sax: 1.2.4 + semver: 6.3.1 + source-map: 0.7.3 + transitivePeerDependencies: + - supports-color + + sudo-prompt@8.2.5: {} + + sudo-prompt@9.2.1: {} + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-color@8.1.1: + dependencies: + has-flag: 4.0.0 + + supports-hyperlinks@2.3.0: + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + suspend-react@0.1.3(react@18.3.1): + dependencies: + react: 18.3.1 + + svg-parser@2.0.4: {} + + svgo@1.3.2: + dependencies: + chalk: 2.4.2 + coa: 2.0.2 + css-select: 2.1.0 + css-select-base-adapter: 0.1.1 + css-tree: 1.0.0-alpha.37 + csso: 4.2.0 + js-yaml: 3.14.1 + mkdirp: 0.5.6 + object.values: 1.2.0 + sax: 1.2.4 + stable: 0.1.8 + unquote: 1.1.1 + util.promisify: 1.0.1 + + svgo@2.8.0: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.0.0 + stable: 0.1.8 + + swap-case@1.1.2: + dependencies: + lower-case: 1.1.4 + upper-case: 1.1.3 + + swap-case@2.0.2: + dependencies: + tslib: 2.4.1 + + symbol-tree@3.2.4: {} + + table@6.8.2: + dependencies: + ajv: 8.13.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + tapable@1.1.3: {} + + tapable@2.2.1: {} + + tar-fs@2.1.1: + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 2.2.0 + + tar-stream@2.2.0: + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + + temp-dir@2.0.0: {} + + temp@0.8.4: + dependencies: + rimraf: 2.6.3 + + term-size@2.2.1: {} + + terminal-link@2.1.1: + dependencies: + ansi-escapes: 4.3.2 + supports-hyperlinks: 2.3.0 + + terser-webpack-plugin@5.3.10(@swc/core@1.5.5)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + terser: 5.31.0 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + '@swc/core': 1.5.5 + + terser@4.3.8: + dependencies: + acorn: 8.11.3 + commander: 2.20.3 + source-map: 0.6.1 + source-map-support: 0.5.21 + + terser@5.31.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.11.3 + commander: 2.20.3 + source-map-support: 0.5.21 + + test-exclude@6.0.0: + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + + text-table@0.2.0: {} + + three@0.164.1: {} + + throat@5.0.0: {} + + throat@6.0.2: {} + + through2@2.0.5: + dependencies: + readable-stream: 2.3.8 + xtend: 4.0.2 + + through@2.3.8: {} + + thunky@1.1.0: {} + + timers-ext@0.1.7: + dependencies: + es5-ext: 0.10.64 + next-tick: 1.1.0 + + title-case@2.1.1: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + title-case@3.0.3: + dependencies: + tslib: 2.4.1 + + tmp@0.0.33: + dependencies: + os-tmpdir: 1.0.2 + + tmp@0.2.3: {} + + tmpl@1.0.5: {} + + to-fast-properties@2.0.0: {} + + to-object-path@0.3.0: + dependencies: + kind-of: 3.2.2 + + to-readable-stream@1.0.0: {} + + to-regex-range@2.1.1: + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + to-regex@3.0.2: + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + + toidentifier@1.0.0: {} + + toidentifier@1.0.1: {} + + token-types@4.2.1: + dependencies: + '@tokenizer/token': 0.3.0 + ieee754: 1.2.1 + + tough-cookie@4.1.4: + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + + tr46@0.0.3: {} + + tr46@2.1.0: + dependencies: + punycode: 2.3.1 + + tree-kill@1.2.2: {} + + trim-repeated@1.0.0: + dependencies: + escape-string-regexp: 1.0.5 + + trim-trailing-lines@1.1.4: {} + + trim@0.0.1: {} + + trough@1.0.5: {} + + true-case-path@2.2.1: {} + + ts-loader@9.5.1(typescript@4.9.5)(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + chalk: 4.1.2 + enhanced-resolve: 5.16.1 + micromatch: 4.0.5 + semver: 7.3.4 + source-map: 0.7.4 + typescript: 4.9.5 + webpack: 5.91.0(@swc/core@1.5.5) + + ts-node@9.1.1(typescript@4.9.5): + dependencies: + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + source-map-support: 0.5.21 + typescript: 4.9.5 + yn: 3.1.1 + + tsconfig-paths-webpack-plugin@3.4.1: + dependencies: + chalk: 4.1.0 + enhanced-resolve: 5.16.1 + tsconfig-paths: 3.15.0 + + tsconfig-paths-webpack-plugin@3.5.2: + dependencies: + chalk: 4.1.2 + enhanced-resolve: 5.16.1 + tsconfig-paths: 3.15.0 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tslib@1.14.1: {} + + tslib@2.1.0: {} + + tslib@2.4.1: {} + + tslib@2.6.2: {} + + tsutils@3.21.0(typescript@4.9.5): + dependencies: + tslib: 1.14.1 + typescript: 4.9.5 + + tunnel-agent@0.6.0: + dependencies: + safe-buffer: 5.2.1 + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-detect@4.0.8: {} + + type-fest@0.20.2: {} + + type-fest@0.21.3: {} + + type-fest@0.7.1: {} + + type-fest@0.8.1: {} + + type-is@1.6.18: + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + + type-of@2.0.1: {} + + type@2.7.2: {} + + typed-array-buffer@1.0.2: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 + + typed-array-byte-length@1.0.1: + dependencies: + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 + + typed-array-byte-offset@1.0.2: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 + + typed-array-length@1.0.6: + dependencies: + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 + + typed-assert@1.0.9: {} + + typedarray-to-buffer@3.1.5: + dependencies: + is-typedarray: 1.0.0 + + typedarray@0.0.6: {} + + typescript@4.9.5: {} + + ua-parser-js@1.0.37: {} + + unbox-primitive@1.0.2: + dependencies: + call-bind: 1.0.7 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + + unc-path-regex@0.1.2: {} + + underscore.string@3.3.6: + dependencies: + sprintf-js: 1.1.3 + util-deprecate: 1.0.2 + + undici-types@5.26.5: {} + + unherit@1.1.3: + dependencies: + inherits: 2.0.4 + xtend: 4.0.2 + + unicode-canonical-property-names-ecmascript@2.0.0: {} + + unicode-match-property-ecmascript@2.0.0: + 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-property-aliases-ecmascript@2.1.0: {} + + unified@7.1.0: + dependencies: + '@types/unist': 2.0.10 + '@types/vfile': 3.0.2 + bail: 1.0.5 + extend: 3.0.2 + is-plain-obj: 1.1.0 + trough: 1.0.5 + vfile: 3.0.1 + x-is-string: 0.1.0 + + unified@8.4.2: + dependencies: + '@types/unist': 2.0.10 + bail: 1.0.5 + extend: 3.0.2 + is-plain-obj: 2.1.0 + trough: 1.0.5 + vfile: 4.2.1 + + unified@9.2.0: + dependencies: + '@types/unist': 2.0.10 + bail: 1.0.5 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 2.1.0 + trough: 1.0.5 + vfile: 4.2.1 + + union-value@1.0.1: + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + + union@0.5.0: + dependencies: + qs: 6.12.1 + + unique-string@2.0.0: + dependencies: + crypto-random-string: 2.0.0 + + unist-builder@2.0.3: {} + + unist-util-generated@1.1.6: {} + + unist-util-is@2.1.3: {} + + unist-util-is@3.0.0: {} + + unist-util-is@4.1.0: {} + + unist-util-map@1.0.5: + dependencies: + object-assign: 4.1.1 + + unist-util-modify-children@2.0.0: + dependencies: + array-iterate: 1.1.4 + + unist-util-position@3.1.0: {} + + unist-util-remove-position@1.1.4: + dependencies: + unist-util-visit: 1.4.1 + + unist-util-remove-position@2.0.1: + dependencies: + unist-util-visit: 2.0.3 + + unist-util-remove@1.0.3: + dependencies: + unist-util-is: 3.0.0 + + unist-util-remove@2.1.0: + dependencies: + unist-util-is: 4.1.0 + + unist-util-stringify-position@1.1.2: {} + + unist-util-stringify-position@2.0.3: + dependencies: + '@types/unist': 2.0.10 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.2 + + unist-util-visit-children@1.1.4: {} + + unist-util-visit-parents@2.1.2: + dependencies: + unist-util-is: 3.0.0 + + unist-util-visit-parents@3.1.1: + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 4.1.0 + + unist-util-visit@1.4.1: + dependencies: + unist-util-visit-parents: 2.1.2 + + unist-util-visit@2.0.3: + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 4.1.0 + unist-util-visit-parents: 3.1.1 + + universalify@0.1.2: {} + + universalify@0.2.0: {} + + universalify@2.0.1: {} + + unixify@1.0.0: + dependencies: + normalize-path: 2.1.1 + + unpipe@1.0.0: {} + + unquote@1.1.1: {} + + unset-value@1.0.0: + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + + upath2@3.1.19: + dependencies: + '@types/node': 20.12.11 + path-is-network-drive: 1.0.20 + path-strip-sep: 1.0.17 + tslib: 2.6.2 + + update-browserslist-db@1.0.15(browserslist@4.23.0): + dependencies: + browserslist: 4.23.0 + escalade: 3.1.2 + picocolors: 1.0.0 + + update-notifier@5.1.0: + dependencies: + boxen: 5.1.2 + chalk: 4.1.2 + configstore: 5.0.1 + has-yarn: 2.1.0 + import-lazy: 2.1.0 + is-ci: 2.0.0 + is-installed-globally: 0.4.0 + is-npm: 5.0.0 + is-yarn-global: 0.3.0 + latest-version: 5.1.0 + pupa: 2.1.1 + semver: 7.6.1 + semver-diff: 3.1.1 + xdg-basedir: 4.0.0 + + upper-case-first@1.1.2: + dependencies: + upper-case: 1.1.3 + + upper-case-first@2.0.2: + dependencies: + tslib: 2.4.1 + + upper-case@1.1.3: {} + + upper-case@2.0.2: + dependencies: + tslib: 2.4.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + urix@0.1.0: {} + + url-join@2.0.5: {} + + url-join@4.0.1: {} + + url-loader@4.1.1(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.5)))(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 2.0.4 + mime-types: 2.1.35 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + optionalDependencies: + file-loader: 6.2.0(webpack@5.91.0(@swc/core@1.5.5)) + + url-parse-lax@3.0.0: + dependencies: + prepend-http: 2.0.0 + + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + + url@0.11.3: + dependencies: + punycode: 1.4.1 + qs: 6.12.1 + + use-sync-external-store@1.2.2(react@18.3.1): + dependencies: + react: 18.3.1 + + use@3.1.1: {} + + util-deprecate@1.0.2: {} + + util.promisify@1.0.1: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.3 + has-symbols: 1.0.3 + object.getownpropertydescriptors: 2.1.8 + + utila@0.4.0: {} + + utility-types@3.11.0: {} + + utils-merge@1.0.1: {} + + uuid@8.3.2: {} + + v8-compile-cache@2.3.0: {} + + v8-compile-cache@2.4.0: {} + + v8-to-istanbul@8.1.1: + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 1.9.0 + source-map: 0.7.4 + + v8-to-istanbul@9.2.0: + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 + + valid-url@1.0.9: {} + + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + + value-or-promise@1.0.12: {} + + vary@1.1.2: {} + + vfile-location@2.0.6: {} + + vfile-location@3.2.0: {} + + vfile-message@1.1.1: + dependencies: + unist-util-stringify-position: 1.1.2 + + vfile-message@2.0.4: + dependencies: + '@types/unist': 2.0.10 + unist-util-stringify-position: 2.0.3 + + vfile-message@4.0.2: + dependencies: + '@types/unist': 3.0.2 + unist-util-stringify-position: 4.0.0 + + vfile@3.0.1: + dependencies: + is-buffer: 2.0.5 + replace-ext: 1.0.0 + unist-util-stringify-position: 1.1.2 + vfile-message: 1.1.1 + + vfile@4.2.1: + dependencies: + '@types/unist': 2.0.10 + is-buffer: 2.0.5 + unist-util-stringify-position: 2.0.3 + vfile-message: 2.0.4 + + vlq@1.0.1: {} + + w3c-hr-time@1.0.2: + dependencies: + browser-process-hrtime: 1.0.0 + + w3c-xmlserializer@2.0.0: + dependencies: + xml-name-validator: 3.0.0 + + walker@1.0.8: + dependencies: + makeerror: 1.0.12 + + watchpack@2.4.1: + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + + wbuf@1.7.3: + dependencies: + minimalistic-assert: 1.0.1 + + wcwidth@1.0.1: + dependencies: + defaults: 1.0.4 + + weak-lru-cache@1.2.2: {} + + web-namespaces@1.1.4: {} + + webfontloader@1.6.28: {} + + webidl-conversions@3.0.1: {} + + webidl-conversions@5.0.0: {} + + webidl-conversions@6.1.0: {} + + webpack-dev-middleware@4.3.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + colorette: 1.4.0 + mem: 8.1.1 + memfs: 3.5.3 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 3.3.0 + webpack: 5.91.0(@swc/core@1.5.5) + + webpack-dev-middleware@5.3.4(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + colorette: 2.0.20 + memfs: 3.5.3 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.2.0 + webpack: 5.91.0(@swc/core@1.5.5) + + webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.7 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.10 + ansi-html-community: 0.0.8 + bonjour-service: 1.2.1 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.19.2 + graceful-fs: 4.2.11 + html-entities: 2.5.2 + http-proxy-middleware: 2.0.6(@types/express@4.17.21) + ipaddr.js: 2.2.0 + launch-editor: 2.6.1 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.2.0 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack-dev-middleware: 5.3.4(webpack@5.91.0(@swc/core@1.5.5)) + ws: 8.17.0 + optionalDependencies: + webpack: 5.91.0(@swc/core@1.5.5) + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + + webpack-merge@5.10.0: + dependencies: + clone-deep: 4.0.1 + flat: 5.0.2 + wildcard: 2.0.1 + + webpack-node-externals@3.0.0: {} + + webpack-sources@0.2.3: + dependencies: + source-list-map: 1.1.2 + source-map: 0.5.7 + + webpack-sources@1.4.3: + dependencies: + source-list-map: 2.0.1 + source-map: 0.6.1 + + webpack-sources@3.2.3: {} + + webpack-stats-plugin@1.1.3: {} + + webpack-subresource-integrity@1.5.2(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + webpack: 5.91.0(@swc/core@1.5.5) + webpack-sources: 1.4.3 + + webpack-subresource-integrity@5.1.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + typed-assert: 1.0.9 + webpack: 5.91.0(@swc/core@1.5.5) + + webpack-virtual-modules@0.3.2: + dependencies: + debug: 3.2.7 + transitivePeerDependencies: + - supports-color + + webpack@5.91.0(@swc/core@1.5.5): + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + acorn: 8.11.3 + acorn-import-assertions: 1.9.0(acorn@8.11.3) + browserslist: 4.23.0 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.16.1 + es-module-lexer: 1.5.2 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.10(@swc/core@1.5.5)(webpack@5.91.0(@swc/core@1.5.5)) + watchpack: 2.4.1 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + + websocket-driver@0.7.4: + dependencies: + http-parser-js: 0.5.8 + safe-buffer: 5.2.1 + websocket-extensions: 0.1.4 + + websocket-extensions@0.1.4: {} + + whatwg-encoding@1.0.5: + dependencies: + iconv-lite: 0.4.24 + + whatwg-encoding@2.0.0: + dependencies: + iconv-lite: 0.6.3 + + whatwg-fetch@3.6.20: {} + + whatwg-mimetype@2.3.0: {} + + whatwg-url@5.0.0: + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + whatwg-url@8.7.0: + dependencies: + lodash: 4.17.21 + tr46: 2.1.0 + webidl-conversions: 6.1.0 + + which-boxed-primitive@1.0.2: + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + + which-builtin-type@1.1.3: + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.2 + which-typed-array: 1.1.15 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.3 + + which-module@2.0.1: {} + + which-typed-array@1.1.15: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.2 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + wide-align@1.1.5: + dependencies: + string-width: 1.0.2 + + widest-line@3.1.0: + dependencies: + string-width: 4.2.3 + + wildcard@2.0.1: {} + + word-wrap@1.2.5: {} + + workbox-background-sync@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-broadcast-update@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-build@4.3.1: + dependencies: + '@babel/runtime': 7.24.5 + '@hapi/joi': 15.1.1 + common-tags: 1.8.2 + fs-extra: 4.0.3 + glob: 7.2.3 + lodash.template: 4.5.0 + pretty-bytes: 5.6.0 + stringify-object: 3.3.0 + strip-comments: 1.0.2 + workbox-background-sync: 4.3.1 + workbox-broadcast-update: 4.3.1 + workbox-cacheable-response: 4.3.1 + workbox-core: 4.3.1 + workbox-expiration: 4.3.1 + workbox-google-analytics: 4.3.1 + workbox-navigation-preload: 4.3.1 + workbox-precaching: 4.3.1 + workbox-range-requests: 4.3.1 + workbox-routing: 4.3.1 + workbox-strategies: 4.3.1 + workbox-streams: 4.3.1 + workbox-sw: 4.3.1 + workbox-window: 4.3.1 + + workbox-cacheable-response@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-core@4.3.1: {} + + workbox-expiration@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-google-analytics@4.3.1: + dependencies: + workbox-background-sync: 4.3.1 + workbox-core: 4.3.1 + workbox-routing: 4.3.1 + workbox-strategies: 4.3.1 + + workbox-navigation-preload@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-precaching@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-range-requests@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-routing@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-strategies@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-streams@4.3.1: + dependencies: + workbox-core: 4.3.1 + + workbox-sw@4.3.1: {} + + workbox-window@4.3.1: + dependencies: + workbox-core: 4.3.1 + + worker-plugin@3.2.0(webpack@5.91.0(@swc/core@1.5.5)): + dependencies: + loader-utils: 1.2.3 + webpack: 5.91.0(@swc/core@1.5.5) + + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrappy@1.0.2: {} + + write-file-atomic@2.4.3: + dependencies: + graceful-fs: 4.2.11 + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + + write-file-atomic@3.0.3: + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + + write-file-atomic@4.0.2: + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + + ws@6.2.2: + dependencies: + async-limiter: 1.0.1 + + ws@7.5.9: {} + + ws@8.17.0: {} + + ws@8.2.3: {} + + x-is-string@0.1.0: {} + + xdg-basedir@4.0.0: {} + + xml-name-validator@3.0.0: {} + + xmlchars@2.2.0: {} + + xmlhttprequest-ssl@2.0.0: {} + + xss@1.0.15: + dependencies: + commander: 2.20.3 + cssfilter: 0.0.10 + + xstate@4.32.1: {} + + xtend@4.0.2: {} + + xxhash-wasm@0.4.2: {} + + y18n@4.0.3: {} + + y18n@5.0.8: {} + + yallist@2.1.2: {} + + yallist@3.1.1: {} + + yallist@4.0.0: {} + + yaml-loader@0.8.1: + dependencies: + javascript-stringify: 2.1.0 + loader-utils: 2.0.4 + yaml: 2.4.2 + + yaml@1.10.2: {} + + yaml@2.4.2: {} + + yargs-parser@18.1.3: + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + + yargs-parser@20.0.0: {} + + yargs-parser@21.0.1: {} + + yargs-parser@21.1.1: {} + + yargs@15.4.1: + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 18.1.3 + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.1.2 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yn@3.1.1: {} + + yocto-queue@0.1.0: {} + + yoga-layout-prebuilt@1.10.0: + dependencies: + '@types/yoga-layout': 1.9.2 + + yurnalist@2.1.0: + dependencies: + chalk: 2.4.2 + inquirer: 7.3.3 + is-ci: 2.0.0 + read: 1.0.7 + strip-ansi: 5.2.0 + + zdog@1.1.3: {} + + zustand@3.7.2(react@18.3.1): + optionalDependencies: + react: 18.3.1 + + zwitch@1.0.5: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/expected.json new file mode 100644 index 00000000..82fc7c75 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/expected.json @@ -0,0 +1,485 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "test-repo@1.0.0", + "info": { + "name": "test-repo", + "version": "1.0.0" + } + }, + { + "id": "gauge@2.7.4", + "info": { + "name": "gauge", + "version": "2.7.4" + } + }, + { + "id": "aproba@1.2.0", + "info": { + "name": "aproba", + "version": "1.2.0" + } + }, + { + "id": "console-control-strings@1.1.0", + "info": { + "name": "console-control-strings", + "version": "1.1.0" + } + }, + { + "id": "has-unicode@2.0.1", + "info": { + "name": "has-unicode", + "version": "2.0.1" + } + }, + { + "id": "object-assign@4.1.1", + "info": { + "name": "object-assign", + "version": "4.1.1" + } + }, + { + "id": "signal-exit@3.0.7", + "info": { + "name": "signal-exit", + "version": "3.0.7" + } + }, + { + "id": "string-width@1.0.2", + "info": { + "name": "string-width", + "version": "1.0.2" + } + }, + { + "id": "code-point-at@1.1.0", + "info": { + "name": "code-point-at", + "version": "1.1.0" + } + }, + { + "id": "is-fullwidth-code-point@1.0.0", + "info": { + "name": "is-fullwidth-code-point", + "version": "1.0.0" + } + }, + { + "id": "number-is-nan@1.0.1", + "info": { + "name": "number-is-nan", + "version": "1.0.1" + } + }, + { + "id": "strip-ansi@3.0.1", + "info": { + "name": "strip-ansi", + "version": "3.0.1" + } + }, + { + "id": "ansi-regex@2.1.1", + "info": { + "name": "ansi-regex", + "version": "2.1.1" + } + }, + { + "id": "wide-align@1.1.5", + "info": { + "name": "wide-align", + "version": "1.1.5" + } + }, + { + "id": "wrap-ansi@6.2.0", + "info": { + "name": "wrap-ansi", + "version": "6.2.0" + } + }, + { + "id": "ansi-styles@4.3.0", + "info": { + "name": "ansi-styles", + "version": "4.3.0" + } + }, + { + "id": "color-convert@2.0.1", + "info": { + "name": "color-convert", + "version": "2.0.1" + } + }, + { + "id": "color-name@1.1.4", + "info": { + "name": "color-name", + "version": "1.1.4" + } + }, + { + "id": "string-width@4.2.3", + "info": { + "name": "string-width", + "version": "4.2.3" + } + }, + { + "id": "emoji-regex@8.0.0", + "info": { + "name": "emoji-regex", + "version": "8.0.0" + } + }, + { + "id": "is-fullwidth-code-point@3.0.0", + "info": { + "name": "is-fullwidth-code-point", + "version": "3.0.0" + } + }, + { + "id": "strip-ansi@6.0.1", + "info": { + "name": "strip-ansi", + "version": "6.0.1" + } + }, + { + "id": "ansi-regex@5.0.1", + "info": { + "name": "ansi-regex", + "version": "5.0.1" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "test-repo@1.0.0", + "deps": [ + { + "nodeId": "gauge@2.7.4" + }, + { + "nodeId": "wrap-ansi@6.2.0" + } + ] + }, + { + "nodeId": "gauge@2.7.4", + "pkgId": "gauge@2.7.4", + "deps": [ + { + "nodeId": "aproba@1.2.0" + }, + { + "nodeId": "console-control-strings@1.1.0" + }, + { + "nodeId": "has-unicode@2.0.1" + }, + { + "nodeId": "object-assign@4.1.1" + }, + { + "nodeId": "signal-exit@3.0.7" + }, + { + "nodeId": "string-width@1.0.2" + }, + { + "nodeId": "strip-ansi@3.0.1" + }, + { + "nodeId": "wide-align@1.1.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "aproba@1.2.0", + "pkgId": "aproba@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "console-control-strings@1.1.0", + "pkgId": "console-control-strings@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-unicode@2.0.1", + "pkgId": "has-unicode@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-assign@4.1.1", + "pkgId": "object-assign@4.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "signal-exit@3.0.7", + "pkgId": "signal-exit@3.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-width@1.0.2", + "pkgId": "string-width@1.0.2", + "deps": [ + { + "nodeId": "code-point-at@1.1.0" + }, + { + "nodeId": "is-fullwidth-code-point@1.0.0" + }, + { + "nodeId": "strip-ansi@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "code-point-at@1.1.0", + "pkgId": "code-point-at@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-fullwidth-code-point@1.0.0", + "pkgId": "is-fullwidth-code-point@1.0.0", + "deps": [ + { + "nodeId": "number-is-nan@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "number-is-nan@1.0.1", + "pkgId": "number-is-nan@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@3.0.1", + "pkgId": "strip-ansi@3.0.1", + "deps": [ + { + "nodeId": "ansi-regex@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@2.1.1", + "pkgId": "ansi-regex@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wide-align@1.1.5", + "pkgId": "wide-align@1.1.5", + "deps": [ + { + "nodeId": "string-width@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wrap-ansi@6.2.0", + "pkgId": "wrap-ansi@6.2.0", + "deps": [ + { + "nodeId": "ansi-styles@4.3.0" + }, + { + "nodeId": "string-width@4.2.3" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-styles@4.3.0", + "pkgId": "ansi-styles@4.3.0", + "deps": [ + { + "nodeId": "color-convert@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-convert@2.0.1", + "pkgId": "color-convert@2.0.1", + "deps": [ + { + "nodeId": "color-name@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-name@1.1.4", + "pkgId": "color-name@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string-width@4.2.3", + "pkgId": "string-width@4.2.3", + "deps": [ + { + "nodeId": "emoji-regex@8.0.0" + }, + { + "nodeId": "is-fullwidth-code-point@3.0.0" + }, + { + "nodeId": "strip-ansi@6.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "emoji-regex@8.0.0", + "pkgId": "emoji-regex@8.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-fullwidth-code-point@3.0.0", + "pkgId": "is-fullwidth-code-point@3.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@6.0.1", + "pkgId": "strip-ansi@6.0.1", + "deps": [ + { + "nodeId": "ansi-regex@5.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@5.0.1", + "pkgId": "ansi-regex@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/package.json new file mode 100644 index 00000000..9e499c2e --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/package.json @@ -0,0 +1,8 @@ +{ + "name": "test-repo", + "version": "1.0.0", + "dependencies": { + "gauge": "2.7.4", + "wrap-ansi": "6.2.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/pnpm-lock.yaml new file mode 100644 index 00000000..d98e339c --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/different-versions/pnpm-lock.yaml @@ -0,0 +1,177 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + gauge: + specifier: 2.7.4 + version: 2.7.4 + wrap-ansi: + specifier: 6.2.0 + version: 6.2.0 + +packages: + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + aproba@1.2.0: + resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} + + code-point-at@1.1.0: + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} + engines: {node: '>=0.10.0'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + gauge@2.7.4: + resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + is-fullwidth-code-point@1.0.0: + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + number-is-nan@1.0.1: + resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} + engines: {node: '>=0.10.0'} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + string-width@1.0.2: + resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} + engines: {node: '>=0.10.0'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + +snapshots: + + ansi-regex@2.1.1: {} + + ansi-regex@5.0.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + aproba@1.2.0: {} + + code-point-at@1.1.0: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + console-control-strings@1.1.0: {} + + emoji-regex@8.0.0: {} + + gauge@2.7.4: + dependencies: + aproba: 1.2.0 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 1.0.2 + strip-ansi: 3.0.1 + wide-align: 1.1.5 + + has-unicode@2.0.1: {} + + is-fullwidth-code-point@1.0.0: + dependencies: + number-is-nan: 1.0.1 + + is-fullwidth-code-point@3.0.0: {} + + number-is-nan@1.0.1: {} + + object-assign@4.1.1: {} + + signal-exit@3.0.7: {} + + string-width@1.0.2: + dependencies: + code-point-at: 1.1.0 + is-fullwidth-code-point: 1.0.0 + strip-ansi: 3.0.1 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + wide-align@1.1.5: + dependencies: + string-width: 1.0.2 + + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-excluded.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-excluded.json new file mode 100644 index 00000000..217a00fb --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-excluded.json @@ -0,0 +1,46 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "goof@0.0.3", + "info": { + "name": "goof", + "version": "0.0.3" + } + }, + { + "id": "adm-zip@0.4.7", + "info": { + "name": "adm-zip", + "version": "0.4.7" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "goof@0.0.3", + "deps": [ + { + "nodeId": "adm-zip@0.4.7" + } + ] + }, + { + "nodeId": "adm-zip@0.4.7", + "pkgId": "adm-zip@0.4.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-included.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-included.json new file mode 100644 index 00000000..217a00fb --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/expected-dev-deps-included.json @@ -0,0 +1,46 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "goof@0.0.3", + "info": { + "name": "goof", + "version": "0.0.3" + } + }, + { + "id": "adm-zip@0.4.7", + "info": { + "name": "adm-zip", + "version": "0.4.7" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "goof@0.0.3", + "deps": [ + { + "nodeId": "adm-zip@0.4.7" + } + ] + }, + { + "nodeId": "adm-zip@0.4.7", + "pkgId": "adm-zip@0.4.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/package.json new file mode 100644 index 00000000..e7bb29fd --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/package.json @@ -0,0 +1,19 @@ +{ + "name": "goof", + "version": "0.0.3", + "description": "A vulnerable todo demo application", + "homepage": "https://snyk.io/", + "repository": { + "type": "git", + "url": "https://github.com/Snyk/snyk-todo-list-demo-app/" + }, + "scripts": { + "start": "node app.js", + "build": "browserify -r jquery > public/js/bundle.js", + "cleanup": "mongo express-todo --eval 'db.todos.remove({});'" + }, + "dependencies": { + "adm-zip": "0.4.7" + }, + "devDependencies": {} +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/pnpm-lock.yaml new file mode 100644 index 00000000..243c80db --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/empty-dev-deps/pnpm-lock.yaml @@ -0,0 +1,23 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + adm-zip: + specifier: 0.4.7 + version: 0.4.7 + +packages: + + adm-zip@0.4.7: + resolution: {integrity: sha512-QHVQ6ekddFaGr9r2hBUC4gPw2wLqMZioXojt9BydQPbSh8us7+Q5xcUCUq+hnh4zAdauV3wqoY0quApjKqrhbA==} + engines: {node: '>=0.3.0'} + +snapshots: + + adm-zip@0.4.7: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/expected.json new file mode 100644 index 00000000..5314cb59 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/expected.json @@ -0,0 +1,279 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "external-tarball@", + "info": { + "name": "external-tarball" + } + }, + { + "id": "body-parser@1.9.0", + "info": { + "name": "body-parser", + "version": "1.9.0" + } + }, + { + "id": "bytes@1.0.0", + "info": { + "name": "bytes", + "version": "1.0.0" + } + }, + { + "id": "depd@1.0.1", + "info": { + "name": "depd", + "version": "1.0.1" + } + }, + { + "id": "iconv-lite@0.4.4", + "info": { + "name": "iconv-lite", + "version": "0.4.4" + } + }, + { + "id": "media-typer@0.3.0", + "info": { + "name": "media-typer", + "version": "0.3.0" + } + }, + { + "id": "on-finished@2.1.0", + "info": { + "name": "on-finished", + "version": "2.1.0" + } + }, + { + "id": "ee-first@1.0.5", + "info": { + "name": "ee-first", + "version": "1.0.5" + } + }, + { + "id": "qs@2.2.4", + "info": { + "name": "qs", + "version": "2.2.4" + } + }, + { + "id": "raw-body@1.3.0", + "info": { + "name": "raw-body", + "version": "1.3.0" + } + }, + { + "id": "type-is@1.5.7", + "info": { + "name": "type-is", + "version": "1.5.7" + } + }, + { + "id": "mime-types@2.0.14", + "info": { + "name": "mime-types", + "version": "2.0.14" + } + }, + { + "id": "mime-db@1.12.0", + "info": { + "name": "mime-db", + "version": "1.12.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "external-tarball@", + "deps": [ + { + "nodeId": "body-parser@1.9.0" + } + ] + }, + { + "nodeId": "body-parser@1.9.0", + "pkgId": "body-parser@1.9.0", + "deps": [ + { + "nodeId": "bytes@1.0.0" + }, + { + "nodeId": "depd@1.0.1" + }, + { + "nodeId": "iconv-lite@0.4.4" + }, + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "on-finished@2.1.0" + }, + { + "nodeId": "qs@2.2.4" + }, + { + "nodeId": "raw-body@1.3.0" + }, + { + "nodeId": "type-is@1.5.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@1.0.0", + "pkgId": "bytes@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@1.0.1", + "pkgId": "depd@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.4.4", + "pkgId": "iconv-lite@0.4.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "media-typer@0.3.0", + "pkgId": "media-typer@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.1.0", + "pkgId": "on-finished@2.1.0", + "deps": [ + { + "nodeId": "ee-first@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.0.5", + "pkgId": "ee-first@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@2.2.4", + "pkgId": "qs@2.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-body@1.3.0", + "pkgId": "raw-body@1.3.0", + "deps": [ + { + "nodeId": "bytes@1.0.0" + }, + { + "nodeId": "iconv-lite@0.4.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.5.7", + "pkgId": "type-is@1.5.7", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.0.14" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.0.14", + "pkgId": "mime-types@2.0.14", + "deps": [ + { + "nodeId": "mime-db@1.12.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.12.0", + "pkgId": "mime-db@1.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/package.json new file mode 100644 index 00000000..781ae511 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/package.json @@ -0,0 +1,7 @@ +{ + "name": "external-tarball", + "description": "external-tarball dep fixtures", + "dependencies": { + "body-parser": "https://github.com/expressjs/body-parser/archive/1.9.0.tar.gz" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/pnpm-lock.yaml new file mode 100644 index 00000000..cf2f45f4 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/external-tarball/pnpm-lock.yaml @@ -0,0 +1,105 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + body-parser: + specifier: https://github.com/expressjs/body-parser/archive/1.9.0.tar.gz + version: https://github.com/expressjs/body-parser/archive/1.9.0.tar.gz + +packages: + + body-parser@https://github.com/expressjs/body-parser/archive/1.9.0.tar.gz: + resolution: {tarball: https://github.com/expressjs/body-parser/archive/1.9.0.tar.gz} + version: 1.9.0 + engines: {node: '>= 0.8'} + + bytes@1.0.0: + resolution: {integrity: sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==} + + depd@1.0.1: + resolution: {integrity: sha512-OEWAMbCkK9IWQ8pfTvHBhCSqHgR+sk5pbiYqq0FqfARG4Cy+cRsCbITx6wh5pcsmfBPiJAcbd98tfdz5fnBbag==} + engines: {node: '>= 0.6'} + + ee-first@1.0.5: + resolution: {integrity: sha512-+FCut34oNiJD2jD+YL/onRxOHF5ut3xOGgTIyEIOdYfun8AexYhEyurzv9izwhTft1Z7pdy4VlTq51K/sIsQRA==} + + iconv-lite@0.4.4: + resolution: {integrity: sha512-BnjNp13aZpK4WBGbmjaNHN2MCp3P850n8zd/JLinQJ8Lsnq2Br4o2467C2waMsY5kr7Z41SL1gEqh8Vbfzg15A==} + engines: {node: '>=0.8.0'} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + mime-db@1.12.0: + resolution: {integrity: sha512-5aMAW7I4jZoZB27fXRuekqc4DVvJ7+hM8UcWrNj2mqibE54gXgPSonBYBdQW5hyaVNGmiYjY0ZMqn9fBefWYvA==} + engines: {node: '>= 0.6'} + + mime-types@2.0.14: + resolution: {integrity: sha512-2ZHUEstNkIf2oTWgtODr6X0Cc4Ns/RN/hktdozndiEhhAC2wxXejF1FH0XLHTEImE9h6gr/tcnr3YOnSGsxc7Q==} + engines: {node: '>= 0.6'} + + on-finished@2.1.0: + resolution: {integrity: sha512-33+g6TZkplndl+2k2VNO1YphX5hm79DGhBP6TJcDI9o1sCFbUvO2bgxPdGanIFqZK4su6OVLwPHY9GkLQrojgA==} + + qs@2.2.4: + resolution: {integrity: sha512-ptau9CngYR/IimcThDkAs7LzlZhxo92RiMHtLbOq3R6u9iDkixdSysaAVaZpYByrXWWantEJ4fVPl0xR2McSCQ==} + + raw-body@1.3.0: + resolution: {integrity: sha512-iuI1bOSi9tEmVCrXq02ZysXatTrhAu+fSo7XOQHhMo4g87dSy9YB2W/9Udwhz0bPpFk4UcoLhjrHgpPbRD3ktA==} + engines: {node: '>= 0.8.0'} + + type-is@1.5.7: + resolution: {integrity: sha512-of68V0oUmVH4thGc1cLR3sKdICPsaL7kzpYc7FX1pcagY4eIllhyMqQcoOq289f+xj2orm8oPWwsCwxiCgVJbQ==} + engines: {node: '>= 0.6'} + +snapshots: + + body-parser@https://github.com/expressjs/body-parser/archive/1.9.0.tar.gz: + dependencies: + bytes: 1.0.0 + depd: 1.0.1 + iconv-lite: 0.4.4 + media-typer: 0.3.0 + on-finished: 2.1.0 + qs: 2.2.4 + raw-body: 1.3.0 + type-is: 1.5.7 + + bytes@1.0.0: {} + + depd@1.0.1: {} + + ee-first@1.0.5: {} + + iconv-lite@0.4.4: {} + + media-typer@0.3.0: {} + + mime-db@1.12.0: {} + + mime-types@2.0.14: + dependencies: + mime-db: 1.12.0 + + on-finished@2.1.0: + dependencies: + ee-first: 1.0.5 + + qs@2.2.4: {} + + raw-body@1.3.0: + dependencies: + bytes: 1.0.0 + iconv-lite: 0.4.4 + + type-is@1.5.7: + dependencies: + media-typer: 0.3.0 + mime-types: 2.0.14 diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/expected.json new file mode 100644 index 00000000..2137a6cd --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/expected.json @@ -0,0 +1,279 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "git-ssh-url-deps@", + "info": { + "name": "git-ssh-url-deps" + } + }, + { + "id": "body-parser@1.9.0", + "info": { + "name": "body-parser", + "version": "1.9.0" + } + }, + { + "id": "bytes@1.0.0", + "info": { + "name": "bytes", + "version": "1.0.0" + } + }, + { + "id": "depd@1.0.1", + "info": { + "name": "depd", + "version": "1.0.1" + } + }, + { + "id": "iconv-lite@0.4.4", + "info": { + "name": "iconv-lite", + "version": "0.4.4" + } + }, + { + "id": "media-typer@0.3.0", + "info": { + "name": "media-typer", + "version": "0.3.0" + } + }, + { + "id": "on-finished@2.1.0", + "info": { + "name": "on-finished", + "version": "2.1.0" + } + }, + { + "id": "ee-first@1.0.5", + "info": { + "name": "ee-first", + "version": "1.0.5" + } + }, + { + "id": "qs@2.2.4", + "info": { + "name": "qs", + "version": "2.2.4" + } + }, + { + "id": "raw-body@1.3.0", + "info": { + "name": "raw-body", + "version": "1.3.0" + } + }, + { + "id": "type-is@1.5.7", + "info": { + "name": "type-is", + "version": "1.5.7" + } + }, + { + "id": "mime-types@2.0.14", + "info": { + "name": "mime-types", + "version": "2.0.14" + } + }, + { + "id": "mime-db@1.12.0", + "info": { + "name": "mime-db", + "version": "1.12.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "git-ssh-url-deps@", + "deps": [ + { + "nodeId": "body-parser@1.9.0" + } + ] + }, + { + "nodeId": "body-parser@1.9.0", + "pkgId": "body-parser@1.9.0", + "deps": [ + { + "nodeId": "bytes@1.0.0" + }, + { + "nodeId": "depd@1.0.1" + }, + { + "nodeId": "iconv-lite@0.4.4" + }, + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "on-finished@2.1.0" + }, + { + "nodeId": "qs@2.2.4" + }, + { + "nodeId": "raw-body@1.3.0" + }, + { + "nodeId": "type-is@1.5.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@1.0.0", + "pkgId": "bytes@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@1.0.1", + "pkgId": "depd@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.4.4", + "pkgId": "iconv-lite@0.4.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "media-typer@0.3.0", + "pkgId": "media-typer@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.1.0", + "pkgId": "on-finished@2.1.0", + "deps": [ + { + "nodeId": "ee-first@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.0.5", + "pkgId": "ee-first@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@2.2.4", + "pkgId": "qs@2.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-body@1.3.0", + "pkgId": "raw-body@1.3.0", + "deps": [ + { + "nodeId": "bytes@1.0.0" + }, + { + "nodeId": "iconv-lite@0.4.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.5.7", + "pkgId": "type-is@1.5.7", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.0.14" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.0.14", + "pkgId": "mime-types@2.0.14", + "deps": [ + { + "nodeId": "mime-db@1.12.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.12.0", + "pkgId": "mime-db@1.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/package.json new file mode 100644 index 00000000..9a526f9b --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/package.json @@ -0,0 +1,7 @@ +{ + "name": "git-ssh-url-deps", + "description": "not important git-ssh-url-deps", + "dependencies": { + "body-parser": "git+ssh://git@github.com/expressjs/body-parser.git#1.9.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/pnpm-lock.yaml new file mode 100644 index 00000000..8e962bad --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/git-ssh-url-deps/pnpm-lock.yaml @@ -0,0 +1,105 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + body-parser: + specifier: git+ssh://git@github.com/expressjs/body-parser.git#1.9.0 + version: https://codeload.github.com/expressjs/body-parser/tar.gz/263f602e6ae34add6332c1eb4caa808893b0b711 + +packages: + + body-parser@https://codeload.github.com/expressjs/body-parser/tar.gz/263f602e6ae34add6332c1eb4caa808893b0b711: + resolution: {tarball: https://codeload.github.com/expressjs/body-parser/tar.gz/263f602e6ae34add6332c1eb4caa808893b0b711} + version: 1.9.0 + engines: {node: '>= 0.8'} + + bytes@1.0.0: + resolution: {integrity: sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==} + + depd@1.0.1: + resolution: {integrity: sha512-OEWAMbCkK9IWQ8pfTvHBhCSqHgR+sk5pbiYqq0FqfARG4Cy+cRsCbITx6wh5pcsmfBPiJAcbd98tfdz5fnBbag==} + engines: {node: '>= 0.6'} + + ee-first@1.0.5: + resolution: {integrity: sha512-+FCut34oNiJD2jD+YL/onRxOHF5ut3xOGgTIyEIOdYfun8AexYhEyurzv9izwhTft1Z7pdy4VlTq51K/sIsQRA==} + + iconv-lite@0.4.4: + resolution: {integrity: sha512-BnjNp13aZpK4WBGbmjaNHN2MCp3P850n8zd/JLinQJ8Lsnq2Br4o2467C2waMsY5kr7Z41SL1gEqh8Vbfzg15A==} + engines: {node: '>=0.8.0'} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + mime-db@1.12.0: + resolution: {integrity: sha512-5aMAW7I4jZoZB27fXRuekqc4DVvJ7+hM8UcWrNj2mqibE54gXgPSonBYBdQW5hyaVNGmiYjY0ZMqn9fBefWYvA==} + engines: {node: '>= 0.6'} + + mime-types@2.0.14: + resolution: {integrity: sha512-2ZHUEstNkIf2oTWgtODr6X0Cc4Ns/RN/hktdozndiEhhAC2wxXejF1FH0XLHTEImE9h6gr/tcnr3YOnSGsxc7Q==} + engines: {node: '>= 0.6'} + + on-finished@2.1.0: + resolution: {integrity: sha512-33+g6TZkplndl+2k2VNO1YphX5hm79DGhBP6TJcDI9o1sCFbUvO2bgxPdGanIFqZK4su6OVLwPHY9GkLQrojgA==} + + qs@2.2.4: + resolution: {integrity: sha512-ptau9CngYR/IimcThDkAs7LzlZhxo92RiMHtLbOq3R6u9iDkixdSysaAVaZpYByrXWWantEJ4fVPl0xR2McSCQ==} + + raw-body@1.3.0: + resolution: {integrity: sha512-iuI1bOSi9tEmVCrXq02ZysXatTrhAu+fSo7XOQHhMo4g87dSy9YB2W/9Udwhz0bPpFk4UcoLhjrHgpPbRD3ktA==} + engines: {node: '>= 0.8.0'} + + type-is@1.5.7: + resolution: {integrity: sha512-of68V0oUmVH4thGc1cLR3sKdICPsaL7kzpYc7FX1pcagY4eIllhyMqQcoOq289f+xj2orm8oPWwsCwxiCgVJbQ==} + engines: {node: '>= 0.6'} + +snapshots: + + body-parser@https://codeload.github.com/expressjs/body-parser/tar.gz/263f602e6ae34add6332c1eb4caa808893b0b711: + dependencies: + bytes: 1.0.0 + depd: 1.0.1 + iconv-lite: 0.4.4 + media-typer: 0.3.0 + on-finished: 2.1.0 + qs: 2.2.4 + raw-body: 1.3.0 + type-is: 1.5.7 + + bytes@1.0.0: {} + + depd@1.0.1: {} + + ee-first@1.0.5: {} + + iconv-lite@0.4.4: {} + + media-typer@0.3.0: {} + + mime-db@1.12.0: {} + + mime-types@2.0.14: + dependencies: + mime-db: 1.12.0 + + on-finished@2.1.0: + dependencies: + ee-first: 1.0.5 + + qs@2.2.4: {} + + raw-body@1.3.0: + dependencies: + bytes: 1.0.0 + iconv-lite: 0.4.4 + + type-is@1.5.7: + dependencies: + media-typer: 0.3.0 + mime-types: 2.0.14 diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/expected.json new file mode 100644 index 00000000..bbcb8b98 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/expected.json @@ -0,0 +1,5579 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "goof@0.0.3", + "info": { + "name": "goof", + "version": "0.0.3" + } + }, + { + "id": "body-parser@1.9.0", + "info": { + "name": "body-parser", + "version": "1.9.0" + } + }, + { + "id": "bytes@1.0.0", + "info": { + "name": "bytes", + "version": "1.0.0" + } + }, + { + "id": "depd@1.0.1", + "info": { + "name": "depd", + "version": "1.0.1" + } + }, + { + "id": "iconv-lite@0.4.4", + "info": { + "name": "iconv-lite", + "version": "0.4.4" + } + }, + { + "id": "media-typer@0.3.0", + "info": { + "name": "media-typer", + "version": "0.3.0" + } + }, + { + "id": "on-finished@2.1.0", + "info": { + "name": "on-finished", + "version": "2.1.0" + } + }, + { + "id": "ee-first@1.0.5", + "info": { + "name": "ee-first", + "version": "1.0.5" + } + }, + { + "id": "qs@2.2.4", + "info": { + "name": "qs", + "version": "2.2.4" + } + }, + { + "id": "raw-body@1.3.0", + "info": { + "name": "raw-body", + "version": "1.3.0" + } + }, + { + "id": "type-is@1.5.7", + "info": { + "name": "type-is", + "version": "1.5.7" + } + }, + { + "id": "mime-types@2.0.14", + "info": { + "name": "mime-types", + "version": "2.0.14" + } + }, + { + "id": "mime-db@1.12.0", + "info": { + "name": "mime-db", + "version": "1.12.0" + } + }, + { + "id": "cfenv@1.2.4", + "info": { + "name": "cfenv", + "version": "1.2.4" + } + }, + { + "id": "js-yaml@4.0.0", + "info": { + "name": "js-yaml", + "version": "4.0.0" + } + }, + { + "id": "argparse@2.0.1", + "info": { + "name": "argparse", + "version": "2.0.1" + } + }, + { + "id": "ports@1.1.0", + "info": { + "name": "ports", + "version": "1.1.0" + } + }, + { + "id": "underscore@1.12.1", + "info": { + "name": "underscore", + "version": "1.12.1" + } + }, + { + "id": "cookie-parser@1.3.3", + "info": { + "name": "cookie-parser", + "version": "1.3.3" + } + }, + { + "id": "cookie@0.1.2", + "info": { + "name": "cookie", + "version": "0.1.2" + } + }, + { + "id": "cookie-signature@1.0.5", + "info": { + "name": "cookie-signature", + "version": "1.0.5" + } + }, + { + "id": "consolidate@0.14.5", + "info": { + "name": "consolidate", + "version": "0.14.5" + } + }, + { + "id": "bluebird@3.7.2", + "info": { + "name": "bluebird", + "version": "3.7.2" + } + }, + { + "id": "dustjs-linkedin@2.5.0", + "info": { + "name": "dustjs-linkedin", + "version": "2.5.0" + } + }, + { + "id": "dustjs-helpers@1.5.0", + "info": { + "name": "dustjs-helpers", + "version": "1.5.0" + } + }, + { + "id": "ejs@1.0.0", + "info": { + "name": "ejs", + "version": "1.0.0" + } + }, + { + "id": "ejs-locals@1.0.2", + "info": { + "name": "ejs-locals", + "version": "1.0.2" + } + }, + { + "id": "ejs@0.8.8", + "info": { + "name": "ejs", + "version": "0.8.8" + } + }, + { + "id": "errorhandler@1.2.0", + "info": { + "name": "errorhandler", + "version": "1.2.0" + } + }, + { + "id": "accepts@1.1.4", + "info": { + "name": "accepts", + "version": "1.1.4" + } + }, + { + "id": "negotiator@0.4.9", + "info": { + "name": "negotiator", + "version": "0.4.9" + } + }, + { + "id": "escape-html@1.0.1", + "info": { + "name": "escape-html", + "version": "1.0.1" + } + }, + { + "id": "express@4.12.4", + "info": { + "name": "express", + "version": "4.12.4" + } + }, + { + "id": "accepts@1.2.13", + "info": { + "name": "accepts", + "version": "1.2.13" + } + }, + { + "id": "mime-types@2.1.35", + "info": { + "name": "mime-types", + "version": "2.1.35" + } + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "negotiator@0.5.3", + "info": { + "name": "negotiator", + "version": "0.5.3" + } + }, + { + "id": "content-disposition@0.5.0", + "info": { + "name": "content-disposition", + "version": "0.5.0" + } + }, + { + "id": "content-type@1.0.5", + "info": { + "name": "content-type", + "version": "1.0.5" + } + }, + { + "id": "cookie-signature@1.0.6", + "info": { + "name": "cookie-signature", + "version": "1.0.6" + } + }, + { + "id": "debug@2.2.0", + "info": { + "name": "debug", + "version": "2.2.0" + } + }, + { + "id": "ms@0.7.1", + "info": { + "name": "ms", + "version": "0.7.1" + } + }, + { + "id": "etag@1.6.0", + "info": { + "name": "etag", + "version": "1.6.0" + } + }, + { + "id": "crc@3.2.1", + "info": { + "name": "crc", + "version": "3.2.1" + } + }, + { + "id": "finalhandler@0.3.6", + "info": { + "name": "finalhandler", + "version": "0.3.6" + } + }, + { + "id": "on-finished@2.2.1", + "info": { + "name": "on-finished", + "version": "2.2.1" + } + }, + { + "id": "ee-first@1.1.0", + "info": { + "name": "ee-first", + "version": "1.1.0" + } + }, + { + "id": "fresh@0.2.4", + "info": { + "name": "fresh", + "version": "0.2.4" + } + }, + { + "id": "merge-descriptors@1.0.0", + "info": { + "name": "merge-descriptors", + "version": "1.0.0" + } + }, + { + "id": "methods@1.1.2", + "info": { + "name": "methods", + "version": "1.1.2" + } + }, + { + "id": "parseurl@1.3.3", + "info": { + "name": "parseurl", + "version": "1.3.3" + } + }, + { + "id": "path-to-regexp@0.1.3", + "info": { + "name": "path-to-regexp", + "version": "0.1.3" + } + }, + { + "id": "proxy-addr@1.0.10", + "info": { + "name": "proxy-addr", + "version": "1.0.10" + } + }, + { + "id": "forwarded@0.1.2", + "info": { + "name": "forwarded", + "version": "0.1.2" + } + }, + { + "id": "ipaddr.js@1.0.5", + "info": { + "name": "ipaddr.js", + "version": "1.0.5" + } + }, + { + "id": "qs@2.4.2", + "info": { + "name": "qs", + "version": "2.4.2" + } + }, + { + "id": "range-parser@1.0.3", + "info": { + "name": "range-parser", + "version": "1.0.3" + } + }, + { + "id": "send@0.12.3", + "info": { + "name": "send", + "version": "0.12.3" + } + }, + { + "id": "destroy@1.0.3", + "info": { + "name": "destroy", + "version": "1.0.3" + } + }, + { + "id": "mime@1.3.4", + "info": { + "name": "mime", + "version": "1.3.4" + } + }, + { + "id": "serve-static@1.9.3", + "info": { + "name": "serve-static", + "version": "1.9.3" + } + }, + { + "id": "utils-merge@1.0.0", + "info": { + "name": "utils-merge", + "version": "1.0.0" + } + }, + { + "id": "type-is@1.6.18", + "info": { + "name": "type-is", + "version": "1.6.18" + } + }, + { + "id": "vary@1.0.1", + "info": { + "name": "vary", + "version": "1.0.1" + } + }, + { + "id": "express-fileupload@0.0.5", + "info": { + "name": "express-fileupload", + "version": "0.0.5" + } + }, + { + "id": "connect-busboy@0.0.2", + "info": { + "name": "connect-busboy", + "version": "0.0.2" + } + }, + { + "id": "busboy@1.6.0", + "info": { + "name": "busboy", + "version": "1.6.0" + } + }, + { + "id": "streamsearch@1.1.0", + "info": { + "name": "streamsearch", + "version": "1.1.0" + } + }, + { + "id": "fs-extra@0.22.1", + "info": { + "name": "fs-extra", + "version": "0.22.1" + } + }, + { + "id": "graceful-fs@4.2.11", + "info": { + "name": "graceful-fs", + "version": "4.2.11" + } + }, + { + "id": "jsonfile@2.4.0", + "info": { + "name": "jsonfile", + "version": "2.4.0" + } + }, + { + "id": "rimraf@2.7.1", + "info": { + "name": "rimraf", + "version": "2.7.1" + } + }, + { + "id": "glob@7.2.3", + "info": { + "name": "glob", + "version": "7.2.3" + } + }, + { + "id": "fs.realpath@1.0.0", + "info": { + "name": "fs.realpath", + "version": "1.0.0" + } + }, + { + "id": "inflight@1.0.6", + "info": { + "name": "inflight", + "version": "1.0.6" + } + }, + { + "id": "once@1.4.0", + "info": { + "name": "once", + "version": "1.4.0" + } + }, + { + "id": "wrappy@1.0.2", + "info": { + "name": "wrappy", + "version": "1.0.2" + } + }, + { + "id": "inherits@2.0.4", + "info": { + "name": "inherits", + "version": "2.0.4" + } + }, + { + "id": "minimatch@3.1.2", + "info": { + "name": "minimatch", + "version": "3.1.2" + } + }, + { + "id": "brace-expansion@1.1.11", + "info": { + "name": "brace-expansion", + "version": "1.1.11" + } + }, + { + "id": "balanced-match@1.0.2", + "info": { + "name": "balanced-match", + "version": "1.0.2" + } + }, + { + "id": "concat-map@0.0.1", + "info": { + "name": "concat-map", + "version": "0.0.1" + } + }, + { + "id": "path-is-absolute@1.0.1", + "info": { + "name": "path-is-absolute", + "version": "1.0.1" + } + }, + { + "id": "streamifier@0.1.1", + "info": { + "name": "streamifier", + "version": "0.1.1" + } + }, + { + "id": "humanize-ms@1.0.1", + "info": { + "name": "humanize-ms", + "version": "1.0.1" + } + }, + { + "id": "ms@0.6.2", + "info": { + "name": "ms", + "version": "0.6.2" + } + }, + { + "id": "jquery@2.2.4", + "info": { + "name": "jquery", + "version": "2.2.4" + } + }, + { + "id": "marked@0.3.5", + "info": { + "name": "marked", + "version": "0.3.5" + } + }, + { + "id": "method-override@3.0.0", + "info": { + "name": "method-override", + "version": "3.0.0" + } + }, + { + "id": "debug@3.1.0", + "info": { + "name": "debug", + "version": "3.1.0" + } + }, + { + "id": "ms@2.0.0", + "info": { + "name": "ms", + "version": "2.0.0" + } + }, + { + "id": "vary@1.1.2", + "info": { + "name": "vary", + "version": "1.1.2" + } + }, + { + "id": "moment@2.15.1", + "info": { + "name": "moment", + "version": "2.15.1" + } + }, + { + "id": "mongoose@4.2.4", + "info": { + "name": "mongoose", + "version": "4.2.4" + } + }, + { + "id": "async@0.9.0", + "info": { + "name": "async", + "version": "0.9.0" + } + }, + { + "id": "bson@0.4.23", + "info": { + "name": "bson", + "version": "0.4.23" + } + }, + { + "id": "hooks-fixed@1.1.0", + "info": { + "name": "hooks-fixed", + "version": "1.1.0" + } + }, + { + "id": "kareem@1.0.1", + "info": { + "name": "kareem", + "version": "1.0.1" + } + }, + { + "id": "mongodb@2.0.46", + "info": { + "name": "mongodb", + "version": "2.0.46" + } + }, + { + "id": "es6-promise@2.1.1", + "info": { + "name": "es6-promise", + "version": "2.1.1" + } + }, + { + "id": "mongodb-core@1.2.19", + "info": { + "name": "mongodb-core", + "version": "1.2.19" + } + }, + { + "id": "readable-stream@1.0.31", + "info": { + "name": "readable-stream", + "version": "1.0.31" + } + }, + { + "id": "core-util-is@1.0.3", + "info": { + "name": "core-util-is", + "version": "1.0.3" + } + }, + { + "id": "isarray@0.0.1", + "info": { + "name": "isarray", + "version": "0.0.1" + } + }, + { + "id": "string_decoder@0.10.31", + "info": { + "name": "string_decoder", + "version": "0.10.31" + } + }, + { + "id": "mpath@0.1.1", + "info": { + "name": "mpath", + "version": "0.1.1" + } + }, + { + "id": "mpromise@0.5.4", + "info": { + "name": "mpromise", + "version": "0.5.4" + } + }, + { + "id": "mquery@1.6.3", + "info": { + "name": "mquery", + "version": "1.6.3" + } + }, + { + "id": "bluebird@2.9.26", + "info": { + "name": "bluebird", + "version": "2.9.26" + } + }, + { + "id": "regexp-clone@0.0.1", + "info": { + "name": "regexp-clone", + "version": "0.0.1" + } + }, + { + "id": "sliced@0.0.5", + "info": { + "name": "sliced", + "version": "0.0.5" + } + }, + { + "id": "muri@1.0.0", + "info": { + "name": "muri", + "version": "1.0.0" + } + }, + { + "id": "morgan@1.10.0", + "info": { + "name": "morgan", + "version": "1.10.0" + } + }, + { + "id": "basic-auth@2.0.1", + "info": { + "name": "basic-auth", + "version": "2.0.1" + } + }, + { + "id": "safe-buffer@5.1.2", + "info": { + "name": "safe-buffer", + "version": "5.1.2" + } + }, + { + "id": "debug@2.6.9", + "info": { + "name": "debug", + "version": "2.6.9" + } + }, + { + "id": "depd@2.0.0", + "info": { + "name": "depd", + "version": "2.0.0" + } + }, + { + "id": "on-finished@2.3.0", + "info": { + "name": "on-finished", + "version": "2.3.0" + } + }, + { + "id": "ee-first@1.1.1", + "info": { + "name": "ee-first", + "version": "1.1.1" + } + }, + { + "id": "on-headers@1.0.2", + "info": { + "name": "on-headers", + "version": "1.0.2" + } + }, + { + "id": "ms@0.7.3", + "info": { + "name": "ms", + "version": "0.7.3" + } + }, + { + "id": "npmconf@0.0.24", + "info": { + "name": "npmconf", + "version": "0.0.24" + } + }, + { + "id": "config-chain@1.1.13", + "info": { + "name": "config-chain", + "version": "1.1.13" + } + }, + { + "id": "ini@1.3.8", + "info": { + "name": "ini", + "version": "1.3.8" + } + }, + { + "id": "proto-list@1.2.4", + "info": { + "name": "proto-list", + "version": "1.2.4" + } + }, + { + "id": "inherits@1.0.2", + "info": { + "name": "inherits", + "version": "1.0.2" + } + }, + { + "id": "ini@1.1.0", + "info": { + "name": "ini", + "version": "1.1.0" + } + }, + { + "id": "mkdirp@0.3.5", + "info": { + "name": "mkdirp", + "version": "0.3.5" + } + }, + { + "id": "nopt@2.2.1", + "info": { + "name": "nopt", + "version": "2.2.1" + } + }, + { + "id": "abbrev@1.1.1", + "info": { + "name": "abbrev", + "version": "1.1.1" + } + }, + { + "id": "once@1.1.1", + "info": { + "name": "once", + "version": "1.1.1" + } + }, + { + "id": "osenv@0.0.3", + "info": { + "name": "osenv", + "version": "0.0.3" + } + }, + { + "id": "semver@1.1.4", + "info": { + "name": "semver", + "version": "1.1.4" + } + }, + { + "id": "optional@0.1.4", + "info": { + "name": "optional", + "version": "0.1.4" + } + }, + { + "id": "st@0.2.4", + "info": { + "name": "st", + "version": "0.2.4" + } + }, + { + "id": "async-cache@0.1.5", + "info": { + "name": "async-cache", + "version": "0.1.5" + } + }, + { + "id": "lru-cache@2.3.1", + "info": { + "name": "lru-cache", + "version": "2.3.1" + } + }, + { + "id": "fd@0.0.3", + "info": { + "name": "fd", + "version": "0.0.3" + } + }, + { + "id": "mime@1.2.11", + "info": { + "name": "mime", + "version": "1.2.11" + } + }, + { + "id": "negotiator@0.2.8", + "info": { + "name": "negotiator", + "version": "0.2.8" + } + }, + { + "id": "stream-buffers@3.0.2", + "info": { + "name": "stream-buffers", + "version": "3.0.2" + } + }, + { + "id": "tap@5.8.0", + "info": { + "name": "tap", + "version": "5.8.0" + } + }, + { + "id": "clean-yaml-object@0.1.0", + "info": { + "name": "clean-yaml-object", + "version": "0.1.0" + } + }, + { + "id": "codecov.io@0.1.6", + "info": { + "name": "codecov.io", + "version": "0.1.6" + } + }, + { + "id": "request@2.42.0", + "info": { + "name": "request", + "version": "2.42.0" + } + }, + { + "id": "bl@0.9.5", + "info": { + "name": "bl", + "version": "0.9.5" + } + }, + { + "id": "readable-stream@1.0.34", + "info": { + "name": "readable-stream", + "version": "1.0.34" + } + }, + { + "id": "caseless@0.6.0", + "info": { + "name": "caseless", + "version": "0.6.0" + } + }, + { + "id": "forever-agent@0.5.2", + "info": { + "name": "forever-agent", + "version": "0.5.2" + } + }, + { + "id": "json-stringify-safe@5.0.1", + "info": { + "name": "json-stringify-safe", + "version": "5.0.1" + } + }, + { + "id": "mime-types@1.0.2", + "info": { + "name": "mime-types", + "version": "1.0.2" + } + }, + { + "id": "node-uuid@1.4.8", + "info": { + "name": "node-uuid", + "version": "1.4.8" + } + }, + { + "id": "qs@1.2.2", + "info": { + "name": "qs", + "version": "1.2.2" + } + }, + { + "id": "tunnel-agent@0.4.3", + "info": { + "name": "tunnel-agent", + "version": "0.4.3" + } + }, + { + "id": "urlgrey@0.4.0", + "info": { + "name": "urlgrey", + "version": "0.4.0" + } + }, + { + "id": "tape@2.3.0", + "info": { + "name": "tape", + "version": "2.3.0" + } + }, + { + "id": "deep-equal@0.1.2", + "info": { + "name": "deep-equal", + "version": "0.1.2" + } + }, + { + "id": "defined@0.0.0", + "info": { + "name": "defined", + "version": "0.0.0" + } + }, + { + "id": "jsonify@0.0.1", + "info": { + "name": "jsonify", + "version": "0.0.1" + } + }, + { + "id": "resumer@0.0.0", + "info": { + "name": "resumer", + "version": "0.0.0" + } + }, + { + "id": "through@2.3.8", + "info": { + "name": "through", + "version": "2.3.8" + } + }, + { + "id": "split@0.2.10", + "info": { + "name": "split", + "version": "0.2.10" + } + }, + { + "id": "stream-combiner@0.0.4", + "info": { + "name": "stream-combiner", + "version": "0.0.4" + } + }, + { + "id": "duplexer@0.1.2", + "info": { + "name": "duplexer", + "version": "0.1.2" + } + }, + { + "id": "coveralls@2.13.3", + "info": { + "name": "coveralls", + "version": "2.13.3" + } + }, + { + "id": "js-yaml@3.6.1", + "info": { + "name": "js-yaml", + "version": "3.6.1" + } + }, + { + "id": "argparse@1.0.10", + "info": { + "name": "argparse", + "version": "1.0.10" + } + }, + { + "id": "sprintf-js@1.0.3", + "info": { + "name": "sprintf-js", + "version": "1.0.3" + } + }, + { + "id": "esprima@2.7.3", + "info": { + "name": "esprima", + "version": "2.7.3" + } + }, + { + "id": "lcov-parse@0.0.10", + "info": { + "name": "lcov-parse", + "version": "0.0.10" + } + }, + { + "id": "log-driver@1.2.5", + "info": { + "name": "log-driver", + "version": "1.2.5" + } + }, + { + "id": "minimist@1.2.0", + "info": { + "name": "minimist", + "version": "1.2.0" + } + }, + { + "id": "request@2.79.0", + "info": { + "name": "request", + "version": "2.79.0" + } + }, + { + "id": "aws-sign2@0.6.0", + "info": { + "name": "aws-sign2", + "version": "0.6.0" + } + }, + { + "id": "aws4@1.12.0", + "info": { + "name": "aws4", + "version": "1.12.0" + } + }, + { + "id": "caseless@0.11.0", + "info": { + "name": "caseless", + "version": "0.11.0" + } + }, + { + "id": "combined-stream@1.0.8", + "info": { + "name": "combined-stream", + "version": "1.0.8" + } + }, + { + "id": "delayed-stream@1.0.0", + "info": { + "name": "delayed-stream", + "version": "1.0.0" + } + }, + { + "id": "extend@3.0.2", + "info": { + "name": "extend", + "version": "3.0.2" + } + }, + { + "id": "forever-agent@0.6.1", + "info": { + "name": "forever-agent", + "version": "0.6.1" + } + }, + { + "id": "form-data@2.1.4", + "info": { + "name": "form-data", + "version": "2.1.4" + } + }, + { + "id": "asynckit@0.4.0", + "info": { + "name": "asynckit", + "version": "0.4.0" + } + }, + { + "id": "har-validator@2.0.6", + "info": { + "name": "har-validator", + "version": "2.0.6" + } + }, + { + "id": "chalk@1.1.3", + "info": { + "name": "chalk", + "version": "1.1.3" + } + }, + { + "id": "ansi-styles@2.2.1", + "info": { + "name": "ansi-styles", + "version": "2.2.1" + } + }, + { + "id": "escape-string-regexp@1.0.5", + "info": { + "name": "escape-string-regexp", + "version": "1.0.5" + } + }, + { + "id": "has-ansi@2.0.0", + "info": { + "name": "has-ansi", + "version": "2.0.0" + } + }, + { + "id": "ansi-regex@2.1.1", + "info": { + "name": "ansi-regex", + "version": "2.1.1" + } + }, + { + "id": "strip-ansi@3.0.1", + "info": { + "name": "strip-ansi", + "version": "3.0.1" + } + }, + { + "id": "supports-color@2.0.0", + "info": { + "name": "supports-color", + "version": "2.0.0" + } + }, + { + "id": "commander@2.20.3", + "info": { + "name": "commander", + "version": "2.20.3" + } + }, + { + "id": "is-my-json-valid@2.20.6", + "info": { + "name": "is-my-json-valid", + "version": "2.20.6" + } + }, + { + "id": "generate-function@2.3.1", + "info": { + "name": "generate-function", + "version": "2.3.1" + } + }, + { + "id": "is-property@1.0.2", + "info": { + "name": "is-property", + "version": "1.0.2" + } + }, + { + "id": "generate-object-property@1.2.0", + "info": { + "name": "generate-object-property", + "version": "1.2.0" + } + }, + { + "id": "is-my-ip-valid@1.0.1", + "info": { + "name": "is-my-ip-valid", + "version": "1.0.1" + } + }, + { + "id": "jsonpointer@5.0.1", + "info": { + "name": "jsonpointer", + "version": "5.0.1" + } + }, + { + "id": "xtend@4.0.2", + "info": { + "name": "xtend", + "version": "4.0.2" + } + }, + { + "id": "pinkie-promise@2.0.1", + "info": { + "name": "pinkie-promise", + "version": "2.0.1" + } + }, + { + "id": "pinkie@2.0.4", + "info": { + "name": "pinkie", + "version": "2.0.4" + } + }, + { + "id": "hawk@3.1.3", + "info": { + "name": "hawk", + "version": "3.1.3" + } + }, + { + "id": "boom@2.10.1", + "info": { + "name": "boom", + "version": "2.10.1" + } + }, + { + "id": "hoek@2.16.3", + "info": { + "name": "hoek", + "version": "2.16.3" + } + }, + { + "id": "cryptiles@2.0.5", + "info": { + "name": "cryptiles", + "version": "2.0.5" + } + }, + { + "id": "sntp@1.0.9", + "info": { + "name": "sntp", + "version": "1.0.9" + } + }, + { + "id": "http-signature@1.1.1", + "info": { + "name": "http-signature", + "version": "1.1.1" + } + }, + { + "id": "assert-plus@0.2.0", + "info": { + "name": "assert-plus", + "version": "0.2.0" + } + }, + { + "id": "jsprim@1.4.2", + "info": { + "name": "jsprim", + "version": "1.4.2" + } + }, + { + "id": "assert-plus@1.0.0", + "info": { + "name": "assert-plus", + "version": "1.0.0" + } + }, + { + "id": "extsprintf@1.3.0", + "info": { + "name": "extsprintf", + "version": "1.3.0" + } + }, + { + "id": "json-schema@0.4.0", + "info": { + "name": "json-schema", + "version": "0.4.0" + } + }, + { + "id": "verror@1.10.0", + "info": { + "name": "verror", + "version": "1.10.0" + } + }, + { + "id": "core-util-is@1.0.2", + "info": { + "name": "core-util-is", + "version": "1.0.2" + } + }, + { + "id": "sshpk@1.18.0", + "info": { + "name": "sshpk", + "version": "1.18.0" + } + }, + { + "id": "asn1@0.2.6", + "info": { + "name": "asn1", + "version": "0.2.6" + } + }, + { + "id": "safer-buffer@2.1.2", + "info": { + "name": "safer-buffer", + "version": "2.1.2" + } + }, + { + "id": "bcrypt-pbkdf@1.0.2", + "info": { + "name": "bcrypt-pbkdf", + "version": "1.0.2" + } + }, + { + "id": "tweetnacl@0.14.5", + "info": { + "name": "tweetnacl", + "version": "0.14.5" + } + }, + { + "id": "dashdash@1.14.1", + "info": { + "name": "dashdash", + "version": "1.14.1" + } + }, + { + "id": "ecc-jsbn@0.1.2", + "info": { + "name": "ecc-jsbn", + "version": "0.1.2" + } + }, + { + "id": "jsbn@0.1.1", + "info": { + "name": "jsbn", + "version": "0.1.1" + } + }, + { + "id": "getpass@0.1.7", + "info": { + "name": "getpass", + "version": "0.1.7" + } + }, + { + "id": "is-typedarray@1.0.0", + "info": { + "name": "is-typedarray", + "version": "1.0.0" + } + }, + { + "id": "isstream@0.1.2", + "info": { + "name": "isstream", + "version": "0.1.2" + } + }, + { + "id": "oauth-sign@0.8.2", + "info": { + "name": "oauth-sign", + "version": "0.8.2" + } + }, + { + "id": "qs@6.3.3", + "info": { + "name": "qs", + "version": "6.3.3" + } + }, + { + "id": "stringstream@0.0.6", + "info": { + "name": "stringstream", + "version": "0.0.6" + } + }, + { + "id": "tough-cookie@2.3.4", + "info": { + "name": "tough-cookie", + "version": "2.3.4" + } + }, + { + "id": "punycode@1.4.1", + "info": { + "name": "punycode", + "version": "1.4.1" + } + }, + { + "id": "uuid@3.4.0", + "info": { + "name": "uuid", + "version": "3.4.0" + } + }, + { + "id": "deeper@2.1.0", + "info": { + "name": "deeper", + "version": "2.1.0" + } + }, + { + "id": "foreground-child@1.5.6", + "info": { + "name": "foreground-child", + "version": "1.5.6" + } + }, + { + "id": "cross-spawn@4.0.2", + "info": { + "name": "cross-spawn", + "version": "4.0.2" + } + }, + { + "id": "lru-cache@4.1.5", + "info": { + "name": "lru-cache", + "version": "4.1.5" + } + }, + { + "id": "pseudomap@1.0.2", + "info": { + "name": "pseudomap", + "version": "1.0.2" + } + }, + { + "id": "yallist@2.1.2", + "info": { + "name": "yallist", + "version": "2.1.2" + } + }, + { + "id": "which@1.3.1", + "info": { + "name": "which", + "version": "1.3.1" + } + }, + { + "id": "isexe@2.0.0", + "info": { + "name": "isexe", + "version": "2.0.0" + } + }, + { + "id": "signal-exit@3.0.7", + "info": { + "name": "signal-exit", + "version": "3.0.7" + } + }, + { + "id": "isexe@1.1.2", + "info": { + "name": "isexe", + "version": "1.1.2" + } + }, + { + "id": "js-yaml@3.14.1", + "info": { + "name": "js-yaml", + "version": "3.14.1" + } + }, + { + "id": "esprima@4.0.1", + "info": { + "name": "esprima", + "version": "4.0.1" + } + }, + { + "id": "nyc@6.6.1", + "info": { + "name": "nyc", + "version": "6.6.1" + } + }, + { + "id": "only-shallow@1.2.0", + "info": { + "name": "only-shallow", + "version": "1.2.0" + } + }, + { + "id": "opener@1.5.2", + "info": { + "name": "opener", + "version": "1.5.2" + } + }, + { + "id": "readable-stream@2.3.8", + "info": { + "name": "readable-stream", + "version": "2.3.8" + } + }, + { + "id": "isarray@1.0.0", + "info": { + "name": "isarray", + "version": "1.0.0" + } + }, + { + "id": "process-nextick-args@2.0.1", + "info": { + "name": "process-nextick-args", + "version": "2.0.1" + } + }, + { + "id": "string_decoder@1.1.1", + "info": { + "name": "string_decoder", + "version": "1.1.1" + } + }, + { + "id": "util-deprecate@1.0.2", + "info": { + "name": "util-deprecate", + "version": "1.0.2" + } + }, + { + "id": "signal-exit@2.1.2", + "info": { + "name": "signal-exit", + "version": "2.1.2" + } + }, + { + "id": "stack-utils@0.4.0", + "info": { + "name": "stack-utils", + "version": "0.4.0" + } + }, + { + "id": "supports-color@1.3.1", + "info": { + "name": "supports-color", + "version": "1.3.1" + } + }, + { + "id": "tap-mocha-reporter@0.0.27", + "info": { + "name": "tap-mocha-reporter", + "version": "0.0.27" + } + }, + { + "id": "color-support@1.1.3", + "info": { + "name": "color-support", + "version": "1.1.3" + } + }, + { + "id": "diff@1.4.0", + "info": { + "name": "diff", + "version": "1.4.0" + } + }, + { + "id": "tap-parser@1.3.2", + "info": { + "name": "tap-parser", + "version": "1.3.2" + } + }, + { + "id": "events-to-array@1.1.2", + "info": { + "name": "events-to-array", + "version": "1.1.2" + } + }, + { + "id": "unicode-length@1.0.3", + "info": { + "name": "unicode-length", + "version": "1.0.3" + } + }, + { + "id": "tmatch@2.0.1", + "info": { + "name": "tmatch", + "version": "2.0.1" + } + }, + { + "id": "adm-zip@0.4.7", + "info": { + "name": "adm-zip", + "version": "0.4.7" + } + }, + { + "id": "file-type@8.1.0", + "info": { + "name": "file-type", + "version": "8.1.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "goof@0.0.3", + "deps": [ + { + "nodeId": "body-parser@1.9.0" + }, + { + "nodeId": "cfenv@1.2.4" + }, + { + "nodeId": "cookie-parser@1.3.3" + }, + { + "nodeId": "consolidate@0.14.5" + }, + { + "nodeId": "dustjs-linkedin@2.5.0" + }, + { + "nodeId": "dustjs-helpers@1.5.0" + }, + { + "nodeId": "ejs@1.0.0" + }, + { + "nodeId": "ejs-locals@1.0.2" + }, + { + "nodeId": "errorhandler@1.2.0" + }, + { + "nodeId": "express@4.12.4" + }, + { + "nodeId": "express-fileupload@0.0.5" + }, + { + "nodeId": "humanize-ms@1.0.1" + }, + { + "nodeId": "jquery@2.2.4" + }, + { + "nodeId": "marked@0.3.5" + }, + { + "nodeId": "method-override@3.0.0" + }, + { + "nodeId": "moment@2.15.1" + }, + { + "nodeId": "mongoose@4.2.4" + }, + { + "nodeId": "morgan@1.10.0" + }, + { + "nodeId": "ms@0.7.3" + }, + { + "nodeId": "npmconf@0.0.24" + }, + { + "nodeId": "optional@0.1.4" + }, + { + "nodeId": "st@0.2.4" + }, + { + "nodeId": "stream-buffers@3.0.2" + }, + { + "nodeId": "tap@5.8.0" + }, + { + "nodeId": "adm-zip@0.4.7" + }, + { + "nodeId": "file-type@8.1.0" + } + ] + }, + { + "nodeId": "body-parser@1.9.0", + "pkgId": "body-parser@1.9.0", + "deps": [ + { + "nodeId": "bytes@1.0.0" + }, + { + "nodeId": "depd@1.0.1" + }, + { + "nodeId": "iconv-lite@0.4.4" + }, + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "on-finished@2.1.0" + }, + { + "nodeId": "qs@2.2.4" + }, + { + "nodeId": "raw-body@1.3.0" + }, + { + "nodeId": "type-is@1.5.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@1.0.0", + "pkgId": "bytes@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@1.0.1", + "pkgId": "depd@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.4.4", + "pkgId": "iconv-lite@0.4.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "media-typer@0.3.0", + "pkgId": "media-typer@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.1.0", + "pkgId": "on-finished@2.1.0", + "deps": [ + { + "nodeId": "ee-first@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.0.5", + "pkgId": "ee-first@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@2.2.4", + "pkgId": "qs@2.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-body@1.3.0", + "pkgId": "raw-body@1.3.0", + "deps": [ + { + "nodeId": "bytes@1.0.0" + }, + { + "nodeId": "iconv-lite@0.4.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.5.7", + "pkgId": "type-is@1.5.7", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.0.14" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.0.14", + "pkgId": "mime-types@2.0.14", + "deps": [ + { + "nodeId": "mime-db@1.12.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.12.0", + "pkgId": "mime-db@1.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cfenv@1.2.4", + "pkgId": "cfenv@1.2.4", + "deps": [ + { + "nodeId": "js-yaml@4.0.0" + }, + { + "nodeId": "ports@1.1.0" + }, + { + "nodeId": "underscore@1.12.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-yaml@4.0.0", + "pkgId": "js-yaml@4.0.0", + "deps": [ + { + "nodeId": "argparse@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "argparse@2.0.1", + "pkgId": "argparse@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ports@1.1.0", + "pkgId": "ports@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "underscore@1.12.1", + "pkgId": "underscore@1.12.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie-parser@1.3.3", + "pkgId": "cookie-parser@1.3.3", + "deps": [ + { + "nodeId": "cookie@0.1.2" + }, + { + "nodeId": "cookie-signature@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie@0.1.2", + "pkgId": "cookie@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie-signature@1.0.5", + "pkgId": "cookie-signature@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "consolidate@0.14.5", + "pkgId": "consolidate@0.14.5", + "deps": [ + { + "nodeId": "bluebird@3.7.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bluebird@3.7.2", + "pkgId": "bluebird@3.7.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dustjs-linkedin@2.5.0", + "pkgId": "dustjs-linkedin@2.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dustjs-helpers@1.5.0", + "pkgId": "dustjs-helpers@1.5.0", + "deps": [ + { + "nodeId": "dustjs-linkedin@2.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ejs@1.0.0", + "pkgId": "ejs@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ejs-locals@1.0.2", + "pkgId": "ejs-locals@1.0.2", + "deps": [ + { + "nodeId": "ejs@0.8.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ejs@0.8.8", + "pkgId": "ejs@0.8.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "errorhandler@1.2.0", + "pkgId": "errorhandler@1.2.0", + "deps": [ + { + "nodeId": "accepts@1.1.4" + }, + { + "nodeId": "escape-html@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "accepts@1.1.4", + "pkgId": "accepts@1.1.4", + "deps": [ + { + "nodeId": "mime-types@2.0.14" + }, + { + "nodeId": "negotiator@0.4.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.4.9", + "pkgId": "negotiator@0.4.9", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-html@1.0.1", + "pkgId": "escape-html@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express@4.12.4", + "pkgId": "express@4.12.4", + "deps": [ + { + "nodeId": "accepts@1.2.13" + }, + { + "nodeId": "content-disposition@0.5.0" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "cookie@0.1.2" + }, + { + "nodeId": "cookie-signature@1.0.6" + }, + { + "nodeId": "debug@2.2.0" + }, + { + "nodeId": "depd@1.0.1" + }, + { + "nodeId": "escape-html@1.0.1" + }, + { + "nodeId": "etag@1.6.0" + }, + { + "nodeId": "finalhandler@0.3.6" + }, + { + "nodeId": "fresh@0.2.4" + }, + { + "nodeId": "merge-descriptors@1.0.0" + }, + { + "nodeId": "methods@1.1.2" + }, + { + "nodeId": "on-finished@2.2.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "path-to-regexp@0.1.3" + }, + { + "nodeId": "proxy-addr@1.0.10" + }, + { + "nodeId": "qs@2.4.2" + }, + { + "nodeId": "range-parser@1.0.3" + }, + { + "nodeId": "send@0.12.3" + }, + { + "nodeId": "serve-static@1.9.3" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "utils-merge@1.0.0" + }, + { + "nodeId": "vary@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "accepts@1.2.13", + "pkgId": "accepts@1.2.13", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.5.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.5.3", + "pkgId": "negotiator@0.5.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-disposition@0.5.0", + "pkgId": "content-disposition@0.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-type@1.0.5", + "pkgId": "content-type@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie-signature@1.0.6", + "pkgId": "cookie-signature@1.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@2.2.0", + "pkgId": "debug@2.2.0", + "deps": [ + { + "nodeId": "ms@0.7.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@0.7.1", + "pkgId": "ms@0.7.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "etag@1.6.0", + "pkgId": "etag@1.6.0", + "deps": [ + { + "nodeId": "crc@3.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "crc@3.2.1", + "pkgId": "crc@3.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "finalhandler@0.3.6", + "pkgId": "finalhandler@0.3.6", + "deps": [ + { + "nodeId": "debug@2.2.0" + }, + { + "nodeId": "escape-html@1.0.1" + }, + { + "nodeId": "on-finished@2.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.2.1", + "pkgId": "on-finished@2.2.1", + "deps": [ + { + "nodeId": "ee-first@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.1.0", + "pkgId": "ee-first@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fresh@0.2.4", + "pkgId": "fresh@0.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge-descriptors@1.0.0", + "pkgId": "merge-descriptors@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "methods@1.1.2", + "pkgId": "methods@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parseurl@1.3.3", + "pkgId": "parseurl@1.3.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-to-regexp@0.1.3", + "pkgId": "path-to-regexp@0.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proxy-addr@1.0.10", + "pkgId": "proxy-addr@1.0.10", + "deps": [ + { + "nodeId": "forwarded@0.1.2" + }, + { + "nodeId": "ipaddr.js@1.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "forwarded@0.1.2", + "pkgId": "forwarded@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ipaddr.js@1.0.5", + "pkgId": "ipaddr.js@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@2.4.2", + "pkgId": "qs@2.4.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "range-parser@1.0.3", + "pkgId": "range-parser@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "send@0.12.3", + "pkgId": "send@0.12.3", + "deps": [ + { + "nodeId": "debug@2.2.0" + }, + { + "nodeId": "depd@1.0.1" + }, + { + "nodeId": "destroy@1.0.3" + }, + { + "nodeId": "escape-html@1.0.1" + }, + { + "nodeId": "etag@1.6.0" + }, + { + "nodeId": "fresh@0.2.4" + }, + { + "nodeId": "mime@1.3.4" + }, + { + "nodeId": "ms@0.7.1" + }, + { + "nodeId": "on-finished@2.2.1" + }, + { + "nodeId": "range-parser@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "destroy@1.0.3", + "pkgId": "destroy@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@1.3.4", + "pkgId": "mime@1.3.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serve-static@1.9.3", + "pkgId": "serve-static@1.9.3", + "deps": [ + { + "nodeId": "escape-html@1.0.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "send@0.12.3" + }, + { + "nodeId": "utils-merge@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "utils-merge@1.0.0", + "pkgId": "utils-merge@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.6.18", + "pkgId": "type-is@1.6.18", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vary@1.0.1", + "pkgId": "vary@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express-fileupload@0.0.5", + "pkgId": "express-fileupload@0.0.5", + "deps": [ + { + "nodeId": "connect-busboy@0.0.2" + }, + { + "nodeId": "fs-extra@0.22.1" + }, + { + "nodeId": "streamifier@0.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "connect-busboy@0.0.2", + "pkgId": "connect-busboy@0.0.2", + "deps": [ + { + "nodeId": "busboy@1.6.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "busboy@1.6.0", + "pkgId": "busboy@1.6.0", + "deps": [ + { + "nodeId": "streamsearch@1.1.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "streamsearch@1.1.0", + "pkgId": "streamsearch@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs-extra@0.22.1", + "pkgId": "fs-extra@0.22.1", + "deps": [ + { + "nodeId": "graceful-fs@4.2.11" + }, + { + "nodeId": "jsonfile@2.4.0" + }, + { + "nodeId": "rimraf@2.7.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "graceful-fs@4.2.11", + "pkgId": "graceful-fs@4.2.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonfile@2.4.0", + "pkgId": "jsonfile@2.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "rimraf@2.7.1", + "pkgId": "rimraf@2.7.1", + "deps": [ + { + "nodeId": "glob@7.2.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "glob@7.2.3", + "pkgId": "glob@7.2.3", + "deps": [ + { + "nodeId": "fs.realpath@1.0.0" + }, + { + "nodeId": "inflight@1.0.6" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "minimatch@3.1.2" + }, + { + "nodeId": "once@1.4.0" + }, + { + "nodeId": "path-is-absolute@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fs.realpath@1.0.0", + "pkgId": "fs.realpath@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inflight@1.0.6", + "pkgId": "inflight@1.0.6", + "deps": [ + { + "nodeId": "once@1.4.0" + }, + { + "nodeId": "wrappy@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "once@1.4.0", + "pkgId": "once@1.4.0", + "deps": [ + { + "nodeId": "wrappy@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "wrappy@1.0.2", + "pkgId": "wrappy@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.4", + "pkgId": "inherits@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimatch@3.1.2", + "pkgId": "minimatch@3.1.2", + "deps": [ + { + "nodeId": "brace-expansion@1.1.11" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "brace-expansion@1.1.11", + "pkgId": "brace-expansion@1.1.11", + "deps": [ + { + "nodeId": "balanced-match@1.0.2" + }, + { + "nodeId": "concat-map@0.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "balanced-match@1.0.2", + "pkgId": "balanced-match@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "concat-map@0.0.1", + "pkgId": "concat-map@0.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-is-absolute@1.0.1", + "pkgId": "path-is-absolute@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "streamifier@0.1.1", + "pkgId": "streamifier@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "humanize-ms@1.0.1", + "pkgId": "humanize-ms@1.0.1", + "deps": [ + { + "nodeId": "ms@0.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@0.6.2", + "pkgId": "ms@0.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jquery@2.2.4", + "pkgId": "jquery@2.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "marked@0.3.5", + "pkgId": "marked@0.3.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "method-override@3.0.0", + "pkgId": "method-override@3.0.0", + "deps": [ + { + "nodeId": "debug@3.1.0" + }, + { + "nodeId": "methods@1.1.2" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "vary@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@3.1.0", + "pkgId": "debug@3.1.0", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.0.0", + "pkgId": "ms@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vary@1.1.2", + "pkgId": "vary@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "moment@2.15.1", + "pkgId": "moment@2.15.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mongoose@4.2.4", + "pkgId": "mongoose@4.2.4", + "deps": [ + { + "nodeId": "async@0.9.0" + }, + { + "nodeId": "bson@0.4.23" + }, + { + "nodeId": "hooks-fixed@1.1.0" + }, + { + "nodeId": "kareem@1.0.1" + }, + { + "nodeId": "mongodb@2.0.46" + }, + { + "nodeId": "mpath@0.1.1" + }, + { + "nodeId": "mpromise@0.5.4" + }, + { + "nodeId": "mquery@1.6.3" + }, + { + "nodeId": "ms@0.7.1" + }, + { + "nodeId": "muri@1.0.0" + }, + { + "nodeId": "regexp-clone@0.0.1" + }, + { + "nodeId": "sliced@0.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async@0.9.0", + "pkgId": "async@0.9.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bson@0.4.23", + "pkgId": "bson@0.4.23", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hooks-fixed@1.1.0", + "pkgId": "hooks-fixed@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "kareem@1.0.1", + "pkgId": "kareem@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mongodb@2.0.46", + "pkgId": "mongodb@2.0.46", + "deps": [ + { + "nodeId": "es6-promise@2.1.1" + }, + { + "nodeId": "mongodb-core@1.2.19" + }, + { + "nodeId": "readable-stream@1.0.31" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es6-promise@2.1.1", + "pkgId": "es6-promise@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mongodb-core@1.2.19", + "pkgId": "mongodb-core@1.2.19", + "deps": [ + { + "nodeId": "bson@0.4.23" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-stream@1.0.31", + "pkgId": "readable-stream@1.0.31", + "deps": [ + { + "nodeId": "core-util-is@1.0.3" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "isarray@0.0.1" + }, + { + "nodeId": "string_decoder@0.10.31" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-util-is@1.0.3", + "pkgId": "core-util-is@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isarray@0.0.1", + "pkgId": "isarray@0.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string_decoder@0.10.31", + "pkgId": "string_decoder@0.10.31", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mpath@0.1.1", + "pkgId": "mpath@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mpromise@0.5.4", + "pkgId": "mpromise@0.5.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mquery@1.6.3", + "pkgId": "mquery@1.6.3", + "deps": [ + { + "nodeId": "bluebird@2.9.26" + }, + { + "nodeId": "debug@2.2.0" + }, + { + "nodeId": "regexp-clone@0.0.1" + }, + { + "nodeId": "sliced@0.0.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bluebird@2.9.26", + "pkgId": "bluebird@2.9.26", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "regexp-clone@0.0.1", + "pkgId": "regexp-clone@0.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sliced@0.0.5", + "pkgId": "sliced@0.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "muri@1.0.0", + "pkgId": "muri@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "morgan@1.10.0", + "pkgId": "morgan@1.10.0", + "deps": [ + { + "nodeId": "basic-auth@2.0.1" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "on-finished@2.3.0" + }, + { + "nodeId": "on-headers@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "basic-auth@2.0.1", + "pkgId": "basic-auth@2.0.1", + "deps": [ + { + "nodeId": "safe-buffer@5.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-buffer@5.1.2", + "pkgId": "safe-buffer@5.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@2.6.9", + "pkgId": "debug@2.6.9", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@2.0.0", + "pkgId": "depd@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.3.0", + "pkgId": "on-finished@2.3.0", + "deps": [ + { + "nodeId": "ee-first@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.1.1", + "pkgId": "ee-first@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-headers@1.0.2", + "pkgId": "on-headers@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@0.7.3", + "pkgId": "ms@0.7.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "npmconf@0.0.24", + "pkgId": "npmconf@0.0.24", + "deps": [ + { + "nodeId": "config-chain@1.1.13" + }, + { + "nodeId": "inherits@1.0.2" + }, + { + "nodeId": "ini@1.1.0" + }, + { + "nodeId": "mkdirp@0.3.5" + }, + { + "nodeId": "nopt@2.2.1" + }, + { + "nodeId": "once@1.1.1" + }, + { + "nodeId": "osenv@0.0.3" + }, + { + "nodeId": "semver@1.1.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "config-chain@1.1.13", + "pkgId": "config-chain@1.1.13", + "deps": [ + { + "nodeId": "ini@1.3.8" + }, + { + "nodeId": "proto-list@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ini@1.3.8", + "pkgId": "ini@1.3.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proto-list@1.2.4", + "pkgId": "proto-list@1.2.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@1.0.2", + "pkgId": "inherits@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ini@1.1.0", + "pkgId": "ini@1.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mkdirp@0.3.5", + "pkgId": "mkdirp@0.3.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nopt@2.2.1", + "pkgId": "nopt@2.2.1", + "deps": [ + { + "nodeId": "abbrev@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "abbrev@1.1.1", + "pkgId": "abbrev@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "once@1.1.1", + "pkgId": "once@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "osenv@0.0.3", + "pkgId": "osenv@0.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "semver@1.1.4", + "pkgId": "semver@1.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "optional@0.1.4", + "pkgId": "optional@0.1.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "st@0.2.4", + "pkgId": "st@0.2.4", + "deps": [ + { + "nodeId": "async-cache@0.1.5" + }, + { + "nodeId": "fd@0.0.3" + }, + { + "nodeId": "mime@1.2.11" + }, + { + "nodeId": "negotiator@0.2.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "async-cache@0.1.5", + "pkgId": "async-cache@0.1.5", + "deps": [ + { + "nodeId": "lru-cache@2.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-cache@2.3.1", + "pkgId": "lru-cache@2.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fd@0.0.3", + "pkgId": "fd@0.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@1.2.11", + "pkgId": "mime@1.2.11", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.2.8", + "pkgId": "negotiator@0.2.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stream-buffers@3.0.2", + "pkgId": "stream-buffers@3.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tap@5.8.0", + "pkgId": "tap@5.8.0", + "deps": [ + { + "nodeId": "bluebird@3.7.2" + }, + { + "nodeId": "clean-yaml-object@0.1.0" + }, + { + "nodeId": "codecov.io@0.1.6" + }, + { + "nodeId": "coveralls@2.13.3" + }, + { + "nodeId": "deeper@2.1.0" + }, + { + "nodeId": "foreground-child@1.5.6" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "isexe@1.1.2" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "nyc@6.6.1" + }, + { + "nodeId": "only-shallow@1.2.0" + }, + { + "nodeId": "opener@1.5.2" + }, + { + "nodeId": "readable-stream@2.3.8" + }, + { + "nodeId": "signal-exit@2.1.2" + }, + { + "nodeId": "stack-utils@0.4.0" + }, + { + "nodeId": "supports-color@1.3.1" + }, + { + "nodeId": "tap-mocha-reporter@0.0.27" + }, + { + "nodeId": "tap-parser@1.3.2" + }, + { + "nodeId": "tmatch@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "clean-yaml-object@0.1.0", + "pkgId": "clean-yaml-object@0.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "codecov.io@0.1.6", + "pkgId": "codecov.io@0.1.6", + "deps": [ + { + "nodeId": "request@2.42.0" + }, + { + "nodeId": "urlgrey@0.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "request@2.42.0", + "pkgId": "request@2.42.0", + "deps": [ + { + "nodeId": "bl@0.9.5" + }, + { + "nodeId": "caseless@0.6.0" + }, + { + "nodeId": "forever-agent@0.5.2" + }, + { + "nodeId": "json-stringify-safe@5.0.1" + }, + { + "nodeId": "mime-types@1.0.2" + }, + { + "nodeId": "node-uuid@1.4.8" + }, + { + "nodeId": "qs@1.2.2" + }, + { + "nodeId": "tunnel-agent@0.4.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bl@0.9.5", + "pkgId": "bl@0.9.5", + "deps": [ + { + "nodeId": "readable-stream@1.0.34" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-stream@1.0.34", + "pkgId": "readable-stream@1.0.34", + "deps": [ + { + "nodeId": "core-util-is@1.0.3" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "isarray@0.0.1" + }, + { + "nodeId": "string_decoder@0.10.31" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "caseless@0.6.0", + "pkgId": "caseless@0.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "forever-agent@0.5.2", + "pkgId": "forever-agent@0.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-stringify-safe@5.0.1", + "pkgId": "json-stringify-safe@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@1.0.2", + "pkgId": "mime-types@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "node-uuid@1.4.8", + "pkgId": "node-uuid@1.4.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@1.2.2", + "pkgId": "qs@1.2.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tunnel-agent@0.4.3", + "pkgId": "tunnel-agent@0.4.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "urlgrey@0.4.0", + "pkgId": "urlgrey@0.4.0", + "deps": [ + { + "nodeId": "tape@2.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tape@2.3.0", + "pkgId": "tape@2.3.0", + "deps": [ + { + "nodeId": "deep-equal@0.1.2" + }, + { + "nodeId": "defined@0.0.0" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "jsonify@0.0.1" + }, + { + "nodeId": "resumer@0.0.0" + }, + { + "nodeId": "split@0.2.10" + }, + { + "nodeId": "stream-combiner@0.0.4" + }, + { + "nodeId": "through@2.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "deep-equal@0.1.2", + "pkgId": "deep-equal@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "defined@0.0.0", + "pkgId": "defined@0.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonify@0.0.1", + "pkgId": "jsonify@0.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "resumer@0.0.0", + "pkgId": "resumer@0.0.0", + "deps": [ + { + "nodeId": "through@2.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "through@2.3.8", + "pkgId": "through@2.3.8", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "split@0.2.10", + "pkgId": "split@0.2.10", + "deps": [ + { + "nodeId": "through@2.3.8" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stream-combiner@0.0.4", + "pkgId": "stream-combiner@0.0.4", + "deps": [ + { + "nodeId": "duplexer@0.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "duplexer@0.1.2", + "pkgId": "duplexer@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "coveralls@2.13.3", + "pkgId": "coveralls@2.13.3", + "deps": [ + { + "nodeId": "js-yaml@3.6.1" + }, + { + "nodeId": "lcov-parse@0.0.10" + }, + { + "nodeId": "log-driver@1.2.5" + }, + { + "nodeId": "minimist@1.2.0" + }, + { + "nodeId": "request@2.79.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-yaml@3.6.1", + "pkgId": "js-yaml@3.6.1", + "deps": [ + { + "nodeId": "argparse@1.0.10" + }, + { + "nodeId": "esprima@2.7.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "argparse@1.0.10", + "pkgId": "argparse@1.0.10", + "deps": [ + { + "nodeId": "sprintf-js@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sprintf-js@1.0.3", + "pkgId": "sprintf-js@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esprima@2.7.3", + "pkgId": "esprima@2.7.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lcov-parse@0.0.10", + "pkgId": "lcov-parse@0.0.10", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "log-driver@1.2.5", + "pkgId": "log-driver@1.2.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "minimist@1.2.0", + "pkgId": "minimist@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "request@2.79.0", + "pkgId": "request@2.79.0", + "deps": [ + { + "nodeId": "aws-sign2@0.6.0" + }, + { + "nodeId": "aws4@1.12.0" + }, + { + "nodeId": "caseless@0.11.0" + }, + { + "nodeId": "combined-stream@1.0.8" + }, + { + "nodeId": "extend@3.0.2" + }, + { + "nodeId": "forever-agent@0.6.1" + }, + { + "nodeId": "form-data@2.1.4" + }, + { + "nodeId": "har-validator@2.0.6" + }, + { + "nodeId": "hawk@3.1.3" + }, + { + "nodeId": "http-signature@1.1.1" + }, + { + "nodeId": "is-typedarray@1.0.0" + }, + { + "nodeId": "isstream@0.1.2" + }, + { + "nodeId": "json-stringify-safe@5.0.1" + }, + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "oauth-sign@0.8.2" + }, + { + "nodeId": "qs@6.3.3" + }, + { + "nodeId": "stringstream@0.0.6" + }, + { + "nodeId": "tough-cookie@2.3.4" + }, + { + "nodeId": "tunnel-agent@0.4.3" + }, + { + "nodeId": "uuid@3.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "aws-sign2@0.6.0", + "pkgId": "aws-sign2@0.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "aws4@1.12.0", + "pkgId": "aws4@1.12.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "caseless@0.11.0", + "pkgId": "caseless@0.11.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "combined-stream@1.0.8", + "pkgId": "combined-stream@1.0.8", + "deps": [ + { + "nodeId": "delayed-stream@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "delayed-stream@1.0.0", + "pkgId": "delayed-stream@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "extend@3.0.2", + "pkgId": "extend@3.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "forever-agent@0.6.1", + "pkgId": "forever-agent@0.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "form-data@2.1.4", + "pkgId": "form-data@2.1.4", + "deps": [ + { + "nodeId": "asynckit@0.4.0" + }, + { + "nodeId": "combined-stream@1.0.8" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "asynckit@0.4.0", + "pkgId": "asynckit@0.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "har-validator@2.0.6", + "pkgId": "har-validator@2.0.6", + "deps": [ + { + "nodeId": "chalk@1.1.3" + }, + { + "nodeId": "commander@2.20.3" + }, + { + "nodeId": "is-my-json-valid@2.20.6" + }, + { + "nodeId": "pinkie-promise@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "chalk@1.1.3", + "pkgId": "chalk@1.1.3", + "deps": [ + { + "nodeId": "ansi-styles@2.2.1" + }, + { + "nodeId": "escape-string-regexp@1.0.5" + }, + { + "nodeId": "has-ansi@2.0.0" + }, + { + "nodeId": "strip-ansi@3.0.1" + }, + { + "nodeId": "supports-color@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-styles@2.2.1", + "pkgId": "ansi-styles@2.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-string-regexp@1.0.5", + "pkgId": "escape-string-regexp@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-ansi@2.0.0", + "pkgId": "has-ansi@2.0.0", + "deps": [ + { + "nodeId": "ansi-regex@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ansi-regex@2.1.1", + "pkgId": "ansi-regex@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "strip-ansi@3.0.1", + "pkgId": "strip-ansi@3.0.1", + "deps": [ + { + "nodeId": "ansi-regex@2.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-color@2.0.0", + "pkgId": "supports-color@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "commander@2.20.3", + "pkgId": "commander@2.20.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-my-json-valid@2.20.6", + "pkgId": "is-my-json-valid@2.20.6", + "deps": [ + { + "nodeId": "generate-function@2.3.1" + }, + { + "nodeId": "generate-object-property@1.2.0" + }, + { + "nodeId": "is-my-ip-valid@1.0.1" + }, + { + "nodeId": "jsonpointer@5.0.1" + }, + { + "nodeId": "xtend@4.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "generate-function@2.3.1", + "pkgId": "generate-function@2.3.1", + "deps": [ + { + "nodeId": "is-property@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-property@1.0.2", + "pkgId": "is-property@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "generate-object-property@1.2.0", + "pkgId": "generate-object-property@1.2.0", + "deps": [ + { + "nodeId": "is-property@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-my-ip-valid@1.0.1", + "pkgId": "is-my-ip-valid@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsonpointer@5.0.1", + "pkgId": "jsonpointer@5.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "xtend@4.0.2", + "pkgId": "xtend@4.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pinkie-promise@2.0.1", + "pkgId": "pinkie-promise@2.0.1", + "deps": [ + { + "nodeId": "pinkie@2.0.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pinkie@2.0.4", + "pkgId": "pinkie@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hawk@3.1.3", + "pkgId": "hawk@3.1.3", + "deps": [ + { + "nodeId": "boom@2.10.1" + }, + { + "nodeId": "cryptiles@2.0.5" + }, + { + "nodeId": "hoek@2.16.3" + }, + { + "nodeId": "sntp@1.0.9" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "boom@2.10.1", + "pkgId": "boom@2.10.1", + "deps": [ + { + "nodeId": "hoek@2.16.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hoek@2.16.3", + "pkgId": "hoek@2.16.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cryptiles@2.0.5", + "pkgId": "cryptiles@2.0.5", + "deps": [ + { + "nodeId": "boom@2.10.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sntp@1.0.9", + "pkgId": "sntp@1.0.9", + "deps": [ + { + "nodeId": "hoek@2.16.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-signature@1.1.1", + "pkgId": "http-signature@1.1.1", + "deps": [ + { + "nodeId": "assert-plus@0.2.0" + }, + { + "nodeId": "jsprim@1.4.2" + }, + { + "nodeId": "sshpk@1.18.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "assert-plus@0.2.0", + "pkgId": "assert-plus@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsprim@1.4.2", + "pkgId": "jsprim@1.4.2", + "deps": [ + { + "nodeId": "assert-plus@1.0.0" + }, + { + "nodeId": "extsprintf@1.3.0" + }, + { + "nodeId": "json-schema@0.4.0" + }, + { + "nodeId": "verror@1.10.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "assert-plus@1.0.0", + "pkgId": "assert-plus@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "extsprintf@1.3.0", + "pkgId": "extsprintf@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "json-schema@0.4.0", + "pkgId": "json-schema@0.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "verror@1.10.0", + "pkgId": "verror@1.10.0", + "deps": [ + { + "nodeId": "assert-plus@1.0.0" + }, + { + "nodeId": "core-util-is@1.0.2" + }, + { + "nodeId": "extsprintf@1.3.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "core-util-is@1.0.2", + "pkgId": "core-util-is@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "sshpk@1.18.0", + "pkgId": "sshpk@1.18.0", + "deps": [ + { + "nodeId": "asn1@0.2.6" + }, + { + "nodeId": "assert-plus@1.0.0" + }, + { + "nodeId": "bcrypt-pbkdf@1.0.2" + }, + { + "nodeId": "dashdash@1.14.1" + }, + { + "nodeId": "ecc-jsbn@0.1.2" + }, + { + "nodeId": "getpass@0.1.7" + }, + { + "nodeId": "jsbn@0.1.1" + }, + { + "nodeId": "safer-buffer@2.1.2" + }, + { + "nodeId": "tweetnacl@0.14.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "asn1@0.2.6", + "pkgId": "asn1@0.2.6", + "deps": [ + { + "nodeId": "safer-buffer@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safer-buffer@2.1.2", + "pkgId": "safer-buffer@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bcrypt-pbkdf@1.0.2", + "pkgId": "bcrypt-pbkdf@1.0.2", + "deps": [ + { + "nodeId": "tweetnacl@0.14.5" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tweetnacl@0.14.5", + "pkgId": "tweetnacl@0.14.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "dashdash@1.14.1", + "pkgId": "dashdash@1.14.1", + "deps": [ + { + "nodeId": "assert-plus@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ecc-jsbn@0.1.2", + "pkgId": "ecc-jsbn@0.1.2", + "deps": [ + { + "nodeId": "jsbn@0.1.1" + }, + { + "nodeId": "safer-buffer@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "jsbn@0.1.1", + "pkgId": "jsbn@0.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "getpass@0.1.7", + "pkgId": "getpass@0.1.7", + "deps": [ + { + "nodeId": "assert-plus@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "is-typedarray@1.0.0", + "pkgId": "is-typedarray@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isstream@0.1.2", + "pkgId": "isstream@0.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "oauth-sign@0.8.2", + "pkgId": "oauth-sign@0.8.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@6.3.3", + "pkgId": "qs@6.3.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stringstream@0.0.6", + "pkgId": "stringstream@0.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tough-cookie@2.3.4", + "pkgId": "tough-cookie@2.3.4", + "deps": [ + { + "nodeId": "punycode@1.4.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "punycode@1.4.1", + "pkgId": "punycode@1.4.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "uuid@3.4.0", + "pkgId": "uuid@3.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "deeper@2.1.0", + "pkgId": "deeper@2.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "foreground-child@1.5.6", + "pkgId": "foreground-child@1.5.6", + "deps": [ + { + "nodeId": "cross-spawn@4.0.2" + }, + { + "nodeId": "signal-exit@3.0.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cross-spawn@4.0.2", + "pkgId": "cross-spawn@4.0.2", + "deps": [ + { + "nodeId": "lru-cache@4.1.5" + }, + { + "nodeId": "which@1.3.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "lru-cache@4.1.5", + "pkgId": "lru-cache@4.1.5", + "deps": [ + { + "nodeId": "pseudomap@1.0.2" + }, + { + "nodeId": "yallist@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "pseudomap@1.0.2", + "pkgId": "pseudomap@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "yallist@2.1.2", + "pkgId": "yallist@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "which@1.3.1", + "pkgId": "which@1.3.1", + "deps": [ + { + "nodeId": "isexe@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isexe@2.0.0", + "pkgId": "isexe@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "signal-exit@3.0.7", + "pkgId": "signal-exit@3.0.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isexe@1.1.2", + "pkgId": "isexe@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-yaml@3.14.1", + "pkgId": "js-yaml@3.14.1", + "deps": [ + { + "nodeId": "argparse@1.0.10" + }, + { + "nodeId": "esprima@4.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "esprima@4.0.1", + "pkgId": "esprima@4.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "nyc@6.6.1", + "pkgId": "nyc@6.6.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "only-shallow@1.2.0", + "pkgId": "only-shallow@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "opener@1.5.2", + "pkgId": "opener@1.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "readable-stream@2.3.8", + "pkgId": "readable-stream@2.3.8", + "deps": [ + { + "nodeId": "core-util-is@1.0.3" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "isarray@1.0.0" + }, + { + "nodeId": "process-nextick-args@2.0.1" + }, + { + "nodeId": "safe-buffer@5.1.2" + }, + { + "nodeId": "string_decoder@1.1.1" + }, + { + "nodeId": "util-deprecate@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "isarray@1.0.0", + "pkgId": "isarray@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "process-nextick-args@2.0.1", + "pkgId": "process-nextick-args@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "string_decoder@1.1.1", + "pkgId": "string_decoder@1.1.1", + "deps": [ + { + "nodeId": "safe-buffer@5.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "util-deprecate@1.0.2", + "pkgId": "util-deprecate@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "signal-exit@2.1.2", + "pkgId": "signal-exit@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "stack-utils@0.4.0", + "pkgId": "stack-utils@0.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "supports-color@1.3.1", + "pkgId": "supports-color@1.3.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tap-mocha-reporter@0.0.27", + "pkgId": "tap-mocha-reporter@0.0.27", + "deps": [ + { + "nodeId": "color-support@1.1.3" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "diff@1.4.0" + }, + { + "nodeId": "escape-string-regexp@1.0.5" + }, + { + "nodeId": "glob@7.2.3" + }, + { + "nodeId": "js-yaml@3.14.1" + }, + { + "nodeId": "tap-parser@1.3.2" + }, + { + "nodeId": "unicode-length@1.0.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "color-support@1.1.3", + "pkgId": "color-support@1.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "diff@1.4.0", + "pkgId": "diff@1.4.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tap-parser@1.3.2", + "pkgId": "tap-parser@1.3.2", + "deps": [ + { + "nodeId": "events-to-array@1.1.2" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "js-yaml@3.14.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "events-to-array@1.1.2", + "pkgId": "events-to-array@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unicode-length@1.0.3", + "pkgId": "unicode-length@1.0.3", + "deps": [ + { + "nodeId": "punycode@1.4.1" + }, + { + "nodeId": "strip-ansi@3.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "tmatch@2.0.1", + "pkgId": "tmatch@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "adm-zip@0.4.7", + "pkgId": "adm-zip@0.4.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "file-type@8.1.0", + "pkgId": "file-type@8.1.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} \ No newline at end of file diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/package.json new file mode 100644 index 00000000..2300e7e8 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/package.json @@ -0,0 +1,49 @@ +{ + "name": "goof", + "version": "0.0.3", + "description": "A vulnerable todo demo application", + "homepage": "https://snyk.io/", + "repository": { + "type": "git", + "url": "https://github.com/Snyk/snyk-todo-list-demo-app/" + }, + "scripts": { + "start": "node app.js", + "build": "browserify -r jquery > public/js/bundle.js", + "cleanup": "mongo express-todo --eval 'db.todos.remove({});'" + }, + "engines": { + "node": "6.14.1" + }, + "dependencies": { + "body-parser": "1.9.0", + "cfenv": "^1.0.4", + "cookie-parser": "1.3.3", + "consolidate": "0.14.5", + "dustjs-linkedin": "2.5.0", + "dustjs-helpers": "1.5.0", + "ejs": "1.0.0", + "ejs-locals": "1.0.2", + "errorhandler": "1.2.0", + "express": "4.12.4", + "express-fileupload": "0.0.5", + "humanize-ms": "1.0.1", + "jquery": "^2.2.4", + "marked": "0.3.5", + "method-override": "latest", + "moment": "2.15.1", + "mongoose": "4.2.4", + "morgan": "latest", + "ms": "^0.7.1", + "npmconf": "0.0.24", + "optional": "^0.1.3", + "st": "0.2.4", + "stream-buffers": "^3.0.1", + "tap": "^5.7.0", + "adm-zip": "0.4.7", + "file-type": "^8.1.0" + }, + "devDependencies": { + "browserify": "^13.1.1" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/pnpm-lock.yaml new file mode 100644 index 00000000..c38c4987 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/goof/pnpm-lock.yaml @@ -0,0 +1,3527 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + adm-zip: + specifier: 0.4.7 + version: 0.4.7 + body-parser: + specifier: 1.9.0 + version: 1.9.0 + cfenv: + specifier: ^1.0.4 + version: 1.2.4 + consolidate: + specifier: 0.14.5 + version: 0.14.5(dustjs-helpers@1.5.0(dustjs-linkedin@2.5.0))(dustjs-linkedin@2.5.0)(ejs@1.0.0)(underscore@1.12.1) + cookie-parser: + specifier: 1.3.3 + version: 1.3.3 + dustjs-helpers: + specifier: 1.5.0 + version: 1.5.0(dustjs-linkedin@2.5.0) + dustjs-linkedin: + specifier: 2.5.0 + version: 2.5.0 + ejs: + specifier: 1.0.0 + version: 1.0.0 + ejs-locals: + specifier: 1.0.2 + version: 1.0.2 + errorhandler: + specifier: 1.2.0 + version: 1.2.0 + express: + specifier: 4.12.4 + version: 4.12.4 + express-fileupload: + specifier: 0.0.5 + version: 0.0.5 + file-type: + specifier: ^8.1.0 + version: 8.1.0 + humanize-ms: + specifier: 1.0.1 + version: 1.0.1 + jquery: + specifier: ^2.2.4 + version: 2.2.4 + marked: + specifier: 0.3.5 + version: 0.3.5 + method-override: + specifier: latest + version: 3.0.0 + moment: + specifier: 2.15.1 + version: 2.15.1 + mongoose: + specifier: 4.2.4 + version: 4.2.4 + morgan: + specifier: latest + version: 1.10.0 + ms: + specifier: ^0.7.1 + version: 0.7.3 + npmconf: + specifier: 0.0.24 + version: 0.0.24 + optional: + specifier: ^0.1.3 + version: 0.1.4 + st: + specifier: 0.2.4 + version: 0.2.4 + stream-buffers: + specifier: ^3.0.1 + version: 3.0.2 + tap: + specifier: ^5.7.0 + version: 5.8.0 + devDependencies: + browserify: + specifier: ^13.1.1 + version: 13.3.0 + +packages: + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + + accepts@1.1.4: + resolution: {integrity: sha512-8EKM6XlFgqSpDcxkT9yxCT8nDSWEVBD0UjgUWMCWh5kH9VU+ar2MhmDDYGxohXujPU8PPz88ukpkvfXFVWygHw==} + engines: {node: '>= 0.8'} + + accepts@1.2.13: + resolution: {integrity: sha512-R190A3EzrS4huFOVZajhXCYZt5p5yrkaQOB4nsWzfth0cYaDcSN5J86l58FJ1dt7igp37fB/QhnuFkGAJmr+eg==} + engines: {node: '>= 0.6'} + + acorn-node@1.8.2: + resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} + + acorn-walk@7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} + + acorn@5.7.4: + resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + adm-zip@0.4.7: + resolution: {integrity: sha512-QHVQ6ekddFaGr9r2hBUC4gPw2wLqMZioXojt9BydQPbSh8us7+Q5xcUCUq+hnh4zAdauV3wqoY0quApjKqrhbA==} + engines: {node: '>=0.3.0'} + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + asn1.js@4.10.1: + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} + + asn1@0.1.11: + resolution: {integrity: sha512-Fh9zh3G2mZ8qM/kwsiKwL2U2FmXxVsboP4x1mXjnhKHv3SmzaBZoYvxEQJz/YS2gnCgd8xlAVWcZnQyC9qZBsA==} + engines: {node: '>=0.4.9'} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assert-plus@0.1.5: + resolution: {integrity: sha512-brU24g7ryhRwGCI2y+1dGQmQXiZF7TtIj583S96y0jjdajIe6wn8BuXyELYhvD22dtIxDQVFk04YTJwwdwOYJw==} + engines: {node: '>=0.8'} + + assert-plus@0.2.0: + resolution: {integrity: sha512-u1L0ZLywRziOVjUhRxI0Qg9G+4RnFB9H/Rq40YWn0dieDgO7vAYeJz6jKAO6t/aruzlDFLAPkQTT87e+f8Imaw==} + engines: {node: '>=0.8'} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + + assert@1.5.1: + resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} + + async-cache@0.1.5: + resolution: {integrity: sha512-aoFDfpJPyHti+KJN36lZMizBa8F79DoY1fTp3sX9Mt+cYRNTsHZktnNPKVZJCzpm/xhbMmvEYqxsul+rTMS8EQ==} + deprecated: No longer maintained. Use [lru-cache](http://npm.im/lru-cache) version 7.6 or higher, and provide an asynchronous `fetchMethod` option. + + async@0.9.0: + resolution: {integrity: sha512-XQJ3MipmCHAIBBMFfu2jaSetneOrXbSyyqeU3Nod867oNOpS+i9FEms5PWgjMxSgBybRf2IVVLtr1YfrDO+okg==} + + async@0.9.2: + resolution: {integrity: sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + aws-sign2@0.5.0: + resolution: {integrity: sha512-oqUX0DM5j7aPWPCnpWebiyNIj2wiNI87ZxnOMoGv0aE4TGlBy2N+5iWc6dQ/NOKZaBD2W6PVz8jtOGkWzSC5EA==} + + aws-sign2@0.6.0: + resolution: {integrity: sha512-JnJpAS0p9RmixkOvW2XwDxxzs1bd4/VAGIl6Q0EC5YOo+p+hqIhtDhn/nmFnB/xUNXbLkpE2mOjgVIBRKD4xYw==} + + aws4@1.12.0: + resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + bl@0.9.5: + resolution: {integrity: sha512-njlCs8XLBIK7LCChTWfzWuIAxkpmmLXcL7/igCofFT1B039Sz0IPnAmosN5QaO22lU4qr8LcUz2ojUlE6pLkRQ==} + + bluebird@2.9.26: + resolution: {integrity: sha512-rCR4rqoI1uXUObTgSd7M0Jhp4CXxqPdfmp7NDJ5zmxtwWTNeL6mGkPTL5ehuKK62//S1W/cY1vDjuIXwa6wm5A==} + + bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + + bn.js@4.12.0: + resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} + + bn.js@5.2.1: + resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} + + body-parser@1.9.0: + resolution: {integrity: sha512-fCQmijfF8stcsUxUU0r8mDo6yXPggOBDFVR0WAF85DxFwpdmtFA36oEqz6XOHKhfUmf4dIvfHXkyR7azyN/fVA==} + engines: {node: '>= 0.8'} + + boom@0.4.2: + resolution: {integrity: sha512-OvfN8y1oAxxphzkl2SnCS+ztV/uVKTATtgLjWYg/7KwcNyf3rzpHxNQJZCKtsZd4+MteKczhWbSjtEX4bGgU9g==} + engines: {node: '>=0.8.0'} + deprecated: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial). + + boom@2.10.1: + resolution: {integrity: sha512-KbiZEa9/vofNcVJXGwdWWn25reQ3V3dHBWbS07FTF3/TOehLnm9GEhJV4T6ZvGPkShRpmUqYwnaCrkj0mRnP6Q==} + engines: {node: '>=0.10.40'} + deprecated: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial). + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brorand@1.1.0: + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + + browser-pack@6.1.0: + resolution: {integrity: sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==} + hasBin: true + + browser-resolve@1.11.3: + resolution: {integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==} + + browserify-aes@1.2.0: + resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} + + browserify-cipher@1.0.1: + resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} + + browserify-des@1.0.2: + resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} + + browserify-rsa@4.1.0: + resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} + + browserify-sign@4.2.3: + resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} + engines: {node: '>= 0.12'} + + browserify-zlib@0.1.4: + resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + + browserify@13.3.0: + resolution: {integrity: sha512-RC51w//pULmKo3XmyC5Ax0FgQ3OZQk6he1SHbgsH63hSpa1RR0cGFU4s1AJY4exLesSZjJI00PynhjwWryi2bg==} + hasBin: true + + bson@0.4.23: + resolution: {integrity: sha512-xMUimhLm6y4t9BTW6BQGRHs9PODB9082EUX/Gkx6M9T2ktuJ5LvMxY/20ukuk0Uc+WPL37pbMIy731XF7eTxjg==} + engines: {node: '>=0.6.19'} + deprecated: Fixed a critical issue with BSON serialization documented in CVE-2019-2391, see https://bit.ly/2KcpXdo for more details + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer-xor@1.0.3: + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + + buffer@4.9.2: + resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} + + builtin-status-codes@3.0.0: + resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + bytes@1.0.0: + resolution: {integrity: sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==} + + cached-path-relative@1.1.0: + resolution: {integrity: sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + caseless@0.11.0: + resolution: {integrity: sha512-ODLXH644w9C2fMPAm7bMDQ3GRvipZWZfKc+8As6hIadRIelE0n0xZuN38NS6kiK3KPEVrpymmQD8bvncAHWQkQ==} + + caseless@0.6.0: + resolution: {integrity: sha512-/X9C8oGbZJ95LwJyK4XvN9GSBgw/rqBnUg6mejGhf/GNfJukt5tzOXP+CJicXdWSqAX0ETaufLDxXuN2m4/mDg==} + + cfenv@1.2.4: + resolution: {integrity: sha512-jWQ+3UXZauYyOXwHpMm74C0wM7+LDQmgMxWBGchg4as7+YyTL0pyx/CZ3dEvJyZVOB4SgKATc5naJky6cd9zYw==} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + cipher-base@1.0.4: + resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} + + clean-yaml-object@0.1.0: + resolution: {integrity: sha512-3yONmlN9CSAkzNwnRCiJQ7Q2xK5mWuEfL3PuTZcAUzhObbXsfsnMptJzXwz93nc5zn9V9TwCVMmV7w4xsm43dw==} + engines: {node: '>=0.10.0'} + + codecov.io@0.1.6: + resolution: {integrity: sha512-RTPzLDL5o1NUN1Mdh8XjOFI6NkUJZBnv2xWq9YEESTLTLpr311zxTED4xKUWiImbq7ds3cnscWQhU4fByxDf3g==} + hasBin: true + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + combine-source-map@0.8.0: + resolution: {integrity: sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg==} + + combined-stream@0.0.7: + resolution: {integrity: sha512-qfexlmLp9MyrkajQVyjEDb0Vj+KhRgR/rxLiVhaihlT+ZkX0lReqtH6Ack40CvMDERR4b5eFp3CreskpBs1Pig==} + engines: {node: '>= 0.8'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@1.5.2: + resolution: {integrity: sha512-H6xsIBfQ94aESBG8jGHXQ7i5AEpy5ZeVaLDOisDICiTCKpqEfr34/KmTrspKQNoLKNu9gTkovlpQcUi630AKiQ==} + engines: {'0': node >= 0.8} + + concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + connect-busboy@0.0.2: + resolution: {integrity: sha512-/Wi+zhcjivLU6dtsVGXWtRoVs4F7jdE9FUp0tXkbV9gCN7MdRQAgBqQ0xH0Iv9g00Z5EuioJo7ihxOAdZOzZ8w==} + engines: {node: '>=0.8.0'} + + console-browserify@1.2.0: + resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} + + consolidate@0.14.5: + resolution: {integrity: sha512-PZFskfj64QnpKVK9cPdY36pyWEhZNM+srRVqtwMiVTlnViSoZcvX35PpBhhUcyLTHXYvz7pZRmxvsqwzJqg9kA==} + deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog + peerDependencies: + arc-templates: ^0.5.3 + atpl: '>=0.7.6' + babel-core: ^6.26.3 + bracket-template: ^1.1.5 + coffee-script: ^1.12.7 + dot: ^1.1.3 + dust: ^0.3.0 + dustjs-helpers: ^1.7.4 + dustjs-linkedin: ^2.7.5 + eco: ^1.1.0-rc-3 + ect: ^0.5.9 + ejs: ^3.1.5 + haml-coffee: ^1.14.1 + hamlet: ^0.3.3 + hamljs: ^0.6.2 + handlebars: ^4.7.6 + hogan.js: ^3.0.2 + htmling: ^0.0.8 + jade: ^1.11.0 + jazz: ^0.0.18 + jqtpl: ~1.1.0 + just: ^0.1.8 + liquid-node: ^3.0.1 + liquor: ^0.0.5 + lodash: ^4.17.20 + marko: ^3.14.4 + mote: ^0.2.0 + mustache: ^3.0.0 + nunjucks: ^3.2.2 + plates: ~0.4.11 + pug: ^3.0.0 + qejs: ^3.0.5 + ractive: ^1.3.12 + razor-tmpl: ^1.3.1 + react: ^16.13.1 + react-dom: ^16.13.1 + slm: ^2.0.0 + squirrelly: ^5.1.0 + swig: ^1.4.2 + swig-templates: ^2.0.3 + teacup: ^2.0.0 + templayed: '>=0.2.3' + then-jade: '*' + then-pug: '*' + tinyliquid: ^0.2.34 + toffee: ^0.3.6 + twig: ^1.15.2 + twing: ^5.0.2 + underscore: ^1.11.0 + vash: ^0.13.0 + velocityjs: ^2.0.1 + walrus: ^0.10.1 + whiskers: ^0.4.0 + peerDependenciesMeta: + arc-templates: + optional: true + atpl: + optional: true + babel-core: + optional: true + bracket-template: + optional: true + coffee-script: + optional: true + dot: + optional: true + dust: + optional: true + dustjs-helpers: + optional: true + dustjs-linkedin: + optional: true + eco: + optional: true + ect: + optional: true + ejs: + optional: true + haml-coffee: + optional: true + hamlet: + optional: true + hamljs: + optional: true + handlebars: + optional: true + hogan.js: + optional: true + htmling: + optional: true + jade: + optional: true + jazz: + optional: true + jqtpl: + optional: true + just: + optional: true + liquid-node: + optional: true + liquor: + optional: true + lodash: + optional: true + marko: + optional: true + mote: + optional: true + mustache: + optional: true + nunjucks: + optional: true + plates: + optional: true + pug: + optional: true + qejs: + optional: true + ractive: + optional: true + razor-tmpl: + optional: true + react: + optional: true + react-dom: + optional: true + slm: + optional: true + squirrelly: + optional: true + swig: + optional: true + swig-templates: + optional: true + teacup: + optional: true + templayed: + optional: true + then-jade: + optional: true + then-pug: + optional: true + tinyliquid: + optional: true + toffee: + optional: true + twig: + optional: true + twing: + optional: true + underscore: + optional: true + vash: + optional: true + velocityjs: + optional: true + walrus: + optional: true + whiskers: + optional: true + + constants-browserify@1.0.0: + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + + content-disposition@0.5.0: + resolution: {integrity: sha512-PWzG8GssMHTPSLBoOeK5MvPPJeWU5ZVX8omvJC16BUH/nUX6J/jM/hgm/mrPWzTXVV3B3OoBhFdHXyGLU4TgUw==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + convert-source-map@1.1.3: + resolution: {integrity: sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==} + + cookie-parser@1.3.3: + resolution: {integrity: sha512-Ih6TGQRuI2kvqPmyLsq69b6mDxLCEvQKBPlMUoeQMu8GFVFwrjmVI7xskL4ijK0N4Dhcjib56vdT8MvNWfPP2A==} + engines: {node: '>= 0.8.0'} + + cookie-signature@1.0.5: + resolution: {integrity: sha512-Ym05XFKVD+EOB43QU3ovI/KvqFo5MP4BGsH+SkAMn2mdjLj2W4bOSyNsw1Ik1gI7CyDtR9Ae2TUFHexgaiEuZg==} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.1.2: + resolution: {integrity: sha512-+mHmWbhevLwkiBf7QcbZXHr0v4ZQQ/OgHk3fsQHrsMMiGzuvAmU/YMUR+ZfrO/BLAGIWFfx2Z7Oyso0tZR/wiA==} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + coveralls@2.13.3: + resolution: {integrity: sha512-iiAmn+l1XqRwNLXhW8Rs5qHZRFMYp9ZIPjEOVRpC/c4so6Y/f4/lFi0FfR5B9cCqgyhkJ5cZmbvcVRfP8MHchw==} + engines: {node: '>=0.8.6'} + hasBin: true + + crc@3.2.1: + resolution: {integrity: sha512-H21TaZQyic++ilBStWHntVpS2STWO37tzE0w0P5iAY1ntaPVtlZ3E6FcwltyZa6MYrEbKMxjEwXh3fBHlW8Qqw==} + + create-ecdh@4.0.4: + resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + + create-hash@1.2.0: + resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + + create-hmac@1.1.7: + resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + + cross-spawn@4.0.2: + resolution: {integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==} + + cryptiles@0.2.2: + resolution: {integrity: sha512-gvWSbgqP+569DdslUiCelxIv3IYK5Lgmq1UrRnk+s1WxQOQ16j3GPDcjdtgL5Au65DU/xQi6q3xPtf5Kta+3IQ==} + engines: {node: '>=0.8.0'} + deprecated: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial). + + cryptiles@2.0.5: + resolution: {integrity: sha512-FFN5KwpvvQTTS5hWPxrU8/QE4kQUc6uwZcrnlMBN82t1MgAtq8mnoDwINBly9Tdr02seeIIhtdF+UH1feBYGog==} + engines: {node: '>=0.10.40'} + deprecated: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial). + + crypto-browserify@3.12.0: + resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} + + ctype@0.5.3: + resolution: {integrity: sha512-T6CEkoSV4q50zW3TlTHMbzy1E5+zlnNcY+yb7tWVYlTwPhx9LpnfAkd4wecpWknDyptp4k97LUZeInlf6jdzBg==} + engines: {node: '>= 0.4'} + + dash-ast@1.0.0: + resolution: {integrity: sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==} + + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + + debug@2.2.0: + resolution: {integrity: sha512-X0rGvJcskG1c3TgSCPqHJ0XJgwlcvOC7elJ5Y0hYuKBZoVqWpAMfLOeIh2UI/DCQ5ruodIjvsugZtjUYUw2pUw==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.1.0: + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + deep-equal@0.1.2: + resolution: {integrity: sha512-rUCt39nKM7s6qUyYgp/reJmtXjgkOS/JbLO24DioMZaBNkD3b7C7cD3zJjSyjclEElNTpetAIRD6fMIbBIbX1Q==} + + deeper@2.1.0: + resolution: {integrity: sha512-SCFAU7qXu3Yvim79Qg4xba5EEIWg9r8tByFTbx/KhwlPtR0MC7Nkxy2apLUeUmUBNVOMDyBPdzst2s2mK2e/iA==} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defined@0.0.0: + resolution: {integrity: sha512-zpqiCT8bODLu3QSmLLic8xJnYWBFjOSu/fBCm189oAiTtPq/PSanNACKZDS7kgSyCJY7P+IcODzlIogBK/9RBg==} + + defined@1.0.1: + resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + + delayed-stream@0.0.5: + resolution: {integrity: sha512-v+7uBd1pqe5YtgPacIIbZ8HuHeLFVNe4mUEyFDXL6KiqzEykjbw+5mXZXpGFgNVasdL4jWKgaKIXrEHiynN1LA==} + engines: {node: '>=0.4.0'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + depd@1.0.1: + resolution: {integrity: sha512-OEWAMbCkK9IWQ8pfTvHBhCSqHgR+sk5pbiYqq0FqfARG4Cy+cRsCbITx6wh5pcsmfBPiJAcbd98tfdz5fnBbag==} + engines: {node: '>= 0.6'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + deps-sort@2.0.1: + resolution: {integrity: sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==} + hasBin: true + + des.js@1.1.0: + resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + + destroy@1.0.3: + resolution: {integrity: sha512-KB/AVLKRwZPOEo6/lxkDJ+Bv3jFRRrhmnRMPvpWwmIfUggpzGkQBqolyo8FRf833b/F5rzmy1uVN3fHBkjTxgw==} + + detective@4.7.1: + resolution: {integrity: sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==} + + diff@1.4.0: + resolution: {integrity: sha512-VzVc42hMZbYU9Sx/ltb7KYuQ6pqAw+cbFWVy4XKdkuEL2CFaRLGEnISPs7YdzaUGpi+CpIqvRmu7hPQ4T7EQ5w==} + engines: {node: '>=0.3.1'} + + diffie-hellman@5.0.3: + resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} + + domain-browser@1.1.7: + resolution: {integrity: sha512-fJ5MoHxe69h3E4/lJtFRhcWwLb04bhIBSfvCEMS1YDH+/9yEZTqBHTSTgch8nCP5tE5k2gdQEjodUqJzy7qJ9Q==} + engines: {node: '>=0.4', npm: '>=1.2'} + + duplexer2@0.1.4: + resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + dustjs-helpers@1.5.0: + resolution: {integrity: sha512-nyDspJy7XUBfNu9q9jrL6aDtrdNx8e864ilNzIQZpf5yluD43PWFB4BWjGx4TTw9mExN0A8eRB+e2Fm7aAGC0g==} + peerDependencies: + dustjs-linkedin: 2.5 - 2.6 + + dustjs-linkedin@2.5.0: + resolution: {integrity: sha512-F6M9HvBAUmyjEkuB2e/DcWTzHoSKJDQLA3uLc8y4O/NwUBEXm5UXIIrvZUx+oUv/kNO69jIC9zMmMRND1Drq6Q==} + hasBin: true + + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + ee-first@1.0.5: + resolution: {integrity: sha512-+FCut34oNiJD2jD+YL/onRxOHF5ut3xOGgTIyEIOdYfun8AexYhEyurzv9izwhTft1Z7pdy4VlTq51K/sIsQRA==} + + ee-first@1.1.0: + resolution: {integrity: sha512-n4X/DaHVKHyDy1Rwuzm1UPjTRIBSarj1BBZ5R5HLOFLn58yhw510qoF1zk94jjkw3mXScdsmMtYCNR1jsAJlEA==} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs-locals@1.0.2: + resolution: {integrity: sha512-gzMyYHoVMcaT30zwd0z69HEthp5c2czMLWCaMh+K+BfogvxrG6smZHLW3Uwn2+6XhE+/aCcEL8pETZ9fa1J24A==} + engines: {node: '>=0.6.0'} + + ejs@0.8.8: + resolution: {integrity: sha512-2E5HBH8LoaSQ2OLW2LmEE1/9dL3YZCKqrQXBEeCv9P/dQlZOfdAYvJFHhNZ35uY6AXba+RllQTRtmJmXXm7i7g==} + deprecated: Critical security bugs fixed in 2.5.5 + + ejs@1.0.0: + resolution: {integrity: sha512-hK3tEqj0pP7UF5UHKNiRvm3zCaYk7UI4EBJ6wwN5O2qX1WdSovmqvUHEbNOJuglXzVkk/H0r7vgst3mVcQXrPA==} + deprecated: Critical security bugs fixed in 2.5.5 + + elliptic@6.5.5: + resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==} + + errorhandler@1.2.0: + resolution: {integrity: sha512-tPJiDs1xv36eHxaCD0u77HtRAQ8yq2PYtpSkHoRubrrMyULbC2j2TaHJt7+OcY0RR9sTsr8Bmd3cxhk4l0iSJw==} + engines: {node: '>= 0.8'} + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es6-promise@2.1.1: + resolution: {integrity: sha512-R/JdLj56a8CEfCYtt4HC1b0CWTy+XD9Ne3YgictYpB4JaFCdn/QZkaV2Mz4P7g3cpkpvMzz6O20+eqvDOWQc+w==} + + escape-html@1.0.1: + resolution: {integrity: sha512-z6kAnok8fqVTra7Yu77dZF2Y6ETJlxH58wN38wNyuNQLm8xXdKnfNrlSmfXsTePWP03rRVUKHubtUwanwUi7+g==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + esprima@2.7.3: + resolution: {integrity: sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==} + engines: {node: '>=0.10.0'} + hasBin: true + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + etag@1.6.0: + resolution: {integrity: sha512-nuKHp9E7WegPlkpbHWPFLD0Yidt/wbV3mZHGr1tUn8apKrsRPbQOxdJm/wQH0uyz+CULQyfRzoqArVByI7WGIg==} + engines: {node: '>= 0.6'} + + events-to-array@1.1.2: + resolution: {integrity: sha512-inRWzRY7nG+aXZxBzEqYKB3HPgwflZRopAjDCHv0whhRx+MTUr1ei0ICZUypdyE0HRm4L2d5VEcIqLD6yl+BFA==} + + events@1.1.1: + resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} + engines: {node: '>=0.4.x'} + + evp_bytestokey@1.0.3: + resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} + + express-fileupload@0.0.5: + resolution: {integrity: sha512-Wfgfvy+blNAdMJPcUjpadTkEcyEfAH7K4/EEFUxVnKJqW8d6kU1Kbj14O0KrHJ4P1QBY022pS1mq6p/bU601MQ==} + engines: {node: '>=0.8.0'} + deprecated: Please upgrade express-fileupload to version 1.1.8+ due to a security vulnerability with the parseNested option + + express@4.12.4: + resolution: {integrity: sha512-pbZznlqu9soBZPkF5SoG/zll+IfRZqAXvFzQO/fIIHD36VUpkRafbQsiKtMm3uMQ9v5cGg3+n7gZyaPOdzIVYg==} + engines: {node: '>= 0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + + fast-safe-stringify@2.1.1: + resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + + fd@0.0.3: + resolution: {integrity: sha512-iAHrIslQb3U68OcMSP0kkNWabp7sSN6d2TBSb2JO3gcLJVDd4owr/hKM4SFJovFOUeeXeItjYgouEDTMWiVAnA==} + + file-type@8.1.0: + resolution: {integrity: sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==} + engines: {node: '>=6'} + + finalhandler@0.3.6: + resolution: {integrity: sha512-yVJsDXswFVohBY1qO3p8rhTNMcsZav+s30+2PlrFAeBzzbIgVg1214pHymmSP++KSrr6FXH5+RQItsGEeLK6+A==} + engines: {node: '>= 0.8'} + + foreground-child@1.5.6: + resolution: {integrity: sha512-3TOY+4TKV0Ml83PXJQY+JFQaHNV38lzQDIzzXYg1kWdBLenGgoZhAs0CKgzI31vi2pWEpQMq/Yi4bpKwCPkw7g==} + + forever-agent@0.5.2: + resolution: {integrity: sha512-PDG5Ef0Dob/JsZUxUltJOhm/Y9mlteAE+46y3M9RBz/Rd3QVENJ75aGRhN56yekTUboaBIkd8KVWX2NjF6+91A==} + + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + + form-data@0.1.4: + resolution: {integrity: sha512-x8eE+nzFtAMA0YYlSxf/Qhq6vP1f8wSoZ7Aw1GuctBcmudCNuTUmmx45TfEplyb6cjsZO/jvh6+1VpZn24ez+w==} + engines: {node: '>= 0.8'} + + form-data@2.1.4: + resolution: {integrity: sha512-8HWGSLAPr+AG0hBpsqi5Ob8HrLStN/LWeqhpFl14d7FJgHK48TmgLoALPz69XSUR65YJzDfLUX/BM8+MLJLghQ==} + engines: {node: '>= 0.12'} + + forwarded@0.1.2: + resolution: {integrity: sha512-Ua9xNhH0b8pwE3yRbFfXJvfdWF0UHNCdeyb2sbi9Ul/M+r3PTdrz7Cv4SCfZRMjmzEM9PhraqfZFbGTIg3OMyA==} + engines: {node: '>= 0.6'} + + fresh@0.2.4: + resolution: {integrity: sha512-mnBGgIFRNu54GtbkXy6+QKPYW/b5joAURorA8ELeJc/5BBNph6Go1NmHa9dt08ghFnhGuLenrUmNO8Za1CwEUQ==} + engines: {node: '>= 0.6'} + + fs-extra@0.22.1: + resolution: {integrity: sha512-M7CuxS2f9k/5il8ufmLiCtT7B2O2JLoTZi83ZtyEJMG67cTn87fNULYWtno5Vm31TxmSRE0nkA9GxaRR+y3XTA==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + generate-function@2.3.1: + resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==} + + generate-object-property@1.2.0: + resolution: {integrity: sha512-TuOwZWgJ2VAMEGJvAyPWvpqxSANF0LDpmyHauMjFYzaACvn+QTT/AZomvPCzVBV7yDN3OmwHQ5OvHaeLKre3JQ==} + + get-assigned-identifiers@1.2.0: + resolution: {integrity: sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + graceful-fs@1.2.3: + resolution: {integrity: sha512-iiTUZ5vZ+2ZV+h71XAgwCSu6+NAizhFU3Yw8aC/hH5SQ3SnISqEqAek40imAFGtDcwJKNhXvSY+hzIolnLwcdQ==} + engines: {node: '>=0.4.0'} + deprecated: please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + har-validator@2.0.6: + resolution: {integrity: sha512-P6tFV+wCcUL3nbyTDAvveDySfbhy0XkDtAIfZP6HITjM2WUsiPna/Eg1Yy93SFXvahqoX+kt0n+6xlXKDXYowA==} + engines: {node: '>=0.10'} + deprecated: this library is no longer supported + hasBin: true + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + + hash-base@3.0.4: + resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==} + engines: {node: '>=4'} + + hash-base@3.1.0: + resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} + engines: {node: '>=4'} + + hash.js@1.1.7: + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hawk@1.1.1: + resolution: {integrity: sha512-am8sVA2bCJIw8fuuVcKvmmNnGFUGW8spTkVtj2fXTEZVkfN42bwFZFtDem57eFi+NSxurJB8EQ7Jd3uCHLn8Vw==} + engines: {node: '>=0.8.0'} + deprecated: This module moved to @hapi/hawk. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues. + + hawk@3.1.3: + resolution: {integrity: sha512-X8xbmTc1cbPXcQV4WkLcRMALuyoxhfpFATmyuCxJPOAvrDS4DNnsTAOmKUxMTOWU6TzrTOkxPKwIx5ZOpJVSrg==} + engines: {node: '>=0.10.32'} + deprecated: This module moved to @hapi/hawk. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues. + + hmac-drbg@1.0.1: + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + + hoek@0.9.1: + resolution: {integrity: sha512-ZZ6eGyzGjyMTmpSPYVECXy9uNfqBR7x5CavhUaLOeD6W0vWK1mp/b7O3f86XE0Mtfo9rZ6Bh3fnuw9Xr8MF9zA==} + engines: {node: '>=0.8.0'} + deprecated: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial). + + hoek@2.16.3: + resolution: {integrity: sha512-V6Yw1rIcYV/4JsnggjBU0l4Kr+EXhpwqXRusENU1Xx6ro00IHPHYNynCuBTOZAPlr3AAmLvchH9I7N/VUdvOwQ==} + engines: {node: '>=0.10.40'} + deprecated: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial). + + hooks-fixed@1.1.0: + resolution: {integrity: sha512-G6wwrJomxWd/zCaKYa5dMrhMahd3cTD2W5vBGZ/IRO/p6J/VykgrNLYe5/RV1JLBoq4NERWdohT/w8LSWIZjqA==} + engines: {node: '>=0.4.0'} + + htmlescape@1.1.1: + resolution: {integrity: sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg==} + engines: {node: '>=0.10'} + + http-signature@0.10.1: + resolution: {integrity: sha512-coK8uR5rq2IMj+Hen+sKPA5ldgbCc1/spPdKCL1Fw6h+D0s/2LzMcRK0Cqufs1h0ryx/niwBHGFu8HC3hwU+lA==} + engines: {node: '>=0.8'} + + http-signature@1.1.1: + resolution: {integrity: sha512-iUn0NcRULlDGtqNLN1Jxmzayk8ogm7NToldASyZBpM2qggbphjXzNOiw3piN8tgz+e/DRs6X5gAzFwTI6BCRcg==} + engines: {node: '>=0.8', npm: '>=1.3.7'} + + https-browserify@0.0.1: + resolution: {integrity: sha512-EjDQFbgJr1vDD/175UJeSX3ncQ3+RUnCL5NkthQGHvF4VNHlzTy8ifJfTqz47qiPRqaFH58+CbuG3x51WuB1XQ==} + + humanize-ms@1.0.1: + resolution: {integrity: sha512-tUZWAkQwwTgGTf32E8uZrgx6sDrCHLeBNtLkRJDhKbzxYlK5181c6CynYkYLvlCjZhwKo9plOqBhpZU2FIHTow==} + + iconv-lite@0.4.4: + resolution: {integrity: sha512-BnjNp13aZpK4WBGbmjaNHN2MCp3P850n8zd/JLinQJ8Lsnq2Br4o2467C2waMsY5kr7Z41SL1gEqh8Vbfzg15A==} + engines: {node: '>=0.8.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + indexof@0.0.1: + resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + + inherits@1.0.2: + resolution: {integrity: sha512-Al67oatbRSo3RV5hRqIoln6Y5yMVbJSIn4jEJNL7VCImzq/kLr7vvb6sFRJXqr8rpHc/2kJOM+y0sPKN47VdzA==} + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.1.0: + resolution: {integrity: sha512-B6L/jfyFRcG2dqKiHggWnfby52Iy07iabE4F6srQAr/OmVKBRE5uU+B5MQ+nQ7NiYnjz93gENh1GhqHzpDgHgA==} + deprecated: Please update to ini >=1.3.6 to avoid a prototype pollution issue + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + inline-source-map@0.6.3: + resolution: {integrity: sha512-1aVsPEsJWMJq/pdMU61CDlm1URcW702MTB4w9/zUjMus6H/Py8o7g68Pr9D4I6QluWGt/KdmswuRhaA05xVR1w==} + + insert-module-globals@7.2.1: + resolution: {integrity: sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg==} + hasBin: true + + ipaddr.js@1.0.5: + resolution: {integrity: sha512-wBj+q+3uP78gMowwWgFLAYm/q4x5goyZmDsmuvyz+nd1u0D/ghgXXtc1OkgmTzSiWT101kiqGacwFk9eGQw6xQ==} + engines: {node: '>= 0.10'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + + is-my-ip-valid@1.0.1: + resolution: {integrity: sha512-jxc8cBcOWbNK2i2aTkCZP6i7wkHF1bqKFrwEHuN5Jtg5BSaZHUZQ/JTOJwoV41YvHnOaRyWWh72T/KvfNz9DJg==} + + is-my-json-valid@2.20.6: + resolution: {integrity: sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==} + + is-property@1.0.2: + resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isexe@1.1.2: + resolution: {integrity: sha512-d2eJzK691yZwPHcv1LbeAOa91yMJ9QmfTgSO1oXB65ezVhXQsxBac2vEB4bMVms9cGzaA99n6V2viHMq82VLDw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + + jquery@2.2.4: + resolution: {integrity: sha512-lBHj60ezci2u1v2FqnZIraShGgEXq35qCzMv4lITyHGppTnA13rwR0MgwyNJh9TnDs3aXUvd1xjAotfraMHX/Q==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@3.6.1: + resolution: {integrity: sha512-BLv3oxhfET+w5fjPwq3PsAsxzi9i3qzU//HMpWVz0A6KplF86HdR9x2TGnv9DXhSUrO7LO8czUiTd3yb3mLSvg==} + hasBin: true + + js-yaml@4.0.0: + resolution: {integrity: sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==} + hasBin: true + + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + + json-stable-stringify@0.0.1: + resolution: {integrity: sha512-nKtD/Qxm7tWdZqJoldEC7fF0S41v0mWbeaXG3637stOWfyGxTgWTYE2wtfKmjzpvxv2MA2xzxsXOIiwUpkX6Qw==} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + jsonfile@2.4.0: + resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==} + + jsonify@0.0.1: + resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + jsonpointer@5.0.1: + resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} + engines: {node: '>=0.10.0'} + + jsprim@1.4.2: + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} + + kareem@1.0.1: + resolution: {integrity: sha512-FWVjp1u+YDXpxfEZAyGAwulQsjwgqnNkbvju4PivaRHAeR1sOXe4Di4p9NkJlBVL+U1Xd8xBsX4lvtSVo690TA==} + + kerberos@0.0.24: + resolution: {integrity: sha512-QO6bFq9eETHB5zcA0OJiQtw137TH45OuUcGtI+QGg2ZJQIPCvwXL2kjCqZZMColcIdbPhj4X40EY5f3oOiBfiw==} + + labeled-stream-splicer@2.0.2: + resolution: {integrity: sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==} + + lcov-parse@0.0.10: + resolution: {integrity: sha512-YsL0D4QF/vNlNcHPXM832si9d2ROryFQ4r4JvcfMIiUYr1f6WULuO75YCtxNu4P+XMRHz0SfUc524+c+U3G5kg==} + + lodash.memoize@3.0.4: + resolution: {integrity: sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==} + + log-driver@1.2.5: + resolution: {integrity: sha512-UwqFFU6yztduP6DXcjcIjrIyvWQMv/spvrK2vji37XiUykpCm1qTUUM3zO+ER7qjL3CtmbWKAoVC5+bO2HwiNA==} + engines: {node: '>=0.8.6'} + + lru-cache@2.3.1: + resolution: {integrity: sha512-EjtmtXFUu+wXm6PW3T6RT1ekQUxobC7B5TDCU0CS0212wzpwKiXs6vLun+JI+OoWmmliWdYqnrpjrlK7W3ELdQ==} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + marked@0.3.5: + resolution: {integrity: sha512-C2ZEiUZxg7zxh9t8C3q6yW4WucWN+OYkiAV/M5GxvfwYrKxlDcuZ74dHmoRoI+R80Oa/FtHl1w8GT13epnbi+Q==} + hasBin: true + + md5.js@1.3.5: + resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + merge-descriptors@1.0.0: + resolution: {integrity: sha512-YJiZmTZTkrqvgefMsWdioTKsZdHnfAhHHkEdPg+4PCqMJEGHQo5iJQjEbMv3XyBZ6y3Z2Rj1mqq1WNKq9e0yNw==} + + method-override@3.0.0: + resolution: {integrity: sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==} + engines: {node: '>= 0.10'} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + miller-rabin@4.0.1: + resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} + hasBin: true + + mime-db@1.12.0: + resolution: {integrity: sha512-5aMAW7I4jZoZB27fXRuekqc4DVvJ7+hM8UcWrNj2mqibE54gXgPSonBYBdQW5hyaVNGmiYjY0ZMqn9fBefWYvA==} + engines: {node: '>= 0.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@1.0.2: + resolution: {integrity: sha512-echfutj/t5SoTL4WZpqjA1DCud1XO0WQF3/GJ48YBmc4ZMhCK77QA6Z/w6VTQERLKuJ4drze3kw2TUT8xZXVNw==} + engines: {node: '>= 0.8.0'} + + mime-types@2.0.14: + resolution: {integrity: sha512-2ZHUEstNkIf2oTWgtODr6X0Cc4Ns/RN/hktdozndiEhhAC2wxXejF1FH0XLHTEImE9h6gr/tcnr3YOnSGsxc7Q==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.2.11: + resolution: {integrity: sha512-Ysa2F/nqTNGHhhm9MV8ure4+Hc+Y8AWiqUdHxsO7xu8zc92ND9f3kpALHjaP026Ft17UfxrMt95c50PLUeynBw==} + + mime@1.3.4: + resolution: {integrity: sha512-sAaYXszED5ALBt665F0wMQCUXpGuZsGdopoqcHPdL39ZYdi7uHoZlhrfZfhv8WzivhBzr/oXwaj+yiK5wY8MXQ==} + hasBin: true + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimalistic-crypto-utils@1.0.1: + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimist@1.2.0: + resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + mkdirp@0.3.5: + resolution: {integrity: sha512-8OCq0De/h9ZxseqzCH8Kw/Filf5pF/vMI6+BH7Lu0jXz2pqYCjTAQRolSxRIi+Ax+oCCjlxoJMP0YQ4XlrQNHg==} + deprecated: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.) + + module-deps@4.1.1: + resolution: {integrity: sha512-ze1e77tkYtlJI90RmlJJvTOGe91OAbtNQj34tg26GWlvdDc0dzmlxujTnh85S8feiTB3eBkKAOCD/v5p9v6wHg==} + engines: {node: '>= 0.6'} + hasBin: true + + moment@2.15.1: + resolution: {integrity: sha512-VRuqlq9ET3eUjWkqgZtUegkYF664TRWaxmgwlHxboe653wv4stNaVKDufNfCDcGFu1EA2Bm26bD0NWLaFMHfvA==} + + mongodb-core@1.2.19: + resolution: {integrity: sha512-0GCGKuwFO8YM1A3xTuDXgdip665uDM+YXUVAsBkVQL2H1lF2T8yvDd8cyIyEMtbjbA01LcY+/DIG3s/WFgfBRA==} + + mongodb@2.0.46: + resolution: {integrity: sha512-vTQNKBMTevUacloWzO5aAwDRRjcd0e9hciKccL7PSo+orQEpRhJ89TtuY4YmCysHI5VQdvSQHkMWzn9rA2IaNA==} + deprecated: Please upgrade to 2.2.19 or higher + + mongoose@4.2.4: + resolution: {integrity: sha512-cqF08BRd4AOYwFF856MEHKU5r4hmlzCuLg+mUGx4UtOg9YQeRQpSFvQ+gs47I6nW2VXWzl9quVeFa/YdzhCF5A==} + engines: {node: '>=0.6.19'} + + morgan@1.10.0: + resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} + engines: {node: '>= 0.8.0'} + + mpath@0.1.1: + resolution: {integrity: sha512-q3I8htqDfa7EiDyY4Nxywpuov+uEqy6FWCNK8iJ1DxxyPvQpbIvdf7LQ5ms9iXrYhj3BJ/ETAaozIo/j6Z7DGA==} + + mpromise@0.5.4: + resolution: {integrity: sha512-r+wWWght+ncv5vntgV84NJphcVCk6ZcUdKJc5KnbnOyEMyabLq8SpEqUBW0hoE9T0NDcf5cXw/uso+V3fOQEFA==} + + mquery@1.6.3: + resolution: {integrity: sha512-pHgPD0+8w5YsOui7Gri+lnHMO245LvvrigUGRiZPefflqMXKo86CX/zZ/iEzdm5PBmIjzci1FaxjBiZzslKKiw==} + + ms@0.6.2: + resolution: {integrity: sha512-/pc3eh7TWorTtbvXg8je4GvrvEqCfH7PA3P7iW01yL2E53FKixzgMBaQi0NOPbMJqY34cBSvR0tZtmlTkdUG4A==} + + ms@0.7.1: + resolution: {integrity: sha512-lRLiIR9fSNpnP6TC4v8+4OU7oStC01esuNowdQ34L+Gk8e5Puoc88IqJ+XAY/B3Mn2ZKis8l8HX90oU8ivzUHg==} + + ms@0.7.3: + resolution: {integrity: sha512-lrKNzMWqQZgwJahtrtrM+9NgOoDUveDrVmm5aGXrf3BdtL0mq7X6IVzoZaw+TfNti29eHd1/8GI+h45K5cQ6/w==} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + muri@1.0.0: + resolution: {integrity: sha512-jcTyrsIRbGKs/EuXwoLpXEeB3ScobAHgCs1OtrkC23UgJcGKlfPQateVOxqvvbXVLlfBEWLtdOJvrpj18bdJRA==} + + nan@2.10.0: + resolution: {integrity: sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==} + + negotiator@0.2.8: + resolution: {integrity: sha512-2iv1EafEsegrlyCHYPn4bMKM0g5wVTNqkdp8AqOggvSLV5znbQfTASWh4eKBqwEcw1awuY8l3U7wX95JSQWFEg==} + + negotiator@0.4.9: + resolution: {integrity: sha512-fvi5GQce2TGDzanaTxNY3bboxjdce18sqwNylY439wkEkiJIyTMhGFMdlPCvDsIPa9IKIfhKwCMWEQ9YpZgb1Q==} + engines: {node: '>= 0.6'} + + negotiator@0.5.3: + resolution: {integrity: sha512-oXmnazqehLNFohqgLxRyUdOQU9/UX0NpCpsnbjWUjM62ZM8oSOXYZpHc68XR130ftPNano0oQXGdREAplZRhaQ==} + engines: {node: '>= 0.6'} + + node-uuid@1.4.8: + resolution: {integrity: sha512-TkCET/3rr9mUuRp+CpO7qfgT++aAxfDRaalQhwPFzI9BY/2rCDn6OfpZOVggi1AXfTPpfkTrg5f5WQx5G1uLxA==} + deprecated: Use uuid module instead + hasBin: true + + nopt@2.2.1: + resolution: {integrity: sha512-gIOTA/uJuhPwFqp+spY7VQ1satbnGlD+iQVZxI18K6hs8Evq4sX81Ml7BB5byP/LsbR2yBVtmvdEmhi7evJ6Aw==} + hasBin: true + + npmconf@0.0.24: + resolution: {integrity: sha512-LX0bX+RmuBuEITg26i7+dx+d9cfYU+giB7eOiSkT5IwvuAzzIx02u4GXwSC3jsQMDMb/kXC57R8tybRSVYfbWw==} + deprecated: this package has been reintegrated into npm and is now out of date with respect to npm + + nyc@6.6.1: + resolution: {integrity: sha512-BmkQvAgxsLaB8vEUMyWLIVZ2j6w0FveXeR6gukS7k65/pLrJZjBDJRE9NXNCzmqpfNFNjLcNpIBUvbVlNQFPpg==} + hasBin: true + bundledDependencies: + - append-transform + - arrify + - caching-transform + - convert-source-map + - default-require-extensions + - find-cache-dir + - find-up + - foreground-child + - glob + - istanbul + - md5-hex + - micromatch + - mkdirp + - pkg-up + - resolve-from + - rimraf + - signal-exit + - source-map + - spawn-wrap + - test-exclude + - yargs + + oauth-sign@0.4.0: + resolution: {integrity: sha512-vF36cbrUyfy7Yr6kTIzrj3RsuaPYeJKU3IUOC6MglfNTyiGT6leGvEVOa3UsSsgwBzfVfRnvMiMVyUnpXNqN8w==} + + oauth-sign@0.8.2: + resolution: {integrity: sha512-VlF07iu3VV3+BTXj43Nmp6Irt/G7j/NgEctUS6IweH1RGhURjjCc2NWtzXFPXXWWfc7hgbXQdtiQu2LGp6MxUg==} + + object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + + on-finished@2.1.0: + resolution: {integrity: sha512-33+g6TZkplndl+2k2VNO1YphX5hm79DGhBP6TJcDI9o1sCFbUvO2bgxPdGanIFqZK4su6OVLwPHY9GkLQrojgA==} + + on-finished@2.2.1: + resolution: {integrity: sha512-9HvMYLv7im5uzOAcg1lon2cEUxycCF4OI+zPz1R/x3MvBv5s2F+DuxrGwkPe+UwvStDQpWbrkXfLZv12mHbl4A==} + engines: {node: '>= 0.8'} + + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + + on-headers@1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + + once@1.1.1: + resolution: {integrity: sha512-frdJr++QKEg4+JylTX+NNLgSoO6M2pDNYOOXe4WGIYKKBADBI9nU3oa06y4D4FpAJ3obAsjExeBOnscYJB9Blw==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + only-shallow@1.2.0: + resolution: {integrity: sha512-xA4rfD/iOfLiSC60uPgkgv20unOlmEBKeQLUkRQV4gBy85GHwbNCksttPBAEDmaD4ZB/42YBI/vu1w2KfaLQ1A==} + + opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + + optional@0.1.4: + resolution: {integrity: sha512-gtvrrCfkE08wKcgXaVwQVgwEQ8vel2dc5DDBn9RLQZ3YtmtkBss6A2HY6BnJH4N/4Ku97Ri/SF8sNWE2225WJw==} + + os-browserify@0.1.2: + resolution: {integrity: sha512-aZicJZccvxWOZ0Bja2eAch2L8RIJWBuRYmM8Gwl/JjNtRltH0Itcz4eH/ESyuIWfse8cc93ZCf0XrzhXK2HEDA==} + + osenv@0.0.3: + resolution: {integrity: sha512-VBk1bfdaO4gh3OWO8LBuDY2alp0buL8YzQ6t13xyc8PQPrnUg5AgQvINQx3UkS4dom8UGCL597q4Y2+M4TPvmw==} + + pako@0.2.9: + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + + parents@1.0.1: + resolution: {integrity: sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg==} + + parse-asn1@5.1.7: + resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} + engines: {node: '>= 0.10'} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + path-browserify@0.0.1: + resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-platform@0.11.15: + resolution: {integrity: sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg==} + engines: {node: '>= 0.8.0'} + + path-to-regexp@0.1.3: + resolution: {integrity: sha512-sd4vSOW+DCM6A5aRICI1CWaC7nufnzVpZfuh5T0VXshxxzFWuaFcvqKovAFLNGReOc+uZRptpcpPmn7CDvzLuA==} + + pbkdf2@3.1.2: + resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} + engines: {node: '>=0.12'} + + pinkie-promise@2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + + pinkie@2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + + ports@1.1.0: + resolution: {integrity: sha512-XmS7dspHnkTXZC75NkG0ti2hLj8aSyg1Izp87/2cWT7QhTo1vdtWsQ4ldp4BEQ/EXqy0s4yTATJUZ3t9RGZVpg==} + + process-nextick-args@1.0.7: + resolution: {integrity: sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + proxy-addr@1.0.10: + resolution: {integrity: sha512-iq6kR9KN32aFvXjDyC8nIrm203AHeIBPjL6dpaHgSdbpTO8KoPlD0xG92xwwtkCL9+yt1LE5VwpEk43TyP38Dg==} + engines: {node: '>= 0.6'} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + + public-encrypt@4.0.3: + resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + qs@1.2.2: + resolution: {integrity: sha512-xEqT+49YIt+BdwQthXKTOkp7atENe6JqrGGerxBPiER6BArOIiVJtpZZYpWOpq2IOkTPVnDM8CgYvppFoJNwyQ==} + + qs@2.2.4: + resolution: {integrity: sha512-ptau9CngYR/IimcThDkAs7LzlZhxo92RiMHtLbOq3R6u9iDkixdSysaAVaZpYByrXWWantEJ4fVPl0xR2McSCQ==} + + qs@2.4.2: + resolution: {integrity: sha512-Ur2glV49dt6jknphzkWeLUNCy7pmwGxGaEJuuxVVBioSwQzT00cZPLEtRqr4cg/iO/6N+RbfB0lFD2EovyeEng==} + + qs@6.12.1: + resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} + engines: {node: '>=0.6'} + + qs@6.3.3: + resolution: {integrity: sha512-f8CQ/sKJBr9vfNJBdGiPzTSPUufuWyvOFkCYJKN9voqPWuBuhdlSZM78dOHKigtZ0BwuktYGrRFW2DXXc/f2Fg==} + engines: {node: '>=0.6'} + + querystring-es3@0.2.1: + resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} + engines: {node: '>=0.4.x'} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + randomfill@1.0.4: + resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + + range-parser@1.0.3: + resolution: {integrity: sha512-nDsRrtIxVUO5opg/A8T2S3ebULVIfuh8ECbh4w3N4mWxIiT3QILDJDUQayPqm2e8Q8NUa0RSUkGCfe33AfjR3Q==} + engines: {node: '>= 0.6'} + + raw-body@1.3.0: + resolution: {integrity: sha512-iuI1bOSi9tEmVCrXq02ZysXatTrhAu+fSo7XOQHhMo4g87dSy9YB2W/9Udwhz0bPpFk4UcoLhjrHgpPbRD3ktA==} + engines: {node: '>= 0.8.0'} + + read-only-stream@2.0.0: + resolution: {integrity: sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w==} + + readable-stream@1.0.31: + resolution: {integrity: sha512-tco/Dwv1f/sgIgN6CWdj/restacPKNskK6yps1981ivH2ZmLYcs5o5rVzL3qaO/cSkhN8hYOMWs7+glzOLSgRg==} + + readable-stream@1.0.34: + resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} + + readable-stream@1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + + readable-stream@2.0.6: + resolution: {integrity: sha512-TXcFfb63BQe1+ySzsHZI/5v1aJPCShfqvWJ64ayNImXMsN1Cd0YGk/wm8KB7/OeessgPc9QvS9Zou8QTkFzsLw==} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + regexp-clone@0.0.1: + resolution: {integrity: sha512-tfYXF0HXEYh3AtgdjqNLQ8+tmZSAKIS7KtOjmB1laJgfbsi+Lf2RVNwLZVOE3U27yBXikzQuIXglLlakvb8Thw==} + + request@2.42.0: + resolution: {integrity: sha512-ZpqQyQWQ7AdVurjxpmP/fgpN3wAZBruO2GeD3zDijWmnqg3SYz9YY6uZC8tJF++IhZ/P2VZkZug/fFEshAkD6g==} + engines: {'0': node >= 0.8.0} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + + request@2.79.0: + resolution: {integrity: sha512-e7MIJshe1eZAmRqg4ryaO0N9G0fs+/gpDe5FlbnIFy6zZznRSwdRFrLp63if0Yt43vrI5wowOqHv1qJdVocdOQ==} + engines: {node: '>= 4'} + deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resolve@1.1.7: + resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + resumer@0.0.0: + resolution: {integrity: sha512-Fn9X8rX8yYF4m81rZCK/5VmrmsSbqS/i3rDLl6ZZHAXgC2nTAx3dhwG8q8odP/RmdLa2YrybDJaAMg+X1ajY3w==} + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + + ripemd160@2.0.2: + resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + semver@1.1.4: + resolution: {integrity: sha512-9causpLEkYDrfTz7cprleLz9dnlb0oKsKRHl33K92wJmXLhVc2dGlrQGJT/sjtLOAyuoQZl+ClI77+lnvzPSKg==} + hasBin: true + + send@0.12.3: + resolution: {integrity: sha512-T/5qhRIkka7r2hnJRWcgpylTpreWNYk7G5EpYrmLNBhz3eP3c8TeasftFr9q++7rKVwRmnfuksMxujot1a74HA==} + engines: {node: '>= 0.8.0'} + + serve-static@1.9.3: + resolution: {integrity: sha512-RzgLgiNjRMhvdnLWKYJtr/QZ3q8jkDv10loWizQMh53Zlmd2jId5PtarLJO9Z6RtQJ/VcZYkvMOIDTOy86h5qw==} + engines: {node: '>= 0.8.0'} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + sha.js@2.4.11: + resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} + hasBin: true + + shasum-object@1.0.0: + resolution: {integrity: sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==} + + shasum@1.0.2: + resolution: {integrity: sha512-UTzHm/+AzKfO9RgPgRpDIuMSNie1ubXRaljjlhFMNGYoG7z+rm9AHLPMf70R7887xboDH9Q+5YQbWKObFHEAtw==} + + shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + signal-exit@2.1.2: + resolution: {integrity: sha512-Hjt8MofEmj5vFgJ5vnad1V8msp7lJg/gdBP7fOmEnlgeUYkg9ntdQEzBPMc0sjJf6MVkBALNSo/KvfVn34MIwQ==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + + sliced@0.0.5: + resolution: {integrity: sha512-9bYT917D6H3+q8GlQBJmLVz3bc4OeVGfZ2BB12wvLnluTGfG6/8UdOUbKJDW1EEx9SZMDbjnatkau5/XcUeyOw==} + + sntp@0.2.4: + resolution: {integrity: sha512-bDLrKa/ywz65gCl+LmOiIhteP1bhEsAAzhfMedPoiHP3dyYnAevlaJshdqb9Yu0sRifyP/fRqSt8t+5qGIWlGQ==} + engines: {node: '>=0.8.0'} + deprecated: This module moved to @hapi/sntp. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues. + + sntp@1.0.9: + resolution: {integrity: sha512-7bgVOAnPj3XjrKY577S+puCKGCRlUrcrEdsMeRXlg9Ghf5df/xNi6sONUa43WrHUd3TjJBF7O04jYoiY0FVa0A==} + engines: {node: '>=0.8.0'} + deprecated: This module moved to @hapi/sntp. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues. + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + split@0.2.10: + resolution: {integrity: sha512-e0pKq+UUH2Xq/sXbYpZBZc3BawsfDZ7dgv+JtRTUPNcvF5CMR4Y9cvJqkMY0MoxWzTHvZuz1beg6pNEKlszPiQ==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + st@0.2.4: + resolution: {integrity: sha512-3xF3j+99oVmpj3ESZKsztF7uZBHgvqGJla/BJbCea/wp1TGKJrcil/ZDN3D8JkRzIEcX1SyGF1d/D2Ce8/OKtg==} + deprecated: Please upgrade to at least 0.2.5 for a security fix + hasBin: true + + stack-utils@0.4.0: + resolution: {integrity: sha512-UMJIxXde+DIlsX3Ol6/labq6JsMfikqbGZm0u8fRNxMUFLNoPkp1UXKwYUh3dObNBGo3xJGOoOlQxs4cle2cjg==} + engines: {node: '>=0.10.0'} + + stream-browserify@2.0.2: + resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==} + + stream-buffers@3.0.2: + resolution: {integrity: sha512-DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ==} + engines: {node: '>= 0.10.0'} + + stream-combiner2@1.1.1: + resolution: {integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==} + + stream-combiner@0.0.4: + resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} + + stream-http@2.8.3: + resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==} + + stream-splicer@2.0.1: + resolution: {integrity: sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==} + + streamifier@0.1.1: + resolution: {integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==} + engines: {node: '>=0.10'} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringstream@0.0.6: + resolution: {integrity: sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + subarg@1.0.0: + resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==} + + supports-color@1.3.1: + resolution: {integrity: sha512-OHbMkscHFRcNWEcW80fYhCrzAjheSIBwJChpFaBqA6zEz53nxumqi6ukciRb/UA0/v2nDNMk28ce/uBbYRDsng==} + engines: {node: '>=0.8.0'} + hasBin: true + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + syntax-error@1.4.0: + resolution: {integrity: sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==} + + tap-mocha-reporter@0.0.27: + resolution: {integrity: sha512-bb0O0qCzNMgcTkeIGACF1l/6oLa6XN7Zg73DogrRIHhYx0SGTvzSpl0068IdOloo3OyvhMKaIGIVLJ8wxq3Vlg==} + hasBin: true + + tap-parser@1.3.2: + resolution: {integrity: sha512-DvP7UJFCyqFPVTWrX51mqQPHAA7vvm77bUsIGGtaLSpHVVvfP6c4Xej5ymt0dVLngE5NouPwCsDzOVW9Bnobuw==} + hasBin: true + + tap@5.8.0: + resolution: {integrity: sha512-nJ9VmIOJQ1XHJDpxU+d8EVVT8u9DkDQ8nfP/xLPCa03FF350IwTB1MWbNyhGmY+GG2c0R/S34uKb70Ihq1YfxQ==} + engines: {node: '>=0.8'} + hasBin: true + + tape@2.3.0: + resolution: {integrity: sha512-uct0y3TeBtIc/tMZ4xyeWHQItGpP378k1e9M/DhTcrJ74skHzDzg3baRYskts76EXaicoxLMZ+gaSIqtQYIjbw==} + hasBin: true + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + timers-browserify@1.4.2: + resolution: {integrity: sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q==} + engines: {node: '>=0.6.0'} + + tmatch@2.0.1: + resolution: {integrity: sha512-OHn/lzGWAsh5MBNTXUiHc595HAbIASCs6M+hDrkMObbSzsXej0SCKrQxr4J6EmRHbdo3qwyetPzuzEktkZiy4g==} + + to-arraybuffer@1.0.1: + resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} + + tough-cookie@2.3.4: + resolution: {integrity: sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==} + engines: {node: '>=0.8'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tty-browserify@0.0.1: + resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} + + tunnel-agent@0.4.3: + resolution: {integrity: sha512-e0IoVDWx8SDHc/hwFTqJDQ7CCDTEeGhmcT9jkWJjoGQSpgBz20nAMr80E3Tpk7PatJ1b37DQDgJR3CNSzcMOZQ==} + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + type-is@1.5.7: + resolution: {integrity: sha512-of68V0oUmVH4thGc1cLR3sKdICPsaL7kzpYc7FX1pcagY4eIllhyMqQcoOq289f+xj2orm8oPWwsCwxiCgVJbQ==} + engines: {node: '>= 0.6'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typedarray@0.0.7: + resolution: {integrity: sha512-ueeb9YybpjhivjbHP2LdFDAjbS948fGEPj+ACAMs4xCMmh72OCOMQWBQKlaN4ZNQ04yfLSDLSx1tGRIoWimObQ==} + + umd@3.0.3: + resolution: {integrity: sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==} + hasBin: true + + undeclared-identifiers@1.1.3: + resolution: {integrity: sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==} + hasBin: true + + underscore@1.12.1: + resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==} + + unicode-length@1.0.3: + resolution: {integrity: sha512-rZKNhIqioUp7H49afr26tivLDCvUSqOXwmwEEnsCwnPX67S1CYbOL45Y5IP3K/XHN73/lg21HlrB8SNlYXKQTg==} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + + urlgrey@0.4.0: + resolution: {integrity: sha512-a7rZduCSd66psZgyZc4PEPGEGguIZHa6cyFQzEiQNu5gMsMQnreHCRaYgB8ka+rN1B4VUjy+VTTPThlHMpttUA==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + + utils-merge@1.0.0: + resolution: {integrity: sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ==} + engines: {node: '>= 0.4.0'} + + uuid@3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + + vary@1.0.1: + resolution: {integrity: sha512-yNsH+tC0r8quK2tg/yqkXqqaYzeKTkSqQ+8T6xCoWgOi/bU/omMYz+6k+I91JJJDeltJzI7oridTOq6OYkY0Tw==} + engines: {node: '>= 0.8'} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + + vm-browserify@0.0.4: + resolution: {integrity: sha512-NyZNR3WDah+NPkjh/YmhuWSsT4a0mF0BJYgUmvrJ70zxjTXh5Y2Asobxlh0Nfs0PCFB5FVpRJft7NozAWFMwLQ==} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + +snapshots: + + JSONStream@1.3.5: + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + + abbrev@1.1.1: {} + + accepts@1.1.4: + dependencies: + mime-types: 2.0.14 + negotiator: 0.4.9 + + accepts@1.2.13: + dependencies: + mime-types: 2.1.35 + negotiator: 0.5.3 + + acorn-node@1.8.2: + dependencies: + acorn: 7.4.1 + acorn-walk: 7.2.0 + xtend: 4.0.2 + + acorn-walk@7.2.0: {} + + acorn@5.7.4: {} + + acorn@7.4.1: {} + + adm-zip@0.4.7: {} + + ansi-regex@2.1.1: {} + + ansi-styles@2.2.1: {} + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + argparse@2.0.1: {} + + asn1.js@4.10.1: + dependencies: + bn.js: 4.12.0 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + asn1@0.1.11: + optional: true + + asn1@0.2.6: + dependencies: + safer-buffer: 2.1.2 + + assert-plus@0.1.5: + optional: true + + assert-plus@0.2.0: {} + + assert-plus@1.0.0: {} + + assert@1.5.1: + dependencies: + object.assign: 4.1.5 + util: 0.10.4 + + async-cache@0.1.5: + dependencies: + lru-cache: 2.3.1 + + async@0.9.0: {} + + async@0.9.2: + optional: true + + asynckit@0.4.0: {} + + aws-sign2@0.5.0: + optional: true + + aws-sign2@0.6.0: {} + + aws4@1.12.0: {} + + balanced-match@1.0.2: {} + + base64-js@1.5.1: {} + + basic-auth@2.0.1: + dependencies: + safe-buffer: 5.1.2 + + bcrypt-pbkdf@1.0.2: + dependencies: + tweetnacl: 0.14.5 + + bl@0.9.5: + dependencies: + readable-stream: 1.0.34 + + bluebird@2.9.26: {} + + bluebird@3.7.2: {} + + bn.js@4.12.0: {} + + bn.js@5.2.1: {} + + body-parser@1.9.0: + dependencies: + bytes: 1.0.0 + depd: 1.0.1 + iconv-lite: 0.4.4 + media-typer: 0.3.0 + on-finished: 2.1.0 + qs: 2.2.4 + raw-body: 1.3.0 + type-is: 1.5.7 + + boom@0.4.2: + dependencies: + hoek: 0.9.1 + optional: true + + boom@2.10.1: + dependencies: + hoek: 2.16.3 + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brorand@1.1.0: {} + + browser-pack@6.1.0: + dependencies: + JSONStream: 1.3.5 + combine-source-map: 0.8.0 + defined: 1.0.1 + safe-buffer: 5.2.1 + through2: 2.0.5 + umd: 3.0.3 + + browser-resolve@1.11.3: + dependencies: + resolve: 1.1.7 + + browserify-aes@1.2.0: + dependencies: + buffer-xor: 1.0.3 + cipher-base: 1.0.4 + create-hash: 1.2.0 + evp_bytestokey: 1.0.3 + inherits: 2.0.4 + safe-buffer: 5.2.1 + + browserify-cipher@1.0.1: + dependencies: + browserify-aes: 1.2.0 + browserify-des: 1.0.2 + evp_bytestokey: 1.0.3 + + browserify-des@1.0.2: + dependencies: + cipher-base: 1.0.4 + des.js: 1.1.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 + + browserify-rsa@4.1.0: + dependencies: + bn.js: 5.2.1 + randombytes: 2.1.0 + + browserify-sign@4.2.3: + dependencies: + bn.js: 5.2.1 + browserify-rsa: 4.1.0 + create-hash: 1.2.0 + create-hmac: 1.1.7 + elliptic: 6.5.5 + hash-base: 3.0.4 + inherits: 2.0.4 + parse-asn1: 5.1.7 + readable-stream: 2.3.8 + safe-buffer: 5.2.1 + + browserify-zlib@0.1.4: + dependencies: + pako: 0.2.9 + + browserify@13.3.0: + dependencies: + JSONStream: 1.3.5 + assert: 1.5.1 + browser-pack: 6.1.0 + browser-resolve: 1.11.3 + browserify-zlib: 0.1.4 + buffer: 4.9.2 + cached-path-relative: 1.1.0 + concat-stream: 1.5.2 + console-browserify: 1.2.0 + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + defined: 1.0.1 + deps-sort: 2.0.1 + domain-browser: 1.1.7 + duplexer2: 0.1.4 + events: 1.1.1 + glob: 7.2.3 + has: 1.0.4 + htmlescape: 1.1.1 + https-browserify: 0.0.1 + inherits: 2.0.4 + insert-module-globals: 7.2.1 + labeled-stream-splicer: 2.0.2 + module-deps: 4.1.1 + os-browserify: 0.1.2 + parents: 1.0.1 + path-browserify: 0.0.1 + process: 0.11.10 + punycode: 1.4.1 + querystring-es3: 0.2.1 + read-only-stream: 2.0.0 + readable-stream: 2.3.8 + resolve: 1.22.8 + shasum: 1.0.2 + shell-quote: 1.8.1 + stream-browserify: 2.0.2 + stream-http: 2.8.3 + string_decoder: 0.10.31 + subarg: 1.0.0 + syntax-error: 1.4.0 + through2: 2.0.5 + timers-browserify: 1.4.2 + tty-browserify: 0.0.1 + url: 0.11.3 + util: 0.10.4 + vm-browserify: 0.0.4 + xtend: 4.0.2 + + bson@0.4.23: {} + + buffer-from@1.1.2: {} + + buffer-xor@1.0.3: {} + + buffer@4.9.2: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + isarray: 1.0.0 + + builtin-status-codes@3.0.0: {} + + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + + bytes@1.0.0: {} + + cached-path-relative@1.1.0: {} + + call-bind@1.0.7: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 + + caseless@0.11.0: {} + + caseless@0.6.0: {} + + cfenv@1.2.4: + dependencies: + js-yaml: 4.0.0 + ports: 1.1.0 + underscore: 1.12.1 + + chalk@1.1.3: + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + + cipher-base@1.0.4: + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + clean-yaml-object@0.1.0: {} + + codecov.io@0.1.6: + dependencies: + request: 2.42.0 + urlgrey: 0.4.0 + + color-support@1.1.3: {} + + combine-source-map@0.8.0: + dependencies: + convert-source-map: 1.1.3 + inline-source-map: 0.6.3 + lodash.memoize: 3.0.4 + source-map: 0.5.7 + + combined-stream@0.0.7: + dependencies: + delayed-stream: 0.0.5 + optional: true + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + commander@2.20.3: {} + + concat-map@0.0.1: {} + + concat-stream@1.5.2: + dependencies: + inherits: 2.0.4 + readable-stream: 2.0.6 + typedarray: 0.0.7 + + concat-stream@1.6.2: + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 2.3.8 + typedarray: 0.0.6 + + config-chain@1.1.13: + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + + connect-busboy@0.0.2: + dependencies: + busboy: 1.6.0 + + console-browserify@1.2.0: {} + + consolidate@0.14.5(dustjs-helpers@1.5.0(dustjs-linkedin@2.5.0))(dustjs-linkedin@2.5.0)(ejs@1.0.0)(underscore@1.12.1): + dependencies: + bluebird: 3.7.2 + optionalDependencies: + dustjs-helpers: 1.5.0(dustjs-linkedin@2.5.0) + dustjs-linkedin: 2.5.0 + ejs: 1.0.0 + underscore: 1.12.1 + + constants-browserify@1.0.0: {} + + content-disposition@0.5.0: {} + + content-type@1.0.5: {} + + convert-source-map@1.1.3: {} + + cookie-parser@1.3.3: + dependencies: + cookie: 0.1.2 + cookie-signature: 1.0.5 + + cookie-signature@1.0.5: {} + + cookie-signature@1.0.6: {} + + cookie@0.1.2: {} + + core-util-is@1.0.2: {} + + core-util-is@1.0.3: {} + + coveralls@2.13.3: + dependencies: + js-yaml: 3.6.1 + lcov-parse: 0.0.10 + log-driver: 1.2.5 + minimist: 1.2.0 + request: 2.79.0 + + crc@3.2.1: {} + + create-ecdh@4.0.4: + dependencies: + bn.js: 4.12.0 + elliptic: 6.5.5 + + create-hash@1.2.0: + dependencies: + cipher-base: 1.0.4 + inherits: 2.0.4 + md5.js: 1.3.5 + ripemd160: 2.0.2 + sha.js: 2.4.11 + + create-hmac@1.1.7: + dependencies: + cipher-base: 1.0.4 + create-hash: 1.2.0 + inherits: 2.0.4 + ripemd160: 2.0.2 + safe-buffer: 5.2.1 + sha.js: 2.4.11 + + cross-spawn@4.0.2: + dependencies: + lru-cache: 4.1.5 + which: 1.3.1 + + cryptiles@0.2.2: + dependencies: + boom: 0.4.2 + optional: true + + cryptiles@2.0.5: + dependencies: + boom: 2.10.1 + + crypto-browserify@3.12.0: + dependencies: + browserify-cipher: 1.0.1 + browserify-sign: 4.2.3 + create-ecdh: 4.0.4 + create-hash: 1.2.0 + create-hmac: 1.1.7 + diffie-hellman: 5.0.3 + inherits: 2.0.4 + pbkdf2: 3.1.2 + public-encrypt: 4.0.3 + randombytes: 2.1.0 + randomfill: 1.0.4 + + ctype@0.5.3: + optional: true + + dash-ast@1.0.0: {} + + dashdash@1.14.1: + dependencies: + assert-plus: 1.0.0 + + debug@2.2.0: + dependencies: + ms: 0.7.1 + + debug@2.6.9(supports-color@1.3.1): + dependencies: + ms: 2.0.0 + optionalDependencies: + supports-color: 1.3.1 + + debug@3.1.0: + dependencies: + ms: 2.0.0 + + deep-equal@0.1.2: {} + + deeper@2.1.0: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.0.1 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + defined@0.0.0: {} + + defined@1.0.1: {} + + delayed-stream@0.0.5: + optional: true + + delayed-stream@1.0.0: {} + + depd@1.0.1: {} + + depd@2.0.0: {} + + deps-sort@2.0.1: + dependencies: + JSONStream: 1.3.5 + shasum-object: 1.0.0 + subarg: 1.0.0 + through2: 2.0.5 + + des.js@1.1.0: + dependencies: + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + destroy@1.0.3: {} + + detective@4.7.1: + dependencies: + acorn: 5.7.4 + defined: 1.0.1 + + diff@1.4.0: {} + + diffie-hellman@5.0.3: + dependencies: + bn.js: 4.12.0 + miller-rabin: 4.0.1 + randombytes: 2.1.0 + + domain-browser@1.1.7: {} + + duplexer2@0.1.4: + dependencies: + readable-stream: 2.3.8 + + duplexer@0.1.2: {} + + dustjs-helpers@1.5.0(dustjs-linkedin@2.5.0): + dependencies: + dustjs-linkedin: 2.5.0 + + dustjs-linkedin@2.5.0: {} + + ecc-jsbn@0.1.2: + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + + ee-first@1.0.5: {} + + ee-first@1.1.0: {} + + ee-first@1.1.1: {} + + ejs-locals@1.0.2: + dependencies: + ejs: 0.8.8 + + ejs@0.8.8: {} + + ejs@1.0.0: {} + + elliptic@6.5.5: + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + errorhandler@1.2.0: + dependencies: + accepts: 1.1.4 + escape-html: 1.0.1 + + es-define-property@1.0.0: + dependencies: + get-intrinsic: 1.2.4 + + es-errors@1.3.0: {} + + es6-promise@2.1.1: {} + + escape-html@1.0.1: {} + + escape-string-regexp@1.0.5: {} + + esprima@2.7.3: {} + + esprima@4.0.1: {} + + etag@1.6.0: + dependencies: + crc: 3.2.1 + + events-to-array@1.1.2: {} + + events@1.1.1: {} + + evp_bytestokey@1.0.3: + dependencies: + md5.js: 1.3.5 + safe-buffer: 5.2.1 + + express-fileupload@0.0.5: + dependencies: + connect-busboy: 0.0.2 + fs-extra: 0.22.1 + streamifier: 0.1.1 + + express@4.12.4: + dependencies: + accepts: 1.2.13 + content-disposition: 0.5.0 + content-type: 1.0.5 + cookie: 0.1.2 + cookie-signature: 1.0.6 + debug: 2.2.0 + depd: 1.0.1 + escape-html: 1.0.1 + etag: 1.6.0 + finalhandler: 0.3.6 + fresh: 0.2.4 + merge-descriptors: 1.0.0 + methods: 1.1.2 + on-finished: 2.2.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.3 + proxy-addr: 1.0.10 + qs: 2.4.2 + range-parser: 1.0.3 + send: 0.12.3 + serve-static: 1.9.3 + type-is: 1.6.18 + utils-merge: 1.0.0 + vary: 1.0.1 + transitivePeerDependencies: + - supports-color + + extend@3.0.2: {} + + extsprintf@1.3.0: {} + + fast-safe-stringify@2.1.1: {} + + fd@0.0.3: {} + + file-type@8.1.0: {} + + finalhandler@0.3.6: + dependencies: + debug: 2.2.0 + escape-html: 1.0.1 + on-finished: 2.2.1 + transitivePeerDependencies: + - supports-color + + foreground-child@1.5.6: + dependencies: + cross-spawn: 4.0.2 + signal-exit: 3.0.7 + + forever-agent@0.5.2: {} + + forever-agent@0.6.1: {} + + form-data@0.1.4: + dependencies: + async: 0.9.2 + combined-stream: 0.0.7 + mime: 1.2.11 + optional: true + + form-data@2.1.4: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + forwarded@0.1.2: {} + + fresh@0.2.4: {} + + fs-extra@0.22.1: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 2.4.0 + rimraf: 2.7.1 + + fs.realpath@1.0.0: {} + + function-bind@1.1.2: {} + + generate-function@2.3.1: + dependencies: + is-property: 1.0.2 + + generate-object-property@1.2.0: + dependencies: + is-property: 1.0.2 + + get-assigned-identifiers@1.2.0: {} + + get-intrinsic@1.2.4: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + + getpass@0.1.7: + dependencies: + assert-plus: 1.0.0 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + gopd@1.0.1: + dependencies: + get-intrinsic: 1.2.4 + + graceful-fs@1.2.3: + optional: true + + graceful-fs@4.2.11: {} + + har-validator@2.0.6: + dependencies: + chalk: 1.1.3 + commander: 2.20.3 + is-my-json-valid: 2.20.6 + pinkie-promise: 2.0.1 + + has-ansi@2.0.0: + dependencies: + ansi-regex: 2.1.1 + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.0 + + has-proto@1.0.3: {} + + has-symbols@1.0.3: {} + + has@1.0.4: {} + + hash-base@3.0.4: + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + hash-base@3.1.0: + dependencies: + inherits: 2.0.4 + readable-stream: 3.6.2 + safe-buffer: 5.2.1 + + hash.js@1.1.7: + dependencies: + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hawk@1.1.1: + dependencies: + boom: 0.4.2 + cryptiles: 0.2.2 + hoek: 0.9.1 + sntp: 0.2.4 + optional: true + + hawk@3.1.3: + dependencies: + boom: 2.10.1 + cryptiles: 2.0.5 + hoek: 2.16.3 + sntp: 1.0.9 + + hmac-drbg@1.0.1: + dependencies: + hash.js: 1.1.7 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + hoek@0.9.1: + optional: true + + hoek@2.16.3: {} + + hooks-fixed@1.1.0: {} + + htmlescape@1.1.1: {} + + http-signature@0.10.1: + dependencies: + asn1: 0.1.11 + assert-plus: 0.1.5 + ctype: 0.5.3 + optional: true + + http-signature@1.1.1: + dependencies: + assert-plus: 0.2.0 + jsprim: 1.4.2 + sshpk: 1.18.0 + + https-browserify@0.0.1: {} + + humanize-ms@1.0.1: + dependencies: + ms: 0.6.2 + + iconv-lite@0.4.4: {} + + ieee754@1.2.1: {} + + indexof@0.0.1: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@1.0.2: {} + + inherits@2.0.3: {} + + inherits@2.0.4: {} + + ini@1.1.0: {} + + ini@1.3.8: {} + + inline-source-map@0.6.3: + dependencies: + source-map: 0.5.7 + + insert-module-globals@7.2.1: + dependencies: + JSONStream: 1.3.5 + acorn-node: 1.8.2 + combine-source-map: 0.8.0 + concat-stream: 1.6.2 + is-buffer: 1.1.6 + path-is-absolute: 1.0.1 + process: 0.11.10 + through2: 2.0.5 + undeclared-identifiers: 1.1.3 + xtend: 4.0.2 + + ipaddr.js@1.0.5: {} + + is-buffer@1.1.6: {} + + is-core-module@2.13.1: + dependencies: + hasown: 2.0.2 + + is-my-ip-valid@1.0.1: {} + + is-my-json-valid@2.20.6: + dependencies: + generate-function: 2.3.1 + generate-object-property: 1.2.0 + is-my-ip-valid: 1.0.1 + jsonpointer: 5.0.1 + xtend: 4.0.2 + + is-property@1.0.2: {} + + is-typedarray@1.0.0: {} + + isarray@0.0.1: {} + + isarray@1.0.0: {} + + isexe@1.1.2: {} + + isexe@2.0.0: {} + + isstream@0.1.2: {} + + jquery@2.2.4: {} + + js-yaml@3.14.1: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + js-yaml@3.6.1: + dependencies: + argparse: 1.0.10 + esprima: 2.7.3 + + js-yaml@4.0.0: + dependencies: + argparse: 2.0.1 + + jsbn@0.1.1: {} + + json-schema@0.4.0: {} + + json-stable-stringify@0.0.1: + dependencies: + jsonify: 0.0.1 + + json-stringify-safe@5.0.1: {} + + jsonfile@2.4.0: + optionalDependencies: + graceful-fs: 4.2.11 + + jsonify@0.0.1: {} + + jsonparse@1.3.1: {} + + jsonpointer@5.0.1: {} + + jsprim@1.4.2: + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + + kareem@1.0.1: {} + + kerberos@0.0.24: + dependencies: + nan: 2.10.0 + optional: true + + labeled-stream-splicer@2.0.2: + dependencies: + inherits: 2.0.4 + stream-splicer: 2.0.1 + + lcov-parse@0.0.10: {} + + lodash.memoize@3.0.4: {} + + log-driver@1.2.5: {} + + lru-cache@2.3.1: {} + + lru-cache@4.1.5: + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + + marked@0.3.5: {} + + md5.js@1.3.5: + dependencies: + hash-base: 3.1.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 + + media-typer@0.3.0: {} + + merge-descriptors@1.0.0: {} + + method-override@3.0.0: + dependencies: + debug: 3.1.0 + methods: 1.1.2 + parseurl: 1.3.3 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + + methods@1.1.2: {} + + miller-rabin@4.0.1: + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + + mime-db@1.12.0: {} + + mime-db@1.52.0: {} + + mime-types@1.0.2: {} + + mime-types@2.0.14: + dependencies: + mime-db: 1.12.0 + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@1.2.11: {} + + mime@1.3.4: {} + + minimalistic-assert@1.0.1: {} + + minimalistic-crypto-utils@1.0.1: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimist@1.2.0: {} + + minimist@1.2.8: {} + + mkdirp@0.3.5: {} + + module-deps@4.1.1: + dependencies: + JSONStream: 1.3.5 + browser-resolve: 1.11.3 + cached-path-relative: 1.1.0 + concat-stream: 1.5.2 + defined: 1.0.1 + detective: 4.7.1 + duplexer2: 0.1.4 + inherits: 2.0.4 + parents: 1.0.1 + readable-stream: 2.3.8 + resolve: 1.22.8 + stream-combiner2: 1.1.1 + subarg: 1.0.0 + through2: 2.0.5 + xtend: 4.0.2 + + moment@2.15.1: {} + + mongodb-core@1.2.19: + dependencies: + bson: 0.4.23 + optionalDependencies: + kerberos: 0.0.24 + + mongodb@2.0.46: + dependencies: + es6-promise: 2.1.1 + mongodb-core: 1.2.19 + readable-stream: 1.0.31 + + mongoose@4.2.4: + dependencies: + async: 0.9.0 + bson: 0.4.23 + hooks-fixed: 1.1.0 + kareem: 1.0.1 + mongodb: 2.0.46 + mpath: 0.1.1 + mpromise: 0.5.4 + mquery: 1.6.3 + ms: 0.7.1 + muri: 1.0.0 + regexp-clone: 0.0.1 + sliced: 0.0.5 + transitivePeerDependencies: + - supports-color + + morgan@1.10.0: + dependencies: + basic-auth: 2.0.1 + debug: 2.6.9(supports-color@1.3.1) + depd: 2.0.0 + on-finished: 2.3.0 + on-headers: 1.0.2 + transitivePeerDependencies: + - supports-color + + mpath@0.1.1: {} + + mpromise@0.5.4: {} + + mquery@1.6.3: + dependencies: + bluebird: 2.9.26 + debug: 2.2.0 + regexp-clone: 0.0.1 + sliced: 0.0.5 + transitivePeerDependencies: + - supports-color + + ms@0.6.2: {} + + ms@0.7.1: {} + + ms@0.7.3: {} + + ms@2.0.0: {} + + muri@1.0.0: {} + + nan@2.10.0: + optional: true + + negotiator@0.2.8: {} + + negotiator@0.4.9: {} + + negotiator@0.5.3: {} + + node-uuid@1.4.8: {} + + nopt@2.2.1: + dependencies: + abbrev: 1.1.1 + + npmconf@0.0.24: + dependencies: + config-chain: 1.1.13 + inherits: 1.0.2 + ini: 1.1.0 + mkdirp: 0.3.5 + nopt: 2.2.1 + once: 1.1.1 + osenv: 0.0.3 + semver: 1.1.4 + + nyc@6.6.1: {} + + oauth-sign@0.4.0: + optional: true + + oauth-sign@0.8.2: {} + + object-inspect@1.13.1: {} + + object-keys@1.1.1: {} + + object.assign@4.1.5: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + + on-finished@2.1.0: + dependencies: + ee-first: 1.0.5 + + on-finished@2.2.1: + dependencies: + ee-first: 1.1.0 + + on-finished@2.3.0: + dependencies: + ee-first: 1.1.1 + + on-headers@1.0.2: {} + + once@1.1.1: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + only-shallow@1.2.0: {} + + opener@1.5.2: {} + + optional@0.1.4: {} + + os-browserify@0.1.2: {} + + osenv@0.0.3: {} + + pako@0.2.9: {} + + parents@1.0.1: + dependencies: + path-platform: 0.11.15 + + parse-asn1@5.1.7: + dependencies: + asn1.js: 4.10.1 + browserify-aes: 1.2.0 + evp_bytestokey: 1.0.3 + hash-base: 3.0.4 + pbkdf2: 3.1.2 + safe-buffer: 5.2.1 + + parseurl@1.3.3: {} + + path-browserify@0.0.1: {} + + path-is-absolute@1.0.1: {} + + path-parse@1.0.7: {} + + path-platform@0.11.15: {} + + path-to-regexp@0.1.3: {} + + pbkdf2@3.1.2: + dependencies: + create-hash: 1.2.0 + create-hmac: 1.1.7 + ripemd160: 2.0.2 + safe-buffer: 5.2.1 + sha.js: 2.4.11 + + pinkie-promise@2.0.1: + dependencies: + pinkie: 2.0.4 + + pinkie@2.0.4: {} + + ports@1.1.0: {} + + process-nextick-args@1.0.7: {} + + process-nextick-args@2.0.1: {} + + process@0.11.10: {} + + proto-list@1.2.4: {} + + proxy-addr@1.0.10: + dependencies: + forwarded: 0.1.2 + ipaddr.js: 1.0.5 + + pseudomap@1.0.2: {} + + psl@1.9.0: + optional: true + + public-encrypt@4.0.3: + dependencies: + bn.js: 4.12.0 + browserify-rsa: 4.1.0 + create-hash: 1.2.0 + parse-asn1: 5.1.7 + randombytes: 2.1.0 + safe-buffer: 5.2.1 + + punycode@1.4.1: {} + + punycode@2.3.1: + optional: true + + qs@1.2.2: {} + + qs@2.2.4: {} + + qs@2.4.2: {} + + qs@6.12.1: + dependencies: + side-channel: 1.0.6 + + qs@6.3.3: {} + + querystring-es3@0.2.1: {} + + querystringify@2.2.0: + optional: true + + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + randomfill@1.0.4: + dependencies: + randombytes: 2.1.0 + safe-buffer: 5.2.1 + + range-parser@1.0.3: {} + + raw-body@1.3.0: + dependencies: + bytes: 1.0.0 + iconv-lite: 0.4.4 + + read-only-stream@2.0.0: + dependencies: + readable-stream: 2.3.8 + + readable-stream@1.0.31: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + + readable-stream@1.0.34: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + + readable-stream@1.1.14: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + optional: true + + readable-stream@2.0.6: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 1.0.7 + string_decoder: 0.10.31 + util-deprecate: 1.0.2 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + regexp-clone@0.0.1: {} + + request@2.42.0: + dependencies: + bl: 0.9.5 + caseless: 0.6.0 + forever-agent: 0.5.2 + json-stringify-safe: 5.0.1 + mime-types: 1.0.2 + node-uuid: 1.4.8 + qs: 1.2.2 + tunnel-agent: 0.4.3 + optionalDependencies: + aws-sign2: 0.5.0 + form-data: 0.1.4 + hawk: 1.1.1 + http-signature: 0.10.1 + oauth-sign: 0.4.0 + stringstream: 0.0.6 + tough-cookie: 4.1.4 + + request@2.79.0: + dependencies: + aws-sign2: 0.6.0 + aws4: 1.12.0 + caseless: 0.11.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.1.4 + har-validator: 2.0.6 + hawk: 3.1.3 + http-signature: 1.1.1 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + oauth-sign: 0.8.2 + qs: 6.3.3 + stringstream: 0.0.6 + tough-cookie: 2.3.4 + tunnel-agent: 0.4.3 + uuid: 3.4.0 + + requires-port@1.0.0: + optional: true + + resolve@1.1.7: {} + + resolve@1.22.8: + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resumer@0.0.0: + dependencies: + through: 2.3.8 + + rimraf@2.7.1: + dependencies: + glob: 7.2.3 + + ripemd160@2.0.2: + dependencies: + hash-base: 3.1.0 + inherits: 2.0.4 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safer-buffer@2.1.2: {} + + semver@1.1.4: {} + + send@0.12.3: + dependencies: + debug: 2.2.0 + depd: 1.0.1 + destroy: 1.0.3 + escape-html: 1.0.1 + etag: 1.6.0 + fresh: 0.2.4 + mime: 1.3.4 + ms: 0.7.1 + on-finished: 2.2.1 + range-parser: 1.0.3 + transitivePeerDependencies: + - supports-color + + serve-static@1.9.3: + dependencies: + escape-html: 1.0.1 + parseurl: 1.3.3 + send: 0.12.3 + utils-merge: 1.0.0 + transitivePeerDependencies: + - supports-color + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.2 + + sha.js@2.4.11: + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + shasum-object@1.0.0: + dependencies: + fast-safe-stringify: 2.1.1 + + shasum@1.0.2: + dependencies: + json-stable-stringify: 0.0.1 + sha.js: 2.4.11 + + shell-quote@1.8.1: {} + + side-channel@1.0.6: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.1 + + signal-exit@2.1.2: {} + + signal-exit@3.0.7: {} + + simple-concat@1.0.1: {} + + sliced@0.0.5: {} + + sntp@0.2.4: + dependencies: + hoek: 0.9.1 + optional: true + + sntp@1.0.9: + dependencies: + hoek: 2.16.3 + + source-map@0.5.7: {} + + split@0.2.10: + dependencies: + through: 2.3.8 + + sprintf-js@1.0.3: {} + + sshpk@1.18.0: + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + + st@0.2.4: + dependencies: + async-cache: 0.1.5 + fd: 0.0.3 + mime: 1.2.11 + negotiator: 0.2.8 + optionalDependencies: + graceful-fs: 1.2.3 + + stack-utils@0.4.0: {} + + stream-browserify@2.0.2: + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + + stream-buffers@3.0.2: {} + + stream-combiner2@1.1.1: + dependencies: + duplexer2: 0.1.4 + readable-stream: 2.3.8 + + stream-combiner@0.0.4: + dependencies: + duplexer: 0.1.2 + + stream-http@2.8.3: + dependencies: + builtin-status-codes: 3.0.0 + inherits: 2.0.4 + readable-stream: 2.3.8 + to-arraybuffer: 1.0.1 + xtend: 4.0.2 + + stream-splicer@2.0.1: + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + + streamifier@0.1.1: {} + + streamsearch@1.1.0: {} + + string_decoder@0.10.31: {} + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + stringstream@0.0.6: {} + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + subarg@1.0.0: + dependencies: + minimist: 1.2.8 + + supports-color@1.3.1: {} + + supports-color@2.0.0: {} + + supports-preserve-symlinks-flag@1.0.0: {} + + syntax-error@1.4.0: + dependencies: + acorn-node: 1.8.2 + + tap-mocha-reporter@0.0.27(supports-color@1.3.1): + dependencies: + color-support: 1.1.3 + debug: 2.6.9(supports-color@1.3.1) + diff: 1.4.0 + escape-string-regexp: 1.0.5 + glob: 7.2.3 + js-yaml: 3.14.1 + tap-parser: 1.3.2 + unicode-length: 1.0.3 + optionalDependencies: + readable-stream: 1.1.14 + transitivePeerDependencies: + - supports-color + + tap-parser@1.3.2: + dependencies: + events-to-array: 1.1.2 + inherits: 2.0.4 + js-yaml: 3.14.1 + optionalDependencies: + readable-stream: 2.3.8 + + tap@5.8.0: + dependencies: + bluebird: 3.7.2 + clean-yaml-object: 0.1.0 + codecov.io: 0.1.6 + coveralls: 2.13.3 + deeper: 2.1.0 + foreground-child: 1.5.6 + glob: 7.2.3 + isexe: 1.1.2 + js-yaml: 3.14.1 + nyc: 6.6.1 + only-shallow: 1.2.0 + opener: 1.5.2 + readable-stream: 2.3.8 + signal-exit: 2.1.2 + stack-utils: 0.4.0 + supports-color: 1.3.1 + tap-mocha-reporter: 0.0.27(supports-color@1.3.1) + tap-parser: 1.3.2 + tmatch: 2.0.1 + + tape@2.3.0: + dependencies: + deep-equal: 0.1.2 + defined: 0.0.0 + inherits: 2.0.4 + jsonify: 0.0.1 + resumer: 0.0.0 + split: 0.2.10 + stream-combiner: 0.0.4 + through: 2.3.8 + + through2@2.0.5: + dependencies: + readable-stream: 2.3.8 + xtend: 4.0.2 + + through@2.3.8: {} + + timers-browserify@1.4.2: + dependencies: + process: 0.11.10 + + tmatch@2.0.1: {} + + to-arraybuffer@1.0.1: {} + + tough-cookie@2.3.4: + dependencies: + punycode: 1.4.1 + + tough-cookie@4.1.4: + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + optional: true + + tty-browserify@0.0.1: {} + + tunnel-agent@0.4.3: {} + + tweetnacl@0.14.5: {} + + type-is@1.5.7: + dependencies: + media-typer: 0.3.0 + mime-types: 2.0.14 + + type-is@1.6.18: + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + + typedarray@0.0.6: {} + + typedarray@0.0.7: {} + + umd@3.0.3: {} + + undeclared-identifiers@1.1.3: + dependencies: + acorn-node: 1.8.2 + dash-ast: 1.0.0 + get-assigned-identifiers: 1.2.0 + simple-concat: 1.0.1 + xtend: 4.0.2 + + underscore@1.12.1: {} + + unicode-length@1.0.3: + dependencies: + punycode: 1.4.1 + strip-ansi: 3.0.1 + + universalify@0.2.0: + optional: true + + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + optional: true + + url@0.11.3: + dependencies: + punycode: 1.4.1 + qs: 6.12.1 + + urlgrey@0.4.0: + dependencies: + tape: 2.3.0 + + util-deprecate@1.0.2: {} + + util@0.10.4: + dependencies: + inherits: 2.0.3 + + utils-merge@1.0.0: {} + + uuid@3.4.0: {} + + vary@1.0.1: {} + + vary@1.1.2: {} + + verror@1.10.0: + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + + vm-browserify@0.0.4: + dependencies: + indexof: 0.0.1 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + wrappy@1.0.2: {} + + xtend@4.0.2: {} + + yallist@2.1.2: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/invalid-pkg-json/package.json_content b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/invalid-pkg-json/package.json_content new file mode 100644 index 00000000..4674116c --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/invalid-pkg-json/package.json_content @@ -0,0 +1,7 @@ +{ + "name": "pkg-dev-deps-only", + "version": "0.0.1", + "dependencies": { + "debug": "^2.2.0", + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/expected.json new file mode 100644 index 00000000..291c3c9d --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/expected.json @@ -0,0 +1,1570 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "local-pkg-without-workspace@1.0.0", + "info": { + "name": "local-pkg-without-workspace", + "version": "1.0.0" + } + }, + { + "id": "@scope/my-local-pkg@file:local-pkg", + "info": { + "name": "@scope/my-local-pkg", + "version": "file:local-pkg" + } + }, + { + "id": "express@4.19.2", + "info": { + "name": "express", + "version": "4.19.2" + } + }, + { + "id": "accepts@1.3.8", + "info": { + "name": "accepts", + "version": "1.3.8" + } + }, + { + "id": "mime-types@2.1.35", + "info": { + "name": "mime-types", + "version": "2.1.35" + } + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "negotiator@0.6.3", + "info": { + "name": "negotiator", + "version": "0.6.3" + } + }, + { + "id": "array-flatten@1.1.1", + "info": { + "name": "array-flatten", + "version": "1.1.1" + } + }, + { + "id": "body-parser@1.20.2", + "info": { + "name": "body-parser", + "version": "1.20.2" + } + }, + { + "id": "bytes@3.1.2", + "info": { + "name": "bytes", + "version": "3.1.2" + } + }, + { + "id": "content-type@1.0.5", + "info": { + "name": "content-type", + "version": "1.0.5" + } + }, + { + "id": "debug@2.6.9", + "info": { + "name": "debug", + "version": "2.6.9" + } + }, + { + "id": "ms@2.0.0", + "info": { + "name": "ms", + "version": "2.0.0" + } + }, + { + "id": "depd@2.0.0", + "info": { + "name": "depd", + "version": "2.0.0" + } + }, + { + "id": "destroy@1.2.0", + "info": { + "name": "destroy", + "version": "1.2.0" + } + }, + { + "id": "http-errors@2.0.0", + "info": { + "name": "http-errors", + "version": "2.0.0" + } + }, + { + "id": "inherits@2.0.4", + "info": { + "name": "inherits", + "version": "2.0.4" + } + }, + { + "id": "setprototypeof@1.2.0", + "info": { + "name": "setprototypeof", + "version": "1.2.0" + } + }, + { + "id": "statuses@2.0.1", + "info": { + "name": "statuses", + "version": "2.0.1" + } + }, + { + "id": "toidentifier@1.0.1", + "info": { + "name": "toidentifier", + "version": "1.0.1" + } + }, + { + "id": "iconv-lite@0.4.24", + "info": { + "name": "iconv-lite", + "version": "0.4.24" + } + }, + { + "id": "safer-buffer@2.1.2", + "info": { + "name": "safer-buffer", + "version": "2.1.2" + } + }, + { + "id": "on-finished@2.4.1", + "info": { + "name": "on-finished", + "version": "2.4.1" + } + }, + { + "id": "ee-first@1.1.1", + "info": { + "name": "ee-first", + "version": "1.1.1" + } + }, + { + "id": "qs@6.11.0", + "info": { + "name": "qs", + "version": "6.11.0" + } + }, + { + "id": "side-channel@1.0.6", + "info": { + "name": "side-channel", + "version": "1.0.6" + } + }, + { + "id": "call-bind@1.0.7", + "info": { + "name": "call-bind", + "version": "1.0.7" + } + }, + { + "id": "es-define-property@1.0.0", + "info": { + "name": "es-define-property", + "version": "1.0.0" + } + }, + { + "id": "get-intrinsic@1.2.4", + "info": { + "name": "get-intrinsic", + "version": "1.2.4" + } + }, + { + "id": "es-errors@1.3.0", + "info": { + "name": "es-errors", + "version": "1.3.0" + } + }, + { + "id": "function-bind@1.1.2", + "info": { + "name": "function-bind", + "version": "1.1.2" + } + }, + { + "id": "has-proto@1.0.3", + "info": { + "name": "has-proto", + "version": "1.0.3" + } + }, + { + "id": "has-symbols@1.0.3", + "info": { + "name": "has-symbols", + "version": "1.0.3" + } + }, + { + "id": "hasown@2.0.2", + "info": { + "name": "hasown", + "version": "2.0.2" + } + }, + { + "id": "set-function-length@1.2.2", + "info": { + "name": "set-function-length", + "version": "1.2.2" + } + }, + { + "id": "define-data-property@1.1.4", + "info": { + "name": "define-data-property", + "version": "1.1.4" + } + }, + { + "id": "gopd@1.0.1", + "info": { + "name": "gopd", + "version": "1.0.1" + } + }, + { + "id": "has-property-descriptors@1.0.2", + "info": { + "name": "has-property-descriptors", + "version": "1.0.2" + } + }, + { + "id": "object-inspect@1.13.1", + "info": { + "name": "object-inspect", + "version": "1.13.1" + } + }, + { + "id": "raw-body@2.5.2", + "info": { + "name": "raw-body", + "version": "2.5.2" + } + }, + { + "id": "unpipe@1.0.0", + "info": { + "name": "unpipe", + "version": "1.0.0" + } + }, + { + "id": "type-is@1.6.18", + "info": { + "name": "type-is", + "version": "1.6.18" + } + }, + { + "id": "media-typer@0.3.0", + "info": { + "name": "media-typer", + "version": "0.3.0" + } + }, + { + "id": "content-disposition@0.5.4", + "info": { + "name": "content-disposition", + "version": "0.5.4" + } + }, + { + "id": "safe-buffer@5.2.1", + "info": { + "name": "safe-buffer", + "version": "5.2.1" + } + }, + { + "id": "cookie@0.6.0", + "info": { + "name": "cookie", + "version": "0.6.0" + } + }, + { + "id": "cookie-signature@1.0.6", + "info": { + "name": "cookie-signature", + "version": "1.0.6" + } + }, + { + "id": "encodeurl@1.0.2", + "info": { + "name": "encodeurl", + "version": "1.0.2" + } + }, + { + "id": "escape-html@1.0.3", + "info": { + "name": "escape-html", + "version": "1.0.3" + } + }, + { + "id": "etag@1.8.1", + "info": { + "name": "etag", + "version": "1.8.1" + } + }, + { + "id": "finalhandler@1.2.0", + "info": { + "name": "finalhandler", + "version": "1.2.0" + } + }, + { + "id": "parseurl@1.3.3", + "info": { + "name": "parseurl", + "version": "1.3.3" + } + }, + { + "id": "fresh@0.5.2", + "info": { + "name": "fresh", + "version": "0.5.2" + } + }, + { + "id": "merge-descriptors@1.0.1", + "info": { + "name": "merge-descriptors", + "version": "1.0.1" + } + }, + { + "id": "methods@1.1.2", + "info": { + "name": "methods", + "version": "1.1.2" + } + }, + { + "id": "path-to-regexp@0.1.7", + "info": { + "name": "path-to-regexp", + "version": "0.1.7" + } + }, + { + "id": "proxy-addr@2.0.7", + "info": { + "name": "proxy-addr", + "version": "2.0.7" + } + }, + { + "id": "forwarded@0.2.0", + "info": { + "name": "forwarded", + "version": "0.2.0" + } + }, + { + "id": "ipaddr.js@1.9.1", + "info": { + "name": "ipaddr.js", + "version": "1.9.1" + } + }, + { + "id": "range-parser@1.2.1", + "info": { + "name": "range-parser", + "version": "1.2.1" + } + }, + { + "id": "send@0.18.0", + "info": { + "name": "send", + "version": "0.18.0" + } + }, + { + "id": "mime@1.6.0", + "info": { + "name": "mime", + "version": "1.6.0" + } + }, + { + "id": "ms@2.1.3", + "info": { + "name": "ms", + "version": "2.1.3" + } + }, + { + "id": "serve-static@1.15.0", + "info": { + "name": "serve-static", + "version": "1.15.0" + } + }, + { + "id": "utils-merge@1.0.1", + "info": { + "name": "utils-merge", + "version": "1.0.1" + } + }, + { + "id": "vary@1.1.2", + "info": { + "name": "vary", + "version": "1.1.2" + } + }, + { + "id": "react@18.0.0", + "info": { + "name": "react", + "version": "18.0.0" + } + }, + { + "id": "loose-envify@1.4.0", + "info": { + "name": "loose-envify", + "version": "1.4.0" + } + }, + { + "id": "js-tokens@4.0.0", + "info": { + "name": "js-tokens", + "version": "4.0.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "local-pkg-without-workspace@1.0.0", + "deps": [ + { + "nodeId": "@scope/my-local-pkg@file:local-pkg" + }, + { + "nodeId": "react@18.0.0" + } + ] + }, + { + "nodeId": "@scope/my-local-pkg@file:local-pkg", + "pkgId": "@scope/my-local-pkg@file:local-pkg", + "deps": [ + { + "nodeId": "express@4.19.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "express@4.19.2", + "pkgId": "express@4.19.2", + "deps": [ + { + "nodeId": "accepts@1.3.8" + }, + { + "nodeId": "array-flatten@1.1.1" + }, + { + "nodeId": "body-parser@1.20.2" + }, + { + "nodeId": "content-disposition@0.5.4" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "cookie@0.6.0" + }, + { + "nodeId": "cookie-signature@1.0.6" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "finalhandler@1.2.0" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "merge-descriptors@1.0.1" + }, + { + "nodeId": "methods@1.1.2" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "path-to-regexp@0.1.7" + }, + { + "nodeId": "proxy-addr@2.0.7" + }, + { + "nodeId": "qs@6.11.0" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "safe-buffer@5.2.1" + }, + { + "nodeId": "send@0.18.0" + }, + { + "nodeId": "serve-static@1.15.0" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "utils-merge@1.0.1" + }, + { + "nodeId": "vary@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "accepts@1.3.8", + "pkgId": "accepts@1.3.8", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.6.3" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.6.3", + "pkgId": "negotiator@0.6.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "array-flatten@1.1.1", + "pkgId": "array-flatten@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "body-parser@1.20.2", + "pkgId": "body-parser@1.20.2", + "deps": [ + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "content-type@1.0.5" + }, + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "destroy@1.2.0" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "qs@6.11.0" + }, + { + "nodeId": "raw-body@2.5.2" + }, + { + "nodeId": "type-is@1.6.18" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "bytes@3.1.2", + "pkgId": "bytes@3.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-type@1.0.5", + "pkgId": "content-type@1.0.5", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@2.6.9", + "pkgId": "debug@2.6.9", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.0.0", + "pkgId": "ms@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@2.0.0", + "pkgId": "depd@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "destroy@1.2.0", + "pkgId": "destroy@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-errors@2.0.0", + "pkgId": "http-errors@2.0.0", + "deps": [ + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "setprototypeof@1.2.0" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "toidentifier@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.4", + "pkgId": "inherits@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "setprototypeof@1.2.0", + "pkgId": "setprototypeof@1.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "statuses@2.0.1", + "pkgId": "statuses@2.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "toidentifier@1.0.1", + "pkgId": "toidentifier@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "iconv-lite@0.4.24", + "pkgId": "iconv-lite@0.4.24", + "deps": [ + { + "nodeId": "safer-buffer@2.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safer-buffer@2.1.2", + "pkgId": "safer-buffer@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.4.1", + "pkgId": "on-finished@2.4.1", + "deps": [ + { + "nodeId": "ee-first@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.1.1", + "pkgId": "ee-first@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "qs@6.11.0", + "pkgId": "qs@6.11.0", + "deps": [ + { + "nodeId": "side-channel@1.0.6" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "side-channel@1.0.6", + "pkgId": "side-channel@1.0.6", + "deps": [ + { + "nodeId": "call-bind@1.0.7" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "object-inspect@1.13.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "call-bind@1.0.7", + "pkgId": "call-bind@1.0.7", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "set-function-length@1.2.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-define-property@1.0.0", + "pkgId": "es-define-property@1.0.0", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "get-intrinsic@1.2.4", + "pkgId": "get-intrinsic@1.2.4", + "deps": [ + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "has-proto@1.0.3" + }, + { + "nodeId": "has-symbols@1.0.3" + }, + { + "nodeId": "hasown@2.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "es-errors@1.3.0", + "pkgId": "es-errors@1.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "function-bind@1.1.2", + "pkgId": "function-bind@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-proto@1.0.3", + "pkgId": "has-proto@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-symbols@1.0.3", + "pkgId": "has-symbols@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "hasown@2.0.2", + "pkgId": "hasown@2.0.2", + "deps": [ + { + "nodeId": "function-bind@1.1.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "set-function-length@1.2.2", + "pkgId": "set-function-length@1.2.2", + "deps": [ + { + "nodeId": "define-data-property@1.1.4" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "function-bind@1.1.2" + }, + { + "nodeId": "get-intrinsic@1.2.4" + }, + { + "nodeId": "gopd@1.0.1" + }, + { + "nodeId": "has-property-descriptors@1.0.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "define-data-property@1.1.4", + "pkgId": "define-data-property@1.1.4", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + }, + { + "nodeId": "es-errors@1.3.0" + }, + { + "nodeId": "gopd@1.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "gopd@1.0.1", + "pkgId": "gopd@1.0.1", + "deps": [ + { + "nodeId": "get-intrinsic@1.2.4" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "has-property-descriptors@1.0.2", + "pkgId": "has-property-descriptors@1.0.2", + "deps": [ + { + "nodeId": "es-define-property@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "object-inspect@1.13.1", + "pkgId": "object-inspect@1.13.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "raw-body@2.5.2", + "pkgId": "raw-body@2.5.2", + "deps": [ + { + "nodeId": "bytes@3.1.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "iconv-lite@0.4.24" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "unpipe@1.0.0", + "pkgId": "unpipe@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "type-is@1.6.18", + "pkgId": "type-is@1.6.18", + "deps": [ + { + "nodeId": "media-typer@0.3.0" + }, + { + "nodeId": "mime-types@2.1.35" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "media-typer@0.3.0", + "pkgId": "media-typer@0.3.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "content-disposition@0.5.4", + "pkgId": "content-disposition@0.5.4", + "deps": [ + { + "nodeId": "safe-buffer@5.2.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "safe-buffer@5.2.1", + "pkgId": "safe-buffer@5.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie@0.6.0", + "pkgId": "cookie@0.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "cookie-signature@1.0.6", + "pkgId": "cookie-signature@1.0.6", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "encodeurl@1.0.2", + "pkgId": "encodeurl@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-html@1.0.3", + "pkgId": "escape-html@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "etag@1.8.1", + "pkgId": "etag@1.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "finalhandler@1.2.0", + "pkgId": "finalhandler@1.2.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "statuses@2.0.1" + }, + { + "nodeId": "unpipe@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "parseurl@1.3.3", + "pkgId": "parseurl@1.3.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fresh@0.5.2", + "pkgId": "fresh@0.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "merge-descriptors@1.0.1", + "pkgId": "merge-descriptors@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "methods@1.1.2", + "pkgId": "methods@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "path-to-regexp@0.1.7", + "pkgId": "path-to-regexp@0.1.7", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "proxy-addr@2.0.7", + "pkgId": "proxy-addr@2.0.7", + "deps": [ + { + "nodeId": "forwarded@0.2.0" + }, + { + "nodeId": "ipaddr.js@1.9.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "forwarded@0.2.0", + "pkgId": "forwarded@0.2.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ipaddr.js@1.9.1", + "pkgId": "ipaddr.js@1.9.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "range-parser@1.2.1", + "pkgId": "range-parser@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "send@0.18.0", + "pkgId": "send@0.18.0", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@2.0.0" + }, + { + "nodeId": "destroy@1.2.0" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@2.0.0" + }, + { + "nodeId": "mime@1.6.0" + }, + { + "nodeId": "ms@2.1.3" + }, + { + "nodeId": "on-finished@2.4.1" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "statuses@2.0.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@1.6.0", + "pkgId": "mime@1.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.1.3", + "pkgId": "ms@2.1.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "serve-static@1.15.0", + "pkgId": "serve-static@1.15.0", + "deps": [ + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "parseurl@1.3.3" + }, + { + "nodeId": "send@0.18.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "utils-merge@1.0.1", + "pkgId": "utils-merge@1.0.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "vary@1.1.2", + "pkgId": "vary@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "react@18.0.0", + "pkgId": "react@18.0.0", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loose-envify@1.4.0", + "pkgId": "loose-envify@1.4.0", + "deps": [ + { + "nodeId": "js-tokens@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-tokens@4.0.0", + "pkgId": "js-tokens@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} \ No newline at end of file diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/local-pkg/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/local-pkg/package.json new file mode 100644 index 00000000..e4552b03 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/local-pkg/package.json @@ -0,0 +1,7 @@ +{ + "name": "@scope/my-local-pkg", + "version": "1.0.0", + "dependencies": { + "express": "5.0.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/package.json new file mode 100644 index 00000000..34103db0 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/package.json @@ -0,0 +1,9 @@ +{ + "name": "local-pkg-without-workspace", + "version": "1.0.0", + "private": true, + "dependencies": { + "@scope/my-local-pkg": "file:./local-pkg", + "react": "18.0.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/pnpm-lock.yaml new file mode 100644 index 00000000..ccf8ce04 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/local-pkg-without-workspaces/pnpm-lock.yaml @@ -0,0 +1,573 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@scope/my-local-pkg': + specifier: file:./local-pkg + version: file:local-pkg + react: + specifier: 18.0.0 + version: 18.0.0 + +packages: + + '@scope/my-local-pkg@file:local-pkg': + resolution: {directory: local-pkg, type: directory} + + accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + body-parser@1.20.2: + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + express@4.19.2: + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} + + finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + + object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + react@18.0.0: + resolution: {integrity: sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==} + engines: {node: '>=0.10.0'} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + +snapshots: + + '@scope/my-local-pkg@file:local-pkg': + dependencies: + express: 4.19.2 + transitivePeerDependencies: + - supports-color + + accepts@1.3.8: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + + array-flatten@1.1.1: {} + + body-parser@1.20.2: + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.2 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + bytes@3.1.2: {} + + call-bind@1.0.7: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 + + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 + + content-type@1.0.5: {} + + cookie-signature@1.0.6: {} + + cookie@0.6.0: {} + + debug@2.6.9: + dependencies: + ms: 2.0.0 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.0.1 + + depd@2.0.0: {} + + destroy@1.2.0: {} + + ee-first@1.1.1: {} + + encodeurl@1.0.2: {} + + es-define-property@1.0.0: + dependencies: + get-intrinsic: 1.2.4 + + es-errors@1.3.0: {} + + escape-html@1.0.3: {} + + etag@1.8.1: {} + + express@4.19.2: + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.2 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.6.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.11.0 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + + finalhandler@1.2.0: + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + forwarded@0.2.0: {} + + fresh@0.5.2: {} + + function-bind@1.1.2: {} + + get-intrinsic@1.2.4: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + + gopd@1.0.1: + dependencies: + get-intrinsic: 1.2.4 + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.0 + + has-proto@1.0.3: {} + + has-symbols@1.0.3: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + http-errors@2.0.0: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + inherits@2.0.4: {} + + ipaddr.js@1.9.1: {} + + js-tokens@4.0.0: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + media-typer@0.3.0: {} + + merge-descriptors@1.0.1: {} + + methods@1.1.2: {} + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@1.6.0: {} + + ms@2.0.0: {} + + ms@2.1.3: {} + + negotiator@0.6.3: {} + + object-inspect@1.13.1: {} + + on-finished@2.4.1: + dependencies: + ee-first: 1.1.1 + + parseurl@1.3.3: {} + + path-to-regexp@0.1.7: {} + + proxy-addr@2.0.7: + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + + qs@6.11.0: + dependencies: + side-channel: 1.0.6 + + range-parser@1.2.1: {} + + raw-body@2.5.2: + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + + react@18.0.0: + dependencies: + loose-envify: 1.4.0 + + safe-buffer@5.2.1: {} + + safer-buffer@2.1.2: {} + + send@0.18.0: + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + + serve-static@1.15.0: + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0 + transitivePeerDependencies: + - supports-color + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.2 + + setprototypeof@1.2.0: {} + + side-channel@1.0.6: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.1 + + statuses@2.0.1: {} + + toidentifier@1.0.1: {} + + type-is@1.6.18: + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + + unpipe@1.0.0: {} + + utils-merge@1.0.1: {} + + vary@1.1.2: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/package.json new file mode 100644 index 00000000..c1a565e9 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/package.json @@ -0,0 +1,18 @@ +{ + "name": "trucolor", + "version": "0.7.1", + "description": "TTY color toolkit supporting Truecolor (24bit RGB)", + "author": "Mark Griffiths (http://thebespokepixel.com/)", + "main": "index.js", + "module": "index.mjs", + "dependencies": { + "debug": "2.0.x", + "lodash": "4.17.11" + }, + "devDependencies": {}, + "engines": { + "node": ">=8.0" + }, + "homepage": "https://github.com/MarkGriffiths/trucolor", + "license": "MIT" +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/pnpm-lock.yaml new file mode 100644 index 00000000..11007fd8 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-non-top-level-deps/pnpm-lock.yaml @@ -0,0 +1,42 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + debug: + specifier: 2.0.x + version: 2.0.0 + lodash: + specifier: 4.17.11 + version: 4.17.11 + +packages: + + debug@2.0.0: + resolution: {integrity: sha512-jRxFR0Fb657ikmm6IjHY32v/Nqp9Ndcx4LBISXPfpguNaHh5JJnb+x37qalKPTu4fxMFnVBIyEGi72mmvl0BCw==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + lodash@4.17.11: + resolution: {integrity: sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==} + + ms@0.6.2: + resolution: {integrity: sha512-/pc3eh7TWorTtbvXg8je4GvrvEqCfH7PA3P7iW01yL2E53FKixzgMBaQi0NOPbMJqY34cBSvR0tZtmlTkdUG4A==} + +snapshots: + + debug@2.0.0: + dependencies: + ms: 0.6.2 + + lodash@4.17.11: {} + + ms@0.6.2: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/package.json new file mode 100644 index 00000000..1b7cf50d --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/package.json @@ -0,0 +1,19 @@ +{ + "name": "trucolor", + "version": "0.7.1", + "description": "TTY color toolkit supporting Truecolor (24bit RGB)", + "author": "Mark Griffiths (http://thebespokepixel.com/)", + "main": "index.js", + "module": "index.mjs", + "dependencies": { + "debug": "2.0.x", + "lodash": "4.17.11", + "body-parser": "^1.18.2" + }, + "devDependencies": {}, + "engines": { + "node": ">=8.0" + }, + "homepage": "https://github.com/MarkGriffiths/trucolor", + "license": "MIT" +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/pnpm-lock.yaml new file mode 100644 index 00000000..dde81c64 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/missing-top-level-deps/pnpm-lock.yaml @@ -0,0 +1,337 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + body-parser: + specifier: ^1.18.2 + version: 1.20.2 + debug: + specifier: 2.0.x + version: 2.0.0 + lodash: + specifier: 4.17.11 + version: 4.17.11 + +packages: + + body-parser@1.20.2: + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + + call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + + content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + + debug@2.0.0: + resolution: {integrity: sha512-jRxFR0Fb657ikmm6IjHY32v/Nqp9Ndcx4LBISXPfpguNaHh5JJnb+x37qalKPTu4fxMFnVBIyEGi72mmvl0BCw==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + + gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} + + has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + lodash@4.17.11: + resolution: {integrity: sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + ms@0.6.2: + resolution: {integrity: sha512-/pc3eh7TWorTtbvXg8je4GvrvEqCfH7PA3P7iW01yL2E53FKixzgMBaQi0NOPbMJqY34cBSvR0tZtmlTkdUG4A==} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + + raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + +snapshots: + + body-parser@1.20.2: + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.2 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + + bytes@3.1.2: {} + + call-bind@1.0.7: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 + + content-type@1.0.5: {} + + debug@2.0.0: + dependencies: + ms: 0.6.2 + + debug@2.6.9: + dependencies: + ms: 2.0.0 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.0.1 + + depd@2.0.0: {} + + destroy@1.2.0: {} + + ee-first@1.1.1: {} + + es-define-property@1.0.0: + dependencies: + get-intrinsic: 1.2.4 + + es-errors@1.3.0: {} + + function-bind@1.1.2: {} + + get-intrinsic@1.2.4: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + + gopd@1.0.1: + dependencies: + get-intrinsic: 1.2.4 + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.0 + + has-proto@1.0.3: {} + + has-symbols@1.0.3: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + http-errors@2.0.0: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + inherits@2.0.4: {} + + lodash@4.17.11: {} + + media-typer@0.3.0: {} + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + ms@0.6.2: {} + + ms@2.0.0: {} + + object-inspect@1.13.1: {} + + on-finished@2.4.1: + dependencies: + ee-first: 1.1.1 + + qs@6.11.0: + dependencies: + side-channel: 1.0.6 + + raw-body@2.5.2: + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + + safer-buffer@2.1.2: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.2 + + setprototypeof@1.2.0: {} + + side-channel@1.0.6: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.1 + + statuses@2.0.1: {} + + toidentifier@1.0.1: {} + + type-is@1.6.18: + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + + unpipe@1.0.0: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/expected.json new file mode 100644 index 00000000..b6994f10 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/expected.json @@ -0,0 +1,45 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "test3@", + "info": { + "name": "test3" + } + }, + { + "id": "lodash@4.17.21", + "info": { + "name": "lodash", + "version": "4.17.21" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "test3@", + "deps": [ + { + "nodeId": "lodash@4.17.21" + } + ] + }, + { + "nodeId": "lodash@4.17.21", + "pkgId": "lodash@4.17.21", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/package.json new file mode 100644 index 00000000..6a6be92e --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/package.json @@ -0,0 +1,7 @@ +{ + "name": "test3", + "description": "https://yarnpkg.com/features/protocols", + "dependencies": { + "lodash": "npm:lodash@^4.17.15" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/pnpm-lock.yaml new file mode 100644 index 00000000..bdc6e74d --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/npm-protocol/pnpm-lock.yaml @@ -0,0 +1,22 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + lodash: + specifier: npm:lodash@^4.17.15 + version: 4.17.21 + +packages: + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + +snapshots: + + lodash@4.17.21: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/expected.json new file mode 100644 index 00000000..45062830 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/expected.json @@ -0,0 +1,108 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "one-dep@1.0.0", + "info": { + "name": "one-dep", + "version": "1.0.0" + } + }, + { + "id": "accepts@1.3.7", + "info": { + "name": "accepts", + "version": "1.3.7" + } + }, + { + "id": "mime-types@2.1.35", + "info": { + "name": "mime-types", + "version": "2.1.35" + } + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "negotiator@0.6.2", + "info": { + "name": "negotiator", + "version": "0.6.2" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "one-dep@1.0.0", + "deps": [ + { + "nodeId": "accepts@1.3.7" + } + ] + }, + { + "nodeId": "accepts@1.3.7", + "pkgId": "accepts@1.3.7", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.6.2", + "pkgId": "negotiator@0.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/package.json new file mode 100644 index 00000000..3949d0e1 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/package.json @@ -0,0 +1,9 @@ +{ + "name": "one-dep", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "dependencies": { + "accepts": "1.3.7" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/pnpm-lock.yaml new file mode 100644 index 00000000..f96cd6eb --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/one-dep/pnpm-lock.yaml @@ -0,0 +1,46 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + accepts: + specifier: 1.3.7 + version: 1.3.7 + +packages: + + accepts@1.3.7: + resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} + engines: {node: '>= 0.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + negotiator@0.6.2: + resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==} + engines: {node: '>= 0.6'} + +snapshots: + + accepts@1.3.7: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.2 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + negotiator@0.6.2: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-excluded.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-excluded.json new file mode 100644 index 00000000..a05af2ac --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-excluded.json @@ -0,0 +1,25 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "pkg-dev-deps-only@0.0.1", + "info": { + "name": "pkg-dev-deps-only", + "version": "0.0.1" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "pkg-dev-deps-only@0.0.1", + "deps": [] + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-included.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-included.json new file mode 100644 index 00000000..83a199cd --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/expected-dev-deps-included.json @@ -0,0 +1,67 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "pkg-dev-deps-only@0.0.1", + "info": { + "name": "pkg-dev-deps-only", + "version": "0.0.1" + } + }, + { + "id": "debug@2.6.9", + "info": { + "name": "debug", + "version": "2.6.9" + } + }, + { + "id": "ms@2.0.0", + "info": { + "name": "ms", + "version": "2.0.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "pkg-dev-deps-only@0.0.1", + "deps": [ + { + "nodeId": "debug@2.6.9" + } + ] + }, + { + "nodeId": "debug@2.6.9", + "pkgId": "debug@2.6.9", + "deps": [ + { + "nodeId": "ms@2.0.0" + } + ], + "info": { + "labels": { + "scope": "dev" + } + } + }, + { + "nodeId": "ms@2.0.0", + "pkgId": "ms@2.0.0", + "deps": [], + "info": { + "labels": { + "scope": "dev" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/package.json new file mode 100644 index 00000000..0cc6ab53 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/package.json @@ -0,0 +1,7 @@ +{ + "name": "pkg-dev-deps-only", + "version": "0.0.1", + "devDependencies": { + "debug": "^2.2.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/pnpm-lock.yaml new file mode 100644 index 00000000..bf3afee2 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/only-dev-deps/pnpm-lock.yaml @@ -0,0 +1,34 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + devDependencies: + debug: + specifier: ^2.2.0 + version: 2.6.9 + +packages: + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + +snapshots: + + debug@2.6.9: + dependencies: + ms: 2.0.0 + + ms@2.0.0: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/expected.json new file mode 100644 index 00000000..5938c356 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/expected.json @@ -0,0 +1,416 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "resolutions-scoped@0.0.1", + "info": { + "name": "resolutions-scoped", + "version": "0.0.1" + } + }, + { + "id": "send@0.17.1", + "info": { + "name": "send", + "version": "0.17.1" + } + }, + { + "id": "debug@2.6.9", + "info": { + "name": "debug", + "version": "2.6.9" + } + }, + { + "id": "ms@1.0.0", + "info": { + "name": "ms", + "version": "1.0.0" + } + }, + { + "id": "depd@1.1.2", + "info": { + "name": "depd", + "version": "1.1.2" + } + }, + { + "id": "destroy@1.0.4", + "info": { + "name": "destroy", + "version": "1.0.4" + } + }, + { + "id": "encodeurl@1.0.2", + "info": { + "name": "encodeurl", + "version": "1.0.2" + } + }, + { + "id": "escape-html@1.0.3", + "info": { + "name": "escape-html", + "version": "1.0.3" + } + }, + { + "id": "etag@1.8.1", + "info": { + "name": "etag", + "version": "1.8.1" + } + }, + { + "id": "fresh@0.5.2", + "info": { + "name": "fresh", + "version": "0.5.2" + } + }, + { + "id": "http-errors@1.7.3", + "info": { + "name": "http-errors", + "version": "1.7.3" + } + }, + { + "id": "inherits@2.0.4", + "info": { + "name": "inherits", + "version": "2.0.4" + } + }, + { + "id": "setprototypeof@1.1.1", + "info": { + "name": "setprototypeof", + "version": "1.1.1" + } + }, + { + "id": "statuses@1.5.0", + "info": { + "name": "statuses", + "version": "1.5.0" + } + }, + { + "id": "toidentifier@1.0.0", + "info": { + "name": "toidentifier", + "version": "1.0.0" + } + }, + { + "id": "mime@1.6.0", + "info": { + "name": "mime", + "version": "1.6.0" + } + }, + { + "id": "ms@2.1.1", + "info": { + "name": "ms", + "version": "2.1.1" + } + }, + { + "id": "on-finished@2.3.0", + "info": { + "name": "on-finished", + "version": "2.3.0" + } + }, + { + "id": "ee-first@1.1.1", + "info": { + "name": "ee-first", + "version": "1.1.1" + } + }, + { + "id": "range-parser@1.2.1", + "info": { + "name": "range-parser", + "version": "1.2.1" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "resolutions-scoped@0.0.1", + "deps": [ + { + "nodeId": "send@0.17.1" + } + ] + }, + { + "nodeId": "send@0.17.1", + "pkgId": "send@0.17.1", + "deps": [ + { + "nodeId": "debug@2.6.9" + }, + { + "nodeId": "depd@1.1.2" + }, + { + "nodeId": "destroy@1.0.4" + }, + { + "nodeId": "encodeurl@1.0.2" + }, + { + "nodeId": "escape-html@1.0.3" + }, + { + "nodeId": "etag@1.8.1" + }, + { + "nodeId": "fresh@0.5.2" + }, + { + "nodeId": "http-errors@1.7.3" + }, + { + "nodeId": "mime@1.6.0" + }, + { + "nodeId": "ms@2.1.1" + }, + { + "nodeId": "on-finished@2.3.0" + }, + { + "nodeId": "range-parser@1.2.1" + }, + { + "nodeId": "statuses@1.5.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "debug@2.6.9", + "pkgId": "debug@2.6.9", + "deps": [ + { + "nodeId": "ms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@1.0.0", + "pkgId": "ms@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "depd@1.1.2", + "pkgId": "depd@1.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "destroy@1.0.4", + "pkgId": "destroy@1.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "encodeurl@1.0.2", + "pkgId": "encodeurl@1.0.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "escape-html@1.0.3", + "pkgId": "escape-html@1.0.3", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "etag@1.8.1", + "pkgId": "etag@1.8.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "fresh@0.5.2", + "pkgId": "fresh@0.5.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "http-errors@1.7.3", + "pkgId": "http-errors@1.7.3", + "deps": [ + { + "nodeId": "depd@1.1.2" + }, + { + "nodeId": "inherits@2.0.4" + }, + { + "nodeId": "setprototypeof@1.1.1" + }, + { + "nodeId": "statuses@1.5.0" + }, + { + "nodeId": "toidentifier@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "inherits@2.0.4", + "pkgId": "inherits@2.0.4", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "setprototypeof@1.1.1", + "pkgId": "setprototypeof@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "statuses@1.5.0", + "pkgId": "statuses@1.5.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "toidentifier@1.0.0", + "pkgId": "toidentifier@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime@1.6.0", + "pkgId": "mime@1.6.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@2.1.1", + "pkgId": "ms@2.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "on-finished@2.3.0", + "pkgId": "on-finished@2.3.0", + "deps": [ + { + "nodeId": "ee-first@1.1.1" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ee-first@1.1.1", + "pkgId": "ee-first@1.1.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "range-parser@1.2.1", + "pkgId": "range-parser@1.2.1", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/package.json new file mode 100644 index 00000000..bbfe0ef3 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/package.json @@ -0,0 +1,10 @@ +{ + "name": "resolutions-scoped", + "version": "0.0.1", + "dependencies": { + "send": "0.17.1" + }, + "resolutions": { + "debug>ms": "1.0.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/pnpm-lock.yaml new file mode 100644 index 00000000..71dcd433 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/scoped-override/pnpm-lock.yaml @@ -0,0 +1,158 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +overrides: + debug>ms: 1.0.0 + +importers: + + .: + dependencies: + send: + specifier: 0.17.1 + version: 0.17.1 + +packages: + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + + destroy@1.0.4: + resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + http-errors@1.7.3: + resolution: {integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==} + engines: {node: '>= 0.6'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + ms@1.0.0: + resolution: {integrity: sha512-85ytwCiGUnD84ui6ULG1KBFMaZgHW3jg5KPr9jt+ZPYt75+XK+JGbYddGrBQ+RSHXOhekCnCZwJywBoFvFl0kw==} + + ms@2.1.1: + resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} + + on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + send@0.17.1: + resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==} + engines: {node: '>= 0.8.0'} + + setprototypeof@1.1.1: + resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==} + + statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + + toidentifier@1.0.0: + resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} + engines: {node: '>=0.6'} + +snapshots: + + debug@2.6.9: + dependencies: + ms: 1.0.0 + + depd@1.1.2: {} + + destroy@1.0.4: {} + + ee-first@1.1.1: {} + + encodeurl@1.0.2: {} + + escape-html@1.0.3: {} + + etag@1.8.1: {} + + fresh@0.5.2: {} + + http-errors@1.7.3: + dependencies: + depd: 1.1.2 + inherits: 2.0.4 + setprototypeof: 1.1.1 + statuses: 1.5.0 + toidentifier: 1.0.0 + + inherits@2.0.4: {} + + mime@1.6.0: {} + + ms@1.0.0: {} + + ms@2.1.1: {} + + on-finished@2.3.0: + dependencies: + ee-first: 1.1.1 + + range-parser@1.2.1: {} + + send@0.17.1: + dependencies: + debug: 2.6.9 + depd: 1.1.2 + destroy: 1.0.4 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 1.7.3 + mime: 1.6.0 + ms: 2.1.1 + on-finished: 2.3.0 + range-parser: 1.2.1 + statuses: 1.5.0 + transitivePeerDependencies: + - supports-color + + setprototypeof@1.1.1: {} + + statuses@1.5.0: {} + + toidentifier@1.0.0: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/expected.json new file mode 100644 index 00000000..117836e7 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/expected.json @@ -0,0 +1,67 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "resolutions-simple@0.0.1", + "info": { + "name": "resolutions-simple", + "version": "0.0.1" + } + }, + { + "id": "debug@4.3.1", + "info": { + "name": "debug", + "version": "4.3.1" + } + }, + { + "id": "ms@1.0.0", + "info": { + "name": "ms", + "version": "1.0.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "resolutions-simple@0.0.1", + "deps": [ + { + "nodeId": "debug@4.3.1" + } + ] + }, + { + "nodeId": "debug@4.3.1", + "pkgId": "debug@4.3.1", + "deps": [ + { + "nodeId": "ms@1.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "ms@1.0.0", + "pkgId": "ms@1.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/package.json new file mode 100644 index 00000000..2af25b62 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/package.json @@ -0,0 +1,12 @@ +{ + "name": "resolutions-simple", + "version": "0.0.1", + "dependencies": { + "debug": "4.3.1" + }, + "pnpm": { + "overrides": { + "ms": "1.0.0" + } + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/pnpm-lock.yaml new file mode 100644 index 00000000..25d6bffc --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/simple-override/pnpm-lock.yaml @@ -0,0 +1,38 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +overrides: + ms: 1.0.0 + +importers: + + .: + dependencies: + debug: + specifier: 4.3.1 + version: 4.3.1 + +packages: + + debug@4.3.1: + resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + ms@1.0.0: + resolution: {integrity: sha512-85ytwCiGUnD84ui6ULG1KBFMaZgHW3jg5KPr9jt+ZPYt75+XK+JGbYddGrBQ+RSHXOhekCnCZwJywBoFvFl0kw==} + +snapshots: + + debug@4.3.1: + dependencies: + ms: 1.0.0 + + ms@1.0.0: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/package.json new file mode 100644 index 00000000..d0b93da4 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/package.json @@ -0,0 +1,10 @@ +{ + "name": "yarn-1-workspace-with-cross-ref", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "private": true, + "workspaces": [ + "packages/*" + ] +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/expected.json new file mode 100644 index 00000000..260a6d14 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/expected.json @@ -0,0 +1,149 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "pkg-a@1.0.0", + "info": { + "name": "pkg-a", + "version": "1.0.0" + } + }, + { + "id": "ms@2.1.2", + "info": { + "name": "ms", + "version": "2.1.2" + } + }, + { + "id": "package-b@1.0.0", + "info": { + "name": "package-b", + "version": "1.0.0" + } + }, + { + "id": "accepts@1.3.7", + "info": { + "name": "accepts", + "version": "1.3.7" + } + }, + { + "id": "mime-types@2.1.35", + "info": { + "name": "mime-types", + "version": "2.1.35" + } + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "negotiator@0.6.2", + "info": { + "name": "negotiator", + "version": "0.6.2" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "pkg-a@1.0.0", + "deps": [ + { + "nodeId": "ms@2.1.2" + }, + { + "nodeId": "package-b@1.0.0" + } + ] + }, + { + "nodeId": "ms@2.1.2", + "pkgId": "ms@2.1.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "package-b@1.0.0", + "pkgId": "package-b@1.0.0", + "deps": [ + { + "nodeId": "accepts@1.3.7" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "accepts@1.3.7", + "pkgId": "accepts@1.3.7", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.6.2", + "pkgId": "negotiator@0.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/package.json new file mode 100644 index 00000000..09632d0d --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-a/package.json @@ -0,0 +1,8 @@ +{ + "name": "pkg-a", + "version": "1.0.0", + "dependencies": { + "ms": "2.1.2", + "package-b": "workspace:1.0.0" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-b/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-b/package.json new file mode 100644 index 00000000..5303a6c8 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/packages/pkg-b/package.json @@ -0,0 +1,7 @@ +{ + "name": "package-b", + "version": "1.0.0", + "dependencies": { + "accepts": "1.3.7" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-lock.yaml new file mode 100644 index 00000000..05e60843 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-lock.yaml @@ -0,0 +1,62 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: {} + + packages/pkg-a: + dependencies: + ms: + specifier: 2.1.2 + version: 2.1.2 + package-b: + specifier: workspace:1.0.0 + version: link:../pkg-b + + packages/pkg-b: + dependencies: + accepts: + specifier: 1.3.7 + version: 1.3.7 + +packages: + + accepts@1.3.7: + resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} + engines: {node: '>= 0.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + negotiator@0.6.2: + resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==} + engines: {node: '>= 0.6'} + +snapshots: + + accepts@1.3.7: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.2 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + ms@2.1.2: {} + + negotiator@0.6.2: {} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-workspace.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-workspace.yaml new file mode 100644 index 00000000..d6d06073 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-cross-ref/pnpm-workspace.yaml @@ -0,0 +1,3 @@ +packages: + # all packages in direct subdirs of packages/ + - 'packages/*' \ No newline at end of file diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/expected.json new file mode 100644 index 00000000..16c64693 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/expected.json @@ -0,0 +1,88 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "yarn-1-workspace-with-isolated-pkgs@1.0.0", + "info": { + "name": "yarn-1-workspace-with-isolated-pkgs", + "version": "1.0.0" + } + }, + { + "id": "react@18.0.0", + "info": { + "name": "react", + "version": "18.0.0" + } + }, + { + "id": "loose-envify@1.4.0", + "info": { + "name": "loose-envify", + "version": "1.4.0" + } + }, + { + "id": "js-tokens@4.0.0", + "info": { + "name": "js-tokens", + "version": "4.0.0" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "yarn-1-workspace-with-isolated-pkgs@1.0.0", + "deps": [ + { + "nodeId": "react@18.0.0" + } + ] + }, + { + "nodeId": "react@18.0.0", + "pkgId": "react@18.0.0", + "deps": [ + { + "nodeId": "loose-envify@1.4.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "loose-envify@1.4.0", + "pkgId": "loose-envify@1.4.0", + "deps": [ + { + "nodeId": "js-tokens@4.0.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "js-tokens@4.0.0", + "pkgId": "js-tokens@4.0.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/package.json new file mode 100644 index 00000000..2e63fa08 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/package.json @@ -0,0 +1,10 @@ +{ + "name": "yarn-1-workspace-with-isolated-pkgs", + "version": "1.0.0", + "main": "index.js", + "license": "MIT", + "dependencies": { + "react": "18.0.0" + }, + "private": true +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-a/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-a/package.json new file mode 100644 index 00000000..95034c02 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-a/package.json @@ -0,0 +1,7 @@ +{ + "name": "package-a", + "version": "1.0.0", + "dependencies": { + "ms": "2.1.2" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/expected.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/expected.json new file mode 100644 index 00000000..9e85e2a2 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/expected.json @@ -0,0 +1,108 @@ +{ + "schemaVersion": "1.3.0", + "pkgManager": { + "name": "pnpm" + }, + "pkgs": [ + { + "id": "pkg-b@1.0.0", + "info": { + "name": "pkg-b", + "version": "1.0.0" + } + }, + { + "id": "accepts@1.3.7", + "info": { + "name": "accepts", + "version": "1.3.7" + } + }, + { + "id": "mime-types@2.1.35", + "info": { + "name": "mime-types", + "version": "2.1.35" + } + }, + { + "id": "mime-db@1.52.0", + "info": { + "name": "mime-db", + "version": "1.52.0" + } + }, + { + "id": "negotiator@0.6.2", + "info": { + "name": "negotiator", + "version": "0.6.2" + } + } + ], + "graph": { + "rootNodeId": "root-node", + "nodes": [ + { + "nodeId": "root-node", + "pkgId": "pkg-b@1.0.0", + "deps": [ + { + "nodeId": "accepts@1.3.7" + } + ] + }, + { + "nodeId": "accepts@1.3.7", + "pkgId": "accepts@1.3.7", + "deps": [ + { + "nodeId": "mime-types@2.1.35" + }, + { + "nodeId": "negotiator@0.6.2" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-types@2.1.35", + "pkgId": "mime-types@2.1.35", + "deps": [ + { + "nodeId": "mime-db@1.52.0" + } + ], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "mime-db@1.52.0", + "pkgId": "mime-db@1.52.0", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + }, + { + "nodeId": "negotiator@0.6.2", + "pkgId": "negotiator@0.6.2", + "deps": [], + "info": { + "labels": { + "scope": "prod" + } + } + } + ] + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/package.json b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/package.json new file mode 100644 index 00000000..aab47a23 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/packages/pkg-b/package.json @@ -0,0 +1,7 @@ +{ + "name": "pkg-b", + "version": "1.0.0", + "dependencies": { + "accepts": "1.3.7" + } +} diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-lock.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-lock.yaml new file mode 100644 index 00000000..ef4bc896 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-lock.yaml @@ -0,0 +1,84 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + react: + specifier: 18.0.0 + version: 18.0.0 + + packages/pkg-a: + dependencies: + ms: + specifier: 2.1.2 + version: 2.1.2 + + packages/pkg-b: + dependencies: + accepts: + specifier: 1.3.7 + version: 1.3.7 + +packages: + + accepts@1.3.7: + resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} + engines: {node: '>= 0.6'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + negotiator@0.6.2: + resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==} + engines: {node: '>= 0.6'} + + react@18.0.0: + resolution: {integrity: sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==} + engines: {node: '>=0.10.0'} + +snapshots: + + accepts@1.3.7: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.2 + + js-tokens@4.0.0: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + ms@2.1.2: {} + + negotiator@0.6.2: {} + + react@18.0.0: + dependencies: + loose-envify: 1.4.0 diff --git a/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-workspace.yaml b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-workspace.yaml new file mode 100644 index 00000000..d6d06073 --- /dev/null +++ b/test/jest/dep-graph-builders/fixtures/pnpm-lock-v9/workspace-with-isolated-pkgs/pnpm-workspace.yaml @@ -0,0 +1,3 @@ +packages: + # all packages in direct subdirs of packages/ + - 'packages/*' \ No newline at end of file diff --git a/test/jest/dep-graph-builders/pnpm-lock.test.ts b/test/jest/dep-graph-builders/pnpm-lock.test.ts index 6b12b350..66e8fbbf 100644 --- a/test/jest/dep-graph-builders/pnpm-lock.test.ts +++ b/test/jest/dep-graph-builders/pnpm-lock.test.ts @@ -6,8 +6,9 @@ import { NodeLockfileVersion } from '../../../lib/utils'; const LOCK_FILE_VERSIONS = { 'pnpm-lock-v6': NodeLockfileVersion.PnpmLockV6, 'pnpm-lock-v5': NodeLockfileVersion.PnpmLockV5, + 'pnpm-lock-v9': NodeLockfileVersion.PnpmLockV9, }; -describe.each(['pnpm-lock-v5', 'pnpm-lock-v6'])( +describe.each(['pnpm-lock-v5', 'pnpm-lock-v6', 'pnpm-lock-v9'])( 'dep-graph-builder %s', (lockFileVersionPath) => { describe('Happy path tests', () => {